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 ) ;
2010-09-03 21:42:54 +03:00
//structure to handle running server and connecting to it
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 ( ) ;
} ;
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
void changeSpells ( int hid , bool give , const std : : set < ui32 > & spells ) { } ;
2009-04-16 03:28:54 +03:00
bool removeObject ( int objid ) { return false ; } ;
2008-12-27 03:01:59 +02:00
void setBlockVis ( int objid , bool bv ) { } ;
void setOwner ( int objid , ui8 owner ) { } ;
void setHoverName ( int objid , MetaString * name ) { } ;
2009-08-17 13:02:29 +03:00
void setObjProperty ( int objid , int prop , si64 val ) { } ;
2009-08-16 18:39:18 +03:00
void changePrimSkill ( int ID , int which , si64 val , bool abs = false ) { } ;
2009-01-11 00:08:18 +02:00
void changeSecSkill ( int ID , int which , int val , bool abs = false ) { } ;
2008-12-27 03:01:59 +02:00
void showInfoDialog ( InfoWindow * iw ) { } ;
2009-04-11 04:32:50 +03:00
void showBlockingDialog ( BlockingDialog * iw , const CFunctionList < void ( ui32 ) > & callback ) { } ;
ui32 showBlockingDialog ( BlockingDialog * iw ) { return 0 ; } ; //synchronous version of above
2009-09-09 20:49:03 +03:00
void showGarrisonDialog ( int upobj , int hid , bool removableUnits , const boost : : function < void ( ) > & cb ) { } ;
2010-02-06 15:49:14 +02:00
void showThievesGuildWindow ( int requestingObjId ) { } ;
2008-12-27 03:01:59 +02:00
void giveResource ( int player , int which , int val ) { } ;
2010-12-13 01:44:16 +02:00
void giveCreatures ( const CArmedInstance * objid , const CGHeroInstance * h , const CCreatureSet & creatures , bool remove ) { } ;
2010-02-07 18:05:27 +02:00
void takeCreatures ( int objid , TSlots creatures ) { } ;
2010-11-22 02:34:46 +02:00
void takeCreatures ( int objid , std : : vector < CStackBasicDescriptor > creatures ) { } ;
2010-11-27 22:17:28 +02:00
bool changeStackType ( const StackLocation & sl , CCreature * c ) { return false ; } ;
bool changeStackCount ( const StackLocation & sl , TQuantity count , bool absoluteValue = false ) { return false ; } ;
bool insertNewStack ( const StackLocation & sl , const CCreature * c , TQuantity count ) { return false ; } ;
2010-12-12 01:11:26 +02:00
bool eraseStack ( const StackLocation & sl , bool forceRemoval = false ) { return false ; } ;
2010-11-27 22:17:28 +02:00
bool swapStacks ( const StackLocation & sl1 , const StackLocation & sl2 ) { return false ; }
bool addToSlot ( const StackLocation & sl , const CCreature * c , TQuantity count ) { return false ; }
2010-12-13 01:44:16 +02:00
void tryJoiningArmy ( const CArmedInstance * src , const CArmedInstance * dst , bool removeObjWhenFinished , bool allowMerging ) { }
2010-11-27 22:17:28 +02:00
bool moveStack ( const StackLocation & src , const StackLocation & dst , TQuantity count = - 1 ) { return false ; }
2008-12-27 03:01:59 +02:00
void showCompInfo ( ShowInInfobox * comp ) { } ;
void heroVisitCastle ( int obj , int heroID ) { } ;
void stopHeroVisitCastle ( int obj , int heroID ) { } ;
void giveHeroArtifact ( int artid , int hid , int position ) { } ; //pos==-1 - first free slot in backpack=0; pos==-2 - default if available or backpack
2010-11-10 02:06:25 +02:00
void giveNewArtifact ( int hid , int position ) { } ;
2010-12-13 22:16:18 +02:00
bool removeArtifact ( const CArtifact * art , int hid ) { return false ; } ;
2009-09-13 01:17:23 +03: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 ) { } ; //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 ) { } ; //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 ) { } ; //if any of armies is hero, hero will be used, visitable tile of second obj is place of battle
2008-12-27 03:01:59 +02:00
void setAmount ( int objid , ui32 val ) { } ;
2009-04-16 03:28:54 +03:00
bool moveHero ( si32 hid , int3 dst , ui8 instant , ui8 asker = 255 ) { return false ; } ;
2009-02-04 15:40:54 +02:00
void giveHeroBonus ( GiveBonus * bonus ) { } ;
void setMovePoints ( SetMovePoints * smp ) { } ;
2009-02-06 13:15:39 +02:00
void setManaPoints ( int hid , int val ) { } ;
2009-02-14 21:12:40 +02:00
void giveHero ( int id , int player ) { } ;
2009-02-20 12:36:15 +02:00
void changeObjPos ( int objid , int3 newPos , ui8 flags ) { } ;
2009-03-14 13:25:25 +02:00
void sendAndApply ( CPackForClient * info ) { } ;
2009-06-16 14:18:14 +03:00
void heroExchange ( si32 hero1 , si32 hero2 ) { } ;
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__