Another core part of the framework is the cross-platform dynamic-linked library (DLL) loading functionality. This allows for the creation of DLLs that contain game rules and AI players that can be dynamically plugged into the system.
Through the use of these two core components and all of the base classes that have been created, the Caffeine Framework can accommodate nearly all turn based multi-player games, including stochastic and partially observeable games.
Another aspect of cross-platform compatibility is the use of typedefs for the built-in variable types. Each of the built-in variables types was typedef'ed so that they will be the same across all platforms. This way if you need an unsigned 32-bit integer you know that uint32 is what you need and you don't need to worry that it will not be a unsigned 32-bit integer on another platform.
The Caffeine Framework was written for compatibility with Microsoft Windows and Linux. Compatibility with other operating systems can be added with minimal effort to the framework.
In order to ease the creation of Game Modules the CGameModule abstract base class was created. The Game Module base class handles all of the message processing and makes calls to pure virtual functions that are implemented in derived classes. It is highly suggested to use the CGameModule base class so that you don't have to recreate all of the message processing routines.
It is possible to write a Game Module just based on the CPlayer class. The Game Module would then have direct access to the message routing system for ultimate control over the game. This should only be attempted by expert users of the system.
For informatino on creating a Game Module Module for the Caffeine Framework see the Game Module Creation Tutorial
In order to ease the creation of AI Modules the CAIModule abstract base class was created. The AI Module base class handles all of the message processing and makes calls to pure virtual functions that are implemented in derived classes. It is highly suggested to uses the CAIModule base class so that you don't have to recreate all of the message processing routines.
It is possile to write an AI Module just based on the CLocalPlayer class. The AI Module would then have direct access to the messages that are sent to it by other players and the game module. If the Game Module was written so that it did not make use of the CGameModule base class, then you will most likely also have to write the AI Module without the use of the CAIModule class. This should only be attempted by expert users of the system.
For informatino on creating a AI Module for the Caffeine Framework see the AI Module Creation Tutorial
For information on creating a GUI for the Caffeine Framework using Qt is the Graphic User Interface Tutorial .
Another issue is the sending of complex types using the buffer of the CMessage class. A complex type is defined as an object which contains a pointer to dynamic memory in it (Eg. the CPlayerPiece class.) Thus in order to send an object of this type is must be packed into an array and then unpacked on when it is read. The deletion of this unpacked memory can cause problems, so be sure to cast the pointer as a int8* before deleting it. See the deconstructor of the CPlayerPiece for more information.