-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.h
executable file
·59 lines (50 loc) · 1.24 KB
/
game.h
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
53
54
55
56
57
58
59
// originally from freecell by Sascha Volkenandt ([email protected])
#ifndef VDR_SOLITAIRE_FIELD_H
#define VDR_SOLITAIRE_FIELD_H
#include <vdr/osdbase.h>
#include <vdr/osd.h>
class cCardStack;
class cCursor;
class cSolitaireGame: public cOsdObject {
private:
int mX, mY, mWidth, mHeight;
int mPosition;
bool mFirstGame;
bool mShowInfo;
bool mShowMessage;
bool mShowHelp;
bool mSelectStack;
bool mGameOver;
#if VDRVERSNUM < 10307
cOsdBase *mOsd;
#else /* VDRVERSNUM < 10307 */
cOsd *mOsd;
#endif /* VDRVERSNUM < 10307 */
cCursor *mCursor;
cBitmap *mInfo;
cBitmap *mMessage;
cBitmap *mHelp;
cCardStack *mStacks[7];
cCardStack *mClosedPile;
cCardStack *mOpenPile;
cCardStack *mTargets[4];
cCardStack *mFloating;
protected:
virtual void Show(void);
virtual eOSState ProcessKey(eKeys Key);
void Paint(void);
void WriteInfo(const char *Text);
void WriteMessage(const char *Text);
void WriteHelp(void);
void ShowInfo(bool Show) { mShowInfo = Show; }
void ShowMessage(bool Show) { mShowMessage = Show; }
void ShowHelp(bool Show) { mShowHelp = Show; }
void AutoSolve(void);
void ResetSource();
bool CanMoveTo(int Position);
public:
cSolitaireGame(void);
virtual ~cSolitaireGame();
void Start(void);
};
#endif // VDR_SOLITAIRE_FIELD_H