2008-12-27 03:01:59 +02:00
# ifndef __CLIENT_H__
# define __CLIENT_H__
# include "../global.h"
# include <boost/thread.hpp>
# include "../lib/IGameCallback.h"
2009-08-04 02:53:18 +03:00
# include "../lib/CondSh.h"
2010-01-02 03:48:44 +02:00
# include <queue>
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
*
*/
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 ;
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 :
timeHandler th ;
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 ( ) ;
} ;
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 ;
2009-03-28 20:46:20 +02:00
std : : set < CCallback * > callbacks ; //callbacks given to player interfaces
2008-12-27 03:01:59 +02:00
std : : map < ui8 , CGameInterface * > playerint ;
2010-12-22 22:14:40 +02:00
std : : map < ui8 , 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 ;
2009-08-30 15:47:40 +03:00
CPathsInfo * pathInfo ;
2008-12-27 03:01:59 +02:00
2009-08-04 02:53:18 +03:00
CondSh < bool > waitingRequest ;
2010-01-02 03:48:44 +02:00
std : : queue < CPack * > packs ;
boost : : mutex packsM ;
2008-12-27 03:01:59 +02:00
void waitForMoveAndSend ( int 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
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 ( ) ;
2010-08-20 16:34:39 +03:00
void finishCampaign ( CCampaignState * camp ) ;
void proposeNextMission ( CCampaignState * camp ) ;
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
2008-12-27 03:01:59 +02:00
//////////////////////////////////////////////////////////////////////////
//from IGameCallback
int getCurrentPlayer ( ) ;
int getSelectedHero ( ) ;
//not working yet, will be implement somewhen later with support for local-sim-based gameplay
2011-01-20 19:25:15 +02:00
void changeSpells ( int hid , bool give , const std : : set < ui32 > & spells ) OVERRIDE { } ;
bool removeObject ( int objid ) OVERRIDE { return false ; } ;
void setBlockVis ( int objid , bool bv ) OVERRIDE { } ;
void setOwner ( int objid , ui8 owner ) OVERRIDE { } ;
void setHoverName ( int objid , MetaString * name ) OVERRIDE { } ;
void setObjProperty ( int objid , int prop , si64 val ) OVERRIDE { } ;
void changePrimSkill ( int ID , int which , si64 val , bool abs = false ) OVERRIDE { } ;
void changeSecSkill ( int ID , int which , int val , bool abs = false ) OVERRIDE { } ;
void showInfoDialog ( InfoWindow * iw ) OVERRIDE { } ;
void showBlockingDialog ( BlockingDialog * iw , const CFunctionList < void ( ui32 ) > & callback ) OVERRIDE { } ;
ui32 showBlockingDialog ( BlockingDialog * iw ) OVERRIDE { return 0 ; } ; //synchronous version of above
void showGarrisonDialog ( int upobj , int hid , bool removableUnits , const boost : : function < void ( ) > & cb ) OVERRIDE { } ;
void showThievesGuildWindow ( int requestingObjId ) OVERRIDE { } ;
void giveResource ( int player , int which , int val ) OVERRIDE { } ;
void giveCreatures ( const CArmedInstance * objid , const CGHeroInstance * h , const CCreatureSet & creatures , bool remove ) OVERRIDE { } ;
void takeCreatures ( int objid , std : : vector < CStackBasicDescriptor > creatures ) OVERRIDE { } ;
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
void giveHeroNewArtifact ( const CGHeroInstance * h , const CArtifact * artType , int pos ) OVERRIDE { } ;
void giveHeroArtifact ( const CGHeroInstance * h , const CArtifactInstance * a , int pos ) OVERRIDE { } ;
void putArtifact ( const ArtifactLocation & al , const CArtifactInstance * a ) OVERRIDE { } ;
void removeArtifact ( const ArtifactLocation & al ) OVERRIDE { } ;
void moveArtifact ( const ArtifactLocation & al1 , const ArtifactLocation & al2 ) OVERRIDE { } ;
2011-01-20 19:25:15 +02:00
void showCompInfo ( ShowInInfobox * comp ) OVERRIDE { } ;
void heroVisitCastle ( int obj , int heroID ) OVERRIDE { } ;
void stopHeroVisitCastle ( int obj , int heroID ) 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
void setAmount ( int objid , ui32 val ) OVERRIDE { } ;
bool moveHero ( si32 hid , int3 dst , ui8 instant , ui8 asker = 255 ) OVERRIDE { return false ; } ;
void giveHeroBonus ( GiveBonus * bonus ) OVERRIDE { } ;
void setMovePoints ( SetMovePoints * smp ) OVERRIDE { } ;
void setManaPoints ( int hid , int val ) OVERRIDE { } ;
void giveHero ( int id , int player ) OVERRIDE { } ;
void changeObjPos ( int objid , int3 newPos , ui8 flags ) OVERRIDE { } ;
void sendAndApply ( CPackForClient * info ) OVERRIDE { } ;
void heroExchange ( si32 hero1 , si32 hero2 ) OVERRIDE { } ;
2009-03-14 13:25:25 +02:00
2008-12-27 03:01:59 +02:00
//////////////////////////////////////////////////////////////////////////
friend class CCallback ; //handling players actions
friend void processCommand ( const std : : string & message , CClient * & client ) ; //handling console
2009-01-11 00:08:18 +02:00
2010-01-02 03:48:44 +02:00
void handlePack ( CPack * pack ) ; //applies the given pack and deletes it
2010-03-11 01:16:30 +02:00
void updatePaths ( ) ;
2010-12-23 02:33:48 +02:00
void battleStarted ( const BattleInfo * info ) ;
2009-03-28 20:46:20 +02:00
//////////////////////////////////////////////////////////////////////////
template < typename Handler > void serialize ( Handler & h , const int version ) ;
2008-12-27 03:01:59 +02:00
} ;
# endif // __CLIENT_H__