mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
b89c951d09
* almost redone treasure chest * working gaining levels for heroes (including dialog with skill selection) * corrected another typo i cr_shots
55 lines
875 B
C++
55 lines
875 B
C++
#pragma once
|
|
#include "../global.h"
|
|
#include <boost/thread.hpp>
|
|
struct StartInfo;
|
|
class CGameState;
|
|
class CGameInterface;
|
|
class CConnection;
|
|
class CCallback;
|
|
|
|
namespace boost
|
|
{
|
|
class mutex;
|
|
class condition_variable;
|
|
}
|
|
|
|
template <typename T>
|
|
struct CSharedCond
|
|
{
|
|
boost::mutex *mx;
|
|
boost::condition_variable *cv;
|
|
T *res;
|
|
CSharedCond(T*R)
|
|
{
|
|
res = R;
|
|
mx = new boost::mutex;
|
|
cv = new boost::condition_variable;
|
|
}
|
|
~CSharedCond()
|
|
{
|
|
delete res;
|
|
delete mx;
|
|
delete cv;
|
|
}
|
|
};
|
|
|
|
class CClient
|
|
{
|
|
CCallback *cb;
|
|
CGameState *gs;
|
|
std::map<ui8,CGameInterface *> playerint;
|
|
CConnection *serv;
|
|
|
|
void waitForMoveAndSend(int color);
|
|
public:
|
|
CClient(void);
|
|
CClient(CConnection *con, StartInfo *si);
|
|
~CClient(void);
|
|
|
|
void process(int what);
|
|
void run();
|
|
|
|
friend class CCallback;
|
|
friend class CScriptCallback;
|
|
};
|