diff --git a/assets/map/entities.png b/assets/map/entities.png deleted file mode 100644 index 071af2ac..00000000 Binary files a/assets/map/entities.png and /dev/null differ diff --git a/assets/map/tilemap.png b/assets/map/tilemap.png deleted file mode 100644 index 504b06de..00000000 Binary files a/assets/map/tilemap.png and /dev/null differ diff --git a/assets/map/testmap.tmx b/assets/maps/testmap.tmx similarity index 67% rename from assets/map/testmap.tmx rename to assets/maps/testmap.tmx index 6236bad3..d0afcd3b 100644 --- a/assets/map/testmap.tmx +++ b/assets/maps/testmap.tmx @@ -1,7 +1,7 @@ - - - + + + 1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2, @@ -28,5 +28,19 @@ + + + + + + + + + + + + + + diff --git a/assets/maps/testmap2.tmx b/assets/maps/testmap2.tmx new file mode 100644 index 00000000..3e188808 --- /dev/null +++ b/assets/maps/testmap2.tmx @@ -0,0 +1,17 @@ + + + + + + +2,2,2,2,2, +2,2,2,3,2, +2,2,3,3,2, +2,2,3,2,2, +2,3,3,2,2 + + + + + + diff --git a/assets/map/tiled_project.tiled-project b/assets/tiled_project.tiled-project similarity index 100% rename from assets/map/tiled_project.tiled-project rename to assets/tiled_project.tiled-project diff --git a/assets/map/tiled_project.tiled-session b/assets/tiled_project.tiled-session similarity index 57% rename from assets/map/tiled_project.tiled-session rename to assets/tiled_project.tiled-session index f458716f..df235f5d 100644 --- a/assets/map/tiled_project.tiled-session +++ b/assets/tiled_project.tiled-session @@ -5,7 +5,9 @@ }, "activeFile": "", "expandedProjectPaths": [ + "." ], + "file.lastUsedOpenFilter": "All Files (*)", "fileStates": { "": { "scaleInDock": 1 @@ -14,12 +16,31 @@ "scaleInDock": 1, "scaleInEditor": 1 }, - "testmap.tmx": { - "scale": 3.281458333333333, + "maps/testmap.tmx": { + "expandedObjectLayers": [ + 2 + ], + "scale": 3.404166666666667, "selectedLayer": 1, "viewCenter": { - "x": 97.36524665100629, - "y": 58.20582820138405 + "x": 116.328029375765, + "y": 79.90208078335371 + } + }, + "maps/testmap2.tmx": { + "scale": 5.0383, + "selectedLayer": 1, + "viewCenter": { + "x": 33.940019451005305, + "y": 35.726336264216116 + } + }, + "testmap.tmx": { + "scale": 3.23, + "selectedLayer": 1, + "viewCenter": { + "x": 122.60061919504646, + "y": 56.965944272445824 } }, "testmap2.tmx": { @@ -35,19 +56,19 @@ "scaleInEditor": 4 } }, - "last.externalTilesetPath": "/home/yourwishes/htdocs/Dawn/assets/map", - "last.imagePath": "/home/yourwishes/htdocs/Dawn/assets/map", + "last.externalTilesetPath": "/home/yourwishes/htdocs/Dawn/assets", + "last.imagePath": "/home/yourwishes/htdocs/Dawn/assets", + "map.height": 5, "map.lastUsedFormat": "tmx", "map.tileHeight": 8, "map.tileWidth": 8, + "map.width": 5, "openFiles": [ ], "project": "tiled_project.tiled-project", + "property.type": "string", "recentFiles": [ - "testmap.tmx", - "tilemap.tsx", - "entities.tsx", - "testmap2.tmx" + "maps/testmap2.tmx" ], "tileset.lastUsedFilter": "All Files (*)", "tileset.lastUsedFormat": "tsx", diff --git a/assets/tilemaps/entities.png b/assets/tilemaps/entities.png new file mode 100644 index 00000000..6a25ea89 Binary files /dev/null and b/assets/tilemaps/entities.png differ diff --git a/assets/map/entities.tsx b/assets/tilemaps/entities.tsx similarity index 100% rename from assets/map/entities.tsx rename to assets/tilemaps/entities.tsx diff --git a/assets/tilemaps/tilemap.png b/assets/tilemaps/tilemap.png new file mode 100644 index 00000000..a30bee9c Binary files /dev/null and b/assets/tilemaps/tilemap.png differ diff --git a/assets/map/tilemap.tsx b/assets/tilemaps/tilemap.tsx similarity index 100% rename from assets/map/tilemap.tsx rename to assets/tilemaps/tilemap.tsx diff --git a/gentileset.py b/gentileset.py index 1c18d163..330db91b 100644 --- a/gentileset.py +++ b/gentileset.py @@ -161,7 +161,7 @@ TILES = { "NULL": [ 0, 'N', COLORS["RED"] ], "GRASS": [ 1, '#', COLORS["GREEN"] ], "WATER": [ 2, '\\', COLORS["BLUE"] ], - "DOOR": [ 3, 'D', COLORS["BROWN"] ], + # "DOOR": [ 3, 'D', COLORS["BROWN"] ], "BUILDING_WALL": [ 4, '-', COLORS["GRAY"] ], "ROOF": [ 5, '/', COLORS["BROWN"] ], "WALKABLE_NULL": [ 6, ' ', COLORS["BLACK"] ], @@ -170,6 +170,9 @@ TILES = { ENTITIES = { "NULL": [ 0, 'N', COLORS["RED"] ], "PLAYER": [ 1, 'v', COLORS["RED"] ], + "NPC": [ 2, 'V', COLORS["RED"] ], + "SIGN": [ 3, '+', COLORS["YELLOW"] ], + "DOOR": [ 4, 'D', COLORS["BROWN"] ], } # Create 64 x 64 RGB pixel buffer. diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 4b5e4daf..0c19749c 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -32,7 +32,8 @@ target_sources(${DAWN_TARGET_NAME} ) # Assets -tool_map(testmap map/testmap.tmx) +tool_map(testmap maps/testmap.tmx) +tool_map(testmap2 maps/testmap2.tmx) tool_copy(en en.json) add_dependencies(${DAWN_TARGET_NAME} dawnassets) diff --git a/src/dawn/asset/assetmap.c b/src/dawn/asset/assetmap.c index 84148c2c..004133d1 100644 --- a/src/dawn/asset/assetmap.c +++ b/src/dawn/asset/assetmap.c @@ -93,9 +93,15 @@ void assetMapLoadEntity( door->type == ASSET_JSON_DATA_TYPE_NUMBER, "assetMapLoad: Door y is not a number!" ); - entitydirection_t direction = (entitydirection_t)( - assetJsonGetObjectValue(val, "direction")->number - ); + + door = assetJsonGetObjectValue(val, "direction"); + entitydirection_t direction = ENTITY_DIRECTION_SOUTH; + if(door != NULL) { + direction = (entitydirection_t)( + assetJsonGetObjectValue(val, "direction")->number + ); + } + door = assetJsonGetObjectValue(val, "map"); maplist_t list; if(door == NULL) { diff --git a/src/dawn/game/state/mapchange.c b/src/dawn/game/state/mapchange.c index 1060ad15..d611cea1 100644 --- a/src/dawn/game/state/mapchange.c +++ b/src/dawn/game/state/mapchange.c @@ -10,8 +10,21 @@ #include "game/game.h" void gameStateMapChangeUpdate() { + // First try and find the player object + entity_t *player = NULL; + entitydirection_t dir = ENTITY_DIRECTION_SOUTH; + if(GAME.currentMap != NULL) { + player = mapEntityGetByType(GAME.currentMap, ENTITY_TYPE_PLAYER); + dir = player->direction; + } + assetMapLoad(MAP_LIST_PATHS[GAME.mapNext], &MAP_MAIN); GAME.state = GAME_STATE_OVERWORLD; GAME.currentMap = &MAP_MAIN; - map_t *test = &MAP_MAIN; + + // Do not reference player since its invalid, just check if it DID exist + if(GAME.currentMap != NULL && player != NULL) { + player = mapEntityGetByType(GAME.currentMap, ENTITY_TYPE_PLAYER); + player->direction = dir; + } } \ No newline at end of file diff --git a/src/dawn/rpg/world/maplist.c b/src/dawn/rpg/world/maplist.c index a908bfb9..ce6b6037 100644 --- a/src/dawn/rpg/world/maplist.c +++ b/src/dawn/rpg/world/maplist.c @@ -9,7 +9,8 @@ #include "assert/assert.h" const char_t * MAP_LIST_PATHS[] = { - "testmap.map" + "testmap.map", + "testmap2.map" }; const int32_t MAP_LIST_COUNT = sizeof(MAP_LIST_PATHS) / sizeof(char_t*); diff --git a/src/dawn/rpg/world/tile.c b/src/dawn/rpg/world/tile.c index f31ece7f..8059f7a9 100644 --- a/src/dawn/rpg/world/tile.c +++ b/src/dawn/rpg/world/tile.c @@ -9,6 +9,7 @@ bool_t tileIsSolid(const tile_t tile) { switch(tile) { + case TILE_NULL: case TILE_WATER: case TILE_BUILDING_WALL: case TILE_ROOF: diff --git a/tools/maptool/maptool.py b/tools/maptool/maptool.py index 1f8f4bc5..ae7384ea 100755 --- a/tools/maptool/maptool.py +++ b/tools/maptool/maptool.py @@ -63,18 +63,54 @@ for objectgroup in root.findall('objectgroup'): isEnt = objectgroup.attrib['name'].lower().find('ent') != -1 for tiledObject in objectgroup.findall('object'): - # /8 because tiled uses pixels for objects but we use tile indexes (8x8px) + floatX = float(tiledObject.attrib['x']) + floatY = float(tiledObject.attrib['y']) + + # tiled uses Px and uses bottom left of sprite obj = { - "x": int(round(float(tiledObject.attrib['x']) / 8)), - "y": int(round(float(tiledObject.attrib['y']) / 8)), + "x": int( round(floatX / 8) ), + "y": int( round((floatY - 8) / 8) ) } + propertiesElement = tiledObject.find('properties') + if propertiesElement is None: + propertyElements = [] + else: + propertyElements = propertiesElement.findall('property') + + properties = {} + for prop in propertyElements: + properties[prop.attrib['name']] = prop.attrib['value'] + if isEnt: if not 'type' in tiledObject.attrib: raise Exception('Entity missing type attribute') entType = tiledObject.attrib['type'] if entType == 'player': obj['type'] = 1 + elif entType == 'npc': + obj['type'] = 2 + elif entType == 'sign': + obj['type'] = 3 + + obj["texts"] = [] + for key in properties: + if key.find('text') != -1: + obj["texts"].append(properties[key]) + + elif entType == 'door': + obj['type'] = 4 + obj["door"] = {} + + if 'x' in properties: + obj["door"]["x"] = int(properties['x']) + if 'y' in properties: + obj["door"]["y"] = int(properties['y']) + if 'direction' in properties: + obj["door"]["direction"] = int(properties['direction']) + if 'map' in properties: + obj["door"]["map"] = properties['map'] + else: raise Exception('Unknown entity type: ' + entType)