├── .gitignore ├── README.md ├── block.cpp ├── block.h ├── blockdata.cpp ├── blockdata.h ├── editor.cpp ├── editor.h ├── event.cpp ├── event.h ├── graphicsview.cpp ├── graphicsview.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── map.cpp ├── map.h ├── neweventtoolbutton.cpp ├── neweventtoolbutton.h ├── noscrollcombobox.cpp ├── noscrollcombobox.h ├── noscrollspinbox.cpp ├── noscrollspinbox.h ├── objectpropertiesframe.cpp ├── objectpropertiesframe.h ├── objectpropertiesframe.ui ├── parseutil.cpp ├── parseutil.h ├── pretmap.pro ├── project.cpp ├── project.h ├── resources ├── icons │ ├── add.ico │ ├── cursor.ico │ ├── delete.ico │ ├── fill_color.ico │ ├── folder.ico │ ├── folder_closed.ico │ ├── folder_closed_map.ico │ ├── folder_image.ico │ ├── folder_map.ico │ ├── image.ico │ ├── map.ico │ ├── pencil.ico │ ├── pipette.ico │ └── viewsprites.ico ├── images.qrc └── images │ ├── Entities_16x16.png │ └── collisions.png ├── tile.cpp ├── tile.h ├── tileset.cpp └── tileset.h /.gitignore: -------------------------------------------------------------------------------- 1 | pretmap.pro.user 2 | *.autosave 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/README.md -------------------------------------------------------------------------------- /block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/block.cpp -------------------------------------------------------------------------------- /block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/block.h -------------------------------------------------------------------------------- /blockdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/blockdata.cpp -------------------------------------------------------------------------------- /blockdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/blockdata.h -------------------------------------------------------------------------------- /editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/editor.cpp -------------------------------------------------------------------------------- /editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/editor.h -------------------------------------------------------------------------------- /event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/event.cpp -------------------------------------------------------------------------------- /event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/event.h -------------------------------------------------------------------------------- /graphicsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/graphicsview.cpp -------------------------------------------------------------------------------- /graphicsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/graphicsview.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/map.cpp -------------------------------------------------------------------------------- /map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/map.h -------------------------------------------------------------------------------- /neweventtoolbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/neweventtoolbutton.cpp -------------------------------------------------------------------------------- /neweventtoolbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/neweventtoolbutton.h -------------------------------------------------------------------------------- /noscrollcombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/noscrollcombobox.cpp -------------------------------------------------------------------------------- /noscrollcombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/noscrollcombobox.h -------------------------------------------------------------------------------- /noscrollspinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/noscrollspinbox.cpp -------------------------------------------------------------------------------- /noscrollspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/noscrollspinbox.h -------------------------------------------------------------------------------- /objectpropertiesframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/objectpropertiesframe.cpp -------------------------------------------------------------------------------- /objectpropertiesframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/objectpropertiesframe.h -------------------------------------------------------------------------------- /objectpropertiesframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/objectpropertiesframe.ui -------------------------------------------------------------------------------- /parseutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/parseutil.cpp -------------------------------------------------------------------------------- /parseutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/parseutil.h -------------------------------------------------------------------------------- /pretmap.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/pretmap.pro -------------------------------------------------------------------------------- /project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/project.cpp -------------------------------------------------------------------------------- /project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/project.h -------------------------------------------------------------------------------- /resources/icons/add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/add.ico -------------------------------------------------------------------------------- /resources/icons/cursor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/cursor.ico -------------------------------------------------------------------------------- /resources/icons/delete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/delete.ico -------------------------------------------------------------------------------- /resources/icons/fill_color.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/fill_color.ico -------------------------------------------------------------------------------- /resources/icons/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/folder.ico -------------------------------------------------------------------------------- /resources/icons/folder_closed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/folder_closed.ico -------------------------------------------------------------------------------- /resources/icons/folder_closed_map.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/folder_closed_map.ico -------------------------------------------------------------------------------- /resources/icons/folder_image.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/folder_image.ico -------------------------------------------------------------------------------- /resources/icons/folder_map.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/folder_map.ico -------------------------------------------------------------------------------- /resources/icons/image.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/image.ico -------------------------------------------------------------------------------- /resources/icons/map.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/map.ico -------------------------------------------------------------------------------- /resources/icons/pencil.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/pencil.ico -------------------------------------------------------------------------------- /resources/icons/pipette.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/pipette.ico -------------------------------------------------------------------------------- /resources/icons/viewsprites.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/icons/viewsprites.ico -------------------------------------------------------------------------------- /resources/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/images.qrc -------------------------------------------------------------------------------- /resources/images/Entities_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/images/Entities_16x16.png -------------------------------------------------------------------------------- /resources/images/collisions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/resources/images/collisions.png -------------------------------------------------------------------------------- /tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/tile.cpp -------------------------------------------------------------------------------- /tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/tile.h -------------------------------------------------------------------------------- /tileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/tileset.cpp -------------------------------------------------------------------------------- /tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenatch/pretmap/HEAD/tileset.h --------------------------------------------------------------------------------