2017-07-13 10:26:03 +02:00
/*
* NetPacks . h , part of VCMI engine
*
* Authors : listed in file AUTHORS in main folder
*
* License : GNU General Public License v2 .0 or later
* Full text of license available in license . txt file , in main folder
*
*/
2011-12-14 00:23:17 +03:00
# pragma once
2014-01-16 23:24:06 +03:00
# include "NetPacksBase.h"
2017-06-24 16:42:05 +02:00
# include "battle/BattleAction.h"
2017-06-06 06:53:51 +02:00
# include "JsonNode.h"
2014-06-05 19:52:14 +03:00
# include "mapObjects/CGHeroInstance.h"
2010-12-14 23:55:23 +02:00
# include "ConstTransitivePtr.h"
2011-12-14 00:23:17 +03:00
# include "int3.h"
2011-07-05 09:14:07 +03:00
# include "ResourceSet.h"
2014-06-25 17:11:07 +03:00
# include "CGameStateFwd.h"
2015-12-02 21:05:10 +02:00
# include "mapping/CMapDefines.h"
2017-06-24 16:42:05 +02:00
# include "battle/CObstacleInstance.h"
2009-02-04 15:40:54 +02:00
2015-02-26 16:15:17 +02:00
# include "spells/ViewSpellInt.h"
2009-03-07 00:11:17 +02:00
class CClient ;
class CGameState ;
2009-03-09 12:37:49 +02:00
class CGameHandler ;
class CConnection ;
2010-08-20 16:34:39 +03:00
class CCampaignState ;
2010-06-26 19:02:10 +03:00
class CArtifact ;
2010-09-03 21:42:54 +03:00
class CSelectionScreen ;
2010-12-25 21:23:30 +02:00
class CGObjectInstance ;
2010-12-26 16:34:11 +02:00
class CArtifactInstance ;
2012-05-18 17:02:27 +03:00
struct StackLocation ;
2010-12-26 16:34:11 +02:00
struct ArtSlotInfo ;
2012-05-16 20:29:05 +03:00
struct QuestInfo ;
2014-06-25 17:11:07 +03:00
class CMapInfo ;
2016-08-30 04:13:45 +02:00
struct StartInfo ;
2009-03-07 00:11:17 +02:00
struct CPackForClient : public CPack
2008-07-26 16:57:32 +03:00
{
2016-11-18 16:45:59 +02:00
CPackForClient ( ) { } ;
2009-03-07 00:11:17 +02:00
2009-03-09 12:37:49 +02:00
CGameState * GS ( CClient * cl ) ;
2009-03-07 00:25:19 +02:00
void applyFirstCl ( CClient * cl ) //called before applying to gs
2014-02-19 04:04:27 +03:00
{ }
2009-03-07 00:25:19 +02:00
void applyCl ( CClient * cl ) //called after applying to gs
2014-02-19 04:04:27 +03:00
{ }
2009-03-09 12:37:49 +02:00
} ;
struct CPackForServer : public CPack
{
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-03-09 12:37:49 +02:00
CConnection * c ;
CGameState * GS ( CGameHandler * gh ) ;
2013-11-07 15:48:41 +03:00
CPackForServer ( ) :
player ( PlayerColor : : NEUTRAL ) ,
c ( nullptr )
2009-03-07 00:25:19 +02:00
{
2013-11-07 15:48:41 +03:00
}
2009-03-09 12:37:49 +02:00
2014-02-19 04:04:27 +03:00
bool applyGh ( CGameHandler * gh ) //called after applying to gs
{
2017-08-11 19:03:05 +02:00
logGlobal - > error ( " Should not happen... applying plain CPackForServer " ) ;
2014-02-19 04:04:27 +03:00
return false ;
}
2018-01-25 19:21:34 +02:00
protected :
void throwNotAllowedAction ( ) ;
void throwOnWrongOwner ( CGameHandler * gh , ObjectInstanceID id ) ;
void throwOnWrongPlayer ( CGameHandler * gh , PlayerColor player ) ;
void throwAndCompain ( CGameHandler * gh , std : : string txt ) ;
bool isPlayerOwns ( CGameHandler * gh , ObjectInstanceID id ) ;
private :
void wrongPlayerMessage ( CGameHandler * gh , PlayerColor expectedplayer ) ;
2008-07-26 16:57:32 +03:00
} ;
2009-03-07 00:11:17 +02:00
struct Query : public CPackForClient
2008-08-13 03:44:31 +03:00
{
2013-05-27 13:53:28 +03:00
QueryID queryID ; // equals to -1 if it is not an actual query (and should not be answered)
2012-09-15 22:16:16 +03:00
2012-07-15 18:34:00 +03:00
Query ( )
{
}
2008-08-13 03:44:31 +03:00
} ;
2009-02-03 07:28:05 +02:00
2012-05-18 17:02:27 +03:00
struct StackLocation
{
ConstTransitivePtr < CArmedInstance > army ;
2013-02-16 17:03:47 +03:00
SlotID slot ;
2012-05-18 17:02:27 +03:00
StackLocation ( )
2013-02-16 17:03:47 +03:00
{ }
2013-11-07 15:48:41 +03:00
StackLocation ( const CArmedInstance * Army , SlotID Slot ) :
army ( const_cast < CArmedInstance * > ( Army ) ) , //we are allowed here to const cast -> change will go through one of our packages... do not abuse!
slot ( Slot )
2012-05-18 17:02:27 +03:00
{
}
2012-08-30 19:01:19 +03:00
2012-05-18 17:02:27 +03:00
DLL_LINKAGE const CStackInstance * getStack ( ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & army ;
h & slot ;
2012-05-18 17:02:27 +03:00
}
} ;
2009-03-09 12:37:49 +02:00
/***********************************************************************************************************/
2011-05-22 21:46:52 +03:00
2016-11-18 16:45:59 +02:00
struct PackageApplied : public CPackForClient
2009-04-16 03:28:54 +03:00
{
2016-11-25 19:04:07 +02:00
PackageApplied ( )
: result ( 0 ) , packType ( 0 ) , requestID ( 0 )
{ }
PackageApplied ( ui8 Result )
: result ( Result ) , packType ( 0 ) , requestID ( 0 )
{ }
2009-04-16 03:28:54 +03:00
void applyCl ( CClient * cl ) ;
ui8 result ; //0 - something went wrong, request hasn't been realized; 1 - OK
ui32 packType ; //type id of applied package
2012-03-26 01:46:14 +03:00
ui32 requestID ; //an ID given by client to the request that was applied
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-04-16 03:28:54 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & result ;
h & packType ;
h & requestID ;
h & player ;
2009-04-16 03:28:54 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct SystemMessage : public CPackForClient
2008-07-26 09:39:44 +03:00
{
2016-11-25 19:04:07 +02:00
SystemMessage ( const std : : string & Text ) : text ( Text ) { }
SystemMessage ( ) { }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2008-07-26 09:39:44 +03:00
2009-03-07 00:11:17 +02:00
std : : string text ;
2009-03-07 00:25:19 +02:00
2008-07-26 09:39:44 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2009-03-07 00:25:19 +02:00
h & text ;
2008-07-26 09:39:44 +03:00
}
2008-08-10 07:46:16 +03:00
} ;
2009-03-07 00:11:17 +02:00
2016-11-18 16:45:59 +02:00
struct PlayerBlocked : public CPackForClient
2009-08-04 02:53:18 +03:00
{
2016-11-25 19:04:07 +02:00
PlayerBlocked ( ) : reason ( UPCOMING_BATTLE ) , startOrEnd ( BLOCKADE_STARTED ) { }
2009-08-04 02:53:18 +03:00
void applyCl ( CClient * cl ) ;
2013-09-28 02:46:58 +03:00
enum EReason { UPCOMING_BATTLE , ONGOING_MOVEMENT } ;
enum EMode { BLOCKADE_STARTED , BLOCKADE_ENDED } ;
2016-08-30 04:13:45 +02:00
2013-02-14 02:55:42 +03:00
EReason reason ;
2013-09-28 02:46:58 +03:00
EMode startOrEnd ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-08-04 02:53:18 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & reason ;
h & startOrEnd ;
h & player ;
2009-08-04 02:53:18 +03:00
}
} ;
2017-06-02 02:34:50 +02:00
struct PlayerCheated : public CPackForClient
{
PlayerCheated ( ) : losingCheatCode ( false ) , winningCheatCode ( false ) { }
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
PlayerColor player ;
bool losingCheatCode ;
bool winningCheatCode ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player ;
h & losingCheatCode ;
h & winningCheatCode ;
2017-06-02 02:34:50 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct YourTurn : public CPackForClient
2009-03-07 00:11:17 +02:00
{
2016-11-25 19:04:07 +02:00
YourTurn ( ) { }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2015-10-24 17:02:00 +02:00
boost : : optional < ui8 > daysWithoutCastle ;
2008-07-26 09:39:44 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player ;
h & daysWithoutCastle ;
2008-07-26 09:39:44 +03:00
}
2008-08-10 07:46:16 +03:00
} ;
2009-03-07 00:11:17 +02:00
2016-11-18 16:45:59 +02:00
struct SetResources : public CPackForClient
{
2016-11-26 14:14:43 +02:00
SetResources ( ) : abs ( true ) { } ;
2016-11-18 16:45:59 +02:00
void applyCl ( CClient * cl ) ;
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2012-09-15 22:16:16 +03:00
2016-11-26 14:14:43 +02:00
bool abs ; //false - changes by value; 1 - sets to value
2016-11-18 16:45:59 +02:00
PlayerColor player ;
TResources res ; //res[resid] => res amount
2009-03-07 00:11:17 +02:00
2016-11-18 16:45:59 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & abs ;
h & player ;
h & res ;
2016-11-18 16:45:59 +02:00
}
} ;
struct SetPrimSkill : public CPackForClient
2008-08-04 18:56:36 +03:00
{
2016-11-25 19:04:07 +02:00
SetPrimSkill ( )
: abs ( 0 ) , which ( PrimarySkill : : ATTACK ) , val ( 0 )
{ }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2008-08-04 18:56:36 +03:00
ui8 abs ; //0 - changes by value; 1 - sets to value
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ;
2013-02-04 22:43:16 +03:00
PrimarySkill : : PrimarySkill which ;
2009-08-16 18:39:18 +03:00
si64 val ;
2008-08-04 18:56:36 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & abs ;
h & id ;
h & which ;
h & val ;
2008-08-04 18:56:36 +03:00
}
2012-09-15 22:16:16 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct SetSecSkill : public CPackForClient
2008-08-13 03:44:31 +03:00
{
2016-11-25 19:04:07 +02:00
SetSecSkill ( )
: abs ( 0 ) , val ( 0 )
{ }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2008-08-13 03:44:31 +03:00
ui8 abs ; //0 - changes by value; 1 - sets to value
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ;
2013-02-12 22:49:40 +03:00
SecondarySkill which ;
2013-02-04 22:43:16 +03:00
ui16 val ;
2008-08-13 03:44:31 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & abs ;
h & id ;
h & which ;
h & val ;
2008-08-13 03:44:31 +03:00
}
2012-05-07 15:54:22 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct HeroVisitCastle : public CPackForClient
2008-08-13 12:28:06 +03:00
{
2016-11-18 16:45:59 +02:00
HeroVisitCastle ( ) { flags = 0 ; } ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2011-02-04 16:58:14 +02:00
ui8 flags ; //1 - start
2013-02-14 02:55:42 +03:00
ObjectInstanceID tid , hid ;
2008-08-13 12:28:06 +03:00
bool start ( ) //if hero is entering castle (if false - leaving)
{
return flags & 1 ;
}
2016-11-18 16:45:59 +02:00
2008-08-13 12:28:06 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & flags ;
h & tid ;
h & hid ;
2008-08-13 12:28:06 +03:00
}
2012-09-15 22:16:16 +03:00
} ;
2016-11-25 19:04:07 +02:00
2016-11-18 16:45:59 +02:00
struct ChangeSpells : public CPackForClient
2008-09-12 11:51:46 +03:00
{
2016-11-25 19:04:07 +02:00
ChangeSpells ( ) : learn ( 1 ) { }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2008-09-12 11:51:46 +03:00
ui8 learn ; //1 - gives spell, 0 - takes
2013-02-14 02:55:42 +03:00
ObjectInstanceID hid ;
2013-02-11 02:24:57 +03:00
std : : set < SpellID > spells ;
2008-09-12 11:51:46 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & learn ;
h & hid ;
h & spells ;
2008-09-12 11:51:46 +03:00
}
2012-09-15 22:16:16 +03:00
} ;
2008-10-19 02:20:48 +03:00
2016-11-18 16:45:59 +02:00
struct SetMana : public CPackForClient
2008-10-19 02:20:48 +03:00
{
2016-11-25 19:04:07 +02:00
SetMana ( ) { val = 0 ; absolute = true ; }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID hid ;
si32 val ;
2014-11-26 12:30:55 +02:00
bool absolute ;
2008-10-19 02:20:48 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & val ;
h & hid ;
h & absolute ;
2008-10-19 02:20:48 +03:00
}
2011-01-20 19:25:15 +02:00
} ;
2016-11-18 16:45:59 +02:00
struct SetMovePoints : public CPackForClient
2008-10-19 02:20:48 +03:00
{
2017-05-11 20:52:10 +02:00
SetMovePoints ( ) { val = 0 ; absolute = true ; }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID hid ;
si32 val ;
2017-05-11 20:52:10 +02:00
bool absolute ;
2008-10-19 02:20:48 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & val ;
h & hid ;
h & absolute ;
2008-10-19 02:20:48 +03:00
}
2011-01-20 19:25:15 +02:00
} ;
2016-11-18 16:45:59 +02:00
struct FoWChange : public CPackForClient
2008-10-19 02:20:48 +03:00
{
2016-11-25 19:04:07 +02:00
FoWChange ( ) { mode = 0 ; waitForDialogs = false ; }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-06-29 16:05:48 +03:00
std : : unordered_set < int3 , struct ShashInt3 > tiles ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
ui8 mode ; //mode==0 - hide, mode==1 - reveal
2014-06-21 16:41:05 +03:00
bool waitForDialogs ;
2008-10-19 02:20:48 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & tiles ;
h & player ;
h & mode ;
h & waitForDialogs ;
2008-10-19 02:20:48 +03:00
}
2012-09-15 22:16:16 +03:00
} ;
2008-10-26 22:58:34 +02:00
2016-11-18 16:45:59 +02:00
struct SetAvailableHeroes : public CPackForClient
2008-10-26 22:58:34 +02:00
{
2010-07-08 08:52:11 +03:00
SetAvailableHeroes ( )
{
2011-12-14 00:23:17 +03:00
for ( int i = 0 ; i < GameConstants : : AVAILABLE_HEROES_PER_PLAYER ; i + + )
2011-01-28 04:11:58 +02:00
army [ i ] . clear ( ) ;
2010-07-08 08:52:11 +03:00
}
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2011-12-14 00:23:17 +03:00
si32 hid [ GameConstants : : AVAILABLE_HEROES_PER_PLAYER ] ; //-1 if no hero
CSimpleArmy army [ GameConstants : : AVAILABLE_HEROES_PER_PLAYER ] ;
2008-10-26 22:58:34 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player ;
h & hid ;
h & army ;
2008-10-26 22:58:34 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct GiveBonus : public CPackForClient
2009-02-03 07:28:05 +02:00
{
2010-02-10 04:56:00 +02:00
GiveBonus ( ui8 Who = 0 )
{
2012-09-15 22:16:16 +03:00
who = Who ;
2016-11-25 19:04:07 +02:00
id = 0 ;
2010-02-10 04:56:00 +02:00
}
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-02-03 07:28:05 +02:00
2010-06-07 08:28:12 +03:00
enum { HERO , PLAYER , TOWN } ;
2010-02-10 04:56:00 +02:00
ui8 who ; //who receives bonus, uses enum above
2013-02-14 02:55:42 +03:00
si32 id ; //hero. town or player id - whoever receives it
2010-05-02 21:20:26 +03:00
Bonus bonus ;
2009-02-03 07:28:05 +02:00
MetaString bdescr ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & bonus ;
h & id ;
h & bdescr ;
h & who ;
2015-12-05 01:39:14 +02:00
assert ( id ! = - 1 ) ;
2009-02-03 07:28:05 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct ChangeObjPos : public CPackForClient
2009-02-20 12:36:15 +02:00
{
2010-03-11 01:16:30 +02:00
ChangeObjPos ( )
{
flags = 0 ;
}
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-02-20 12:36:15 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID objid ;
2009-02-20 12:36:15 +02:00
int3 nPos ;
ui8 flags ; //bit flags: 1 - redraw
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & objid ;
h & nPos ;
h & flags ;
2009-02-20 12:36:15 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct PlayerEndsGame : public CPackForClient
2010-01-29 22:52:45 +02:00
{
PlayerEndsGame ( )
{
}
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-01-29 22:52:45 +02:00
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2013-11-17 20:57:04 +03:00
EVictoryLossCheckResult victoryLossCheckResult ;
2010-01-29 22:52:45 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player ;
h & victoryLossCheckResult ;
2010-01-29 22:52:45 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct RemoveBonus : public CPackForClient
2010-02-10 04:56:00 +02:00
{
RemoveBonus ( ui8 Who = 0 )
{
2012-09-15 22:16:16 +03:00
who = Who ;
2016-11-25 19:04:07 +02:00
whoID = 0 ;
source = 0 ;
id = 0 ;
2010-02-10 04:56:00 +02:00
}
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-02-10 04:56:00 +02:00
2010-06-13 16:59:59 +03:00
enum { HERO , PLAYER , TOWN } ;
2010-02-10 04:56:00 +02:00
ui8 who ; //who receives bonus, uses enum above
2010-06-13 16:59:59 +03:00
ui32 whoID ; //hero, town or player id - whoever loses bonus
2010-02-10 04:56:00 +02:00
//vars to identify bonus: its source
ui8 source ;
ui32 id ; //source id
//used locally: copy of removed bonus
2010-05-02 21:20:26 +03:00
Bonus bonus ;
2010-02-10 04:56:00 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & source ;
h & id ;
h & who ;
h & whoID ;
2010-02-10 04:56:00 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct UpdateCampaignState : public CPackForClient
2010-08-20 16:34:39 +03:00
{
2016-11-18 16:45:59 +02:00
UpdateCampaignState ( ) { }
2015-12-29 04:43:33 +02:00
std : : shared_ptr < CCampaignState > camp ;
2010-08-20 16:34:39 +03:00
void applyCl ( CClient * cl ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & camp ;
}
} ;
2016-11-18 16:45:59 +02:00
struct SetCommanderProperty : public CPackForClient
2012-05-07 15:54:22 +03:00
{
2012-05-18 22:44:15 +03:00
enum ECommanderProperty { ALIVE , BONUS , SECONDARY_SKILL , EXPERIENCE , SPECIAL_SKILL } ;
2012-05-07 15:54:22 +03:00
2016-11-25 19:04:07 +02:00
SetCommanderProperty ( )
: which ( ALIVE ) , amount ( 0 ) , additionalInfo ( 0 )
{ }
2012-05-07 15:54:22 +03:00
void applyCl ( CClient * cl ) { } ;
2012-05-18 17:02:27 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2013-02-14 02:55:42 +03:00
ObjectInstanceID heroid ; //for commander attached to hero
2012-05-18 17:02:27 +03:00
StackLocation sl ; //for commander not on the hero?
2012-05-07 15:54:22 +03:00
2013-02-04 22:43:16 +03:00
ECommanderProperty which ;
2012-09-23 21:01:04 +03:00
TExpType amount ; //0 for dead, >0 for alive
2012-05-18 17:02:27 +03:00
si32 additionalInfo ; //for secondary skills choice
2012-05-07 15:54:22 +03:00
Bonus accumulatedBonus ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & heroid ;
h & sl ;
h & which ;
h & amount ;
h & additionalInfo ;
h & accumulatedBonus ;
2012-05-07 15:54:22 +03:00
}
2012-05-16 20:29:05 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct AddQuest : public CPackForClient
2012-05-16 20:29:05 +03:00
{
2016-11-18 16:45:59 +02:00
AddQuest ( ) { } ;
2012-05-16 20:29:05 +03:00
void applyCl ( CClient * cl ) { } ;
2012-07-06 22:12:04 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2012-05-16 20:29:05 +03:00
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2012-05-16 20:29:05 +03:00
QuestInfo quest ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player ;
h & quest ;
2012-05-16 20:29:05 +03:00
}
} ;
2010-08-20 16:34:39 +03:00
2016-11-18 16:45:59 +02:00
struct PrepareForAdvancingCampaign : public CPackForClient
2013-02-09 21:18:55 +03:00
{
2016-11-18 16:45:59 +02:00
PrepareForAdvancingCampaign ( ) { }
2013-02-09 21:18:55 +03:00
void applyCl ( CClient * cl ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
}
} ;
2016-11-18 16:45:59 +02:00
struct UpdateArtHandlerLists : public CPackForClient
2013-02-19 01:37:22 +03:00
{
2016-11-25 19:04:07 +02:00
UpdateArtHandlerLists ( ) { }
2013-02-19 01:37:22 +03:00
std : : vector < CArtifact * > treasures , minors , majors , relics ;
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & treasures ;
h & minors ;
h & majors ;
h & relics ;
2013-02-19 01:37:22 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct UpdateMapEvents : public CPackForClient
2013-02-19 01:37:22 +03:00
{
2016-11-18 16:45:59 +02:00
UpdateMapEvents ( ) { }
2013-02-19 01:37:22 +03:00
std : : list < CMapEvent > events ;
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & events ;
}
} ;
2016-11-18 16:45:59 +02:00
struct UpdateCastleEvents : public CPackForClient
2013-02-19 01:37:22 +03:00
{
2016-11-18 16:45:59 +02:00
UpdateCastleEvents ( ) { }
2013-02-19 01:37:22 +03:00
ObjectInstanceID town ;
std : : list < CCastleEvent > events ;
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & town ;
h & events ;
2013-02-19 01:37:22 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct ChangeFormation : public CPackForClient
2016-09-08 18:29:15 +02:00
{
2016-11-25 19:04:07 +02:00
ChangeFormation ( ) : formation ( 0 ) { }
2016-09-08 18:29:15 +02:00
ObjectInstanceID hid ;
ui8 formation ;
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & hid ;
h & formation ;
2016-09-08 18:29:15 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct RemoveObject : public CPackForClient
2008-08-02 00:41:38 +03:00
{
2016-11-25 19:04:07 +02:00
RemoveObject ( ) { }
2016-11-18 16:45:59 +02:00
RemoveObject ( ObjectInstanceID ID ) { id = ID ; } ;
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ;
2008-08-02 00:41:38 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & id ;
}
2012-09-15 22:16:16 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct TryMoveHero : public CPackForClient
2008-07-28 15:44:08 +03:00
{
2016-11-25 19:04:07 +02:00
TryMoveHero ( )
: movePoints ( 0 ) , result ( FAILED ) , humanKnows ( false )
{ }
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
void applyCl ( CClient * cl ) ;
2009-03-07 17:54:12 +02:00
void applyGs ( CGameState * gs ) ;
2008-07-28 15:44:08 +03:00
2009-07-03 22:57:14 +03:00
enum EResult
{
2009-07-19 04:00:19 +03:00
FAILED , SUCCESS , TELEPORTATION , RESERVED___ , BLOCKING_VISIT , EMBARK , DISEMBARK
2009-07-03 22:57:14 +03:00
} ;
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ;
ui32 movePoints ;
2013-02-04 22:43:16 +03:00
EResult result ; //uses EResult
2010-03-21 00:17:19 +02:00
int3 start , end ; //h3m format
2013-06-29 16:05:48 +03:00
std : : unordered_set < int3 , ShashInt3 > fowRevealed ; //revealed tiles
2013-04-20 14:34:01 +03:00
boost : : optional < int3 > attackedFrom ; // Set when stepping into endangered tile.
2008-07-28 15:44:08 +03:00
2009-12-28 06:08:24 +02:00
bool humanKnows ; //used locally during applying to client
2017-09-16 09:42:27 +02:00
bool stopMovement ( ) const ;
2008-07-28 15:44:08 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & id ;
h & result ;
h & start ;
h & end ;
h & movePoints ;
h & fowRevealed ;
h & attackedFrom ;
2008-07-28 15:44:08 +03:00
}
2010-11-27 03:46:19 +02:00
} ;
2016-11-18 16:45:59 +02:00
struct NewStructures : public CPackForClient
2008-08-01 14:21:15 +03:00
{
2016-11-25 19:04:07 +02:00
NewStructures ( ) : builded ( 0 ) { }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2012-09-15 22:16:16 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID tid ;
2013-02-11 22:11:34 +03:00
std : : set < BuildingID > bid ;
2012-09-15 22:16:16 +03:00
si16 builded ;
2008-08-01 14:21:15 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & tid ;
h & bid ;
h & builded ;
2008-08-01 14:21:15 +03:00
}
2009-09-22 17:27:46 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct RazeStructures : public CPackForClient
2009-09-22 17:27:46 +03:00
{
2016-11-25 19:04:07 +02:00
RazeStructures ( ) : destroyed ( 0 ) { }
2009-09-22 17:27:46 +03:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-09-22 17:27:46 +03:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID tid ;
2013-02-11 22:11:34 +03:00
std : : set < BuildingID > bid ;
2012-09-15 22:16:16 +03:00
si16 destroyed ;
2009-09-24 20:54:02 +03:00
2009-09-22 17:27:46 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & tid ;
h & bid ;
h & destroyed ;
2009-09-22 17:27:46 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct SetAvailableCreatures : public CPackForClient
2008-08-01 14:21:15 +03:00
{
2016-11-25 19:04:07 +02:00
SetAvailableCreatures ( ) { }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID tid ;
2013-02-11 02:24:57 +03:00
std : : vector < std : : pair < ui32 , std : : vector < CreatureID > > > creatures ;
2008-08-01 14:21:15 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & tid ;
h & creatures ;
2008-08-10 07:46:16 +03:00
}
2012-09-15 22:16:16 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct SetHeroesInTown : public CPackForClient
2008-08-16 11:47:41 +03:00
{
2016-11-25 19:04:07 +02:00
SetHeroesInTown ( ) { }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID tid , visiting , garrison ; //id of town, visiting hero, hero in garrison
2008-08-16 11:47:41 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & tid ;
h & visiting ;
h & garrison ;
2008-08-16 11:47:41 +03:00
}
2010-12-06 01:10:02 +02:00
} ;
2010-12-17 00:32:53 +02:00
2016-11-18 16:45:59 +02:00
struct HeroRecruited : public CPackForClient
2008-10-26 22:58:34 +02:00
{
2016-11-25 19:04:07 +02:00
HeroRecruited ( ) : hid ( - 1 ) { }
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
si32 hid ; //subID of hero
ObjectInstanceID tid ;
2008-10-26 22:58:34 +02:00
int3 tile ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2008-10-26 22:58:34 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & hid ;
h & tid ;
h & tile ;
h & player ;
2008-10-26 22:58:34 +02:00
}
2012-09-15 22:16:16 +03:00
} ;
2009-02-14 21:12:40 +02:00
2016-11-18 16:45:59 +02:00
struct GiveHero : public CPackForClient
2009-02-14 21:12:40 +02:00
{
2016-11-25 19:04:07 +02:00
GiveHero ( ) { }
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ; //object id
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-02-14 21:12:40 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & id ;
h & player ;
2009-02-14 21:12:40 +02:00
}
2012-09-15 22:16:16 +03:00
} ;
2009-02-14 21:12:40 +02:00
2016-11-18 16:45:59 +02:00
struct OpenWindow : public CPackForClient
2009-06-16 14:18:14 +03:00
{
2016-11-25 19:04:07 +02:00
OpenWindow ( ) : id1 ( - 1 ) , id2 ( - 1 ) { }
2009-06-16 14:18:14 +03:00
void applyCl ( CClient * cl ) ;
2010-07-22 03:32:45 +03:00
enum EWindow { EXCHANGE_WINDOW , RECRUITMENT_FIRST , RECRUITMENT_ALL , SHIPYARD_WINDOW , THIEVES_GUILD ,
UNIVERSITY_WINDOW , HILL_FORT_WINDOW , MARKET_WINDOW , PUZZLE_MAP , TAVERN_WINDOW } ;
2009-07-06 22:41:27 +03:00
ui8 window ;
2013-02-14 02:55:42 +03:00
si32 id1 , id2 ;
2009-06-16 14:18:14 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & window ;
h & id1 ;
h & id2 ;
2009-06-16 14:18:14 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct NewObject : public CPackForClient
2009-07-26 06:33:13 +03:00
{
2016-11-25 19:04:07 +02:00
NewObject ( ) : subID ( 0 ) { }
2009-07-26 06:33:13 +03:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-07-26 06:33:13 +03:00
2013-02-11 02:24:57 +03:00
Obj ID ;
2013-02-07 20:34:50 +03:00
ui32 subID ;
2009-07-26 06:33:13 +03:00
int3 pos ;
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ; //used locally, filled during applyGs
2009-07-26 06:33:13 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & ID ;
h & subID ;
h & pos ;
2009-07-26 06:33:13 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct SetAvailableArtifacts : public CPackForClient
2010-06-26 19:02:10 +03:00
{
2016-11-25 19:04:07 +02:00
SetAvailableArtifacts ( ) : id ( 0 ) { }
2010-06-27 19:03:01 +03:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-06-26 19:02:10 +03:00
si32 id ; //two variants: id < 0: set artifact pool for Artifact Merchants in towns; id >= 0: set pool for adv. map Black Market (id is the id of Black Market instance then)
std : : vector < const CArtifact * > arts ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & id ;
h & arts ;
2010-06-26 19:02:10 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct NewArtifact : public CPackForClient
2010-11-10 02:06:25 +02:00
{
2016-11-25 19:04:07 +02:00
NewArtifact ( ) { }
2010-11-10 02:06:25 +02:00
//void applyCl(CClient *cl);
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-11-10 02:06:25 +02:00
2010-12-26 16:34:11 +02:00
ConstTransitivePtr < CArtifactInstance > art ;
2010-11-10 02:06:25 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2010-12-26 16:34:11 +02:00
h & art ;
2010-11-10 02:06:25 +02:00
}
} ;
2010-11-27 22:17:28 +02:00
struct CGarrisonOperationPack : CPackForClient
{
} ;
2016-11-18 16:45:59 +02:00
2011-01-22 05:43:20 +02:00
struct CArtifactOperationPack : CPackForClient
{
} ;
2016-11-18 16:45:59 +02:00
struct ChangeStackCount : CGarrisonOperationPack
2010-11-27 03:46:19 +02:00
{
StackLocation sl ;
TQuantity count ;
ui8 absoluteValue ; //if not -> count will be added (or subtracted if negative)
2010-11-27 22:17:28 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-11-27 03:46:19 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & sl ;
h & count ;
h & absoluteValue ;
2010-11-27 03:46:19 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct SetStackType : CGarrisonOperationPack
2010-11-27 03:46:19 +02:00
{
StackLocation sl ;
2015-09-04 17:08:25 +02:00
const CCreature * type ;
2010-11-27 03:46:19 +02:00
2010-11-27 22:17:28 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-11-27 03:46:19 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & sl ;
h & type ;
2010-11-27 03:46:19 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct EraseStack : CGarrisonOperationPack
2010-11-27 03:46:19 +02:00
{
StackLocation sl ;
2010-11-27 22:17:28 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-11-27 03:46:19 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & sl ;
}
} ;
2016-11-18 16:45:59 +02:00
struct SwapStacks : CGarrisonOperationPack
2010-11-27 03:46:19 +02:00
{
StackLocation sl1 , sl2 ;
2010-11-27 22:17:28 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-11-27 03:46:19 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & sl1 ;
h & sl2 ;
2010-11-27 03:46:19 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct InsertNewStack : CGarrisonOperationPack
2010-11-27 03:46:19 +02:00
{
StackLocation sl ;
2010-12-06 01:10:02 +02:00
CStackBasicDescriptor stack ;
2010-11-27 03:46:19 +02:00
2010-11-27 22:17:28 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-11-27 03:46:19 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & sl ;
h & stack ;
2010-11-27 03:46:19 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
///moves creatures from src stack to dst slot, may be used for merging/splittint/moving stacks
struct RebalanceStacks : CGarrisonOperationPack
2010-11-27 03:46:19 +02:00
{
StackLocation src , dst ;
TQuantity count ;
2010-11-27 22:17:28 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-11-27 03:46:19 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & src ;
h & dst ;
h & count ;
2010-11-27 03:46:19 +02:00
}
} ;
2013-06-01 01:23:53 +03:00
struct GetEngagedHeroIds : boost : : static_visitor < boost : : optional < ObjectInstanceID > >
{
boost : : optional < ObjectInstanceID > operator ( ) ( const ConstTransitivePtr < CGHeroInstance > & h ) const
{
return h - > id ;
}
boost : : optional < ObjectInstanceID > operator ( ) ( const ConstTransitivePtr < CStackInstance > & s ) const
{
if ( s - > armyObj & & s - > armyObj - > ID = = Obj : : HERO )
return s - > armyObj - > id ;
return boost : : optional < ObjectInstanceID > ( ) ;
}
} ;
2016-11-18 16:45:59 +02:00
struct PutArtifact : CArtifactOperationPack
2010-12-17 00:32:53 +02:00
{
ArtifactLocation al ;
2010-12-26 16:34:11 +02:00
ConstTransitivePtr < CArtifactInstance > art ;
2010-12-17 00:32:53 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-12-17 00:32:53 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & al ;
h & art ;
2010-12-17 00:32:53 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct EraseArtifact : CArtifactOperationPack
2010-12-17 00:32:53 +02:00
{
ArtifactLocation al ;
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-12-17 00:32:53 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & al ;
}
} ;
2016-11-18 16:45:59 +02:00
struct MoveArtifact : CArtifactOperationPack
2010-12-17 00:32:53 +02:00
{
ArtifactLocation src , dst ;
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-12-17 00:32:53 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & src ;
h & dst ;
2010-12-17 00:32:53 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct AssembledArtifact : CArtifactOperationPack
2011-01-22 05:43:20 +02:00
{
ArtifactLocation al ; //where assembly will be put
CArtifact * builtArt ;
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2011-01-22 05:43:20 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & al ;
h & builtArt ;
2011-01-22 05:43:20 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct DisassembledArtifact : CArtifactOperationPack
2011-01-22 05:43:20 +02:00
{
ArtifactLocation al ;
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2011-01-22 05:43:20 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & al ;
}
} ;
2016-11-18 16:45:59 +02:00
struct HeroVisit : CPackForClient
2011-05-10 01:20:47 +03:00
{
const CGHeroInstance * hero ;
const CGObjectInstance * obj ;
2013-09-28 03:30:12 +03:00
PlayerColor player ; //if hero was killed during the visit, its color is already reset
2011-05-10 01:20:47 +03:00
bool starting ; //false -> ending
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2011-05-10 01:20:47 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & hero ;
h & obj ;
h & player ;
h & starting ;
2011-05-10 01:20:47 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct NewTurn : public CPackForClient
2008-08-10 07:46:16 +03:00
{
2011-08-26 23:32:05 +03:00
enum weekType { NORMAL , DOUBLE_GROWTH , BONUS_GROWTH , DEITYOFFIRE , PLAGUE , NO_ACTION } ;
2010-08-22 21:21:45 +03:00
2011-08-25 18:24:37 +03:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2008-08-10 07:46:16 +03:00
struct Hero
{
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ;
ui32 move , mana ; //id is a general serial id
2008-08-10 07:46:16 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & id ;
h & move ;
h & mana ;
2008-08-10 07:46:16 +03:00
}
bool operator < ( const Hero & h ) const { return id < h . id ; }
} ;
std : : set < Hero > heroes ; //updates movement and mana points
2013-03-03 20:06:03 +03:00
std : : map < PlayerColor , TResources > res ; //player ID => resource value[res_id]
2013-03-14 23:44:00 +03:00
std : : map < ObjectInstanceID , SetAvailableCreatures > cres ; //creatures to be placed in towns
2008-08-10 07:46:16 +03:00
ui32 day ;
2010-08-26 10:23:08 +03:00
ui8 specialWeek ; //weekType
2013-02-11 02:24:57 +03:00
CreatureID creatureid ; //for creature weeks
2008-08-10 07:46:16 +03:00
2016-11-25 19:04:07 +02:00
NewTurn ( ) : day ( 0 ) , specialWeek ( 0 ) { } ;
2008-08-10 07:46:16 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & heroes ;
h & cres ;
h & res ;
h & day ;
h & specialWeek ;
h & creatureid ;
2008-08-01 14:21:15 +03:00
}
2012-09-15 22:16:16 +03:00
} ;
2009-03-07 00:11:17 +02:00
struct InfoWindow : public CPackForClient //103 - displays simple info window
2008-07-31 00:27:15 +03:00
{
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2008-07-31 00:27:15 +03:00
MetaString text ;
std : : vector < Component > components ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-04-22 21:48:56 +03:00
ui16 soundID ;
2008-07-31 00:27:15 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & text ;
h & components ;
h & player ;
h & soundID ;
2008-07-31 00:27:15 +03:00
}
2012-09-15 22:16:16 +03:00
InfoWindow ( )
{
soundID = 0 ;
2010-03-11 01:16:30 +02:00
}
2008-07-30 20:51:19 +03:00
} ;
2010-05-02 21:20:26 +03:00
namespace ObjProperty
{
2011-05-28 04:02:28 +03:00
enum { OWNER = 1 , BLOCKVIS = 2 , PRIMARY_STACK_COUNT = 3 , VISITORS = 4 , VISITED = 5 , ID = 6 , AVAILABLE_CREATURE = 7 , SUBID = 8 ,
2013-04-20 14:34:01 +03:00
MONSTER_COUNT = 10 , MONSTER_POWER = 11 , MONSTER_EXP = 12 , MONSTER_RESTORE_TYPE = 13 , MONSTER_REFUSED_JOIN ,
2016-08-30 04:13:45 +02:00
2013-02-14 16:19:03 +03:00
//town-specific
STRUCTURE_ADD_VISITING_HERO , STRUCTURE_CLEAR_VISITORS , STRUCTURE_ADD_GARRISONED_HERO , //changing buildings state
2013-02-19 01:37:22 +03:00
BONUS_VALUE_FIRST , BONUS_VALUE_SECOND , //used in Rampart for special building that generates resources (storing resource type and quantity)
2013-02-14 16:19:03 +03:00
2013-02-19 01:37:22 +03:00
//creature-bank specific
2014-06-22 13:39:40 +03:00
BANK_DAYCOUNTER , BANK_RESET , BANK_CLEAR ,
2013-09-17 15:02:33 +03:00
2014-04-07 20:32:15 +03:00
//object with reward
REWARD_RESET , REWARD_SELECT
2013-02-14 16:19:03 +03:00
} ;
2010-05-02 21:20:26 +03:00
}
2016-11-18 16:45:59 +02:00
struct SetObjectProperty : public CPackForClient
2008-07-30 20:51:19 +03:00
{
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-07-30 15:49:45 +03:00
void applyCl ( CClient * cl ) ;
2009-03-07 00:11:17 +02:00
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ;
2014-04-07 20:32:15 +03:00
ui8 what ; // see ObjProperty enum
2008-07-30 20:51:19 +03:00
ui32 val ;
2016-11-25 19:04:07 +02:00
SetObjectProperty ( ) : what ( 0 ) , val ( 0 ) { }
2016-11-18 16:45:59 +02:00
SetObjectProperty ( ObjectInstanceID ID , ui8 What , ui32 Val ) : id ( ID ) , what ( What ) , val ( Val ) { } ;
2012-09-15 22:16:16 +03:00
2008-07-30 20:51:19 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & id ;
h & what ;
h & val ;
2008-07-30 20:51:19 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct ChangeObjectVisitors : public CPackForClient
2014-04-07 20:32:15 +03:00
{
enum VisitMode
{
2016-09-20 22:05:44 +02:00
VISITOR_ADD , // mark hero as one that have visited this object
VISITOR_ADD_TEAM , // mark team as one that have visited this object
VISITOR_REMOVE , // unmark visitor, reversed to ADD
VISITOR_CLEAR // clear all visitors from this object (object reset)
2014-04-07 20:32:15 +03:00
} ;
ui32 mode ; // uses VisitMode enum
ObjectInstanceID object ;
ObjectInstanceID hero ; // note: hero owner will be also marked as "visited" this object
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2014-04-11 22:49:25 +03:00
ChangeObjectVisitors ( )
2016-11-25 19:04:07 +02:00
: mode ( VISITOR_CLEAR )
{ }
2014-04-11 22:49:25 +03:00
2014-04-07 20:32:15 +03:00
ChangeObjectVisitors ( ui32 mode , ObjectInstanceID object , ObjectInstanceID heroID = ObjectInstanceID ( - 1 ) ) :
mode ( mode ) ,
object ( object ) ,
hero ( heroID )
2016-11-25 19:04:07 +02:00
{ }
2014-04-07 20:32:15 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & object ;
h & hero ;
h & mode ;
2014-04-07 20:32:15 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct PrepareHeroLevelUp : public CPackForClient
2016-09-07 23:24:05 +02:00
{
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
const CGHeroInstance * hero ;
/// Do not serialize, used by server only
std : : vector < SecondarySkill > skills ;
2016-11-25 19:04:07 +02:00
PrepareHeroLevelUp ( ) : hero ( nullptr ) { }
2016-09-07 23:24:05 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & hero ;
}
} ;
2016-11-18 16:45:59 +02:00
struct HeroLevelUp : public Query
2008-08-04 18:56:36 +03:00
{
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-04-20 14:34:01 +03:00
const CGHeroInstance * hero ;
2013-02-04 22:43:16 +03:00
PrimarySkill : : PrimarySkill primskill ;
2013-02-12 22:49:40 +03:00
std : : vector < SecondarySkill > skills ;
2008-08-04 18:56:36 +03:00
2016-11-25 19:04:07 +02:00
HeroLevelUp ( ) : hero ( nullptr ) , primskill ( PrimarySkill : : ATTACK ) { }
2012-09-15 22:16:16 +03:00
2008-08-04 18:56:36 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & queryID ;
h & hero ;
h & primskill ;
h & skills ;
2008-08-04 18:56:36 +03:00
}
} ;
2008-08-13 03:44:31 +03:00
2012-05-07 15:54:22 +03:00
struct CommanderLevelUp : public Query
{
2012-05-16 20:29:05 +03:00
void applyCl ( CClient * cl ) ;
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2012-05-07 15:54:22 +03:00
2013-04-20 14:34:01 +03:00
const CGHeroInstance * hero ;
2012-05-18 17:02:27 +03:00
2012-07-03 11:07:34 +03:00
std : : vector < ui32 > skills ; //0-5 - secondary skills, val-100 - special skill
2012-05-07 15:54:22 +03:00
2016-11-25 19:04:07 +02:00
CommanderLevelUp ( ) : hero ( nullptr ) { }
2012-05-07 15:54:22 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & queryID ;
h & hero ;
h & skills ;
2012-05-07 15:54:22 +03:00
}
} ;
2009-04-11 04:32:50 +03:00
//A dialog that requires making decision by player - it may contain components to choose between or has yes/no options
//Client responds with QueryReply, where answer: 0 - cancel pressed, choice doesn't matter; 1/2/... - first/second/... component selected and OK pressed
//Until sending reply player won't be allowed to take any actions
2016-11-18 16:45:59 +02:00
struct BlockingDialog : public Query
2008-08-13 03:44:31 +03:00
{
2009-04-11 04:32:50 +03:00
enum { ALLOW_CANCEL = 1 , SELECTION = 2 } ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2008-08-13 03:44:31 +03:00
MetaString text ;
std : : vector < Component > components ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-04-11 04:32:50 +03:00
ui8 flags ;
2009-04-22 21:48:56 +03:00
ui16 soundID ;
2008-08-13 03:44:31 +03:00
2009-04-11 04:32:50 +03:00
bool cancel ( ) const
2008-08-13 03:44:31 +03:00
{
2009-04-11 04:32:50 +03:00
return flags & ALLOW_CANCEL ;
}
bool selection ( ) const
{
return flags & SELECTION ;
2008-08-13 03:44:31 +03:00
}
2008-08-22 15:21:09 +03:00
2009-04-11 04:32:50 +03:00
BlockingDialog ( bool yesno , bool Selection )
{
2009-04-14 13:46:42 +03:00
flags = 0 ;
2009-04-22 21:48:56 +03:00
soundID = 0 ;
2009-04-11 04:32:50 +03:00
if ( yesno ) flags | = ALLOW_CANCEL ;
if ( Selection ) flags | = SELECTION ;
}
BlockingDialog ( )
{
2009-04-14 13:46:42 +03:00
flags = 0 ;
2009-04-22 21:48:56 +03:00
soundID = 0 ;
2009-04-11 04:32:50 +03:00
} ;
2008-08-22 15:21:09 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & queryID ;
h & text ;
h & components ;
h & player ;
h & flags ;
h & soundID ;
2008-08-22 15:21:09 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct GarrisonDialog : public Query
2009-04-12 03:58:41 +03:00
{
2016-11-25 19:04:07 +02:00
GarrisonDialog ( ) : removableUnits ( false ) { }
2009-04-12 03:58:41 +03:00
void applyCl ( CClient * cl ) ;
2013-02-14 02:55:42 +03:00
ObjectInstanceID objid , hid ;
2009-09-09 20:49:03 +03:00
bool removableUnits ;
2009-04-12 03:58:41 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & queryID ;
h & objid ;
h & hid ;
h & removableUnits ;
2009-04-12 03:58:41 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct ExchangeDialog : public Query
2013-05-27 13:53:28 +03:00
{
2016-11-26 19:49:26 +02:00
ExchangeDialog ( )
{
heroes = { nullptr , nullptr } ;
}
2013-05-27 13:53:28 +03:00
void applyCl ( CClient * cl ) ;
std : : array < const CGHeroInstance * , 2 > heroes ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & queryID ;
h & heroes ;
2013-05-27 13:53:28 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct TeleportDialog : public Query
2015-03-08 15:37:33 +02:00
{
2016-11-26 19:49:26 +02:00
TeleportDialog ( )
: hero ( nullptr ) , impassable ( false )
{ }
2015-03-08 15:37:33 +02:00
TeleportDialog ( const CGHeroInstance * Hero , TeleportChannelID Channel )
: hero ( Hero ) , channel ( Channel ) , impassable ( false )
2016-11-26 19:49:26 +02:00
{ }
2015-03-08 15:37:33 +02:00
void applyCl ( CClient * cl ) ;
const CGHeroInstance * hero ;
TeleportChannelID channel ;
2015-11-28 01:41:30 +02:00
TTeleportExitsList exits ;
2015-03-08 15:37:33 +02:00
bool impassable ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & queryID ;
h & hero ;
h & channel ;
h & exits ;
h & impassable ;
2015-03-08 15:37:33 +02:00
}
} ;
2017-06-06 06:53:51 +02:00
struct MapObjectSelectDialog : public Query
{
PlayerColor player ;
Component icon ;
MetaString title ;
MetaString description ;
std : : vector < ObjectInstanceID > objects ;
MapObjectSelectDialog ( ) { } ;
void applyCl ( CClient * cl ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & queryID ;
h & player ;
h & icon ;
h & title ;
h & description ;
h & objects ;
2017-06-06 06:53:51 +02:00
}
} ;
2008-08-04 18:56:36 +03:00
struct BattleInfo ;
2016-11-18 16:45:59 +02:00
struct BattleStart : public CPackForClient
2008-08-04 18:56:36 +03:00
{
2016-11-26 19:49:26 +02:00
BattleStart ( )
: info ( nullptr )
{ }
2013-09-14 22:09:35 +03:00
void applyFirstCl ( CClient * cl ) ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2008-08-04 18:56:36 +03:00
BattleInfo * info ;
2012-09-15 22:16:16 +03:00
2008-08-04 18:56:36 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & info ;
}
} ;
2016-11-26 19:49:26 +02:00
2016-11-18 16:45:59 +02:00
struct BattleNextRound : public CPackForClient
2012-09-15 22:16:16 +03:00
{
2016-11-26 19:49:26 +02:00
BattleNextRound ( ) : round ( 0 ) { } ;
2010-05-07 15:29:41 +03:00
void applyFirstCl ( CClient * cl ) ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2008-08-04 18:56:36 +03:00
si32 round ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & round ;
}
} ;
2016-11-26 19:49:26 +02:00
2016-11-18 16:45:59 +02:00
struct BattleSetActiveStack : public CPackForClient
2008-08-04 18:56:36 +03:00
{
2012-08-27 15:34:43 +03:00
BattleSetActiveStack ( )
{
2016-11-26 19:49:26 +02:00
stack = 0 ;
2012-08-27 15:34:43 +03:00
askPlayerInterface = true ;
}
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2008-08-04 18:56:36 +03:00
ui32 stack ;
2012-08-27 15:34:43 +03:00
ui8 askPlayerInterface ;
2008-08-04 18:56:36 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & stack ;
h & askPlayerInterface ;
2008-08-04 18:56:36 +03:00
}
} ;
2016-11-26 19:49:26 +02:00
2016-11-18 16:45:59 +02:00
struct BattleResult : public CPackForClient
2008-08-04 18:56:36 +03:00
{
2012-05-01 11:52:22 +03:00
enum EResult { NORMAL = 0 , ESCAPE = 1 , SURRENDER = 2 } ;
2016-11-26 19:49:26 +02:00
BattleResult ( )
: result ( NORMAL ) , winner ( 2 )
{
exp [ 0 ] = 0 ;
exp [ 1 ] = 0 ;
} ;
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
2009-03-07 19:08:40 +02:00
void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2013-02-04 22:43:16 +03:00
EResult result ;
2008-08-04 18:56:36 +03:00
ui8 winner ; //0 - attacker, 1 - defender, [2 - draw (should be possible?)]
2009-09-24 16:23:52 +03:00
std : : map < ui32 , si32 > casualties [ 2 ] ; //first => casualties of attackers - map crid => number
2012-09-23 21:01:04 +03:00
TExpType exp [ 2 ] ; //exp for attacker and defender
2013-02-14 02:55:42 +03:00
std : : set < ArtifactInstanceID > artifacts ; //artifacts taken from loser to winner - currently unused
2008-08-04 18:56:36 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & result ;
h & winner ;
h & casualties [ 0 ] ;
h & casualties [ 1 ] ;
h & exp ;
h & artifacts ;
2008-08-04 18:56:36 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct BattleStackMoved : public CPackForClient
2008-08-05 02:04:15 +03:00
{
2011-01-09 19:41:46 +02:00
ui32 stack ;
2011-12-22 16:05:19 +03:00
std : : vector < BattleHex > tilesToMove ;
2011-08-01 20:36:18 +03:00
ui8 distance , teleporting ;
2016-11-26 19:49:26 +02:00
BattleStackMoved ( )
: stack ( 0 ) , distance ( 0 ) , teleporting ( 0 )
{ } ;
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
2009-03-07 19:08:40 +02:00
void applyGs ( CGameState * gs ) ;
2008-08-05 02:04:15 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & stack ;
h & tilesToMove ;
h & distance ;
2008-08-05 02:04:15 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct StacksHealedOrResurrected : public CPackForClient
2010-05-07 15:29:41 +03:00
{
2016-11-26 19:49:26 +02:00
StacksHealedOrResurrected ( )
2017-07-04 13:24:46 +02:00
: lifeDrain ( false ) , tentHealing ( false ) , drainedFrom ( 0 ) , cure ( false )
2016-11-26 19:49:26 +02:00
{ }
2010-05-07 15:29:41 +03:00
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2010-05-07 15:29:41 +03:00
void applyCl ( CClient * cl ) ;
2017-07-04 13:24:46 +02:00
std : : vector < CHealthInfo > healedStacks ;
2017-01-20 16:48:45 +02:00
bool lifeDrain ; //if true, this heal is an effect of life drain or soul steal
2013-02-12 22:49:40 +03:00
bool tentHealing ; //if true, than it's healing via First Aid Tent
2017-01-20 16:48:45 +02:00
si32 drainedFrom ; //if life drain or soul steal - then stack life was drain from, if tentHealing - stack that is a healer
2016-09-24 09:06:24 +02:00
bool cure ; //archangel cast also remove negative effects
2010-05-07 15:29:41 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & healedStacks ;
h & lifeDrain ;
h & tentHealing ;
h & drainedFrom ;
2017-07-04 13:24:46 +02:00
h & cure ;
2010-05-07 15:29:41 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct BattleStackAttacked : public CPackForClient
2008-08-09 02:02:32 +03:00
{
2014-11-27 23:36:14 +02:00
BattleStackAttacked ( ) :
2016-11-26 19:49:26 +02:00
stackAttacked ( 0 ) , attackerID ( 0 ) ,
2017-07-04 13:24:46 +02:00
killedAmount ( 0 ) , damageAmount ( 0 ) ,
newHealth ( ) ,
2016-11-26 19:49:26 +02:00
flags ( 0 ) , effect ( 0 ) , spellID ( SpellID : : NONE )
{ } ;
2012-02-18 20:39:47 +03:00
void applyFirstCl ( CClient * cl ) ;
//void applyCl(CClient *cl);
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
2009-09-15 15:20:11 +03:00
ui32 stackAttacked , attackerID ;
2017-07-04 13:24:46 +02:00
ui32 killedAmount ;
si32 damageAmount ;
CHealthInfo newHealth ;
2014-11-27 23:36:14 +02:00
enum EFlags { KILLED = 1 , EFFECT = 2 /*deprecated */ , SECONDARY = 4 , REBIRTH = 8 , CLONE_KILLED = 16 , SPELL_EFFECT = 32 /*, BONUS_EFFECT = 64 */ } ;
ui32 flags ; //uses EFlags (above)
2011-02-24 17:33:03 +02:00
ui32 effect ; //set only if flag EFFECT is set
2014-11-27 23:36:14 +02:00
SpellID spellID ; //only if flag SPELL_EFFECT is set
2010-05-07 15:29:41 +03:00
std : : vector < StacksHealedOrResurrected > healedStacks ; //used when life drain
2008-08-09 02:02:32 +03:00
2009-03-24 23:28:17 +02:00
bool killed ( ) const //if target stack was killed
2008-08-09 02:02:32 +03:00
{
2012-02-18 20:39:47 +03:00
return flags & KILLED | | flags & CLONE_KILLED ;
}
bool cloneKilled ( ) const
{
return flags & CLONE_KILLED ;
2008-08-09 02:02:32 +03:00
}
2010-05-07 15:29:41 +03:00
bool isEffect ( ) const //if stack has been attacked by a spell
2008-10-18 14:41:24 +03:00
{
2011-02-24 17:33:03 +02:00
return flags & EFFECT ;
2008-10-18 14:41:24 +03:00
}
2011-07-02 19:49:22 +03:00
bool isSecondary ( ) const //if stack was not a primary target (receives no spell effects)
{
return flags & SECONDARY ;
}
2014-11-27 23:36:14 +02:00
///Attacked with spell (SPELL_LIKE_ATTACK)
bool isSpell ( ) const
{
return flags & SPELL_EFFECT ;
}
2013-08-09 20:37:41 +03:00
bool willRebirth ( ) const //resurrection, e.g. Phoenix
2011-07-08 17:54:20 +03:00
{
return flags & REBIRTH ;
}
2010-05-07 15:29:41 +03:00
bool lifeDrain ( ) const //if this attack involves life drain effect
{
return healedStacks . size ( ) > 0 ;
}
2008-08-09 02:02:32 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & stackAttacked ;
h & attackerID ;
h & newHealth ;
h & flags ;
h & killedAmount ;
h & damageAmount ;
h & effect ;
h & healedStacks ;
2014-11-27 23:36:14 +02:00
h & spellID ;
2008-08-09 02:02:32 +03:00
}
2009-03-21 14:49:58 +02:00
bool operator < ( const BattleStackAttacked & b ) const
{
return stackAttacked < b . stackAttacked ;
}
2008-08-09 02:02:32 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct BattleAttack : public CPackForClient
2008-08-09 02:02:32 +03:00
{
2016-11-26 19:49:26 +02:00
BattleAttack ( )
: stackAttacking ( 0 ) , flags ( 0 ) , spellID ( SpellID : : NONE )
{ } ;
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2010-02-20 15:24:38 +02:00
std : : vector < BattleStackAttacked > bsa ;
2008-08-09 02:02:32 +03:00
ui32 stackAttacking ;
2014-11-27 23:36:14 +02:00
ui32 flags ; //uses Eflags (below)
enum EFlags { SHOT = 1 , COUNTER = 2 , LUCKY = 4 , UNLUCKY = 8 , BALLISTA_DOUBLE_DMG = 16 , DEATH_BLOW = 32 , SPELL_LIKE = 64 } ;
2016-08-30 04:13:45 +02:00
SpellID spellID ; //for SPELL_LIKE
2008-08-09 02:02:32 +03:00
2010-12-04 21:44:23 +02:00
bool shot ( ) const //distance attack - decrease number of shots
2008-08-09 02:02:32 +03:00
{
2011-02-24 17:33:03 +02:00
return flags & SHOT ;
2008-08-09 02:02:32 +03:00
}
2010-12-04 21:44:23 +02:00
bool counter ( ) const //is it counterattack?
2008-09-12 11:51:46 +03:00
{
2011-02-24 17:33:03 +02:00
return flags & COUNTER ;
2008-09-12 11:51:46 +03:00
}
2010-12-04 21:44:23 +02:00
bool lucky ( ) const
2009-03-21 14:49:58 +02:00
{
2011-02-24 17:33:03 +02:00
return flags & LUCKY ;
2009-03-21 14:49:58 +02:00
}
2010-12-04 21:44:23 +02:00
bool unlucky ( ) const
2008-08-09 02:02:32 +03:00
{
2011-02-24 17:33:03 +02:00
return flags & UNLUCKY ;
}
bool ballistaDoubleDmg ( ) const //if it's ballista attack and does double dmg
{
return flags & BALLISTA_DOUBLE_DMG ;
2008-08-09 02:02:32 +03:00
}
2011-07-06 20:00:45 +03:00
bool deathBlow ( ) const
{
return flags & DEATH_BLOW ;
}
2014-11-27 23:36:14 +02:00
bool spellLike ( ) const
{
return flags & SPELL_LIKE ;
}
2008-08-09 02:02:32 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & bsa ;
h & stackAttacking ;
h & flags ;
h & spellID ;
2008-08-09 02:02:32 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct StartAction : public CPackForClient
2008-09-29 00:01:49 +03:00
{
2016-11-18 16:45:59 +02:00
StartAction ( ) { } ;
StartAction ( const BattleAction & act ) { ba = act ; } ;
2009-03-07 00:11:17 +02:00
void applyFirstCl ( CClient * cl ) ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
BattleAction ba ;
2008-09-29 00:01:49 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & ba ;
}
} ;
2016-11-18 16:45:59 +02:00
struct EndAction : public CPackForClient
2008-10-18 14:41:24 +03:00
{
2016-11-18 16:45:59 +02:00
EndAction ( ) { } ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2009-03-07 00:25:19 +02:00
2009-03-07 00:11:17 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
}
} ;
2016-11-18 16:45:59 +02:00
struct BattleSpellCast : public CPackForClient
2008-10-18 14:41:24 +03:00
{
2015-09-14 05:21:49 +02:00
///custom effect (resistance, reflection, etc)
struct CustomEffect
{
/// WoG AC format
2016-08-30 04:13:45 +02:00
ui32 effect ;
2015-09-14 05:21:49 +02:00
ui32 stack ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & effect ;
h & stack ;
2016-08-30 04:13:45 +02:00
}
2015-09-14 05:21:49 +02:00
} ;
2016-11-26 19:49:26 +02:00
BattleSpellCast ( )
{
side = 0 ;
id = 0 ;
skill = 0 ;
manaGained = 0 ;
casterStack = - 1 ;
castByHero = true ;
2017-09-08 13:25:12 +02:00
activeCast = true ;
2016-11-26 19:49:26 +02:00
} ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2017-09-08 13:25:12 +02:00
bool activeCast ;
2009-05-12 06:35:51 +03:00
ui8 side ; //which hero did cast spell: 0 - attacker, 1 - defender
2009-08-06 17:02:21 +03:00
ui32 id ; //id of spell
ui8 skill ; //caster's skill level
2011-10-09 14:23:24 +03:00
ui8 manaGained ; //mana channeling ability
2011-12-22 16:05:19 +03:00
BattleHex tile ; //destination tile (may not be set in some global/mass spells
2015-09-14 05:21:49 +02:00
std : : vector < CustomEffect > customEffects ;
2009-08-04 20:05:49 +03:00
std : : set < ui32 > affectedCres ; //ids of creatures affected by this spell, generally used if spell does not set any effect (like dispel or cure)
2014-11-27 19:47:37 +02:00
si32 casterStack ; // -1 if not cated by creature, >=0 caster stack ID
2015-09-21 11:19:35 +02:00
bool castByHero ; //if true - spell has been cast by hero, otherwise by a creature
2016-09-10 17:23:55 +02:00
std : : vector < MetaString > battleLog ;
2008-10-18 14:41:24 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & side ;
h & id ;
h & skill ;
h & manaGained ;
h & tile ;
h & customEffects ;
h & affectedCres ;
h & casterStack ;
h & castByHero ;
2016-09-10 17:23:55 +02:00
h & battleLog ;
2017-09-08 13:25:12 +02:00
h & activeCast ;
2008-10-18 14:41:24 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct SetStackEffect : public CPackForClient
2008-11-09 00:29:19 +02:00
{
2016-11-18 16:45:59 +02:00
SetStackEffect ( ) { } ;
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-03-07 00:11:17 +02:00
void applyCl ( CClient * cl ) ;
2010-02-20 15:24:38 +02:00
std : : vector < ui32 > stacks ; //affected stacks (IDs)
2016-11-02 19:11:01 +02:00
//regular effects
2011-01-20 21:57:12 +02:00
std : : vector < Bonus > effect ; //bonuses to apply
2011-04-23 13:27:44 +03:00
std : : vector < std : : pair < ui32 , Bonus > > uniqueBonuses ; //bonuses per single stack
2016-11-02 19:11:01 +02:00
//cumulative effects
std : : vector < Bonus > cumulativeEffects ; //bonuses to apply
std : : vector < std : : pair < ui32 , Bonus > > cumulativeUniqueBonuses ; //bonuses per single stack
2017-07-10 03:05:36 +02:00
std : : vector < MetaString > battleLog ;
2008-11-09 00:29:19 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & stacks ;
h & effect ;
h & uniqueBonuses ;
h & cumulativeEffects ;
h & cumulativeUniqueBonuses ;
2017-07-10 03:05:36 +02:00
h & battleLog ;
2008-11-09 00:29:19 +02:00
}
} ;
2016-11-18 16:45:59 +02:00
struct StacksInjured : public CPackForClient
2009-04-16 03:28:54 +03:00
{
2016-11-18 16:45:59 +02:00
StacksInjured ( ) { }
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-04-16 03:28:54 +03:00
void applyCl ( CClient * cl ) ;
2010-02-20 15:24:38 +02:00
std : : vector < BattleStackAttacked > stacks ;
2009-04-16 03:28:54 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & stacks ;
}
} ;
2016-11-18 16:45:59 +02:00
struct BattleResultsApplied : public CPackForClient
2009-08-04 02:53:18 +03:00
{
2016-11-18 16:45:59 +02:00
BattleResultsApplied ( ) { }
2009-08-04 02:53:18 +03:00
2013-03-03 20:06:03 +03:00
PlayerColor player1 , player2 ;
2009-08-04 02:53:18 +03:00
void applyCl ( CClient * cl ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player1 ;
h & player2 ;
2009-08-04 02:53:18 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct ObstaclesRemoved : public CPackForClient
2009-08-19 13:59:42 +03:00
{
2016-11-18 16:45:59 +02:00
ObstaclesRemoved ( ) { }
2009-08-19 13:59:42 +03:00
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-08-19 13:59:42 +03:00
void applyCl ( CClient * cl ) ;
std : : set < si32 > obstacles ; //uniqueIDs of removed obstacles
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & obstacles ;
}
2009-09-01 16:54:13 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct ELF_VISIBILITY CatapultAttack : public CPackForClient
2009-09-01 16:54:13 +03:00
{
2013-08-06 14:20:28 +03:00
struct AttackInfo
{
si16 destinationTile ;
ui8 attackedPart ;
ui8 damageDealt ;
2013-12-08 20:54:13 +03:00
DLL_LINKAGE std : : string toString ( ) const ;
2013-08-06 14:20:28 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & destinationTile ;
h & attackedPart ;
h & damageDealt ;
2013-08-06 14:20:28 +03:00
}
} ;
2014-06-24 17:17:25 +03:00
DLL_LINKAGE CatapultAttack ( ) ;
DLL_LINKAGE ~ CatapultAttack ( ) ;
2009-09-01 16:54:13 +03:00
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2009-09-01 16:54:13 +03:00
void applyCl ( CClient * cl ) ;
2013-12-08 20:54:13 +03:00
DLL_LINKAGE std : : string toString ( ) const override ;
2009-09-01 16:54:13 +03:00
2013-08-06 14:20:28 +03:00
std : : vector < AttackInfo > attackedParts ;
2009-09-24 16:44:55 +03:00
int attacker ; //if -1, then a spell caused this
2009-09-01 16:54:13 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & attackedParts ;
h & attacker ;
2009-09-01 16:54:13 +03:00
}
2009-09-05 17:10:26 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct BattleStacksRemoved : public CPackForClient
2009-09-05 17:10:26 +03:00
{
2016-11-18 16:45:59 +02:00
BattleStacksRemoved ( ) { }
2009-09-05 17:10:26 +03:00
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2015-10-06 02:46:35 +02:00
void applyFirstCl ( CClient * cl ) ; //inform client before stack objects are destroyed
2009-09-05 17:10:26 +03:00
std : : set < ui32 > stackIDs ; //IDs of removed stacks
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & stackIDs ;
}
2009-08-19 13:59:42 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct BattleStackAdded : public CPackForClient
2011-10-01 22:56:54 +03:00
{
2016-11-26 19:49:26 +02:00
BattleStackAdded ( )
2017-07-01 10:34:00 +02:00
: side ( 0 ) , amount ( 0 ) , pos ( 0 ) , summoned ( 0 ) , newStackID ( 0 )
2016-11-26 19:49:26 +02:00
{ } ;
2011-10-01 22:56:54 +03:00
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2011-10-01 22:56:54 +03:00
void applyCl ( CClient * cl ) ;
2017-07-01 10:34:00 +02:00
ui8 side ;
2013-02-11 02:24:57 +03:00
CreatureID creID ;
2011-10-01 22:56:54 +03:00
int amount ;
int pos ;
int summoned ; //if true, remove it afterwards
2016-08-30 04:13:45 +02:00
2014-11-25 11:26:32 +02:00
///Actual stack ID, set on apply, do not serialize
2016-08-30 04:13:45 +02:00
int newStackID ;
2011-10-01 22:56:54 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & side ;
h & creID ;
h & amount ;
h & pos ;
h & summoned ;
2011-10-01 22:56:54 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct BattleSetStackProperty : public CPackForClient
2011-10-02 16:59:12 +03:00
{
2016-11-26 19:49:26 +02:00
BattleSetStackProperty ( )
: stackID ( 0 ) , which ( CASTS ) , val ( 0 ) , absolute ( 0 )
{ } ;
2011-10-02 16:59:12 +03:00
2015-09-14 19:13:26 +02:00
enum BattleStackProperty { CASTS , ENCHANTER_COUNTER , UNBIND , CLONED , HAS_CLONE } ;
2011-10-02 16:59:12 +03:00
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2011-10-02 16:59:12 +03:00
int stackID ;
2013-02-04 22:43:16 +03:00
BattleStackProperty which ;
2011-10-02 16:59:12 +03:00
int val ;
int absolute ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & stackID ;
h & which ;
h & val ;
h & absolute ;
2011-10-02 16:59:12 +03:00
}
} ;
2016-11-26 19:49:26 +02:00
///activated at the beginning of turn
2016-11-18 16:45:59 +02:00
struct BattleTriggerEffect : public CPackForClient
2016-11-26 19:49:26 +02:00
{
BattleTriggerEffect ( )
: stackID ( 0 ) , effect ( 0 ) , val ( 0 ) , additionalInfo ( 0 )
{ } ;
2011-10-08 16:02:58 +03:00
2011-12-14 00:23:17 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ; //effect
2011-10-08 16:02:58 +03:00
void applyCl ( CClient * cl ) ; //play animations & stuff
int stackID ;
2016-11-18 16:45:59 +02:00
int effect ; //use corresponding Bonus type
2011-10-08 16:02:58 +03:00
int val ;
int additionalInfo ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & stackID ;
h & effect ;
h & val ;
h & additionalInfo ;
2011-10-08 16:02:58 +03:00
}
} ;
2016-11-18 16:45:59 +02:00
struct BattleObstaclePlaced : public CPackForClient
2016-11-26 19:49:26 +02:00
{
2016-11-18 16:45:59 +02:00
BattleObstaclePlaced ( ) { } ;
2012-05-05 00:16:39 +03:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ; //effect
void applyCl ( CClient * cl ) ; //play animations & stuff
2015-12-29 04:43:33 +02:00
std : : shared_ptr < CObstacleInstance > obstacle ;
2012-05-05 00:16:39 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & obstacle ;
}
} ;
2016-11-18 16:45:59 +02:00
struct BattleUpdateGateState : public CPackForClient
2016-01-29 21:35:11 +02:00
{
2016-11-26 19:49:26 +02:00
BattleUpdateGateState ( ) : state ( EGateState : : NONE ) { } ;
2016-01-29 21:35:11 +02:00
2016-02-10 06:10:32 +02:00
void applyFirstCl ( CClient * cl ) ;
2016-01-29 21:35:11 +02:00
DLL_LINKAGE void applyGs ( CGameState * gs ) ;
2016-02-13 16:40:31 +02:00
EGateState state ;
2016-01-29 21:35:11 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & state ;
}
} ;
2016-11-18 16:45:59 +02:00
struct ShowInInfobox : public CPackForClient
2008-08-04 18:56:36 +03:00
{
2016-11-18 16:45:59 +02:00
ShowInInfobox ( ) { } ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2008-08-04 18:56:36 +03:00
Component c ;
MetaString text ;
2009-03-07 00:25:19 +02:00
void applyCl ( CClient * cl ) ;
2008-08-04 18:56:36 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player ;
h & c ;
h & text ;
2008-08-04 18:56:36 +03:00
}
2010-05-16 16:42:19 +03:00
} ;
2016-11-18 16:45:59 +02:00
struct AdvmapSpellCast : public CPackForClient
2010-05-16 16:42:19 +03:00
{
2016-11-26 19:49:26 +02:00
AdvmapSpellCast ( ) : caster ( nullptr ) { }
const CGHeroInstance * caster ; //todo: replace with ObjectInstanceID
2013-03-03 20:06:03 +03:00
SpellID spellID ;
2010-05-16 16:42:19 +03:00
void applyCl ( CClient * cl ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & caster ;
h & spellID ;
2010-05-16 16:42:19 +03:00
}
2008-12-26 17:00:34 +02:00
} ;
2009-03-09 12:37:49 +02:00
2016-11-18 16:45:59 +02:00
struct ShowWorldViewEx : public CPackForClient
2015-02-26 16:15:17 +02:00
{
PlayerColor player ;
2016-08-30 04:13:45 +02:00
2015-02-26 16:15:17 +02:00
std : : vector < ObjectPosInfo > objectPositions ;
2016-08-30 04:13:45 +02:00
2016-11-18 16:45:59 +02:00
ShowWorldViewEx ( ) { }
2016-08-30 04:13:45 +02:00
2015-02-26 16:15:17 +02:00
void applyCl ( CClient * cl ) ;
2016-08-30 04:13:45 +02:00
2015-02-26 16:15:17 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & player ;
h & objectPositions ;
2016-08-30 04:13:45 +02:00
}
2015-02-26 16:15:17 +02:00
} ;
2009-03-09 12:37:49 +02:00
/***********************************************************************************************************/
2011-05-22 21:46:52 +03:00
struct CommitPackage : public CPackForServer
{
2011-06-11 02:50:32 +03:00
bool freePack ; //for local usage, DO NOT serialize
2011-05-22 21:46:52 +03:00
bool applyGh ( CGameHandler * gh ) ;
CPackForClient * packToCommit ;
2011-06-11 02:50:32 +03:00
CommitPackage ( )
{
freePack = true ;
2016-11-26 19:49:26 +02:00
packToCommit = nullptr ;
2011-06-11 02:50:32 +03:00
}
2011-05-22 21:46:52 +03:00
~ CommitPackage ( )
{
2011-06-11 02:50:32 +03:00
if ( freePack )
delete packToCommit ;
2011-05-22 21:46:52 +03:00
}
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & packToCommit ;
}
} ;
2009-03-09 12:37:49 +02:00
struct CloseServer : public CPackForServer
{
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{ }
} ;
2017-05-31 08:45:26 +02:00
struct LeaveGame : public CPackForServer
{
bool applyGh ( CGameHandler * gh ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{ }
} ;
2009-03-09 12:37:49 +02:00
struct EndTurn : public CPackForServer
{
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{ }
} ;
struct DismissHero : public CPackForServer
{
DismissHero ( ) { } ;
2013-02-14 02:55:42 +03:00
DismissHero ( ObjectInstanceID HID ) : hid ( HID ) { } ;
ObjectInstanceID hid ;
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & hid ;
}
} ;
struct MoveHero : public CPackForServer
{
2016-11-26 19:49:26 +02:00
MoveHero ( ) : transit ( false ) { } ;
2015-03-08 16:04:09 +02:00
MoveHero ( const int3 & Dest , ObjectInstanceID HID , bool Transit ) : dest ( Dest ) , hid ( HID ) , transit ( Transit ) { } ;
2009-03-09 12:37:49 +02:00
int3 dest ;
2013-02-14 02:55:42 +03:00
ObjectInstanceID hid ;
2015-03-08 16:04:09 +02:00
bool transit ;
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
2010-06-30 22:27:35 +03:00
{
2017-07-31 15:35:42 +02:00
h & dest ;
h & hid ;
h & transit ;
2010-06-30 22:27:35 +03:00
}
} ;
struct CastleTeleportHero : public CPackForServer
{
2016-11-26 19:49:26 +02:00
CastleTeleportHero ( ) : source ( 0 ) { } ;
2013-02-14 02:55:42 +03:00
CastleTeleportHero ( const ObjectInstanceID HID , ObjectInstanceID Dest , ui8 Source ) : dest ( Dest ) , hid ( HID ) , source ( Source ) { } ;
ObjectInstanceID dest ;
ObjectInstanceID hid ;
2010-06-30 22:27:35 +03:00
si8 source ; //who give teleporting, 1=castle gate
bool applyGh ( CGameHandler * gh ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
2009-03-09 12:37:49 +02:00
{
2017-07-31 15:35:42 +02:00
h & dest ;
h & hid ;
2009-03-09 12:37:49 +02:00
}
} ;
struct ArrangeStacks : public CPackForServer
{
2016-11-26 19:49:26 +02:00
ArrangeStacks ( ) : what ( 0 ) , val ( 0 ) { } ;
2013-02-16 17:03:47 +03:00
ArrangeStacks ( ui8 W , SlotID P1 , SlotID P2 , ObjectInstanceID ID1 , ObjectInstanceID ID2 , si32 VAL )
2009-03-09 12:37:49 +02:00
: what ( W ) , p1 ( P1 ) , p2 ( P2 ) , id1 ( ID1 ) , id2 ( ID2 ) , val ( VAL ) { } ;
ui8 what ; //1 - swap; 2 - merge; 3 - split
2013-02-16 17:03:47 +03:00
SlotID p1 , p2 ; //positions of first and second stack
2013-02-14 02:55:42 +03:00
ObjectInstanceID id1 , id2 ; //ids of objects with garrison
2009-03-09 12:37:49 +02:00
si32 val ;
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & what ;
h & p1 ;
h & p2 ;
h & id1 ;
h & id2 ;
h & val ;
2009-03-09 12:37:49 +02:00
}
} ;
struct DisbandCreature : public CPackForServer
{
DisbandCreature ( ) { } ;
2013-02-16 17:03:47 +03:00
DisbandCreature ( SlotID Pos , ObjectInstanceID ID ) : pos ( Pos ) , id ( ID ) { } ;
SlotID pos ; //stack pos
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ; //object id
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & pos ;
h & id ;
2009-03-09 12:37:49 +02:00
}
} ;
struct BuildStructure : public CPackForServer
{
BuildStructure ( ) { } ;
2013-02-14 02:55:42 +03:00
BuildStructure ( ObjectInstanceID TID , BuildingID BID ) : tid ( TID ) , bid ( BID ) { } ;
ObjectInstanceID tid ; //town id
2013-02-11 22:11:34 +03:00
BuildingID bid ; //structure id
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & tid ;
h & bid ;
2009-03-09 12:37:49 +02:00
}
} ;
2016-11-26 19:49:26 +02:00
2009-09-22 17:27:46 +03:00
struct RazeStructure : public BuildStructure
{
RazeStructure ( ) { } ;
2009-03-09 12:37:49 +02:00
2009-09-22 17:27:46 +03:00
bool applyGh ( CGameHandler * gh ) ;
} ;
2016-11-26 19:49:26 +02:00
2009-03-09 12:37:49 +02:00
struct RecruitCreatures : public CPackForServer
{
2016-11-26 19:49:26 +02:00
RecruitCreatures ( ) : amount ( 0 ) , level ( 0 ) { } ;
2014-09-19 00:18:49 +03:00
RecruitCreatures ( ObjectInstanceID TID , ObjectInstanceID DST , CreatureID CRID , si32 Amount , si32 Level ) :
tid ( TID ) , dst ( DST ) , crid ( CRID ) , amount ( Amount ) , level ( Level ) { } ;
ObjectInstanceID tid ; //dwelling id, or town
ObjectInstanceID dst ; //destination ID, e.g. hero
2013-02-11 02:24:57 +03:00
CreatureID crid ;
2013-02-07 20:34:50 +03:00
ui32 amount ; //creature amount
2010-07-10 19:50:23 +03:00
si32 level ; //dwelling level to buy from, -1 if any
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & tid ;
h & dst ;
h & crid ;
h & amount ;
h & level ;
2009-03-09 12:37:49 +02:00
}
} ;
struct UpgradeCreature : public CPackForServer
{
UpgradeCreature ( ) { } ;
2013-02-16 17:03:47 +03:00
UpgradeCreature ( SlotID Pos , ObjectInstanceID ID , CreatureID CRID ) : pos ( Pos ) , id ( ID ) , cid ( CRID ) { } ;
SlotID pos ; //stack pos
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ; //object id
2013-02-11 02:24:57 +03:00
CreatureID cid ; //id of type to which we want make upgrade
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & pos ;
h & id ;
h & cid ;
2009-03-09 12:37:49 +02:00
}
} ;
struct GarrisonHeroSwap : public CPackForServer
{
GarrisonHeroSwap ( ) { } ;
2013-02-14 02:55:42 +03:00
GarrisonHeroSwap ( ObjectInstanceID TID ) : tid ( TID ) { } ;
ObjectInstanceID tid ;
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & tid ;
}
} ;
struct ExchangeArtifacts : public CPackForServer
2012-01-30 19:07:52 +03:00
//TODO: allow exchange between heroes, stacks and commanders
2009-03-09 12:37:49 +02:00
{
2012-04-14 05:20:22 +03:00
ArtifactLocation src , dst ;
2009-03-09 12:37:49 +02:00
ExchangeArtifacts ( ) { } ;
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & src ;
h & dst ;
2009-03-09 12:37:49 +02:00
}
} ;
2010-02-16 16:39:56 +02:00
struct AssembleArtifacts : public CPackForServer
{
2016-11-26 19:49:26 +02:00
AssembleArtifacts ( ) : assemble ( false ) { } ;
2013-02-16 17:03:47 +03:00
AssembleArtifacts ( ObjectInstanceID _heroID , ArtifactPosition _artifactSlot , bool _assemble , ArtifactID _assembleTo )
2010-02-16 16:39:56 +02:00
: heroID ( _heroID ) , artifactSlot ( _artifactSlot ) , assemble ( _assemble ) , assembleTo ( _assembleTo ) { } ;
2013-02-14 02:55:42 +03:00
ObjectInstanceID heroID ;
2013-02-12 22:49:40 +03:00
ArtifactPosition artifactSlot ;
2010-02-16 16:39:56 +02:00
bool assemble ; // True to assemble artifact, false to disassemble.
2013-02-16 17:03:47 +03:00
ArtifactID assembleTo ; // Artifact to assemble into.
2010-02-16 16:39:56 +02:00
bool applyGh ( CGameHandler * gh ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & heroID ;
h & artifactSlot ;
h & assemble ;
h & assembleTo ;
2010-02-16 16:39:56 +02:00
}
} ;
2009-03-09 12:37:49 +02:00
struct BuyArtifact : public CPackForServer
{
BuyArtifact ( ) { } ;
2013-02-14 02:55:42 +03:00
BuyArtifact ( ObjectInstanceID HID , ArtifactID AID ) : hid ( HID ) , aid ( AID ) { } ;
ObjectInstanceID hid ;
2013-02-11 02:24:57 +03:00
ArtifactID aid ;
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & hid ;
h & aid ;
2009-03-09 12:37:49 +02:00
}
} ;
struct TradeOnMarketplace : public CPackForServer
{
2016-11-26 19:49:26 +02:00
TradeOnMarketplace ( )
2017-10-14 21:30:56 +02:00
: market ( nullptr ) , hero ( nullptr ) , mode ( EMarketMode : : RESOURCE_RESOURCE )
2016-11-26 19:49:26 +02:00
{ } ;
2010-05-18 10:01:54 +03:00
2016-11-26 19:49:26 +02:00
const CGObjectInstance * market ; //todo: replace with ObjectInstanceID
2010-05-18 10:01:54 +03:00
const CGHeroInstance * hero ; //needed when trading artifacts / creatures
2013-02-04 22:43:16 +03:00
EMarketMode : : EMarketMode mode ;
2017-10-14 21:30:56 +02:00
std : : vector < ui32 > r1 , r2 ; //mode 0: r1 - sold resource, r2 - bought res (exception: when sacrificing art r1 is art id [todo: make r2 preferred slot?]
std : : vector < ui32 > val ; //units of sold resource
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & market ;
h & hero ;
h & mode ;
h & r1 ;
h & r2 ;
h & val ;
2009-03-09 12:37:49 +02:00
}
} ;
struct SetFormation : public CPackForServer
{
2016-11-26 19:49:26 +02:00
SetFormation ( ) : formation ( 0 ) { } ;
2013-02-14 02:55:42 +03:00
SetFormation ( ObjectInstanceID HID , ui8 Formation ) : hid ( HID ) , formation ( Formation ) { } ;
ObjectInstanceID hid ;
2009-03-09 12:37:49 +02:00
ui8 formation ;
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & hid ;
h & formation ;
2009-03-09 12:37:49 +02:00
}
} ;
struct HireHero : public CPackForServer
{
2016-11-26 19:49:26 +02:00
HireHero ( ) : hid ( 0 ) { } ;
2013-02-14 02:55:42 +03:00
HireHero ( si32 HID , ObjectInstanceID TID ) : hid ( HID ) , tid ( TID ) { } ;
si32 hid ; //available hero serial
ObjectInstanceID tid ; //town (tavern) id
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & hid ;
h & tid ;
h & player ;
2009-03-09 12:37:49 +02:00
}
} ;
2012-09-15 22:16:16 +03:00
struct BuildBoat : public CPackForServer
2009-07-26 06:33:13 +03:00
{
BuildBoat ( ) { } ;
2013-02-14 02:55:42 +03:00
ObjectInstanceID objid ; //where player wants to buy a boat
2009-07-26 06:33:13 +03:00
bool applyGh ( CGameHandler * gh ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & objid ;
}
} ;
2009-03-09 12:37:49 +02:00
struct QueryReply : public CPackForServer
{
2017-06-06 06:53:51 +02:00
QueryReply ( ) { } ;
QueryReply ( QueryID QID , const JsonNode & Reply ) : qid ( QID ) , reply ( Reply ) { } ;
2013-05-27 13:53:28 +03:00
QueryID qid ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2017-06-06 06:53:51 +02:00
JsonNode reply ;
2009-03-09 12:37:49 +02:00
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & qid ;
h & player ;
h & reply ;
2009-03-09 12:37:49 +02:00
}
} ;
struct MakeAction : public CPackForServer
{
MakeAction ( ) { } ;
2009-03-09 21:40:43 +02:00
MakeAction ( const BattleAction & BA ) : ba ( BA ) { } ;
2009-03-09 12:37:49 +02:00
BattleAction ba ;
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & ba ;
}
} ;
struct MakeCustomAction : public CPackForServer
{
MakeCustomAction ( ) { } ;
2009-03-20 20:51:48 +02:00
MakeCustomAction ( const BattleAction & BA ) : ba ( BA ) { } ;
2009-03-09 12:37:49 +02:00
BattleAction ba ;
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & ba ;
}
} ;
2010-02-21 17:03:30 +02:00
struct DigWithHero : public CPackForServer
{
DigWithHero ( ) { }
2013-02-14 02:55:42 +03:00
ObjectInstanceID id ; //digging hero id
2010-02-21 17:03:30 +02:00
bool applyGh ( CGameHandler * gh ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & id ;
}
} ;
2010-03-11 01:16:30 +02:00
struct CastAdvSpell : public CPackForServer
{
CastAdvSpell ( ) { }
2013-02-14 02:55:42 +03:00
ObjectInstanceID hid ; //hero id
2013-02-11 02:24:57 +03:00
SpellID sid ; //spell id
2010-03-11 01:16:30 +02:00
int3 pos ; //selected tile (not always used)
bool applyGh ( CGameHandler * gh ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & hid ;
h & sid ;
h & pos ;
2010-03-11 01:16:30 +02:00
}
} ;
2009-03-09 12:37:49 +02:00
/***********************************************************************************************************/
2009-03-28 20:46:20 +02:00
struct SaveGame : public CPackForClient , public CPackForServer
{
SaveGame ( ) { } ;
SaveGame ( const std : : string & Fname ) : fname ( Fname ) { } ;
std : : string fname ;
void applyCl ( CClient * cl ) ;
void applyGs ( CGameState * gs ) { } ;
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-28 20:46:20 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & fname ;
}
} ;
2016-11-18 16:45:59 +02:00
struct PlayerMessage : public CPackForClient , public CPackForServer
2009-03-09 12:37:49 +02:00
{
2016-11-18 16:45:59 +02:00
PlayerMessage ( ) { } ;
2014-09-21 20:35:53 +03:00
PlayerMessage ( PlayerColor Player , const std : : string & Text , ObjectInstanceID obj )
: player ( Player ) , text ( Text ) , currObj ( obj )
2016-11-18 16:45:59 +02:00
{ } ;
2009-03-09 12:37:49 +02:00
void applyCl ( CClient * cl ) ;
void applyGs ( CGameState * gs ) { } ;
2009-04-16 03:28:54 +03:00
bool applyGh ( CGameHandler * gh ) ;
2009-03-09 12:37:49 +02:00
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-03-09 12:37:49 +02:00
std : : string text ;
2014-09-21 20:35:53 +03:00
ObjectInstanceID currObj ; // optional parameter that specifies current object. For cheats :)
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & text ;
h & player ;
h & currObj ;
2009-03-09 12:37:49 +02:00
}
2012-09-15 22:16:16 +03:00
} ;
2009-03-09 12:37:49 +02:00
2016-11-18 16:45:59 +02:00
struct CenterView : public CPackForClient
2009-08-11 10:50:29 +03:00
{
2016-11-26 19:49:26 +02:00
CenterView ( ) : focusTime ( 0 ) { } ;
2009-08-11 10:50:29 +03:00
void applyCl ( CClient * cl ) ;
2013-03-03 20:06:03 +03:00
PlayerColor player ;
2009-08-13 04:03:11 +03:00
int3 pos ;
ui32 focusTime ; //ms
2009-08-11 10:50:29 +03:00
2009-03-09 12:37:49 +02:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & pos ;
h & player ;
h & focusTime ;
2009-03-09 12:37:49 +02:00
}
2010-02-06 15:49:14 +02:00
} ;
2010-09-03 21:42:54 +03:00
/***********************************************************************************************************/
struct CPackForSelectionScreen : public CPack
{
2016-10-02 22:41:57 +02:00
void apply ( CSelectionScreen * selScreen ) { } // implemented in CPreGame.cpp
2010-09-03 21:42:54 +03:00
} ;
2010-10-24 14:35:14 +03:00
class CPregamePackToPropagate : public CPackForSelectionScreen
{ } ;
class CPregamePackToHost : public CPackForSelectionScreen
{ } ;
struct ChatMessage : public CPregamePackToPropagate
2010-09-03 21:42:54 +03:00
{
std : : string playerName , message ;
void apply ( CSelectionScreen * selScreen ) ;
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & playerName ;
h & message ;
2010-09-03 21:42:54 +03:00
}
} ;
2009-08-11 10:50:29 +03:00
2010-10-24 14:35:14 +03:00
struct QuitMenuWithoutStarting : public CPregamePackToPropagate
{
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{ }
} ;
struct PlayerJoined : public CPregamePackToHost
{
std : : string playerName ;
ui8 connectionID ;
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & playerName ;
h & connectionID ;
2010-10-24 14:35:14 +03:00
}
} ;
2014-06-26 18:34:54 +03:00
struct ELF_VISIBILITY SelectMap : public CPregamePackToPropagate
2010-10-24 14:35:14 +03:00
{
const CMapInfo * mapInfo ;
2014-06-26 19:49:18 +03:00
bool free ; //local flag, do not serialize
2010-10-24 14:35:14 +03:00
2014-06-26 19:41:27 +03:00
DLL_LINKAGE SelectMap ( const CMapInfo & src ) ;
DLL_LINKAGE SelectMap ( ) ;
2014-06-25 17:11:07 +03:00
DLL_LINKAGE ~ SelectMap ( ) ;
2010-10-24 14:35:14 +03:00
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & mapInfo ;
}
} ;
2014-06-26 18:34:54 +03:00
struct ELF_VISIBILITY UpdateStartOptions : public CPregamePackToPropagate
2010-10-24 14:35:14 +03:00
{
StartInfo * options ;
2014-06-26 19:49:18 +03:00
bool free ; //local flag, do not serialize
2010-10-24 14:35:14 +03:00
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
2014-06-26 19:41:27 +03:00
DLL_LINKAGE UpdateStartOptions ( StartInfo & src ) ;
DLL_LINKAGE UpdateStartOptions ( ) ;
2014-06-25 17:11:07 +03:00
DLL_LINKAGE ~ UpdateStartOptions ( ) ;
2010-10-24 14:35:14 +03:00
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & options ;
}
} ;
struct PregameGuiAction : public CPregamePackToPropagate
{
2016-08-30 04:13:45 +02:00
enum { NO_TAB , OPEN_OPTIONS , OPEN_SCENARIO_LIST , OPEN_RANDOM_MAP_OPTIONS }
2013-02-04 22:43:16 +03:00
action ;
2010-10-24 14:35:14 +03:00
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & action ;
}
} ;
struct RequestOptionsChange : public CPregamePackToHost
{
2013-02-04 22:43:16 +03:00
enum EWhat { TOWN , HERO , BONUS } ;
2010-10-24 14:35:14 +03:00
ui8 what ;
2012-09-15 22:16:16 +03:00
si8 direction ; //-1 or +1
2013-03-03 20:06:03 +03:00
ui8 playerID ;
2010-10-24 14:35:14 +03:00
2013-03-03 20:06:03 +03:00
RequestOptionsChange ( ui8 What , si8 Dir , ui8 Player )
2010-10-24 14:35:14 +03:00
: what ( What ) , direction ( Dir ) , playerID ( Player )
{ }
2016-11-26 19:49:26 +02:00
RequestOptionsChange ( )
: what ( 0 ) , direction ( 0 ) , playerID ( 0 )
{ }
2010-10-24 14:35:14 +03:00
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{
2017-07-31 15:35:42 +02:00
h & what ;
h & direction ;
h & playerID ;
2010-10-24 14:35:14 +03:00
}
} ;
struct PlayerLeft : public CPregamePackToPropagate
{
2013-03-03 20:06:03 +03:00
ui8 playerID ;
2010-10-24 14:35:14 +03:00
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & playerID ;
}
} ;
struct PlayersNames : public CPregamePackToPropagate
{
public :
2013-03-03 20:06:03 +03:00
std : : map < ui8 , std : : string > playerNames ;
2010-10-24 14:35:14 +03:00
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{
h & playerNames ;
}
} ;
struct StartWithCurrentSettings : public CPregamePackToPropagate
{
public :
void apply ( CSelectionScreen * selScreen ) ; //that functions are implemented in CPreGame.cpp
template < typename Handler > void serialize ( Handler & h , const int version )
{
//h & playerNames;
}
} ;