├── .gitignore ├── LICENSE ├── README.md ├── preview.png └── src ├── animation.cpp ├── animation.h ├── bitmap.cpp ├── bitmap.h ├── decompress.cpp ├── dialog.cpp ├── dialog.h ├── dkc2editor.aps ├── dkc2editor.rc ├── dkicon.ico ├── editor.cpp ├── editor.h ├── editor_tool.cpp ├── editor_tool.h ├── frame.cpp ├── frame.h ├── hex_editor.cpp ├── hex_editor.h ├── hexedit.cpp ├── hexedit.h ├── level.cpp ├── level.h ├── level_name.cpp ├── level_picker.cpp ├── level_picker.h ├── level_properties.cpp ├── level_properties.h ├── level_sprite.cpp ├── level_sprite.h ├── level_style.cpp ├── level_style.h ├── level_tilemap.cpp ├── level_tilemap.h ├── main.cpp ├── ref_count.h ├── resource.h ├── rom_file.cpp ├── rom_file.h ├── sprite.cpp ├── sprite.h ├── sprite_property.cpp ├── sprite_property.h ├── stdafx.h ├── stock_sprite.cpp ├── stock_sprite.h ├── tile.cpp ├── tile.h ├── tilemap.cpp ├── tilemap.h ├── toolbar-disabled.bmp ├── toolbar.bmp ├── undo_buffer.cpp ├── undo_buffer.h ├── window.cpp └── window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/README.md -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/preview.png -------------------------------------------------------------------------------- /src/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/animation.cpp -------------------------------------------------------------------------------- /src/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/animation.h -------------------------------------------------------------------------------- /src/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/bitmap.cpp -------------------------------------------------------------------------------- /src/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/bitmap.h -------------------------------------------------------------------------------- /src/decompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/decompress.cpp -------------------------------------------------------------------------------- /src/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/dialog.cpp -------------------------------------------------------------------------------- /src/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/dialog.h -------------------------------------------------------------------------------- /src/dkc2editor.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/dkc2editor.aps -------------------------------------------------------------------------------- /src/dkc2editor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/dkc2editor.rc -------------------------------------------------------------------------------- /src/dkicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/dkicon.ico -------------------------------------------------------------------------------- /src/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/editor.cpp -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/editor_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/editor_tool.cpp -------------------------------------------------------------------------------- /src/editor_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/editor_tool.h -------------------------------------------------------------------------------- /src/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/frame.cpp -------------------------------------------------------------------------------- /src/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/frame.h -------------------------------------------------------------------------------- /src/hex_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/hex_editor.cpp -------------------------------------------------------------------------------- /src/hex_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/hex_editor.h -------------------------------------------------------------------------------- /src/hexedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/hexedit.cpp -------------------------------------------------------------------------------- /src/hexedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/hexedit.h -------------------------------------------------------------------------------- /src/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level.cpp -------------------------------------------------------------------------------- /src/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level.h -------------------------------------------------------------------------------- /src/level_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_name.cpp -------------------------------------------------------------------------------- /src/level_picker.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/level_picker.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include "dialog.h" 5 | 6 | -------------------------------------------------------------------------------- /src/level_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_properties.cpp -------------------------------------------------------------------------------- /src/level_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_properties.h -------------------------------------------------------------------------------- /src/level_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_sprite.cpp -------------------------------------------------------------------------------- /src/level_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_sprite.h -------------------------------------------------------------------------------- /src/level_style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_style.cpp -------------------------------------------------------------------------------- /src/level_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_style.h -------------------------------------------------------------------------------- /src/level_tilemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_tilemap.cpp -------------------------------------------------------------------------------- /src/level_tilemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/level_tilemap.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/ref_count.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/rom_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/rom_file.cpp -------------------------------------------------------------------------------- /src/rom_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/rom_file.h -------------------------------------------------------------------------------- /src/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/sprite.cpp -------------------------------------------------------------------------------- /src/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/sprite.h -------------------------------------------------------------------------------- /src/sprite_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/sprite_property.cpp -------------------------------------------------------------------------------- /src/sprite_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/sprite_property.h -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/stock_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/stock_sprite.cpp -------------------------------------------------------------------------------- /src/stock_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/stock_sprite.h -------------------------------------------------------------------------------- /src/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/tile.cpp -------------------------------------------------------------------------------- /src/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/tile.h -------------------------------------------------------------------------------- /src/tilemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/tilemap.cpp -------------------------------------------------------------------------------- /src/tilemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/tilemap.h -------------------------------------------------------------------------------- /src/toolbar-disabled.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/toolbar-disabled.bmp -------------------------------------------------------------------------------- /src/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/toolbar.bmp -------------------------------------------------------------------------------- /src/undo_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/undo_buffer.cpp -------------------------------------------------------------------------------- /src/undo_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/undo_buffer.h -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/window.cpp -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francislr/dkc2-maps/HEAD/src/window.h --------------------------------------------------------------------------------