From 309e78f1d6a8d606fea9fca2861f37fef67c3a33 Mon Sep 17 00:00:00 2001 From: RogueMaster Date: Sun, 25 Dec 2022 01:32:44 -0500 Subject: [PATCH] remove dupe app --- applications/plugins/game2048_2/LICENSE | 21 - applications/plugins/game2048_2/README.md | 17 - .../plugins/game2048_2/application.fam | 14 - applications/plugins/game2048_2/array_utils.c | 40 -- applications/plugins/game2048_2/array_utils.h | 22 - applications/plugins/game2048_2/digits.h | 263 --------- applications/plugins/game2048_2/game_2048.c | 509 ------------------ applications/plugins/game2048_2/game_2048.png | Bin 89 -> 0 bytes .../plugins/game2048_2/images/screenshot1.png | Bin 2038 -> 0 bytes .../plugins/game2048_2/images/screenshot2.png | Bin 2183 -> 0 bytes .../plugins/game_2048/application.fam | 4 +- 11 files changed, 2 insertions(+), 888 deletions(-) delete mode 100644 applications/plugins/game2048_2/LICENSE delete mode 100644 applications/plugins/game2048_2/README.md delete mode 100644 applications/plugins/game2048_2/application.fam delete mode 100644 applications/plugins/game2048_2/array_utils.c delete mode 100644 applications/plugins/game2048_2/array_utils.h delete mode 100644 applications/plugins/game2048_2/digits.h delete mode 100644 applications/plugins/game2048_2/game_2048.c delete mode 100644 applications/plugins/game2048_2/game_2048.png delete mode 100644 applications/plugins/game2048_2/images/screenshot1.png delete mode 100644 applications/plugins/game2048_2/images/screenshot2.png diff --git a/applications/plugins/game2048_2/LICENSE b/applications/plugins/game2048_2/LICENSE deleted file mode 100644 index f3da84264..000000000 --- a/applications/plugins/game2048_2/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2022 Eugene Kirzhanov - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/applications/plugins/game2048_2/README.md b/applications/plugins/game2048_2/README.md deleted file mode 100644 index b743f1b59..000000000 --- a/applications/plugins/game2048_2/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# "2048" game for Flipper Zero -- play up to 65K -- progress is saved on exit - -![Game screen](images/screenshot1.png) -![Menu screen](images/screenshot2.png) - -#### TODO: - - add animations - -#### Thanks to: - - [DroomOne's FlappyBird](https://github.com/DroomOne/flipperzero-firmware/tree/dev/applications/flappy_bird) - - [x27's "15" Game](https://github.com/x27/flipperzero-game15) - -#### License -[MIT](LICENSE) -Copyright 2022 Eugene Kirzhanov diff --git a/applications/plugins/game2048_2/application.fam b/applications/plugins/game2048_2/application.fam deleted file mode 100644 index 4dcea8474..000000000 --- a/applications/plugins/game2048_2/application.fam +++ /dev/null @@ -1,14 +0,0 @@ -App( - appid="2048", - name="2048 (Original)", - apptype=FlipperAppType.EXTERNAL, - entry_point="game_2048_app", - cdefines=["APP_GAME_2048"], - requires=[ - "gui", - ], - stack_size=1 * 1024, - order=90, - fap_icon="game_2048.png", - fap_category="Games" -) \ No newline at end of file diff --git a/applications/plugins/game2048_2/array_utils.c b/applications/plugins/game2048_2/array_utils.c deleted file mode 100644 index f68570d1d..000000000 --- a/applications/plugins/game2048_2/array_utils.c +++ /dev/null @@ -1,40 +0,0 @@ -#include "array_utils.h" - -void reverse_array(int length, uint8_t arr[length]) { - uint8_t tmp; - for(int low = 0, high = length - 1; low < high; low++, high--) { - tmp = arr[low]; - arr[low] = arr[high]; - arr[high] = tmp; - } -} - -bool shift_array_to_left(int length, uint8_t arr[length], uint8_t from_index, uint8_t offset) { - if(from_index >= length) return false; - for(uint8_t i = from_index; i < length; i++) { - arr[i] = i < length - offset ? arr[i + offset] : 0; - } - return true; -} - -void get_column_from_array( - int rows, - int cols, - uint8_t arr[rows][cols], - uint8_t column_index, - uint8_t* out) { - for(uint8_t i = 0; i < rows; i++) { - out[i] = arr[i][column_index]; - } -} - -void set_column_to_array( - int rows, - int cols, - uint8_t arr[rows][cols], - uint8_t column_index, - uint8_t* src) { - for(uint8_t i = 0; i < rows; i++) { - arr[i][column_index] = src[i]; - } -} \ No newline at end of file diff --git a/applications/plugins/game2048_2/array_utils.h b/applications/plugins/game2048_2/array_utils.h deleted file mode 100644 index 371878446..000000000 --- a/applications/plugins/game2048_2/array_utils.h +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -#include -#include - -void reverse_array(int length, uint8_t arr[length]); - -bool shift_array_to_left(int length, uint8_t arr[length], uint8_t from_index, uint8_t offset); - -void get_column_from_array( - int rows, - int cols, - uint8_t arr[rows][cols], - uint8_t column_index, - uint8_t* out); - -void set_column_to_array( - int rows, - int cols, - uint8_t arr[rows][cols], - uint8_t column_index, - uint8_t* src); diff --git a/applications/plugins/game2048_2/digits.h b/applications/plugins/game2048_2/digits.h deleted file mode 100644 index e79e7b033..000000000 --- a/applications/plugins/game2048_2/digits.h +++ /dev/null @@ -1,263 +0,0 @@ -#pragma once - -#include - -uint8_t digits[16][14][14] = { - - // 2 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 4 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 8 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 16 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 32 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0}, - {0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 64 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0}, - {0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0}, - {0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}, - {0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0}, - {0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0}, - {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 128 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0}, - {0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0}, - {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0}, - {0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0}, - {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 256 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0}, - {0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0}, - {0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0}, - {0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0}, - {0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 512 - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0}, - {0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0}, - {0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0}, - {0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0}, - {0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 1K - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 2K - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 4K - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 8K - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0}, - {0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 16K - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0}, - {0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0}, - {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0}, - {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 32K - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0}, - {0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0}, - {0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0}, - {0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0}, - {0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, - - // 64K - {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0}, - {0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0}, - {0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0}, - {0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0}, - {0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}} - -}; diff --git a/applications/plugins/game2048_2/game_2048.c b/applications/plugins/game2048_2/game_2048.c deleted file mode 100644 index e0c4a4cec..000000000 --- a/applications/plugins/game2048_2/game_2048.c +++ /dev/null @@ -1,509 +0,0 @@ -/* - * Copyright 2022 Eugene Kirzhanov - * Use of this source code is governed by an MIT-style - * license that can be found in the LICENSE file or at - * https://opensource.org/licenses/MIT - * - * Thanks to: - * - DroomOne: https://github.com/DroomOne/flipperzero-firmware - * - x27: https://github.com/x27/flipperzero-game15 - */ - -#include -#include -#include -#include - -#include "digits.h" -#include "array_utils.h" - -#define CELLS_COUNT 4 -#define CELL_INNER_SIZE 14 -#define FRAME_LEFT 10 -#define FRAME_TOP 1 -#define FRAME_SIZE 61 - -#define SAVING_DIRECTORY "/ext/apps/Games" -#define SAVING_FILENAME SAVING_DIRECTORY "/game_2048.save" - -typedef enum { - GameStateMenu, - GameStateInProgress, - GameStateGameOver, -} State; - -typedef struct { - State state; - uint8_t table[CELLS_COUNT][CELLS_COUNT]; - uint32_t score; - uint32_t moves; - int8_t selected_menu_item; - uint32_t top_score; -} GameState; - -typedef struct { - uint32_t points; - bool is_table_updated; -} MoveResult; - -#define MENU_ITEMS_COUNT 2 -static const char* popup_menu_strings[] = {"Resume", "New Game"}; - -static void input_callback(InputEvent* input_event, void* ctx) { - furi_assert(ctx); - FuriMessageQueue* event_queue = ctx; - furi_message_queue_put(event_queue, input_event, FuriWaitForever); -} - -static void draw_frame(Canvas* canvas) { - canvas_draw_frame(canvas, FRAME_LEFT, FRAME_TOP, FRAME_SIZE, FRAME_SIZE); - - uint8_t offs = FRAME_LEFT + CELL_INNER_SIZE + 1; - for(uint8_t i = 0; i < CELLS_COUNT - 1; i++) { - canvas_draw_line(canvas, offs, FRAME_TOP + 1, offs, FRAME_TOP + FRAME_SIZE - 2); - offs += CELL_INNER_SIZE + 1; - } - offs = FRAME_TOP + CELL_INNER_SIZE + 1; - for(uint8_t i = 0; i < CELLS_COUNT - 1; i++) { - canvas_draw_line(canvas, FRAME_LEFT + 1, offs, FRAME_LEFT + FRAME_SIZE - 2, offs); - offs += CELL_INNER_SIZE + 1; - } -} - -static void draw_digit(Canvas* canvas, uint8_t row, uint8_t column, uint8_t value) { - if(value == 0) return; - - uint8_t left = FRAME_LEFT + 1 + (column * (CELL_INNER_SIZE + 1)); - uint8_t top = FRAME_TOP + 1 + (row * (CELL_INNER_SIZE + 1)); - - for(uint8_t r = 0; r < CELL_INNER_SIZE; r++) { - for(u_int8_t c = 0; c < CELL_INNER_SIZE; c++) { - if(digits[value - 1][r][c] == 1) { - canvas_draw_dot(canvas, left + c, top + r); - } - } - } -} - -static void draw_table(Canvas* canvas, const uint8_t table[CELLS_COUNT][CELLS_COUNT]) { - for(uint8_t row = 0; row < CELLS_COUNT; row++) { - for(uint8_t column = 0; column < CELLS_COUNT; column++) { - draw_digit(canvas, row, column, table[row][column]); - } - } -} - -static void gray_canvas(Canvas* const canvas) { - canvas_set_color(canvas, ColorWhite); - for(int x = 0; x < 128; x += 2) { - for(int y = 0; y < 64; y++) { - canvas_draw_dot(canvas, x + (y % 2 == 1 ? 0 : 1), y); - } - } -} - -static void draw_callback(Canvas* const canvas, void* ctx) { - const GameState* game_state = acquire_mutex((ValueMutex*)ctx, 25); - if(game_state == NULL) return; - - canvas_clear(canvas); - - draw_frame(canvas); - draw_table(canvas, game_state->table); - - canvas_set_font(canvas, FontPrimary); - canvas_draw_str_aligned(canvas, 128, FRAME_TOP, AlignRight, AlignTop, "Score"); - canvas_draw_str_aligned(canvas, 128, FRAME_TOP + 20, AlignRight, AlignTop, "Moves"); - canvas_draw_str_aligned(canvas, 128, FRAME_TOP + 40, AlignRight, AlignTop, "Top Score"); - - int bufSize = 12; - char buf[bufSize]; - snprintf(buf, sizeof(buf), "%lu", game_state->score); - canvas_set_font(canvas, FontSecondary); - canvas_draw_str_aligned(canvas, 128, FRAME_TOP + 10, AlignRight, AlignTop, buf); - - memset(buf, 0, bufSize); - snprintf(buf, sizeof(buf), "%lu", game_state->moves); - canvas_set_font(canvas, FontSecondary); - canvas_draw_str_aligned(canvas, 128, FRAME_TOP + 30, AlignRight, AlignTop, buf); - - memset(buf, 0, bufSize); - snprintf(buf, sizeof(buf), "%lu", game_state->top_score); - canvas_set_font(canvas, FontSecondary); - canvas_draw_str_aligned(canvas, 128, FRAME_TOP + 50, AlignRight, AlignTop, buf); - - if(game_state->state == GameStateMenu) { - gray_canvas(canvas); - - canvas_set_color(canvas, ColorWhite); - canvas_draw_rbox(canvas, 28, 16, 72, 32, 4); - canvas_set_color(canvas, ColorBlack); - canvas_draw_rframe(canvas, 28, 16, 72, 32, 4); - - for(int i = 0; i < MENU_ITEMS_COUNT; i++) { - if(i == game_state->selected_menu_item) { - canvas_set_color(canvas, ColorBlack); - canvas_draw_box(canvas, 34, 20 + 12 * i, 60, 12); - } - - canvas_set_color( - canvas, i == game_state->selected_menu_item ? ColorWhite : ColorBlack); - canvas_draw_str_aligned( - canvas, 64, 26 + 12 * i, AlignCenter, AlignCenter, popup_menu_strings[i]); - } - - } else if(game_state->state == GameStateGameOver) { - gray_canvas(canvas); - - bool record_broken = game_state->score > game_state->top_score; - - canvas_set_color(canvas, ColorWhite); - canvas_draw_rbox(canvas, 14, 12, 100, 40, 4); - - canvas_set_color(canvas, ColorBlack); - canvas_draw_line(canvas, 14, 26, 114, 26); - canvas_draw_rframe(canvas, 14, 12, 100, 40, 4); - - canvas_set_font(canvas, FontPrimary); - canvas_draw_str_aligned(canvas, 64, 15, AlignCenter, AlignTop, "Game Over"); - - canvas_set_font(canvas, FontSecondary); - if(record_broken) { - canvas_draw_str_aligned(canvas, 64, 29, AlignCenter, AlignTop, "New Top Score!!!"); - } else { - canvas_draw_str_aligned(canvas, 64, 29, AlignCenter, AlignTop, "Your Score"); - } - - memset(buf, 0, bufSize); - snprintf(buf, sizeof(buf), "%lu", game_state->score); - canvas_set_font(canvas, FontPrimary); - canvas_draw_str_aligned(canvas, 64, 48, AlignCenter, AlignBottom, buf); - } - - release_mutex((ValueMutex*)ctx, game_state); -} - -void calculate_move_to_left(uint8_t arr[], MoveResult* const move_result) { - uint8_t index = 0; - uint8_t next_index; - uint8_t offset; - bool was_moved; - while(index < CELLS_COUNT - 1) { - // find offset from [index] to next non-empty value - offset = 1; - while(index + offset < CELLS_COUNT && arr[index + offset] == 0) offset++; - - // if all remaining values in this row are empty then go to next row - if(index + offset >= CELLS_COUNT) break; - - // if current cell is empty then shift all cells [index+offset .. CELLS_COUNT-1] to [index] - if(arr[index] == 0) { - was_moved = shift_array_to_left(CELLS_COUNT, arr, index, offset); - if(was_moved) move_result->is_table_updated = true; - } - - next_index = index + 1; - if(arr[next_index] == 0) { - // find offset from [next_index] to next non-empty value - offset = 1; - while(next_index + offset < CELLS_COUNT && arr[next_index + offset] == 0) offset++; - - // if all remaining values in this row are empty then go to next row - if(next_index + offset >= CELLS_COUNT) break; - - // if next cell is empty then shift cells [next_index+offset .. CELLS_COUNT-1] to [next_index] - was_moved = shift_array_to_left(CELLS_COUNT, arr, next_index, offset); - if(was_moved) move_result->is_table_updated = true; - } - - if(arr[index] == arr[next_index]) { - arr[index]++; - shift_array_to_left(CELLS_COUNT, arr, next_index, 1); - - move_result->is_table_updated = true; - move_result->points += 2 << (arr[index] - 1); - } - - index++; - } -} - -void move_left(uint8_t table[CELLS_COUNT][CELLS_COUNT], MoveResult* const move_result) { - for(uint8_t row_index = 0; row_index < CELLS_COUNT; row_index++) { - calculate_move_to_left(table[row_index], move_result); - } -} - -void move_right(uint8_t table[CELLS_COUNT][CELLS_COUNT], MoveResult* const move_result) { - for(uint8_t row_index = 0; row_index < CELLS_COUNT; row_index++) { - reverse_array(CELLS_COUNT, table[row_index]); - calculate_move_to_left(table[row_index], move_result); - reverse_array(CELLS_COUNT, table[row_index]); - } -} - -void move_up(uint8_t table[CELLS_COUNT][CELLS_COUNT], MoveResult* const move_result) { - uint8_t column[CELLS_COUNT]; - for(uint8_t column_index = 0; column_index < CELLS_COUNT; column_index++) { - get_column_from_array(CELLS_COUNT, CELLS_COUNT, table, column_index, column); - calculate_move_to_left(column, move_result); - set_column_to_array(CELLS_COUNT, CELLS_COUNT, table, column_index, column); - } -} - -void move_down(uint8_t table[CELLS_COUNT][CELLS_COUNT], MoveResult* const move_result) { - uint8_t column[CELLS_COUNT]; - for(uint8_t column_index = 0; column_index < CELLS_COUNT; column_index++) { - get_column_from_array(CELLS_COUNT, CELLS_COUNT, table, column_index, column); - reverse_array(CELLS_COUNT, column); - calculate_move_to_left(column, move_result); - reverse_array(CELLS_COUNT, column); - set_column_to_array(CELLS_COUNT, CELLS_COUNT, table, column_index, column); - } -} - -void add_new_digit(GameState* const game_state) { - uint8_t empty_cell_indexes[CELLS_COUNT * CELLS_COUNT]; - uint8_t empty_cells_count = 0; - for(u_int8_t i = 0; i < CELLS_COUNT; i++) { - for(u_int8_t j = 0; j < CELLS_COUNT; j++) { - if(game_state->table[i][j] == 0) { - empty_cell_indexes[empty_cells_count++] = i * CELLS_COUNT + j; - } - } - } - if(empty_cells_count == 0) return; - - int random_empty_cell_index = empty_cell_indexes[random() % empty_cells_count]; - u_int8_t row = random_empty_cell_index / CELLS_COUNT; - u_int8_t col = random_empty_cell_index % CELLS_COUNT; - - int random_value_percent = random() % 100; - game_state->table[row][col] = random_value_percent < 90 ? 1 : 2; // 90% for 2, 25% for 4 -} - -void init_game(GameState* const game_state, bool clear_top_score) { - memset(game_state->table, 0, CELLS_COUNT * CELLS_COUNT * sizeof(uint8_t)); - add_new_digit(game_state); - add_new_digit(game_state); - - game_state->score = 0; - game_state->moves = 0; - game_state->state = GameStateInProgress; - game_state->selected_menu_item = 0; - if(clear_top_score) { - game_state->top_score = 0; - } -} - -bool load_game(GameState* game_state) { - Storage* storage = furi_record_open(RECORD_STORAGE); - - File* file = storage_file_alloc(storage); - uint16_t bytes_readed = 0; - if(storage_file_open(file, SAVING_FILENAME, FSAM_READ, FSOM_OPEN_EXISTING)) { - bytes_readed = storage_file_read(file, game_state, sizeof(GameState)); - } - storage_file_close(file); - storage_file_free(file); - - furi_record_close(RECORD_STORAGE); - - return bytes_readed == sizeof(GameState); -} - -void save_game(GameState* game_state) { - Storage* storage = furi_record_open(RECORD_STORAGE); - - if(storage_common_stat(storage, SAVING_DIRECTORY, NULL) == FSE_NOT_EXIST) { - if(!storage_simply_mkdir(storage, SAVING_DIRECTORY)) { - return; - } - } - - File* file = storage_file_alloc(storage); - if(storage_file_open(file, SAVING_FILENAME, FSAM_WRITE, FSOM_CREATE_ALWAYS)) { - storage_file_write(file, game_state, sizeof(GameState)); - } - storage_file_close(file); - storage_file_free(file); - - furi_record_close(RECORD_STORAGE); -} - -bool is_game_over(GameState* const game_state) { - FURI_LOG_I("is_game_over", "====check===="); - - // check if table contains at least one empty cell - for(uint8_t i = 0; i < CELLS_COUNT; i++) { - for(u_int8_t j = 0; j < CELLS_COUNT; j++) { - if(game_state->table[i][j] == 0) { - FURI_LOG_I("is_game_over", "has empty cells"); - return false; - } - } - } - FURI_LOG_I("is_game_over", "no empty cells"); - - uint8_t tmp_table[CELLS_COUNT][CELLS_COUNT]; - MoveResult* tmp_move_result = malloc(sizeof(MoveResult)); - - // check if we can move to any direction - memcpy(tmp_table, game_state->table, CELLS_COUNT * CELLS_COUNT * sizeof(uint8_t)); - move_left(tmp_table, tmp_move_result); - if(tmp_move_result->is_table_updated) return false; - FURI_LOG_I("is_game_over", "can't move left"); - - memcpy(tmp_table, game_state->table, CELLS_COUNT * CELLS_COUNT * sizeof(uint8_t)); - move_right(tmp_table, tmp_move_result); - if(tmp_move_result->is_table_updated) return false; - FURI_LOG_I("is_game_over", "can't move right"); - - memcpy(tmp_table, game_state->table, CELLS_COUNT * CELLS_COUNT * sizeof(uint8_t)); - move_up(tmp_table, tmp_move_result); - if(tmp_move_result->is_table_updated) return false; - FURI_LOG_I("is_game_over", "can't move up"); - - memcpy(tmp_table, game_state->table, CELLS_COUNT * CELLS_COUNT * sizeof(uint8_t)); - move_down(tmp_table, tmp_move_result); - if(tmp_move_result->is_table_updated) return false; - FURI_LOG_I("is_game_over", "can't move down"); - - return true; -} - -int32_t game_2048_app() { - GameState* game_state = malloc(sizeof(GameState)); - if(!load_game(game_state)) { - init_game(game_state, true); - } - - MoveResult* move_result = malloc(sizeof(MoveResult)); - - ValueMutex state_mutex; - if(!init_mutex(&state_mutex, game_state, sizeof(GameState))) { - FURI_LOG_E("SnakeGame", "cannot create mutex\r\n"); - free(game_state); - return 255; - } - - InputEvent input; - FuriMessageQueue* event_queue = furi_message_queue_alloc(8, sizeof(InputEvent)); - - ViewPort* view_port = view_port_alloc(); - view_port_draw_callback_set(view_port, draw_callback, &state_mutex); - view_port_input_callback_set(view_port, input_callback, event_queue); - - Gui* gui = furi_record_open(RECORD_GUI); - gui_add_view_port(gui, view_port, GuiLayerFullscreen); - - bool is_finished = false; - while(!is_finished) { - FuriStatus event_status = furi_message_queue_get(event_queue, &input, FuriWaitForever); - if(event_status == FuriStatusOk) { - // handle only press event, ignore repeat/release events - if(input.type != InputTypePress) continue; - - GameState* game_state = (GameState*)acquire_mutex_block(&state_mutex); - - switch(game_state->state) { - case GameStateMenu: - - switch(input.key) { - case InputKeyUp: - game_state->selected_menu_item--; - if(game_state->selected_menu_item < 0) { - game_state->selected_menu_item = MENU_ITEMS_COUNT - 1; - } - break; - case InputKeyDown: - game_state->selected_menu_item++; - if(game_state->selected_menu_item >= MENU_ITEMS_COUNT) { - game_state->selected_menu_item = 0; - } - break; - case InputKeyOk: - if(game_state->selected_menu_item == 1) { - // new game - init_game(game_state, false); - save_game(game_state); - } - game_state->state = GameStateInProgress; - break; - case InputKeyBack: - game_state->state = GameStateInProgress; - break; - default: - break; - } - - break; - case GameStateInProgress: - move_result->is_table_updated = false; - move_result->points = 0; - - switch(input.key) { - case InputKeyLeft: - move_left(game_state->table, move_result); - break; - case InputKeyRight: - move_right(game_state->table, move_result); - break; - case InputKeyUp: - move_up(game_state->table, move_result); - break; - case InputKeyDown: - move_down(game_state->table, move_result); - break; - case InputKeyOk: - game_state->state = GameStateMenu; - game_state->selected_menu_item = 0; - break; - case InputKeyBack: - save_game(game_state); - is_finished = true; - break; - case InputKeyMAX: - break; - } - game_state->score += move_result->points; - - if(move_result->is_table_updated) { - game_state->moves++; - add_new_digit(game_state); - } - - if(is_game_over(game_state)) { - game_state->state = GameStateGameOver; - if(game_state->score >= game_state->top_score) { - game_state->top_score = game_state->score; - } - } - - break; - case GameStateGameOver: - if(input.key == InputKeyOk || input.key == InputKeyBack) { - init_game(game_state, false); - save_game(game_state); - } - } - - view_port_update(view_port); - release_mutex(&state_mutex, game_state); - } - } - - gui_remove_view_port(gui, view_port); - furi_record_close(RECORD_GUI); - - view_port_free(view_port); - - furi_message_queue_free(event_queue); - - delete_mutex(&state_mutex); - - free(game_state); - free(move_result); - - return 0; -} diff --git a/applications/plugins/game2048_2/game_2048.png b/applications/plugins/game2048_2/game_2048.png deleted file mode 100644 index 196e119c83b92229f85f626c98fc8fd99b685dd5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 89 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 P79eX^c6!_UhrjqQzp9wl diff --git a/applications/plugins/game_2048/application.fam b/applications/plugins/game_2048/application.fam index eb51d65e8..4dcea8474 100644 --- a/applications/plugins/game_2048/application.fam +++ b/applications/plugins/game_2048/application.fam @@ -1,6 +1,6 @@ App( - appid="game_2048", - name="2048", + appid="2048", + name="2048 (Original)", apptype=FlipperAppType.EXTERNAL, entry_point="game_2048_app", cdefines=["APP_GAME_2048"],