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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/* Groundhog -- a simple logic game
* Copyright (C) 1998-1999 Maurits Rijk
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _GAME_H_
#define _GAME_H_
#include <unistd.h>
#include <gtk/gtk.h>
#include "ball.h"
#include "highscore.h"
#include "pocket.h"
#include "tube_pair.h"
class Game {
typedef enum {UserDefined, Beginner, Intermediate, Expert} Mode;
static gint DeleteEvent(GtkWidget* widget, GdkEvent* event, gpointer data);
static void GoCB(GtkWidget *widget, gpointer data);
static gint Timeout(gpointer data);
void MoveBalls();
void DisplayMoves();
void DisplayTime();
void StopTime();
bool IsNewHighScore();
void Go();
TubePair* Construct(int m, int n, int row, int column);
void ConnectBottom(TubePair* p1, TubePair* p2);
void ConnectRight(TubePair* p1, TubePair* p2);
public:
Game(int argc, char** argv);
void Build();
void Shuffle();
void NewGame(int rows, int columns);
void NewBeginnerGame() {
NewGame(2, 2);}
void NewIntermediateGame() {
NewGame(5, 5);}
void NewExpertGame() {
NewGame(9, 9);}
void Start();
bool IsSolved();
void AddHighScore(const char* name);
void ShowHighScore();
void EnableTooltips(bool enable);
static void SavePrivileges() {
_privileged_gid = getegid();
}
static void DropPrivileges() {
setgid(getgid());
}
static void GainPrivileges() {
setgid(_privileged_gid);
}
protected:
static void OnNew(GtkWidget *widget, gpointer data);
static void OnShowHighscore(GtkWidget *widget, gpointer data);
static void OnOptions(GtkWidget *widget, gpointer data);
static void OnQuit(GtkWidget *widget, gpointer data);
static void OnAbout(GtkWidget *widget, gpointer data);
void SetTooltip(GtkWidget* widget, const char* text);
private:
Game::Mode _mode;
int _rows;
int _columns;
int _nr_of_moves;
int _seconds;
static Game* _instance;
#if GTK_MAJOR_VERSION > 1 || GTK_MINOR_VERSION > 0
static GtkItemFactoryEntry _menu_items[];
#else
static GtkMenuEntry _menu_items[];
#endif
GtkWidget* _toolbar;
GtkWidget* _frame;
GtkWidget* _table;
GtkWidget* _moves;
GtkWidget* _time;
GtkWidget* _go;
GtkTooltips* _tooltips;
gint _timeout;
SetOffBalls _balls;
SetOffPockets _pockets;
SetOffTubePairs _tube_pairs;
HighScore _high_score;
static gid_t _privileged_gid;
};
#endif // _GAME_H_
|