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
|
/*
* This file is part of NumptyPhysics
* Copyright (C) 2008 Tim Edmonds
*
* 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 3 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.
*
*/
#ifndef GAME_H
#define GAME_H
#include "Levels.h"
class Widget;
class Canvas;
struct GameStats
{
GameStats() {reset(0);}
int startTime;
int endTime;
int strokeCount;
int pausedStrokes;
int undoCount;
void reset(int t) {
startTime = t;
endTime = 0;
strokeCount = 0;
pausedStrokes = 0;
undoCount = 0;
}
};
struct GameControl
{
GameControl() : m_quit(false),
m_edit( false ),
m_refresh( true ),
m_fade(false),
m_colour( 2 ),
m_strokeFixed( false ),
m_strokeSleep( false ),
m_strokeDecor( false ),
m_replaying( false ),
m_paused( false ),
m_level(0),
m_clickMode(0)
{}
virtual ~GameControl() {}
virtual bool save( const char *file=NULL ) =0;
virtual bool send() =0;
virtual bool load( const char* file ) { return false; };
virtual void gotoLevel( int l, bool replay=false ) =0;
virtual void clickMode(int cm) =0;
Levels& levels() { return *m_levels; }
const GameStats& stats() { return m_stats; }
bool m_quit;
bool m_edit;
bool m_refresh;
bool m_fade;
int m_colour;
int m_clickMode;
bool m_strokeFixed;
bool m_strokeSleep;
bool m_strokeDecor;
bool m_replaying;
bool m_paused;
Levels*m_levels;
int m_level;
protected:
GameStats m_stats;
};
Widget * createGameLayer( Levels* levels, int width, int height );
#endif //GAME_H
|