2011-12-14 00:23:17 +03:00
# pragma once
2008-12-27 03:01:59 +02:00
# include "../lib/IGameCallback.h"
2009-08-04 02:53:18 +03:00
# include "../lib/CondSh.h"
2011-12-17 21:59:59 +03:00
# include "../lib/CStopWatch.h"
2009-03-28 20:46:20 +02:00
2009-04-15 17:03:31 +03:00
/*
* Client . 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-05-10 01:20:47 +03:00
class IGameEventsReceiver ;
class IBattleEventsReceiver ;
2010-12-22 22:14:40 +02:00
class CBattleGameInterface ;
2008-12-27 03:01:59 +02:00
struct StartInfo ;
class CGameState ;
class CGameInterface ;
class CConnection ;
class CCallback ;
2009-03-07 00:11:17 +02:00
struct BattleAction ;
2009-01-30 23:28:02 +02:00
struct SharedMem ;
2008-12-27 03:01:59 +02:00
class CClient ;
2011-06-11 02:50:32 +03:00
class CScriptingModule ;
2009-08-30 15:47:40 +03:00
struct CPathsInfo ;
2010-09-03 21:42:54 +03:00
namespace boost { class thread ; }
2009-08-30 15:47:40 +03:00
2008-12-27 03:01:59 +02:00
void processCommand ( const std : : string & message , CClient * & client ) ;
2011-02-22 13:52:36 +02:00
/// structure to handle running server and connecting to it
2010-09-03 21:42:54 +03:00
class CServerHandler
{
private :
void callServer ( ) ; //calls server via system(), should be called as thread
public :
2011-12-17 21:59:59 +03:00
CStopWatch th ;
2010-09-03 21:42:54 +03:00
boost : : thread * serverThread ; //thread that called system to run server
SharedMem * shared ; //interprocess memory (for waiting for server)
bool verbose ; //whether to print log msgs
std : : string port ; //port number in text form
2010-10-24 14:35:14 +03:00
//functions setting up local server
2010-09-03 21:42:54 +03:00
void startServer ( ) ; //creates a thread with callServer
void waitForServer ( ) ; //waits till server is ready
CConnection * connectToServer ( ) ; //connects to server
2010-10-24 14:35:14 +03:00
//////////////////////////////////////////////////////////////////////////
static CConnection * justConnectToServer ( const std : : string & host = " " , const std : : string & port = " " ) ; //connects to given host without taking any other actions (like setting up server)
CServerHandler ( bool runServer = false ) ;
2010-09-03 21:42:54 +03:00
~ CServerHandler ( ) ;
} ;
2012-03-26 01:46:14 +03:00
template < typename T >
class ThreadSafeVector
{
typedef std : : vector < T > TVector ;
typedef boost : : unique_lock < boost : : mutex > TLock ;
TVector items ;
boost : : mutex mx ;
boost : : condition_variable cond ;
public :
void pushBack ( const T & item )
{
TLock lock ( mx ) ;
items . push_back ( item ) ;
cond . notify_all ( ) ;
}
// //to access list, caller must present a lock used to lock mx
// TVector &getList(TLock &lockedLock)
// {
// assert(lockedLock.owns_lock() && lockedLock.mutex() == &mx);
// return items;
// }
TLock getLock ( )
{
return TLock ( mx ) ;
}
void waitWhileContains ( const T & item )
{
auto lock = getLock ( ) ;
while ( vstd : : contains ( items , item ) )
cond . wait ( lock ) ;
}
bool tryRemovingElement ( const T & item ) //returns false if element was not present
{
auto lock = getLock ( ) ;
auto itr = vstd : : find ( items , item ) ;
if ( itr = = items . end ( ) ) //not in container
{
return false ;
}
items . erase ( itr ) ;
cond . notify_all ( ) ;
return true ;
}
} ;
2011-02-22 13:52:36 +02:00
/// Class which handles client - server logic
2008-12-27 03:01:59 +02:00
class CClient : public IGameCallback
{
2009-03-07 00:11:17 +02:00
public :
2008-12-27 03:01:59 +02:00
CCallback * cb ;
2013-02-04 00:05:44 +03:00
std : : map < TPlayerColor , shared_ptr < CCallback > > callbacks ; //callbacks given to player interfaces
std : : map < TPlayerColor , shared_ptr < CBattleCallback > > battleCallbacks ; //callbacks given to player interfaces
2011-05-10 01:20:47 +03:00
std : : vector < IGameEventsReceiver * > privilagedGameEventReceivers ; //scripting modules, spectator interfaces
std : : vector < IBattleEventsReceiver * > privilagedBattleEventReceivers ; //scripting modules, spectator interfaces
2013-02-04 00:05:44 +03:00
std : : map < TPlayerColor , CGameInterface * > playerint ;
std : : map < TPlayerColor , CBattleGameInterface * > battleints ;
2010-02-20 15:24:38 +02:00
bool hotSeat ;
2008-12-27 03:01:59 +02:00
CConnection * serv ;
2009-03-07 00:11:17 +02:00
BattleAction * curbaction ;
2011-06-25 17:22:19 +03:00
2009-08-30 15:47:40 +03:00
CPathsInfo * pathInfo ;
2011-06-25 17:22:19 +03:00
boost : : mutex pathMx ; //protects the variable above
2011-06-11 02:50:32 +03:00
CScriptingModule * erm ;
2008-12-27 03:01:59 +02:00
2012-03-26 01:46:14 +03:00
ThreadSafeVector < int > waitingRequest ;
2009-08-04 02:53:18 +03:00
2010-01-02 03:48:44 +02:00
std : : queue < CPack * > packs ;
boost : : mutex packsM ;
2013-02-04 00:05:44 +03:00
void waitForMoveAndSend ( TPlayerColor color ) ;
2009-08-04 02:53:18 +03:00
//void sendRequest(const CPackForServer *request, bool waitForRealization);
2008-12-27 03:01:59 +02:00
CClient ( void ) ;
CClient ( CConnection * con , StartInfo * si ) ;
~ CClient ( void ) ;
2009-01-30 23:28:02 +02:00
void init ( ) ;
2009-01-11 00:08:18 +02:00
void newGame ( CConnection * con , StartInfo * si ) ; //con - connection to server
2011-02-27 21:58:14 +02:00
void loadNeutralBattleAI ( ) ;
2010-08-20 16:34:39 +03:00
void endGame ( bool closeConnection = true ) ;
void stopConnection ( ) ;
2008-12-27 03:01:59 +02:00
void save ( const std : : string & fname ) ;
2009-11-01 03:15:16 +02:00
void loadGame ( const std : : string & fname ) ;
2008-12-27 03:01:59 +02:00
void run ( ) ;
2012-09-21 20:59:54 +03:00
void finishCampaign ( shared_ptr < CCampaignState > camp ) ;
void proposeNextMission ( shared_ptr < CCampaignState > camp ) ;
2011-09-03 05:54:33 +03:00
void invalidatePaths ( const CGHeroInstance * h = NULL ) ; //invalidates paths for hero h or for any hero if h is NULL => they'll got recalculated when the next query comes
2011-06-25 17:22:19 +03:00
void calculatePaths ( const CGHeroInstance * h ) ;
void updatePaths ( ) ; //calls calculatePaths for same hero for which we previously calculated paths
2009-11-01 03:15:16 +02:00
2009-12-28 06:08:24 +02:00
bool terminate ; // tell to terminate
boost : : thread * connectionHandler ; //thread running run() method
2009-11-01 03:15:16 +02:00
2011-06-11 02:50:32 +03:00
//////////////////////////////////////////////////////////////////////////
virtual int getLocalPlayer ( ) const OVERRIDE ;
2008-12-27 03:01:59 +02:00
//////////////////////////////////////////////////////////////////////////
//not working yet, will be implement somewhen later with support for local-sim-based gameplay
2013-02-11 02:24:57 +03:00
void changeSpells ( const CGHeroInstance * hero , bool give , const std : : set < SpellID > & spells ) OVERRIDE { } ;
2013-02-09 00:17:39 +03:00
bool removeObject ( const CGObjectInstance * obj ) OVERRIDE { return false ; } ;
2013-02-14 02:55:42 +03:00
void setBlockVis ( ObjectInstanceID objid , bool bv ) OVERRIDE { } ;
2013-02-09 00:17:39 +03:00
void setOwner ( const CGObjectInstance * obj , TPlayerColor owner ) OVERRIDE { } ;
2013-02-09 01:42:46 +03:00
void setHoverName ( const CGObjectInstance * obj , MetaString * name ) OVERRIDE { } ;
2013-02-09 00:17:39 +03:00
void changePrimSkill ( const CGHeroInstance * hero , PrimarySkill : : PrimarySkill which , si64 val , bool abs = false ) OVERRIDE { } ;
2013-02-12 22:49:40 +03:00
void changeSecSkill ( const CGHeroInstance * hero , SecondarySkill which , int val , bool abs = false ) OVERRIDE { } ;
2011-01-20 19:25:15 +02:00
void showBlockingDialog ( BlockingDialog * iw , const CFunctionList < void ( ui32 ) > & callback ) OVERRIDE { } ;
ui32 showBlockingDialog ( BlockingDialog * iw ) OVERRIDE { return 0 ; } ; //synchronous version of above
2013-02-14 02:55:42 +03:00
void showGarrisonDialog ( ObjectInstanceID upobj , ObjectInstanceID hid , bool removableUnits , const boost : : function < void ( ) > & cb ) OVERRIDE { } ;
void showThievesGuildWindow ( TPlayerColor player , ObjectInstanceID requestingObjId ) OVERRIDE { } ;
2013-02-09 00:17:39 +03:00
void giveResource ( TPlayerColor player , Res : : ERes which , int val ) OVERRIDE { } ;
2011-01-20 19:25:15 +02:00
2011-05-10 01:20:47 +03:00
void giveCreatures ( const CArmedInstance * objid , const CGHeroInstance * h , const CCreatureSet & creatures , bool remove ) OVERRIDE { } ;
2013-02-14 02:55:42 +03:00
void takeCreatures ( ObjectInstanceID objid , const std : : vector < CStackBasicDescriptor > & creatures ) OVERRIDE { } ;
2011-01-20 19:25:15 +02:00
bool changeStackType ( const StackLocation & sl , CCreature * c ) OVERRIDE { return false ; } ;
bool changeStackCount ( const StackLocation & sl , TQuantity count , bool absoluteValue = false ) OVERRIDE { return false ; } ;
bool insertNewStack ( const StackLocation & sl , const CCreature * c , TQuantity count ) OVERRIDE { return false ; } ;
2010-12-12 01:11:26 +02:00
bool eraseStack ( const StackLocation & sl , bool forceRemoval = false ) { return false ; } ;
2011-01-20 19:25:15 +02:00
bool swapStacks ( const StackLocation & sl1 , const StackLocation & sl2 ) OVERRIDE { return false ; }
bool addToSlot ( const StackLocation & sl , const CCreature * c , TQuantity count ) OVERRIDE { return false ; }
void tryJoiningArmy ( const CArmedInstance * src , const CArmedInstance * dst , bool removeObjWhenFinished , bool allowMerging ) OVERRIDE { }
bool moveStack ( const StackLocation & src , const StackLocation & dst , TQuantity count = - 1 ) OVERRIDE { return false ; }
2010-12-26 16:34:11 +02:00
2013-02-12 22:49:40 +03:00
void giveHeroNewArtifact ( const CGHeroInstance * h , const CArtifact * artType , ArtifactPosition pos ) OVERRIDE { } ;
void giveHeroArtifact ( const CGHeroInstance * h , const CArtifactInstance * a , ArtifactPosition pos ) OVERRIDE { } ;
2010-12-26 16:34:11 +02:00
void putArtifact ( const ArtifactLocation & al , const CArtifactInstance * a ) OVERRIDE { } ;
void removeArtifact ( const ArtifactLocation & al ) OVERRIDE { } ;
2012-04-14 05:20:22 +03:00
bool moveArtifact ( const ArtifactLocation & al1 , const ArtifactLocation & al2 ) OVERRIDE { return false ; } ;
2013-02-19 01:37:22 +03:00
void synchronizeArtifactHandlerLists ( ) OVERRIDE { } ;
2010-12-26 16:34:11 +02:00
2011-01-20 19:25:15 +02:00
void showCompInfo ( ShowInInfobox * comp ) OVERRIDE { } ;
2013-02-09 00:17:39 +03:00
void heroVisitCastle ( const CGTownInstance * obj , const CGHeroInstance * hero ) OVERRIDE { } ;
void stopHeroVisitCastle ( const CGTownInstance * obj , const CGHeroInstance * hero ) OVERRIDE { } ;
2010-12-26 16:34:11 +02:00
//void giveHeroArtifact(int artid, int hid, int position){};
//void giveNewArtifact(int hid, int position){};
2011-01-20 19:25:15 +02:00
void startBattleI ( const CArmedInstance * army1 , const CArmedInstance * army2 , int3 tile , const CGHeroInstance * hero1 , const CGHeroInstance * hero2 , bool creatureBank = false , boost : : function < void ( BattleResult * ) > cb = 0 , const CGTownInstance * town = NULL ) OVERRIDE { } ; //use hero=NULL for no hero
void startBattleI ( const CArmedInstance * army1 , const CArmedInstance * army2 , int3 tile , boost : : function < void ( BattleResult * ) > cb = 0 , bool creatureBank = false ) OVERRIDE { } ; //if any of armies is hero, hero will be used
void startBattleI ( const CArmedInstance * army1 , const CArmedInstance * army2 , boost : : function < void ( BattleResult * ) > cb = 0 , bool creatureBank = false ) OVERRIDE { } ; //if any of armies is hero, hero will be used, visitable tile of second obj is place of battle
2013-02-14 02:55:42 +03:00
void setAmount ( ObjectInstanceID objid , ui32 val ) OVERRIDE { } ;
bool moveHero ( ObjectInstanceID hid , int3 dst , ui8 instant , TPlayerColor asker = GameConstants : : NEUTRAL_PLAYER ) OVERRIDE { return false ; } ;
2011-01-20 19:25:15 +02:00
void giveHeroBonus ( GiveBonus * bonus ) OVERRIDE { } ;
void setMovePoints ( SetMovePoints * smp ) OVERRIDE { } ;
2013-02-14 02:55:42 +03:00
void setManaPoints ( ObjectInstanceID hid , int val ) OVERRIDE { } ;
void giveHero ( ObjectInstanceID id , TPlayerColor player ) OVERRIDE { } ;
void changeObjPos ( ObjectInstanceID objid , int3 newPos , ui8 flags ) OVERRIDE { } ;
2011-01-20 19:25:15 +02:00
void sendAndApply ( CPackForClient * info ) OVERRIDE { } ;
2013-02-14 02:55:42 +03:00
void heroExchange ( ObjectInstanceID hero1 , ObjectInstanceID hero2 ) OVERRIDE { } ;
2009-03-14 13:25:25 +02:00
2008-12-27 03:01:59 +02:00
//////////////////////////////////////////////////////////////////////////
friend class CCallback ; //handling players actions
2011-08-25 23:02:38 +03:00
friend class CBattleCallback ; //handling players actions
2008-12-27 03:01:59 +02:00
friend void processCommand ( const std : : string & message , CClient * & client ) ; //handling console
2009-01-11 00:08:18 +02:00
2013-02-04 00:05:44 +03:00
int sendRequest ( const CPack * request , TPlayerColor player ) ; //returns ID given to that request
2012-03-26 01:46:14 +03:00
2010-01-02 03:48:44 +02:00
void handlePack ( CPack * pack ) ; //applies the given pack and deletes it
2010-12-23 02:33:48 +02:00
void battleStarted ( const BattleInfo * info ) ;
2011-08-25 18:24:37 +03:00
void commenceTacticPhaseForInt ( CBattleGameInterface * battleInt ) ; //will be called as separate thread
2009-03-28 20:46:20 +02:00
2011-05-22 21:46:52 +03:00
void commitPackage ( CPackForClient * pack ) OVERRIDE ;
2009-03-28 20:46:20 +02:00
//////////////////////////////////////////////////////////////////////////
template < typename Handler > void serialize ( Handler & h , const int version ) ;
2012-08-26 12:07:48 +03:00
void battleFinished ( ) ;
2008-12-27 03:01:59 +02:00
} ;