CGame

From Project X Wiki
Revision as of 12:43, 16 May 2010 by Gran PC (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Up one category:
Scripting


Worms Armageddon class

Class name: CGame
Description: Contains various game information
Constructor: Not Available
Derived From: None


It contains information about chat, message handling and references to some network classes..
But most of them isn't declared yet.

Fields

class CGame
{
  CMQueue* queue;
  CMQueue* queue2;
  int curFont;
  CGameState* GS;
  CLandscape* land;  
};

Methods

  bool EnterToChat(CMQueue* queue, string message);

This fuction called when user types message into chat. Use it for hooking chat commands or for emulating entering text into chat by user.

queue - queue field of CGame, message - message.

  void WriteToChat(int fIndex, string message);

This function writes to game chat directly. Use it for showing output of chat commands.