Difference between revisions of "Netpacks"

From VCMI Project Wiki
Jump to: navigation, search
(Created page with "Net packs are simple structures used to transmit information between client and server. They are defined in netpacks.h file. Packs can be applied to both client and server. The c...")
 
(Packs for server)
Line 8: Line 8:
 
= Packs for server =
 
= Packs for server =
  
Sent to server, result in change of [http://wiki.vcmi.eu/index.php?title=Game_state game state]. Their behavour is defined in NetPacksLib.cpp file.
+
Sent to server, result in change of [[game state]]. Their behavour is defined in NetPacksLib.cpp file.

Revision as of 12:59, 10 November 2011

Net packs are simple structures used to transmit information between client and server. They are defined in netpacks.h file. Packs can be applied to both client and server. The comunication with use of net packs is obligatory even in offline mode.

Packs for client

Sent to client in NetpacksClient.cpp, result in change of player interface, such as dialog pop-up or battle stakc animation.

Packs for server

Sent to server, result in change of game state. Their behavour is defined in NetPacksLib.cpp file.