-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmine.pas
More file actions
402 lines (369 loc) · 11.9 KB
/
mine.pas
File metadata and controls
402 lines (369 loc) · 11.9 KB
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
{ -*- mode: opascal -*- }
program Mine;
uses Termio;
const
STDIN_FILENO = 0;
{
TODO: customizable size of the field and bombs percentage
Keep in mind that OpenAt is recursive. So at certain Field size we may get a Stack Overflow.
}
HardcodedFieldRows = 10;
HardcodedFieldCols = 10;
HardcodedBombsPercentage = 17;
type
Cell = (Empty, Bomb);
State = (Closed, Open, Flagged);
Field = record
Generated: Boolean;
Cells: array of array of Cell;
States: array of array of State;
Rows: Integer;
Cols: Integer;
CursorRow: Integer;
CursorCol: Integer;
{$ifdef DEBUG}
Peek: Boolean;
{$endif}
end;
YornKeep = (KeepNone = 0, KeepYes = 1, KeepNo = 2, KeepBoth = 3);
function IsVictory(Field: Field): Boolean;
var
Row, Col: Integer;
begin
with Field do
for Row := 0 to Rows-1 do
for Col := 0 to Cols-1 do
case States[Row][Col] of
Open: if Cells[Row][Col] <> Empty then Exit(False);
Closed, Flagged: if Cells[Row][Col] <> Bomb then Exit(False);
end;
IsVictory := True;
end;
procedure FlagAtCursor(var Field: Field);
begin
with Field do
case States[CursorRow][CursorCol] of
Closed: States[CursorRow][CursorCol] := Flagged;
Flagged: States[CursorRow][CursorCol] := Closed;
end
end;
procedure RandomCell(Field: Field; var Row, Col: Integer);
begin
Row := Random(Field.Rows);
Col := Random(Field.Cols);
end;
function IsAroundCursor(Field: Field; Row, Col: Integer): Boolean;
var
DRow, DCol: Integer;
begin
for DRow := -1 to 1 do
for DCol := -1 to 1 do
if (Field.CursorRow + DRow = Row) and (Field.CursorCol + DCol = Col) then
Exit(True);
IsAroundCursor := False;
end;
procedure FieldRandomize(var Field: Field; BombsPercentage: Integer);
var
Index, BombsCount: Integer;
Row, Col: Integer;
begin
with Field do
begin
for Row := 0 to Rows - 1 do
for Col := 0 to Cols - 1 do
Cells[Row][Col] := Empty;
if BombsPercentage > 100 then BombsPercentage := 100;
BombsCount := (Rows*Cols*BombsPercentage + 99) div 100;
for Index := 1 to BombsCount do
begin
{ TODO: prevent this loop going indefinitely }
repeat
RandomCell(Field, Row, Col)
until (Cells[Row][Col] <> Bomb) and not IsAroundCursor(Field, Row, Col);
Cells[Row][Col] := Bomb;
end;
end;
end;
function FieldContains(Field: Field; Row, Col: Integer): Boolean;
begin
FieldContains := (0 <= Row) and (Row < Field.Rows) and (0 <= Col) and (Col < Field.Cols);
end;
function CountNborBombs(Field: Field; Row, Col: Integer): Integer;
var
DRow, DCol: Integer;
begin
CountNborBombs := 0;
with Field do
for DRow := -1 to 1 do
for DCol := -1 to 1 do
if (DRow <> 0) or (DCol <> 0) then
if FieldContains(Field, Row + DRow, Col + DCol) then
if Cells[Row + DRow][Col + DCol] = Bomb then
Inc(CountNborBombs);
end;
function CountNborFlags(Field: Field; Row, Col: Integer): Integer;
var
DRow, DCol: Integer;
begin
CountNborFlags := 0;
with Field do
for DRow := -1 to 1 do
for DCol := -1 to 1 do
if (DRow <> 0) or (DCol <> 0) then
if FieldContains(Field, Row + DRow, Col + DCol) then
if States[Row + DRow][Col + DCol] = Flagged then
Inc(CountNborFlags);
end;
function OpenAt(var Field: Field; Row, Col: Integer): Boolean;
var
DRow, DCol: Integer;
begin
with Field do
begin
if not Generated then
begin
FieldRandomize(Field, HardcodedBombsPercentage);
Generated := True;
end;
States[Row][Col] := Open;
if CountNborBombs(Field, Row, Col) = CountNborFlags(Field, Row, Col) then
for DRow := -1 to 1 do
for DCol := -1 to 1 do
if FieldContains(Field, DRow + Row, DCol + Col) then
if States[DRow + Row][DCol + Col] = Closed then
if OpenAt(Field, DRow + Row, DCol + Col) then
Exit(True);
OpenAt := Cells[Row][Col] = Bomb;
end
end;
function OpenAtCursor(var Field: Field): Boolean;
begin
OpenAtCursor := OpenAt(Field, Field.CursorRow, Field.CursorCol);
end;
procedure FlagAllBombs(var Field: Field);
var
Row, Col: Integer;
begin
with Field do
for Row := 0 to Rows - 1 do
for Col := 0 to Cols - 1 do
if Cells[Row][Col] = Bomb then
States[Row][Col] := Flagged;
end;
procedure OpenAllBombs(var Field: Field);
var
Row, Col: Integer;
begin
with Field do
for Row := 0 to Rows - 1 do
for Col := 0 to Cols - 1 do
if Cells[Row][Col] = Bomb then
States[Row][Col] := Open;
end;
procedure FieldReset(var Field: Field; Rows, Cols: Integer);
var
Row, Col: Integer;
begin
Field.Generated := False;
Field.CursorRow := 0;
Field.CursorCol := 0;
SetLength(Field.Cells, Rows, Cols);
SetLength(Field.States, Rows, Cols);
Field.Rows := Rows;
Field.Cols := Cols;
for Row := 0 to Rows - 1 do
for Col := 0 to Cols - 1 do
Field.States[Row][Col] := Closed;
{$ifdef DEBUG}
Field.Peek := False;
{$endif}
end;
function IsAtCursor(Field: Field; Row, Col: Integer): Boolean;
begin
IsAtCursor := (Field.CursorRow = Row) and (Field.CursorCol = Col);
end;
procedure FieldDisplay(Field: Field);
var
Row, Col, Nbors: Integer;
begin
with Field do
for Row := 0 to Rows-1 do
begin
for Col := 0 to Cols-1 do
begin
if IsAtCursor(Field, Row, Col) then Write('[') else Write(' ');
{$ifdef DEBUG}
if Peek then
case Cells[Row][Col] of
Bomb: Write('@');
Empty: begin
Nbors := CountNborBombs(Field, Row, Col);
if Nbors > 0 then Write(Nbors) else Write(' ');
end;
end
else
{$endif}
case States[Row][Col] of
Open: case Cells[Row][Col] of
Bomb: Write('@');
Empty: begin
Nbors := CountNborBombs(Field, Row, Col);
if Nbors > 0 then Write(Nbors) else Write(' ');
end;
end;
Closed: Write('.');
Flagged: Write('%');
end;
if IsAtCursor(Field, Row, Col) then Write(']') else Write(' ');
end;
WriteLn
end;
Flush(Output);
end;
procedure MoveUp(var Field: Field);
begin
with Field do if CursorRow > 0 then Dec(CursorRow);
end;
procedure MoveDown(var Field: Field);
begin
with Field do if CursorRow < Rows-1 then Inc(CursorRow);
end;
procedure MoveLeft(var Field: Field);
begin
with Field do if CursorCol > 0 then Dec(CursorCol);
end;
procedure MoveRight(var Field: Field);
begin
with Field do if CursorCol < Cols-1 then Inc(CursorCol);
end;
procedure FieldRedisplay(Field: Field);
begin
Write(Chr(27), '[', Field.Rows, 'A');
Write(Chr(27), '[', Field.Cols*3, 'D');
FieldDisplay(Field);
end;
function YorN(Question: String; Keep: YornKeep): Boolean;
var
Answer: Char;
begin
Write(Question, ' [y/n] ');
Flush(Output);
while True do
begin
Read(Answer);
case Answer of
'y', 'Y', ' ', Chr(10):
begin
if (Integer(Keep) and 1) = 1
then WriteLn('y')
else Write(Chr(13), Chr(27), '[2K');
Flush(Output);
Exit(True)
end;
'n', 'N', Chr(27):
begin
if ((Integer(Keep) shr 1) and 1) = 1
then WriteLn('n')
else Write(Chr(13), Chr(27), '[2K');
Flush(Output);
Exit(False)
end;
end;
end;
end;
function StateAtCursor(Field: Field): State;
begin
with Field do StateAtCursor := States[CursorRow][CursorCol];
end;
var
MainField: Field;
SavedTAttr, TAttr: Termios;
Cmd: Char;
Quit: Boolean;
begin
Randomize;
if IsATTY(STDIN_FILENO) <> 0 then
begin
{TODO: does not work on Windows}
TCGetAttr(STDIN_FILENO, TAttr);
TCGetAttr(STDIN_FILENO, SavedTAttr);
TAttr.c_lflag := TAttr.c_lflag and (not (ICANON or ECHO));
TAttr.c_cc[VMIN] := 1;
TAttr.c_cc[VTIME] := 0;
TCSetAttr(STDIN_FILENO, TCSAFLUSH, &tattr);
end;
FieldReset(MainField, HardcodedFieldRows, HardcodedFieldCols);
FieldDisplay(MainField);
Quit := False;
while not Quit do
begin
Read(Cmd);
case Cmd of
'w': begin
MoveUp(MainField);
FieldRedisplay(MainField);
end;
's': begin
MoveDown(MainField);
FieldRedisplay(MainField);
end;
'a': begin
MoveLeft(MainField);
FieldRedisplay(MainField);
end;
'd': begin
MoveRight(MainField);
FieldRedisplay(MainField);
end;
'f': begin
FlagAtCursor(MainField);
FieldRedisplay(MainField);
end;
'r': if YorN('Restart?', KeepYes) then
begin
FieldReset(MainField, HardcodedFieldRows, HardcodedFieldCols);
FieldDisplay(MainField);
end;
{TODO: interpret ^C as request to quit}
'q', Chr(27): Quit := YorN('Quit?', KeepYes);
{$ifdef DEBUG}
'p': begin
MainField.Peek := not MainField.Peek;
FieldRedisplay(MainField);
end;
{$endif}
' ': begin
if (StateAtCursor(MainField) <> Flagged) or YorN('Really open flagged cell?', KeepNone) then
if OpenAtCursor(MainField) then
begin
{TODO: indicate which bomb caused the explosion}
OpenAllBombs(MainField);
FieldRedisplay(MainField);
if YorN('You Died! Restart?', KeepBoth) then
begin
FieldReset(MainField, HardcodedFieldRows, HardcodedFieldCols);
FieldDisplay(MainField);
end
else Quit := True;
end
else
begin
if IsVictory(MainField) then
begin
FlagAllBombs(MainField);
FieldRedisplay(MainField);
if YorN('You Won! Restart?', KeepBoth) then
begin
FieldReset(MainField, HardcodedFieldRows, HardcodedFieldCols);
FieldDisplay(MainField);
end
else Quit := True
end
else FieldRedisplay(MainField);
end
end;
end;
end;
if IsATTY(STDIN_FILENO) <> 0 then
TCSetAttr(STDIN_FILENO, TCSANOW, SavedTAttr)
end.