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
c53e6443 sago007 2012-04-17 11:04 20
http://blockattack.sf.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
#include "replay.h"
17916a2e sago007 2010-11-07 11:26 30
17916a2e sago007 2010-11-07 11:26 31
#define NUMBEROFCHAINS 100
32c9b349 sago007 2008-11-20 18:14 32
6c9b4cd7 sago007 2012-05-01 19:34 33
#define ACTION_UPDATE 0
6c9b4cd7 sago007 2012-05-01 19:34 34
#define ACTION_MOVECURSOR 1
6c9b4cd7 sago007 2012-05-01 19:34 35
#define ACTION_MOVECURSORTO 2
6c9b4cd7 sago007 2012-05-01 19:34 36
#define ACTION_SWITCH 3
6c9b4cd7 sago007 2012-05-01 19:34 37
#define ACTION_PUSH 4
6c9b4cd7 sago007 2012-05-01 19:34 38
#define ACTION_CREATEGARBAGE 5
6c9b4cd7 sago007 2012-05-01 19:34 39
#define ACTION_CREATEGRAYGARBAGE 6
6c9b4cd7 sago007 2012-05-01 19:34 40
#define ACTION_GAMEOVER 7
6c9b4cd7 sago007 2012-05-01 19:34 41
#define ACTION_WIN 8
6c9b4cd7 sago007 2012-05-01 19:34 42
#define ACTION_DRAW 9
6c9b4cd7 sago007 2012-05-01 19:34 43
#define ACTION_GAMESPEED 10
6c9b4cd7 sago007 2012-05-01 19:34 44
#define ACTION_HANDICAP 11
6c9b4cd7 sago007 2012-05-01 19:34 45
#define ACTION_NEW 12
6c9b4cd7 sago007 2012-05-01 19:34 46
#define ACTION_NEWTT 13
6c9b4cd7 sago007 2012-05-01 19:34 47
#define ACTION_NEWVS 14
6c9b4cd7 sago007 2012-05-01 19:34 48
#define ACTION_STARTBLOCKS 15
6c9b4cd7 sago007 2012-05-01 19:34 49
#define ACTION_NOP 16
6c9b4cd7 sago007 2012-05-01 19:34 50
89c4a3a6 sago007 2008-08-29 14:32 51
////////////////////////////////////////////////////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 52
//The BloackGame class represents a board, score, time etc. for a single player/
89c4a3a6 sago007 2008-08-29 14:32 53
////////////////////////////////////////////////////////////////////////////////
c53e6443 sago007 2012-04-17 11:04 54
class BlockGame
c53e6443 sago007 2012-04-17 11:04 55
{
89c4a3a6 sago007 2008-08-29 14:32 56
private:
c53e6443 sago007 2012-04-17 11:04 57
	int prevTowerHeight;
c53e6443 sago007 2012-04-17 11:04 58
	bool bGarbageFallLeft;
89c4a3a6 sago007 2008-08-29 14:32 59
c53e6443 sago007 2012-04-17 11:04 60
	Uint32 nextGarbageNumber;
c53e6443 sago007 2012-04-17 11:04 61
	Uint32 pushedPixelAt;
c53e6443 sago007 2012-04-17 11:04 62
	Uint32 nrPushedPixel, nrFellDown, nrStops;
c53e6443 sago007 2012-04-17 11:04 63
	bool garbageToBeCleared[7][30];
c53e6443 sago007 2012-04-17 11:04 64
	Uint32 lastAImove;
89c4a3a6 sago007 2008-08-29 14:32 65
c53e6443 sago007 2012-04-17 11:04 66
	Sint16 AI_LineOffset; //how many lines have changed since command
c53e6443 sago007 2012-04-17 11:04 67
	Uint32 hangTicks;    //How many times have hang been decreased?
c53e6443 sago007 2012-04-17 11:04 68
	//int the two following index 0 may NOT be used (what the fuck did I meen?)
c53e6443 sago007 2012-04-17 11:04 69
	Uint8 chainSize[NUMBEROFCHAINS]; //Contains the chains
c53e6443 sago007 2012-04-17 11:04 70
	bool chainUsed[NUMBEROFCHAINS];   //True if the chain is used
89c4a3a6 sago007 2008-08-29 14:32 71
c53e6443 sago007 2012-04-17 11:04 72
	Uint32 nextRandomNumber;
89c4a3a6 sago007 2008-08-29 14:32 73
c53e6443 sago007 2012-04-17 11:04 74
	Uint16 rand2();
c53e6443 sago007 2012-04-17 11:04 75
	int firstUnusedChain();
89c4a3a6 sago007 2008-08-29 14:32 76
e1290bdf sago007 2010-10-25 19:56 77
//public:
6b1dc7a6 sago007 2010-11-08 21:03 78
protected:
c53e6443 sago007 2012-04-17 11:04 79
	int lastCounter;
c53e6443 sago007 2012-04-17 11:04 80
	string strHolder;
c53e6443 sago007 2012-04-17 11:04 81
	bool bDraw;
c53e6443 sago007 2012-04-17 11:04 82
	bool bReplaying; //true if we are watching a replay
c53e6443 sago007 2012-04-17 11:04 83
#if NETWORK
c53e6443 sago007 2012-04-17 11:04 84
	bool bNetworkPlayer; //must recieve packages from the net
c53e6443 sago007 2012-04-17 11:04 85
	bool bDisconnected; //The player has disconnected
c53e6443 sago007 2012-04-17 11:04 86
#endif
c53e6443 sago007 2012-04-17 11:04 87
	unsigned int ticks;
80b830cd sago007 2012-08-19 17:51 88
	unsigned int gameStartedAt;
80b830cd sago007 2012-08-19 17:51 89
	unsigned int gameEndedAfter;		//How long did the game last?
80b830cd sago007 2012-08-19 17:51 90
	unsigned int replayIndex; //Used during replay to remeber how many replay actions we have performed.
80b830cd sago007 2012-08-19 17:51 91
	unsigned int actionIndex; //Used during network to remeber how many actions we have sent.
c53e6443 sago007 2012-04-17 11:04 92
	int linesCleared;
c53e6443 sago007 2012-04-17 11:04 93
	int TowerHeight;
c53e6443 sago007 2012-04-17 11:04 94
	BlockGame *garbageTarget;
c53e6443 sago007 2012-04-17 11:04 95
	Sint32 board[7][30];
c53e6443 sago007 2012-04-17 11:04 96
	int stop;
c53e6443 sago007 2012-04-17 11:04 97
	int speedLevel;
c53e6443 sago007 2012-04-17 11:04 98
	int pixels;
c53e6443 sago007 2012-04-17 11:04 99
	int MovesLeft;
c53e6443 sago007 2012-04-17 11:04 100
	bool timetrial, stageClear, vsMode, puzzleMode;
c53e6443 sago007 2012-04-17 11:04 101
	int Level; //Only used in stageClear and puzzle (not implemented)
c53e6443 sago007 2012-04-17 11:04 102
	int stageClearLimit; //stores number of lines user must clear to win
c53e6443 sago007 2012-04-17 11:04 103
	int combo;
c53e6443 sago007 2012-04-17 11:04 104
	int chain;
c53e6443 sago007 2012-04-17 11:04 105
	int cursorx; //stores cursor position
c53e6443 sago007 2012-04-17 11:04 106
	int cursory; // -||-
c53e6443 sago007 2012-04-17 11:04 107
	double speed, baseSpeed; //factor for speed. Lower value = faster gameplay
c53e6443 sago007 2012-04-17 11:04 108
	Uint32 score;
c53e6443 sago007 2012-04-17 11:04 109
	bool bGameOver;
c53e6443 sago007 2012-04-17 11:04 110
	bool hasWonTheGame;
c53e6443 sago007 2012-04-17 11:04 111
	int AI_MoveSpeed;   //How often will the computer move? milliseconds
c53e6443 sago007 2012-04-17 11:04 112
	bool AI_Enabled;
c53e6443 sago007 2012-04-17 11:04 113
c53e6443 sago007 2012-04-17 11:04 114
	Uint32 handicap;
c53e6443 sago007 2012-04-17 11:04 115
c53e6443 sago007 2012-04-17 11:04 116
c53e6443 sago007 2012-04-17 11:04 117
	int AIlineToClear;
c53e6443 sago007 2012-04-17 11:04 118
c53e6443 sago007 2012-04-17 11:04 119
	short AIstatus;   //Status flags:
c53e6443 sago007 2012-04-17 11:04 120
	//0: nothing, 2: clear tower, 3: clear horisontal, 4: clear vertical
c53e6443 sago007 2012-04-17 11:04 121
	//1: make more lines, 5: make 2 lines, 6: make 1 line
6b1dc7a6 sago007 2010-11-08 21:03 122
e1290bdf sago007 2010-10-25 19:56 123
public:
c53e6443 sago007 2012-04-17 11:04 124
8f632c05 sago007 2015-08-22 16:21 125
	std::string name;
c53e6443 sago007 2012-04-17 11:04 126
	Replay theReplay;   //Stores the replay
c53e6443 sago007 2012-04-17 11:04 127
0f031889 sago007 2012-05-01 19:57 128
public:
c53e6443 sago007 2012-04-17 11:04 129
	//Constructor
c53e6443 sago007 2012-04-17 11:04 130
	BlockGame();
c53e6443 sago007 2012-04-17 11:04 131
c53e6443 sago007 2012-04-17 11:04 132
	//Deconstructor, never really used... game used to crash when called, cause of the way sBoard was created
c53e6443 sago007 2012-04-17 11:04 133
	//It should work now and can be used if we want to assign more players in network games that we need to free later
c53e6443 sago007 2012-04-17 11:04 134
	~BlockGame();
c53e6443 sago007 2012-04-17 11:04 135
c53e6443 sago007 2012-04-17 11:04 136
	void setGameSpeed(Uint8 globalSpeedLevel);
c53e6443 sago007 2012-04-17 11:04 137
	void setHandicap(Uint8 globalHandicap);
c53e6443 sago007 2012-04-17 11:04 138
	//Set the move speed of the AI based on the aiLevel parameter
c53e6443 sago007 2012-04-17 11:04 139
	//Also enables AI
c53e6443 sago007 2012-04-17 11:04 140
	void setAIlevel(Uint8 aiLevel);
c53e6443 sago007 2012-04-17 11:04 141
	Uint8 getAIlevel();
229e212d sago007 2015-08-22 17:14 142
	
229e212d sago007 2015-08-22 17:14 143
	virtual void AddText(int x, int y, const std::string& text, int time) {};
229e212d sago007 2015-08-22 17:14 144
	virtual void AddBall(int x, int y, bool left, int color) {};
229e212d sago007 2015-08-22 17:14 145
	virtual void AddExplosion(int x, int y) {};
229e212d sago007 2015-08-22 17:14 146
	
c53e6443 sago007 2012-04-17 11:04 147
	int GetScore();
c53e6443 sago007 2012-04-17 11:04 148
	int GetHandicap();
c53e6443 sago007 2012-04-17 11:04 149
	bool isGameOver();
79d3c1d3 sago007 2012-05-05 15:54 150
	Sint32 GetGameStartedAt();
79d3c1d3 sago007 2012-05-05 15:54 151
	Sint32 GetGameEndedAt();
c53e6443 sago007 2012-04-17 11:04 152
	bool isTimeTrial();
c53e6443 sago007 2012-04-17 11:04 153
	bool isStageClear();
c53e6443 sago007 2012-04-17 11:04 154
	bool isVsMode();
c53e6443 sago007 2012-04-17 11:04 155
	bool isPuzzleMode();
c53e6443 sago007 2012-04-17 11:04 156
	int GetLinesCleared();
c53e6443 sago007 2012-04-17 11:04 157
	int GetStageClearLimit();
c53e6443 sago007 2012-04-17 11:04 158
	int GetChains();
c53e6443 sago007 2012-04-17 11:04 159
	int GetPixels();
c53e6443 sago007 2012-04-17 11:04 160
	int GetSpeedLevel();
c53e6443 sago007 2012-04-17 11:04 161
	int GetTowerHeight();
c53e6443 sago007 2012-04-17 11:04 162
	int GetCursorX();
c53e6443 sago007 2012-04-17 11:04 163
	int GetCursorY();
c53e6443 sago007 2012-04-17 11:04 164
	void MoveCursorTo(int x, int y);
c53e6443 sago007 2012-04-17 11:04 165
	bool GetIsWinner();
c53e6443 sago007 2012-04-17 11:04 166
	//Instead of creating new object new game is called, to prevent memory leaks
229e212d sago007 2015-08-22 17:14 167
	void NewGame(unsigned int ticks);
229e212d sago007 2015-08-22 17:14 168
	void NewTimeTrialGame(unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 169
	//Starts a new stage game, takes level as input!
229e212d sago007 2015-08-22 17:14 170
	void NewStageGame(int level, unsigned int ticks);
229e212d sago007 2015-08-22 17:14 171
	void NewPuzzleGame(int level, unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 172
	//Replay the current level
c53e6443 sago007 2012-04-17 11:04 173
	void retryLevel(unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 174
	//Play the next level
c53e6443 sago007 2012-04-17 11:04 175
	void nextLevel(unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 176
	//Starts new Vs Game (two Player)
229e212d sago007 2015-08-22 17:14 177
	void NewVsGame(BlockGame *target,unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 178
	//Starts new Vs Game (two Player)
229e212d sago007 2015-08-22 17:14 179
	void NewVsGame(BlockGame *target, bool AI,unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 180
	//We want to play the replay (must have been loaded beforehand)
229e212d sago007 2015-08-22 17:14 181
	void playReplay(unsigned int ticks, const Replay& r);
0f031889 sago007 2012-05-01 19:57 182
	void putStartBlocks(Uint32 n);
0f031889 sago007 2012-05-01 19:57 183
	//Creates garbage using a given wide and height
0f031889 sago007 2012-05-01 19:57 184
	bool CreateGarbage(int wide, int height);
0f031889 sago007 2012-05-01 19:57 185
	//Creates garbage using a given wide and height
0f031889 sago007 2012-05-01 19:57 186
	bool CreateGreyGarbage();
0f031889 sago007 2012-05-01 19:57 187
	//prints "Game Over" and ends game
0f031889 sago007 2012-05-01 19:57 188
	void SetGameOver();
0f031889 sago007 2012-05-01 19:57 189
	bool GetAIenabled();
18055aa0 sago007 2012-06-05 19:43 190
	bool IsNearDeath();
0f031889 sago007 2012-05-01 19:57 191
	//Moves the cursor, receaves N,S,E or W as a char an moves as desired
0f031889 sago007 2012-05-01 19:57 192
	void MoveCursor(char way);
0f031889 sago007 2012-05-01 19:57 193
	//switches the two blocks at the cursor position, unless game over
0f031889 sago007 2012-05-01 19:57 194
	void SwitchAtCursor();
0f031889 sago007 2012-05-01 19:57 195
	//Generates a new line and moves the field one block up (restart puzzle mode)
0f031889 sago007 2012-05-01 19:57 196
	void PushLine();
80b830cd sago007 2012-08-19 17:51 197
	void Update(unsigned int newtick);
80b830cd sago007 2012-08-19 17:51 198
	void PerformAction(unsigned int tick, int action, string param);
07383b8f sago007 2012-05-11 21:00 199
	/**
b4f1d3cf sago007 2012-08-20 21:28 200
	 *
b4f1d3cf sago007 2012-08-20 21:28 201
	 * @param tick Tick of the action
b4f1d3cf sago007 2012-08-20 21:28 202
	 * @param action The action
b4f1d3cf sago007 2012-08-20 21:28 203
	 * @param param Params.
b4f1d3cf sago007 2012-08-20 21:28 204
	 * @return 1 if an action was selected
b4f1d3cf sago007 2012-08-20 21:28 205
	 */
80b830cd sago007 2012-08-19 17:51 206
	int GotAction(unsigned int &tick,int &action,string &param);
c53e6443 sago007 2012-04-17 11:04 207
#if NETWORK
c53e6443 sago007 2012-04-17 11:04 208
	//network play
229e212d sago007 2015-08-22 17:14 209
	void playNetwork(unsigned int ticks);
c53e6443 sago007 2012-04-17 11:04 210
#endif
c53e6443 sago007 2012-04-17 11:04 211
	//Prints "winner" and ends game
c53e6443 sago007 2012-04-17 11:04 212
	void setPlayerWon();
c53e6443 sago007 2012-04-17 11:04 213
	//void SetGameOver();
c53e6443 sago007 2012-04-17 11:04 214
91886cae sago007 2008-09-12 16:28 215
#if NETWORK
c53e6443 sago007 2012-04-17 11:04 216
	//Sets disconnected:
c53e6443 sago007 2012-04-17 11:04 217
	void setDisconnect();
89c4a3a6 sago007 2008-08-29 14:32 218
#endif
c53e6443 sago007 2012-04-17 11:04 219
	//Prints "draw" and ends the game
c53e6443 sago007 2012-04-17 11:04 220
	void setDraw();
e1290bdf sago007 2010-10-25 19:56 221
private:
0f031889 sago007 2012-05-01 19:57 222
#if NETWORK
0f031889 sago007 2012-05-01 19:57 223
#define garbageStackSize 10
0f031889 sago007 2012-05-01 19:57 224
	Uint8 garbageStack[garbageStackSize][3]; //A garbage stack with space for 10 garbage blocks. 0=x,1=y,2=type
0f031889 sago007 2012-05-01 19:57 225
	int garbageStackUsed;
0f031889 sago007 2012-05-01 19:57 226
0f031889 sago007 2012-05-01 19:57 227
	void emptyGarbageStack();
0f031889 sago007 2012-05-01 19:57 228
	bool pushGarbage(Uint8 width, Uint8 height, Uint8 type);
0f031889 sago007 2012-05-01 19:57 229
public:
0f031889 sago007 2012-05-01 19:57 230
	bool popGarbage(Uint8 *width, Uint8 *height, Uint8 *type);
0f031889 sago007 2012-05-01 19:57 231
private:
0f031889 sago007 2012-05-01 19:57 232
0f031889 sago007 2012-05-01 19:57 233
#endif
0f031889 sago007 2012-05-01 19:57 234
	//Go in Demonstration mode, no movement
0f031889 sago007 2012-05-01 19:57 235
	void Demonstration(bool toggle);
c53e6443 sago007 2012-04-17 11:04 236
	//Test if LineNr is an empty line, returns false otherwise.
c53e6443 sago007 2012-04-17 11:04 237
	bool LineEmpty(int lineNr);
c53e6443 sago007 2012-04-17 11:04 238
	//Test if the entire board is empty (used for Puzzles)
c53e6443 sago007 2012-04-17 11:04 239
	bool BoardEmpty();
c53e6443 sago007 2012-04-17 11:04 240
	//Anything that the user can't move? In that case Game Over cannot occur
c53e6443 sago007 2012-04-17 11:04 241
	bool hasStaticContent();
c53e6443 sago007 2012-04-17 11:04 242
	void putStartBlocks();
c53e6443 sago007 2012-04-17 11:04 243
	//decreases hang for all hanging blocks and wait for waiting blocks
c53e6443 sago007 2012-04-17 11:04 244
	void ReduceStuff();
c53e6443 sago007 2012-04-17 11:04 245
	//Clears garbage, must take one the lower left corner!
c53e6443 sago007 2012-04-17 11:04 246
	int GarbageClearer(int x, int y, int number, bool aLineToClear, int chain);
c53e6443 sago007 2012-04-17 11:04 247
	//Marks garbage that must be cleared
c53e6443 sago007 2012-04-17 11:04 248
	int GarbageMarker(int x, int y);
c53e6443 sago007 2012-04-17 11:04 249
	int FirstGarbageMarker(int x, int y);
c53e6443 sago007 2012-04-17 11:04 250
	//Clear Blocks if 3 or more is alligned (naive implemented)
c53e6443 sago007 2012-04-17 11:04 251
	void ClearBlocks();
c53e6443 sago007 2012-04-17 11:04 252
	//Moves all peaces a spot down if possible
c53e6443 sago007 2012-04-17 11:04 253
	int FallBlock(int x, int y, int number);
c53e6443 sago007 2012-04-17 11:04 254
	//Makes all Garbage fall one spot
c53e6443 sago007 2012-04-17 11:04 255
	void GarbageFall();
c53e6443 sago007 2012-04-17 11:04 256
	//Makes the blocks fall (it doesn't test time, this must be done before hand)
c53e6443 sago007 2012-04-17 11:04 257
	void FallDown();
c53e6443 sago007 2012-04-17 11:04 258
	//Pushes a single pixel, so it appears to scrool
c53e6443 sago007 2012-04-17 11:04 259
	void PushPixels();
c53e6443 sago007 2012-04-17 11:04 260
	//See how high the tower is, saved in integer TowerHeight
c53e6443 sago007 2012-04-17 11:04 261
	void FindTowerHeight();
89c4a3a6 sago007 2008-08-29 14:32 262
///////////////////////////////////////////////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 263
/////////////////////////// AI starts here! ///////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 264
///////////////////////////////////////////////////////////////////////////
c53e6443 sago007 2012-04-17 11:04 265
	//First the helpet functions:
c53e6443 sago007 2012-04-17 11:04 266
	int nrOfType(int line, int type);
c53e6443 sago007 2012-04-17 11:04 267
	int AIcolorToClear;
c53e6443 sago007 2012-04-17 11:04 268
	//See if a combo can be made in this line
c53e6443 sago007 2012-04-17 11:04 269
	int horiInLine(int line);
c53e6443 sago007 2012-04-17 11:04 270
	bool horiClearPossible();
c53e6443 sago007 2012-04-17 11:04 271
	//the Line Has Unmoveable Objects witch might stall the AI
c53e6443 sago007 2012-04-17 11:04 272
	bool lineHasGarbage(int line);
c53e6443 sago007 2012-04-17 11:04 273
	//Types 0..6 in line
c53e6443 sago007 2012-04-17 11:04 274
	int nrOfRealTypes(int line);
c53e6443 sago007 2012-04-17 11:04 275
	//See if there is a tower
c53e6443 sago007 2012-04-17 11:04 276
	bool ThereIsATower();
c53e6443 sago007 2012-04-17 11:04 277
	double firstInLine1(int line);
c53e6443 sago007 2012-04-17 11:04 278
	//returns the first coordinate of the block of type
c53e6443 sago007 2012-04-17 11:04 279
	double firstInLine(int line, int type);
c53e6443 sago007 2012-04-17 11:04 280
	//There in the line shall we move
c53e6443 sago007 2012-04-17 11:04 281
	int closestTo(int line, int place);
c53e6443 sago007 2012-04-17 11:04 282
	//The AI will remove a tower
c53e6443 sago007 2012-04-17 11:04 283
	void AI_ClearTower();
c53e6443 sago007 2012-04-17 11:04 284
	//The AI will try to clear block horisontally
c53e6443 sago007 2012-04-17 11:04 285
	void AI_ClearHori();
c53e6443 sago007 2012-04-17 11:04 286
	//Test if vertical clear is possible
c53e6443 sago007 2012-04-17 11:04 287
	bool veriClearPossible();
c53e6443 sago007 2012-04-17 11:04 288
	//There in the line shall we move
c53e6443 sago007 2012-04-17 11:04 289
	int closestTo(int line, int type, int place);
c53e6443 sago007 2012-04-17 11:04 290
	//The AI will try to clear blocks vertically
c53e6443 sago007 2012-04-17 11:04 291
	void AI_ClearVertical();
c53e6443 sago007 2012-04-17 11:04 292
	bool firstLineCreated;
c53e6443 sago007 2012-04-17 11:04 293
	void AI_Move();
89c4a3a6 sago007 2008-08-29 14:32 294
//////////////////////////////////////////////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 295
///////////////////////////// AI ends here! //////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 296
//////////////////////////////////////////////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 297
6c9b4cd7 sago007 2012-05-01 19:34 298
	void ActionPerformed(int action, string param);
79d3c1d3 sago007 2012-05-05 15:54 299
	void PushLineInternal();
c53e6443 sago007 2012-04-17 11:04 300
	//Updates evrything, if not called nothing happends
c53e6443 sago007 2012-04-17 11:04 301
	void Update();
80b830cd sago007 2012-08-19 17:51 302
	void UpdateInternal(unsigned int newtick);
17916a2e sago007 2010-11-07 11:26 303
};
89c4a3a6 sago007 2008-08-29 14:32 304
////////////////////////////////////////////////////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 305
///////////////////////// BlockAttack class end ////////////////////////////////
89c4a3a6 sago007 2008-08-29 14:32 306
////////////////////////////////////////////////////////////////////////////////
17916a2e sago007 2010-11-07 11:26 307
17916a2e sago007 2010-11-07 11:26 308
#endif
1970-01-01 00:00 309