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
|
/*
* Copyright (c) 2020, the SerenityOS developers.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "2048.h"
#include <LibCore/ConfigFile.h>
#include <LibGUI/FontDatabase.h>
#include <LibGUI/MessageBox.h>
#include <LibGUI/Painter.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Font.h>
#include <LibGfx/Palette.h>
#include <stdlib.h>
#include <time.h>
TwentyFortyEightGame::TwentyFortyEightGame()
{
set_font(GUI::FontDatabase::the().get_by_name("Liza Regular"));
srand(time(nullptr));
reset();
}
TwentyFortyEightGame::~TwentyFortyEightGame()
{
}
template<typename Board>
void TwentyFortyEightGame::add_tile(Board& board, int max_tile_value)
{
int row;
int column;
do {
row = rand() % m_rows;
column = rand() % m_columns;
} while (board[row][column] != 0);
int value = rand() % max_tile_value;
value = round_up_to_power_of_two(value, max_tile_value);
board[row][column] = max(2, value);
}
void TwentyFortyEightGame::reset()
{
auto initial_state = [&]() -> State {
State state;
state.board.resize(m_columns);
auto& board = state.board;
for (auto& row : board) {
row.resize(m_rows);
for (auto& j : row)
j = 0;
}
add_tile(state.board, m_starting_tile);
add_tile(state.board, m_starting_tile);
return state;
};
m_states.clear();
m_states.append(initial_state());
m_current_turn = 0;
m_states.last().score_text = "Score: 0";
update();
}
Gfx::IntRect TwentyFortyEightGame::score_rect() const
{
int score_width = font().width(m_states.last().score_text);
return { 0, 2, score_width, font().glyph_height() };
}
static Vector<Vector<u32>> transpose(const Vector<Vector<u32>>& board)
{
Vector<Vector<u32>> new_board;
auto result_row_count = board[0].size();
auto result_column_count = board.size();
new_board.resize(result_row_count);
for (size_t i = 0; i < board.size(); ++i) {
auto& row = new_board[i];
row.clear_with_capacity();
row.ensure_capacity(result_column_count);
for (auto& entry : board) {
row.append(entry[i]);
}
}
return new_board;
}
static Vector<Vector<u32>> reverse(const Vector<Vector<u32>>& board)
{
auto new_board = board;
for (auto& row : new_board) {
for (size_t i = 0; i < row.size() / 2; ++i)
swap(row[i], row[row.size() - i - 1]);
}
return new_board;
}
static Vector<u32> slide_row(const Vector<u32>& row, size_t& successful_merge_score)
{
if (row.size() < 2)
return row;
auto x = row[0];
auto y = row[1];
auto result = row;
result.take_first();
if (x == 0) {
result = slide_row(result, successful_merge_score);
result.append(0);
return result;
}
if (y == 0) {
result[0] = x;
result = slide_row(result, successful_merge_score);
result.append(0);
return result;
}
if (x == y) {
result.take_first();
result = slide_row(result, successful_merge_score);
result.append(0);
result.prepend(x + x);
successful_merge_score += x * 2;
return result;
}
result = slide_row(result, successful_merge_score);
result.prepend(x);
return result;
}
static Vector<Vector<u32>> slide_left(const Vector<Vector<u32>>& board, size_t& successful_merge_score)
{
Vector<Vector<u32>> new_board;
for (auto& row : board)
new_board.append(slide_row(row, successful_merge_score));
return new_board;
}
static bool is_complete(const TwentyFortyEightGame::State& state)
{
for (auto& row : state.board) {
if (row.contains_slow(2048))
return true;
}
return false;
}
static bool has_no_neighbors(const Span<const u32>& row)
{
if (row.size() < 2)
return true;
auto x = row[0];
auto y = row[1];
if (x == y)
return false;
return has_no_neighbors(row.slice(1, row.size() - 1));
};
static bool is_stalled(const TwentyFortyEightGame::State& state)
{
static auto stalled = [](auto& row) {
return !row.contains_slow(0) && has_no_neighbors(row.span());
};
for (auto& row : state.board)
if (!stalled(row))
return false;
for (auto& row : transpose(state.board))
if (!stalled(row))
return false;
return true;
}
void TwentyFortyEightGame::resize_event(GUI::ResizeEvent&)
{
int score_height = font().glyph_height() + 2;
constexpr float padding_ratio = 7;
m_padding = min(
width() / (m_columns * (padding_ratio + 1) + 1),
(height() - score_height) / (m_rows * (padding_ratio + 1) + 1));
m_cell_size = m_padding * padding_ratio;
}
void TwentyFortyEightGame::keydown_event(GUI::KeyEvent& event)
{
auto& previous_state = m_states.last();
State new_state;
size_t successful_merge_score = 0;
switch (event.key()) {
case KeyCode::Key_A:
case KeyCode::Key_Left:
new_state.board = slide_left(previous_state.board, successful_merge_score);
break;
case KeyCode::Key_D:
case KeyCode::Key_Right:
new_state.board = reverse(slide_left(reverse(previous_state.board), successful_merge_score));
break;
case KeyCode::Key_W:
case KeyCode::Key_Up:
new_state.board = transpose(slide_left(transpose(previous_state.board), successful_merge_score));
break;
case KeyCode::Key_S:
case KeyCode::Key_Down:
new_state.board = transpose(reverse(slide_left(reverse(transpose(previous_state.board)), successful_merge_score)));
break;
default:
return;
}
if (new_state.board != previous_state.board) {
++m_current_turn;
add_tile(new_state.board, m_starting_tile * 2);
auto last_score = m_states.last().score;
if (m_states.size() == 16)
m_states.take_first();
m_states.append(move(new_state));
m_states.last().score = last_score + successful_merge_score;
m_states.last().score_text = String::format("Score: %d", score());
update();
}
if (is_complete(m_states.last())) {
// You won!
GUI::MessageBox::show(window(),
String::format("Score = %d in %zu turns", score(), m_current_turn),
"You won!",
GUI::MessageBox::Type::Information);
return game_over();
}
if (is_stalled(m_states.last())) {
// Game over!
GUI::MessageBox::show(window(),
String::format("Score = %d in %zu turns", score(), m_current_turn),
"You lost!",
GUI::MessageBox::Type::Information);
return game_over();
}
}
Gfx::Color TwentyFortyEightGame::background_color_for_cell(u32 value)
{
switch (value) {
case 0:
return Color::from_rgb(0xcdc1b4);
case 2:
return Color::from_rgb(0xeee4da);
case 4:
return Color::from_rgb(0xede0c8);
case 8:
return Color::from_rgb(0xf2b179);
case 16:
return Color::from_rgb(0xf59563);
case 32:
return Color::from_rgb(0xf67c5f);
case 64:
return Color::from_rgb(0xf65e3b);
case 128:
return Color::from_rgb(0xedcf72);
case 256:
return Color::from_rgb(0xedcc61);
case 512:
return Color::from_rgb(0xedc850);
case 1024:
return Color::from_rgb(0xedc53f);
case 2048:
return Color::from_rgb(0xedc22e);
default:
ASSERT_NOT_REACHED();
}
}
Gfx::Color TwentyFortyEightGame::text_color_for_cell(u32 value)
{
if (value <= 4)
return Color::from_rgb(0x776e65);
return Color::from_rgb(0xf9f6f2);
}
void TwentyFortyEightGame::paint_event(GUI::PaintEvent&)
{
Color background_color = Color::from_rgb(0xbbada0);
GUI::Painter painter(*this);
painter.draw_text(score_rect(), m_states.last().score_text, font(), Gfx::TextAlignment::TopLeft, palette().color(ColorRole::BaseText));
int score_height = font().glyph_height() + 2;
Gfx::IntRect field_rect {
0,
0,
static_cast<int>(m_padding + (m_cell_size + m_padding) * m_columns),
static_cast<int>(m_padding + (m_cell_size + m_padding) * m_rows)
};
field_rect.center_within({ 0, score_height, width(), height() - score_height });
painter.fill_rect(field_rect, background_color);
for (auto column = 0; column < m_columns; ++column) {
for (auto row = 0; row < m_rows; ++row) {
auto rect = Gfx::IntRect {
field_rect.x() + m_padding + (m_cell_size + m_padding) * column,
field_rect.y() + m_padding + (m_cell_size + m_padding) * row,
m_cell_size,
m_cell_size,
};
auto entry = m_states.last().board[row][column];
painter.fill_rect(rect, background_color_for_cell(entry));
if (entry > 0)
painter.draw_text(rect, String::number(entry), font(), Gfx::TextAlignment::Center, text_color_for_cell(entry));
}
}
}
void TwentyFortyEightGame::game_over()
{
reset();
}
int TwentyFortyEightGame::score() const
{
return m_states.last().score;
}
void TwentyFortyEightGame::undo()
{
if (m_states.size() > 1) {
m_states.take_last();
--m_current_turn;
update();
}
}
|