2021-01-02 15:08:12 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
|
|
|
#include "Screen.h"
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
struct Tile {
|
|
|
|
bool merged = false;
|
|
|
|
unsigned int value = 0;
|
|
|
|
};
|
|
|
|
namespace Screens {
|
|
|
|
class Twos : public Screen {
|
2021-04-24 05:00:45 -04:00
|
|
|
public:
|
2021-04-18 13:28:14 -04:00
|
|
|
Twos(DisplayApp* app);
|
|
|
|
~Twos() override;
|
2021-01-02 15:08:12 -05:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
bool OnTouchEvent(TouchEvents event) override;
|
2021-01-28 12:13:28 -05:00
|
|
|
|
2021-04-24 05:00:45 -04:00
|
|
|
private:
|
2021-04-18 13:28:14 -04:00
|
|
|
lv_style_t style_cell1;
|
|
|
|
lv_style_t style_cell2;
|
|
|
|
lv_style_t style_cell3;
|
|
|
|
lv_style_t style_cell4;
|
|
|
|
lv_style_t style_cell5;
|
|
|
|
|
|
|
|
lv_obj_t* scoreText;
|
|
|
|
lv_obj_t* gridDisplay;
|
|
|
|
Tile grid[4][4];
|
|
|
|
unsigned int score = 0;
|
|
|
|
void updateGridDisplay(Tile grid[][4]);
|
|
|
|
bool tryMerge(Tile grid[][4], int& newRow, int& newCol, int oldRow, int oldCol);
|
|
|
|
bool tryMove(Tile grid[][4], int newRow, int newCol, int oldRow, int oldCol);
|
|
|
|
bool placeNewTile();
|
2021-01-02 15:08:12 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-07-19 09:26:12 -04:00
|
|
|
}
|