git repos / blockattack-game

blame: source/code/BlockGame.hpp

normal view · raw

89c4a3a6 sago007 2008-08-29 14:32 1
/*
c53e6443 sago007 2012-04-17 11:04 2
===========================================================================
c53e6443 sago007 2012-04-17 11:04 3
blockattack - Block Attack - Rise of the Blocks
c53e6443 sago007 2012-04-17 11:04 4
Copyright (C) 2005-2012 Poul Sander
c53e6443 sago007 2012-04-17 11:04 5
c53e6443 sago007 2012-04-17 11:04 6
This program is free software: you can redistribute it and/or modify
c53e6443 sago007 2012-04-17 11:04 7
it under the terms of the GNU General Public License as published by
c53e6443 sago007 2012-04-17 11:04 8
the Free Software Foundation, either version 2 of the License, or
c53e6443 sago007 2012-04-17 11:04 9
(at your option) any later version.
c53e6443 sago007 2012-04-17 11:04 10
c53e6443 sago007 2012-04-17 11:04 11
This program is distributed in the hope that it will be useful,
c53e6443 sago007 2012-04-17 11:04 12
but WITHOUT ANY WARRANTY; without even the implied warranty of
c53e6443 sago007 2012-04-17 11:04 13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
c53e6443 sago007 2012-04-17 11:04 14
GNU General Public License for more details.
c53e6443 sago007 2012-04-17 11:04 15
c53e6443 sago007 2012-04-17 11:04 16
You should have received a copy of the GNU General Public License
c53e6443 sago007 2012-04-17 11:04 17
along with this program.  If not, see http://www.gnu.org/licenses/
c53e6443 sago007 2012-04-17 11:04 18
c53e6443 sago007 2012-04-17 11:04 19
Source information and contacts persons can be found at
7ac8aa4b sago007 2016-02-22 19:25 20
http://www.blockattack.net
c53e6443 sago007 2012-04-17 11:04 21
===========================================================================
c53e6443 sago007 2012-04-17 11:04 22
*/
89c4a3a6 sago007 2008-08-29 14:32 23
17916a2e sago007 2010-11-07 11:26 24
#ifndef BLOCKGAME_HPP
17916a2e sago007 2010-11-07 11:26 25
#define BLOCKGAME_HPP 1
17916a2e sago007 2010-11-07 11:26 26
32c9b349 sago007 2008-11-20 18:14 27
#include "stats.h"
32c9b349 sago007 2008-11-20 18:14 28
#include "common.h"
17916a2e sago007 2010-11-07 11:26 29
17916a2e sago007 2010-11-07 11:26 30
#define NUMBEROFCHAINS 100
69862ef6 sago007 2015-08-22 17:24 31
#define BLOCKWAIT 100000
69862ef6 sago007 2015-08-22 17:24 32
#define BLOCKHANG 1000
32c9b349 sago007 2008-11-20 18:14 33
a1072daf sago007 2016-02-20 12:47 34
enum stageButton {SBdontShow, SBstageClear, SBpuzzleMode};
a1072daf sago007 2016-02-20 12:47 35
a1072daf sago007 2016-02-20 12:47 36
extern stageButton stageButtonStatus;
a1072daf sago007 2016-02-20 12:47 37
a1072daf sago007 2016-02-20 12:47 38
//This is the size of the blocks. They are always 50. The internal logic calculates it that way
a1072daf sago007 2016-02-20 12:47 39
const int bsize = 50;
a1072daf sago007 2016-02-20 12:47 40
5159dd90 sago007 2016-02-21 15:50 41
/**
5159dd90 sago007 2016-02-21 15:50 42
 * This struct defines the start conditions of the game
5159dd90 sago007 2016-02-21 15:50 43
 */
5159dd90 sago007 2016-02-21 15:50 44
struct BlockGameStartInfo {
5159dd90 sago007 2016-02-21 15:50 45
	unsigned int ticks = 0;
5159dd90 sago007 2016-02-21 15:50 46
	bool timeTrial = false;
b256fda5 sago007 2016-02-21 16:21 47
	///True means a stage clear game will be started. level must be set too.
b1fe2ae5 sago007 2016-02-21 16:01 48
	bool stageClear = false;
b256fda5 sago007 2016-02-21 16:21 49
	///True if puzzle mode. level must be set too.
b256fda5 sago007 2016-02-21 16:21 50
	bool puzzleMode = false;
83e4f8fe sago007 2016-02-22 19:22 51
	///Single puzzle is used for the editor only.
83e4f8fe sago007 2016-02-22 19:22 52
	bool singlePuzzle = false;
b1fe2ae5 sago007 2016-02-21 16:01 53
	int level = 0;
1e5aff60 sago007 2016-02-21 18:23 54
	bool AI = false;
ae5fb2bb sago007 2016-03-22 18:00 55
	/**
ae5fb2bb sago007 2016-03-22 18:00 56
	 * True means that stats will be recorded.
ae5fb2bb sago007 2016-03-22 18:00 57
	 * If AI is true then this will be overruled to false 
ae5fb2bb sago007 2016-03-22 18:00 58
	 */
50cf6485 sago007 2016-03-21 19:11 59
	bool recordStats = true;
1e5aff60 sago007 2016-02-21 18:23 60
	bool vsMode = false;
ae5fb2bb sago007 2016-03-22 18:00 61
	/**
ae5fb2bb sago007 2016-03-22 18:00 62
	 * Set to true if we are fighting an AI. level should be the AI level we are fighting
ae5fb2bb sago007 2016-03-22 18:00 63
	 */
ae5fb2bb sago007 2016-03-22 18:00 64
	bool vsAI = false;
917dac61 sago007 2016-02-21 20:01 65
	int startBlocks = -1;
3e7b8813 sago007 2016-02-22 19:45 66
	int handicap = 0;
3e7b8813 sago007 2016-02-22 19:45 67
	int gameSpeed = 0;
1e5aff60 sago007 2016-02-21 18:23 68
};
1e5aff60 sago007 2016-02-21 18:23 69
1e5aff60 sago007 2016-02-21 18:23 70
struct GarbageStruct {
1e5aff60 sago007 2016-02-21 18:23 71
	bool greyGarbage = false;
3d12f4a8 sago007 2016-03-21 18:40 72
	int width = 0;
3d12f4a8 sago007 2016-03-21 18:40 73
	int height = 0;
3d12f4a8 sago007 2016-03-21 18:40 74
	void setGarbage(int w, int h, bool g = false) {
3d12f4a8 sago007 2016-03-21 18:40 75
		greyGarbage = g;
3d12f4a8 sago007 2016-03-21 18:40 76
		width = w;
3d12f4a8 sago007 2016-03-21 18:40 77
		height = h;
3d12f4a8 sago007 2016-03-21 18:40 78
	}
5159dd90 sago007 2016-02-21 15:50 79
};
5159dd90 sago007 2016-02-21 15:50 80
89c4a3a6 sago007 2008-08-29 14:32 81
////////////////////////////////////////////////////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 82
//The BloackGame class represents a board, score, time etc. for a single player/
89c4a3a6 sago007 2008-08-29 14:32 83
////////////////////////////////////////////////////////////////////////////////
c53e6443 sago007 2012-04-17 11:04 84
class BlockGame
c53e6443 sago007 2012-04-17 11:04 85
{
89c4a3a6 sago007 2008-08-29 14:32 86
private:
c53e6443 sago007 2012-04-17 11:04 87
	int prevTowerHeight;
c53e6443 sago007 2012-04-17 11:04 88
	bool bGarbageFallLeft;
a1072daf sago007 2016-02-20 12:47 89
	bool singlePuzzle = false;
89c4a3a6 sago007 2008-08-29 14:32 90
63c773dd sago007 2016-01-24 11:47 91
	int nextGarbageNumber;
63c773dd sago007 2016-01-24 11:47 92
	int pushedPixelAt;
63c773dd sago007 2016-01-24 11:47 93
	int nrPushedPixel, nrFellDown;
63c773dd sago007 2016-01-24 11:47 94
	unsigned int nrStops;
c53e6443 sago007 2012-04-17 11:04 95
	bool garbageToBeCleared[7][30];
63c773dd sago007 2016-01-24 11:47 96
	unsigned int lastAImove;
89c4a3a6 sago007 2008-08-29 14:32 97
63c773dd sago007 2016-01-24 11:47 98
	int AI_LineOffset; //how many lines have changed since command
63c773dd sago007 2016-01-24 11:47 99
	int hangTicks;    //How many times have hang been decreased?
c53e6443 sago007 2012-04-17 11:04 100
	//int the two following index 0 may NOT be used (what the fuck did I meen?)
63c773dd sago007 2016-01-24 11:47 101
	int chainSize[NUMBEROFCHAINS]; //Contains the chains
c53e6443 sago007 2012-04-17 11:04 102
	bool chainUsed[NUMBEROFCHAINS];   //True if the chain is used
89c4a3a6 sago007 2008-08-29 14:32 103
63c773dd sago007 2016-01-24 11:47 104
	unsigned int nextRandomNumber;
fde1f2dd sago007 2016-02-21 15:24 105
	int Level; //Only used in stageClear and puzzle (not implemented)
89c4a3a6 sago007 2008-08-29 14:32 106
63c773dd sago007 2016-01-24 11:47 107
	int rand2();
c53e6443 sago007 2012-04-17 11:04 108
	int firstUnusedChain();
89c4a3a6 sago007 2008-08-29 14:32 109
e1290bdf sago007 2010-10-25 19:56 110
//public:
6b1dc7a6 sago007 2010-11-08 21:03 111
protected:
c98e567e sago007 2016-03-25 09:39 112
	int lastCounter = 0;
63c773dd sago007 2016-01-24 11:47 113
	std::string strHolder;
c98e567e sago007 2016-03-25 09:39 114
	bool bDraw = false;
c98e567e sago007 2016-03-25 09:39 115
	unsigned int ticks = 0;
c98e567e sago007 2016-03-25 09:39 116
	unsigned int gameStartedAt = 0;
c98e567e sago007 2016-03-25 09:39 117
	unsigned int gameEndedAfter = 0;		//How long did the game last?
c98e567e sago007 2016-03-25 09:39 118
	int linesCleared = 0;
c98e567e sago007 2016-03-25 09:39 119
	int TowerHeight = 0;
63c773dd sago007 2016-01-24 11:47 120
	int board[7][30];
c98e567e sago007 2016-03-25 09:39 121
	int stop = 0;
c98e567e sago007 2016-03-25 09:39 122
	int speedLevel = 0;
c98e567e sago007 2016-03-25 09:39 123
	int pixels = 0;
c98e567e sago007 2016-03-25 09:39 124
	int MovesLeft = 0;
c98e567e sago007 2016-03-25 09:39 125
	bool timetrial = false;
c98e567e sago007 2016-03-25 09:39 126
	bool stageClear = false;
c98e567e sago007 2016-03-25 09:39 127
	bool vsMode = false;
c98e567e sago007 2016-03-25 09:39 128
	bool puzzleMode = false;
c98e567e sago007 2016-03-25 09:39 129
	int stageClearLimit = 0; //stores number of lines user must clear to win
c98e567e sago007 2016-03-25 09:39 130
	int combo = 0;
c98e567e sago007 2016-03-25 09:39 131
	int chain = 0;
c98e567e sago007 2016-03-25 09:39 132
	int cursorx = 0; //stores cursor position
c98e567e sago007 2016-03-25 09:39 133
	int cursory = 0; // -||-
c98e567e sago007 2016-03-25 09:39 134
	double speed = 0.0;
c98e567e sago007 2016-03-25 09:39 135
	double baseSpeed = 0.0; //factor for speed. Lower value = faster gameplay
c98e567e sago007 2016-03-25 09:39 136
	int score = 0;
c98e567e sago007 2016-03-25 09:39 137
	bool bGameOver = false;
c98e567e sago007 2016-03-25 09:39 138
	bool hasWonTheGame = false;
c98e567e sago007 2016-03-25 09:39 139
	int AI_MoveSpeed = 0;   //How often will the computer move? milliseconds
c98e567e sago007 2016-03-25 09:39 140
	bool AI_Enabled = false;
50cf6485 sago007 2016-03-21 19:11 141
	bool recordStats = true;
ae5fb2bb sago007 2016-03-22 18:00 142
	bool vsAI = false;  //Set to true for single player vs
c53e6443 sago007 2012-04-17 11:04 143
c98e567e sago007 2016-03-25 09:39 144
	int handicap = 0;
3d12f4a8 sago007 2016-03-21 18:40 145
	
3d12f4a8 sago007 2016-03-21 18:40 146
	std::vector<GarbageStruct> garbageSendQueue;
c53e6443 sago007 2012-04-17 11:04 147
c98e567e sago007 2016-03-25 09:39 148
	int AIlineToClear = 0;
c53e6443 sago007 2012-04-17 11:04 149
c98e567e sago007 2016-03-25 09:39 150
	short AIstatus = 0;   //Status flags:
c53e6443 sago007 2012-04-17 11:04 151
	//0: nothing, 2: clear tower, 3: clear horisontal, 4: clear vertical
c53e6443 sago007 2012-04-17 11:04 152
	//1: make more lines, 5: make 2 lines, 6: make 1 line
6b1dc7a6 sago007 2010-11-08 21:03 153
e1290bdf sago007 2010-10-25 19:56 154
public:
c53e6443 sago007 2012-04-17 11:04 155
8f632c05 sago007 2015-08-22 16:21 156
	std::string name;
c53e6443 sago007 2012-04-17 11:04 157
0f031889 sago007 2012-05-01 19:57 158
public:
c53e6443 sago007 2012-04-17 11:04 159
	BlockGame();
917dac61 sago007 2016-02-21 20:01 160
	virtual ~BlockGame();
c53e6443 sago007 2012-04-17 11:04 161
63c773dd sago007 2016-01-24 11:47 162
	int getAIlevel()  const;
229e212d sago007 2015-08-22 17:14 163
	
313ecd1b sago007 2015-08-22 20:38 164
	virtual void AddText(int x, int y, const std::string& text, int time) const  {}
313ecd1b sago007 2015-08-22 20:38 165
	virtual void AddBall(int x, int y, bool right, int color) const  {}
313ecd1b sago007 2015-08-22 20:38 166
	virtual void AddExplosion(int x, int y) const  {}
313ecd1b sago007 2015-08-22 20:38 167
	virtual void PlayerWonEvent() const  {}
027b5cfd sago007 2015-08-23 14:27 168
	virtual void DrawEvent() const {}
313ecd1b sago007 2015-08-22 20:38 169
	virtual void BlockPopEvent() const  {}
313ecd1b sago007 2015-08-22 20:38 170
	virtual void LongChainDoneEvent() const  {}
313ecd1b sago007 2015-08-22 20:38 171
	virtual void TimeTrialEndEvent() const  {}
313ecd1b sago007 2015-08-22 20:38 172
	virtual void EndlessHighscoreEvent() const  {}
229e212d sago007 2015-08-22 17:14 173
	
027b5cfd sago007 2015-08-23 14:27 174
	int GetScore() const;
027b5cfd sago007 2015-08-23 14:27 175
	int GetHandicap() const;
027b5cfd sago007 2015-08-23 14:27 176
	bool isGameOver() const;
63c773dd sago007 2016-01-24 11:47 177
	int GetGameStartedAt() const;
63c773dd sago007 2016-01-24 11:47 178
	int GetGameEndedAt() const;
027b5cfd sago007 2015-08-23 14:27 179
	bool isTimeTrial() const;
027b5cfd sago007 2015-08-23 14:27 180
	bool isStageClear() const;
027b5cfd sago007 2015-08-23 14:27 181
	bool isVsMode() const;
027b5cfd sago007 2015-08-23 14:27 182
	bool isPuzzleMode() const;
027b5cfd sago007 2015-08-23 14:27 183
	int GetLinesCleared() const;
027b5cfd sago007 2015-08-23 14:27 184
	int GetStageClearLimit() const;
027b5cfd sago007 2015-08-23 14:27 185
	int GetChains() const;
027b5cfd sago007 2015-08-23 14:27 186
	int GetPixels() const;
027b5cfd sago007 2015-08-23 14:27 187
	int GetSpeedLevel() const;
027b5cfd sago007 2015-08-23 14:27 188
	int GetTowerHeight() const;
027b5cfd sago007 2015-08-23 14:27 189
	int GetCursorX() const;
027b5cfd sago007 2015-08-23 14:27 190
	int GetCursorY() const;
c53e6443 sago007 2012-04-17 11:04 191
	void MoveCursorTo(int x, int y);
027b5cfd sago007 2015-08-23 14:27 192
	bool GetIsWinner() const;
3e7b8813 sago007 2016-02-22 19:45 193
    bool isSinglePuzzle() const;
3e7b8813 sago007 2016-02-22 19:45 194
    int getLevel() const;
3e7b8813 sago007 2016-02-22 19:45 195
	bool GetAIenabled() const;
3e7b8813 sago007 2016-02-22 19:45 196
	bool IsNearDeath() const;
5159dd90 sago007 2016-02-21 15:50 197
	void NewGame(const BlockGameStartInfo &s);
0f031889 sago007 2012-05-01 19:57 198
	//Creates garbage using a given wide and height
0f031889 sago007 2012-05-01 19:57 199
	bool CreateGarbage(int wide, int height);
0f031889 sago007 2012-05-01 19:57 200
	//Creates garbage using a given wide and height
0f031889 sago007 2012-05-01 19:57 201
	bool CreateGreyGarbage();
3d12f4a8 sago007 2016-03-21 18:40 202
	void PopSendGarbage(std::vector<GarbageStruct>& poppedData);
0f031889 sago007 2012-05-01 19:57 203
	//prints "Game Over" and ends game
0f031889 sago007 2012-05-01 19:57 204
	void SetGameOver();
0f031889 sago007 2012-05-01 19:57 205
	//Moves the cursor, receaves N,S,E or W as a char an moves as desired
0f031889 sago007 2012-05-01 19:57 206
	void MoveCursor(char way);
0f031889 sago007 2012-05-01 19:57 207
	//switches the two blocks at the cursor position, unless game over
0f031889 sago007 2012-05-01 19:57 208
	void SwitchAtCursor();
0f031889 sago007 2012-05-01 19:57 209
	//Generates a new line and moves the field one block up (restart puzzle mode)
0f031889 sago007 2012-05-01 19:57 210
	void PushLine();
80b830cd sago007 2012-08-19 17:51 211
	void Update(unsigned int newtick);
c53e6443 sago007 2012-04-17 11:04 212
	//Prints "winner" and ends game
c53e6443 sago007 2012-04-17 11:04 213
	void setPlayerWon();
c53e6443 sago007 2012-04-17 11:04 214
	//Prints "draw" and ends the game
c53e6443 sago007 2012-04-17 11:04 215
	void setDraw();
e1290bdf sago007 2010-10-25 19:56 216
private:
5159dd90 sago007 2016-02-21 15:50 217
	void NewGame(unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 218
	//Test if LineNr is an empty line, returns false otherwise.
ca486238 sago007 2015-08-23 15:12 219
	bool LineEmpty(int lineNr) const;
c53e6443 sago007 2012-04-17 11:04 220
	//Test if the entire board is empty (used for Puzzles)
ca486238 sago007 2015-08-23 15:12 221
	bool BoardEmpty() const;
c53e6443 sago007 2012-04-17 11:04 222
	//Anything that the user can't move? In that case Game Over cannot occur
ca486238 sago007 2015-08-23 15:12 223
	bool hasStaticContent() const;
c53e6443 sago007 2012-04-17 11:04 224
	void putStartBlocks();
917dac61 sago007 2016-02-21 20:01 225
	void putStartBlocks(int n);
c53e6443 sago007 2012-04-17 11:04 226
	//decreases hang for all hanging blocks and wait for waiting blocks
c53e6443 sago007 2012-04-17 11:04 227
	void ReduceStuff();
3e7b8813 sago007 2016-02-22 19:45 228
	void setGameSpeed(int globalSpeedLevel);
3e7b8813 sago007 2016-02-22 19:45 229
	void setHandicap(int globalHandicap);
c53e6443 sago007 2012-04-17 11:04 230
	//Clears garbage, must take one the lower left corner!
c53e6443 sago007 2012-04-17 11:04 231
	int GarbageClearer(int x, int y, int number, bool aLineToClear, int chain);
c53e6443 sago007 2012-04-17 11:04 232
	//Marks garbage that must be cleared
c53e6443 sago007 2012-04-17 11:04 233
	int GarbageMarker(int x, int y);
c53e6443 sago007 2012-04-17 11:04 234
	int FirstGarbageMarker(int x, int y);
c53e6443 sago007 2012-04-17 11:04 235
	//Clear Blocks if 3 or more is alligned (naive implemented)
c53e6443 sago007 2012-04-17 11:04 236
	void ClearBlocks();
c53e6443 sago007 2012-04-17 11:04 237
	//Moves all peaces a spot down if possible
c53e6443 sago007 2012-04-17 11:04 238
	int FallBlock(int x, int y, int number);
c53e6443 sago007 2012-04-17 11:04 239
	//Makes all Garbage fall one spot
c53e6443 sago007 2012-04-17 11:04 240
	void GarbageFall();
c53e6443 sago007 2012-04-17 11:04 241
	//Makes the blocks fall (it doesn't test time, this must be done before hand)
c53e6443 sago007 2012-04-17 11:04 242
	void FallDown();
c53e6443 sago007 2012-04-17 11:04 243
	//Pushes a single pixel, so it appears to scrool
c53e6443 sago007 2012-04-17 11:04 244
	void PushPixels();
c53e6443 sago007 2012-04-17 11:04 245
	//See how high the tower is, saved in integer TowerHeight
c53e6443 sago007 2012-04-17 11:04 246
	void FindTowerHeight();
89c4a3a6 sago007 2008-08-29 14:32 247
///////////////////////////////////////////////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 248
/////////////////////////// AI starts here! ///////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 249
///////////////////////////////////////////////////////////////////////////
c53e6443 sago007 2012-04-17 11:04 250
	//First the helpet functions:
c53e6443 sago007 2012-04-17 11:04 251
	int nrOfType(int line, int type);
c53e6443 sago007 2012-04-17 11:04 252
	int AIcolorToClear;
c53e6443 sago007 2012-04-17 11:04 253
	//See if a combo can be made in this line
c53e6443 sago007 2012-04-17 11:04 254
	int horiInLine(int line);
c53e6443 sago007 2012-04-17 11:04 255
	bool horiClearPossible();
c53e6443 sago007 2012-04-17 11:04 256
	//the Line Has Unmoveable Objects witch might stall the AI
c53e6443 sago007 2012-04-17 11:04 257
	bool lineHasGarbage(int line);
c53e6443 sago007 2012-04-17 11:04 258
	//Types 0..6 in line
c53e6443 sago007 2012-04-17 11:04 259
	int nrOfRealTypes(int line);
c53e6443 sago007 2012-04-17 11:04 260
	//See if there is a tower
c53e6443 sago007 2012-04-17 11:04 261
	bool ThereIsATower();
c53e6443 sago007 2012-04-17 11:04 262
	double firstInLine1(int line);
c53e6443 sago007 2012-04-17 11:04 263
	//returns the first coordinate of the block of type
c53e6443 sago007 2012-04-17 11:04 264
	double firstInLine(int line, int type);
c53e6443 sago007 2012-04-17 11:04 265
	//There in the line shall we move
c53e6443 sago007 2012-04-17 11:04 266
	int closestTo(int line, int place);
c53e6443 sago007 2012-04-17 11:04 267
	//The AI will remove a tower
c53e6443 sago007 2012-04-17 11:04 268
	void AI_ClearTower();
c53e6443 sago007 2012-04-17 11:04 269
	//The AI will try to clear block horisontally
c53e6443 sago007 2012-04-17 11:04 270
	void AI_ClearHori();
c53e6443 sago007 2012-04-17 11:04 271
	//Test if vertical clear is possible
c53e6443 sago007 2012-04-17 11:04 272
	bool veriClearPossible();
c53e6443 sago007 2012-04-17 11:04 273
	//There in the line shall we move
c53e6443 sago007 2012-04-17 11:04 274
	int closestTo(int line, int type, int place);
c53e6443 sago007 2012-04-17 11:04 275
	//The AI will try to clear blocks vertically
c53e6443 sago007 2012-04-17 11:04 276
	void AI_ClearVertical();
c53e6443 sago007 2012-04-17 11:04 277
	bool firstLineCreated;
c53e6443 sago007 2012-04-17 11:04 278
	void AI_Move();
52d3ef2e sago007 2016-03-22 19:30 279
//////////////////////////////////////////////////////////////////
52d3ef2e sago007 2016-03-22 19:30 280
///////////////////////////// AI ends here! //////////////////////
a1072daf sago007 2016-02-20 12:47 281
//////////////////////////////////////////////////////////////////
6d6b2788 sago007 2016-02-21 18:51 282
	//Set the move speed of the AI based on the aiLevel parameter
6d6b2788 sago007 2016-02-21 18:51 283
	void setAIlevel(int aiLevel);
79d3c1d3 sago007 2012-05-05 15:54 284
	void PushLineInternal();
c53e6443 sago007 2012-04-17 11:04 285
	//Updates evrything, if not called nothing happends
c53e6443 sago007 2012-04-17 11:04 286
	void Update();
80b830cd sago007 2012-08-19 17:51 287
	void UpdateInternal(unsigned int newtick);
17916a2e sago007 2010-11-07 11:26 288
};
fde1f2dd sago007 2016-02-21 15:24 289
c1785ec5 sago007 2016-02-21 16:07 290
//Play the next level
c1785ec5 sago007 2016-02-21 16:07 291
void nextLevel(BlockGame& g, unsigned int ticks);
fde1f2dd sago007 2016-02-21 15:24 292
//Replay the current level
fde1f2dd sago007 2016-02-21 15:24 293
void retryLevel(BlockGame& g, unsigned int ticks);
17916a2e sago007 2010-11-07 11:26 294
17916a2e sago007 2010-11-07 11:26 295
#endif
1970-01-01 00:00 296