forked from naclander/netris
-
Notifications
You must be signed in to change notification settings - Fork 1
/
board.c
259 lines (223 loc) · 6.07 KB
/
board.c
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
* Netris -- A free networked version of T*tris
* Copyright (C) 1994-1996,1999 Mark H. Weaver <mhw@netris.org>
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: board.c,v 1.15 1999/05/16 06:56:24 mhw Exp $
*/
#include "netris.h"
#include <stdlib.h>
#ifdef DEBUG_FALLING
# define B_OLD
#else
# define B_OLD abs
#endif
static BlockType board[MAX_SCREENS][MAX_BOARD_HEIGHT][MAX_BOARD_WIDTH];
static BlockType oldBoard[MAX_SCREENS][MAX_BOARD_HEIGHT][MAX_BOARD_WIDTH];
static unsigned int changed[MAX_SCREENS][MAX_BOARD_HEIGHT];
static int falling[MAX_SCREENS][MAX_BOARD_WIDTH];
static int oldFalling[MAX_SCREENS][MAX_BOARD_WIDTH];
ExtFunc void InitBoard(int scr)
{
int s,w,h;
for(s = 0 ; s < MAX_SCREENS ; s++)
for(h = 0 ; h < MAX_BOARD_HEIGHT ; h++)
for(w = 0 ; w < MAX_BOARD_WIDTH ; w++) {
board[s][h][w] = 0;
oldBoard[s][h][w] = 0;
changed[s][h] = 0;
falling[s][w] = 0;
oldFalling[s][w] = 0;
}
boardHeight[scr] = MAX_BOARD_HEIGHT;
boardVisible[scr] = 20;
boardWidth[scr] = 10;
InitScreen(scr);
}
ExtFunc void CleanupBoard(int scr)
{
CleanupScreen(scr);
}
ExtFunc BlockType GetBlock(int scr, int y, int x)
{
if (y < 0 || x < 0 || x >= boardWidth[scr])
return BT_wall;
else if (y >= boardHeight[scr])
return BT_none;
else
return abs(board[scr][y][x]);
}
ExtFunc void SetBlock(int scr, int y, int x, BlockType type)
{
if (y >= 0 && y < boardHeight[scr] && x >= 0 && x < boardWidth[scr]) {
if (y < boardVisible[scr])
falling[scr][x] += (type < 0) - (board[scr][y][x] < 0);
board[scr][y][x] = type;
changed[scr][y] |= 1 << x;
}
}
ExtFunc int RefreshBoard(int scr)
{
int y, x, any = 0;
unsigned int c;
BlockType b;
for (y = boardVisible[scr] - 1; y >= 0; --y)
if ((c = changed[scr][y])) {
if (robotEnable) {
RobotCmd(0, "RowUpdate %d %d", scr, y);
for (x = 0; x < boardWidth[scr]; ++x) {
b = board[scr][y][x];
if (fairRobot)
b = abs(b);
RobotCmd(0, " %d", b);
}
RobotCmd(0, "\n");
}
changed[scr][y] = 0;
any = 1;
for (x = 0; c; (c >>= 1), (++x))
if ((c & 1) && B_OLD(board[scr][y][x])!=oldBoard[scr][y][x]) {
PlotBlock(scr, y, x, B_OLD(board[scr][y][x]));
oldBoard[scr][y][x] = B_OLD(board[scr][y][x]);
}
}
if (robotEnable)
RobotTimeStamp();
for (x = 0; x < boardWidth[scr]; ++x)
if (oldFalling[scr][x] != !!falling[scr][x]) {
oldFalling[scr][x] = !!falling[scr][x];
PlotUnderline(scr, x, oldFalling[scr][x]);
any = 1;
}
return any;
}
ExtFunc int PlotFunc(int scr, int y, int x, BlockType type, void *data)
{
SetBlock(scr, y, x, type);
return 0;
}
ExtFunc int EraseFunc(int scr, int y, int x, BlockType type, void *data)
{
SetBlock(scr, y, x, BT_none);
return 0;
}
ExtFunc int CollisionFunc(int scr, int y, int x, BlockType type, void *data)
{
return GetBlock(scr, y, x) != BT_none;
}
ExtFunc int VisibleFunc(int scr, int y, int x, BlockType type, void *data)
{
return (y >= 0 && y < boardVisible[scr] && x >= 0 && x < boardWidth[scr]);
}
ExtFunc void PlotShape(Shape *shape, int scr, int y, int x, int falling)
{
ShapeIterate(shape, scr, y, x, falling, PlotFunc, NULL);
}
ExtFunc void EraseShape(Shape *shape, int scr, int y, int x)
{
ShapeIterate(shape, scr, y, x, 0, EraseFunc, NULL);
}
ExtFunc int ShapeFits(Shape *shape, int scr, int y, int x)
{
return !ShapeIterate(shape, scr, y, x, 0, CollisionFunc, NULL);
}
ExtFunc int ShapeVisible(Shape *shape, int scr, int y, int x)
{
return ShapeIterate(shape, scr, y, x, 0, VisibleFunc, NULL);
}
ExtFunc int MovePiece(int scr, int deltaY, int deltaX)
{
int result;
EraseShape(curShape[scr], scr, curY[scr], curX[scr]);
result = ShapeFits(curShape[scr], scr, curY[scr] + deltaY,
curX[scr] + deltaX);
if (result) {
curY[scr] += deltaY;
curX[scr] += deltaX;
}
PlotShape(curShape[scr], scr, curY[scr], curX[scr], 1);
return result;
}
ExtFunc int RotatePiece(int scr)
{
int result;
EraseShape(curShape[scr], scr, curY[scr], curX[scr]);
result = ShapeFits(curShape[scr]->rotateTo, scr, curY[scr], curX[scr]);
if (result)
curShape[scr] = curShape[scr]->rotateTo;
PlotShape(curShape[scr], scr, curY[scr], curX[scr], 1);
return result;
}
ExtFunc int DropPiece(int scr)
{
int count = 0;
EraseShape(curShape[scr], scr, curY[scr], curX[scr]);
while (ShapeFits(curShape[scr], scr, curY[scr] - 1, curX[scr])) {
--curY[scr];
++count;
}
PlotShape(curShape[scr], scr, curY[scr], curX[scr], 1);
return count;
}
ExtFunc int LineIsFull(int scr, int y)
{
int x;
for (x = 0; x < boardWidth[scr]; ++x)
if (GetBlock(scr, y, x) == BT_none)
return 0;
return 1;
}
ExtFunc void CopyLine(int scr, int from, int to)
{
int x;
if (from != to)
for (x = 0; x < boardWidth[scr]; ++x)
SetBlock(scr, to, x, GetBlock(scr, from, x));
}
ExtFunc int ClearFullLines(int scr)
{
int from, to;
from = to = 0;
while (to < boardHeight[scr]) {
while (LineIsFull(scr, from))
++from;
CopyLine(scr, from++, to++);
}
return from - to;
}
ExtFunc void FreezePiece(int scr)
{
int y, x;
BlockType type;
for (y = 0; y < boardHeight[scr]; ++y)
for (x = 0; x < boardWidth[scr]; ++x)
if ((type = board[scr][y][x]) < 0)
SetBlock(scr, y, x, -type);
}
ExtFunc void InsertJunk(int scr, int count, int column)
{
int y, x;
for (y = boardHeight[scr] - count - 1; y >= 0; --y)
CopyLine(scr, y, y + count);
for (y = 0; y < count; ++y)
for (x = 0; x < boardWidth[scr]; ++x)
SetBlock(scr, y, x, (x == column) ? BT_none : BT_white);
curY[scr] += count;
}
/*
* vi: ts=4 ai
* vim: noai si
*/