From a7dc7fdcf80b403b7c452e271c96a4fda3ae1f49 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 7 Oct 2024 00:29:59 -0500 Subject: [PATCH] Remove testmap2 --- assets/testmap.json | 3 +-- assets/testmap2.json | 20 -------------------- src/dawn/CMakeLists.txt | 1 - src/dawn/rpg/world/maplist.c | 3 +-- src/dawn/rpg/world/maplist.h | 3 +-- 5 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 assets/testmap2.json diff --git a/assets/testmap.json b/assets/testmap.json index fa4fa81d..9fa54719 100644 --- a/assets/testmap.json +++ b/assets/testmap.json @@ -49,8 +49,7 @@ "door": { "x": 0, "y": 0, - "direction": 3, - "map": "testmap2.json" + "direction": 3 } } ] diff --git a/assets/testmap2.json b/assets/testmap2.json deleted file mode 100644 index 87ce3c6f..00000000 --- a/assets/testmap2.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "width": 3, - "height": 3, - "layers": [ - { - "tiles": [ - 1, 1, 1, - 1, 1, 1, - 1, 1, 1 - ] - } - ], - "entities": [ - { - "type": 1, - "x": 0, - "y": 0 - } - ] -} \ No newline at end of file diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index ab5b9b38..3ca2634a 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -31,6 +31,5 @@ target_sources(${DAWN_TARGET_NAME} # Assets tool_copy(testmap testmap.json) -tool_copy(testmap2 testmap2.json) add_dependencies(${DAWN_TARGET_NAME} dawnassets) diff --git a/src/dawn/rpg/world/maplist.c b/src/dawn/rpg/world/maplist.c index 84c1afa5..2dd77e4a 100644 --- a/src/dawn/rpg/world/maplist.c +++ b/src/dawn/rpg/world/maplist.c @@ -9,8 +9,7 @@ #include "assert/assert.h" const char_t * MAP_LIST_PATHS[] = { - "testmap.json", - "testmap2.json" + "testmap.json" }; const int32_t MAP_LIST_COUNT = sizeof(MAP_LIST_PATHS) / sizeof(char_t*); diff --git a/src/dawn/rpg/world/maplist.h b/src/dawn/rpg/world/maplist.h index 1fb51df9..1fec9a14 100644 --- a/src/dawn/rpg/world/maplist.h +++ b/src/dawn/rpg/world/maplist.h @@ -9,8 +9,7 @@ #include "dawn.h" typedef enum { - MAP_LIST_TEST, - MAP_LIST_TEST2 + MAP_LIST_TEST } maplist_t; extern const char_t *MAP_LIST_PATHS[];