blob: 2578e927dff95d903195ea119dac642ad71e51c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef MP_BOARD_H
#define MP_BOARD_H
#include <tqwidget.h>
/**
* The MP_Board class is the base widget from which each individual
* board should inheritate ; you must implement its virtual methods.
*/
class MPBoard : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
MPBoard(TQWidget *tqparent, const char *name=0)
: TQWidget(tqparent, name) {}
virtual ~MPBoard() {}
/**
* This method is called once at the board creation.
* @param AI is TRUE if the player is not human.
* @param multiplayers is TRUE if the game is not a single player game.
* @param first is TRUE if this board is the first local one.
*/
virtual void init(bool AI, bool multiplayers, bool server, bool first,
const TQString &name) = 0;
/**
* Put data on the stream.
*
* This method is the communication way out. The data given here will
* be the only information that will go to the server.
*/
virtual void dataOut(TQDataStream &) = 0;
/**
* Get data from the stream.
*
* This method is the communication way in. The data given here will be
* the only information that you will receive from the server.
*/
virtual void dataIn(TQDataStream &) = 0;
signals:
/**
* Call this signal to enable/disable the keys associated with a board.
*/
void enableKeys(bool);
};
#endif // MP_BOARD_H
|