├── .gitignore ├── .travis.yml ├── 3rd_party ├── glext40.pas ├── opengl │ ├── topenglcontrol.xpm │ ├── vcmi.glcarbonaglcontext.pas │ ├── vcmi.glcocoanscontext.pas │ ├── vcmi.glext.pp │ ├── vcmi.glgtkglxcontext.pas │ ├── vcmi.glqtcontext.pas │ ├── vcmi.glwin32wglcontext.pas │ ├── vcmi.openglcontext.pas │ ├── vcmi.wgl.pas │ ├── vcmiopenglcontext.lpk │ ├── vcmiopenglcontext.pas │ ├── vcmiopenglcontext.rc │ └── vcmiopenglcontext.res ├── vcmi_csvdocument.pp ├── vcmi_csvreadwrite.pp └── vcmi_fpjsonrtti.pas ├── COPYING ├── COPYING.LGPL.txt ├── COPYING.modifiedLGPL.txt ├── Makefile ├── base_info.pas ├── compilersetup.inc ├── editor_classes.pas ├── editor_consts.pas ├── editor_gl.pas ├── editor_graphics.pas ├── editor_rtti.pas ├── editor_str_consts.pas ├── editor_types.pas ├── editor_utils.pas ├── extrafpc.cfg ├── field_editors.pas ├── filesystem.pas ├── filesystem_base.pas ├── forms ├── abandoned_frame.lfm ├── abandoned_frame.pas ├── base_options_frame.lfm ├── base_options_frame.pas ├── creature_frame.lfm ├── creature_frame.pas ├── creature_set_frame.lfm ├── creature_set_frame.pas ├── dwelling_frame.lfm ├── dwelling_frame.pas ├── edit_hero_options.lfm ├── edit_hero_options.pas ├── edit_map_options.lfm ├── edit_map_options.pas ├── edit_object_options.lfm ├── edit_object_options.pas ├── edit_triggered_events.lfm ├── edit_triggered_events.pas ├── flaggable_object_frame.lfm ├── flaggable_object_frame.pas ├── grail_frame.lfm ├── grail_frame.pas ├── gui_helpers.pas ├── hero_artifacts_frame.lfm ├── hero_artifacts_frame.pas ├── hero_frame.lfm ├── hero_frame.pas ├── hero_skills_frame.lfm ├── hero_skills_frame.pas ├── hero_spells_frame.lfm ├── hero_spells_frame.pas ├── local_event_frame.lfm ├── local_event_frame.pas ├── message_frame.lfm ├── message_frame.pas ├── new_map.lfm ├── new_map.pas ├── player_options_form.lfm ├── player_options_form.pas ├── player_options_frame.lfm ├── player_options_frame.pas ├── player_selection_form.lfm ├── player_selection_form.pas ├── position.pas ├── quest_frame.lfm ├── quest_frame.pas ├── resource_frame.lfm ├── resource_frame.pas ├── reward_frame.lfm ├── reward_frame.pas ├── scholar_frame.lfm ├── scholar_frame.pas ├── shrine_frame.lfm ├── shrine_frame.pas ├── spellscroll_frame.lfm ├── spellscroll_frame.pas ├── subframes │ ├── object_link_frame.lfm │ ├── object_link_frame.pas │ ├── triggered_event_frame.lfm │ └── triggered_event_frame.pas ├── town_buildings_frame.lfm ├── town_buildings_frame.pas ├── town_frame.lfm ├── town_frame.pas ├── town_spells_frame.lfm ├── town_spells_frame.pas ├── witchhut_frame.lfm └── witchhut_frame.pas ├── h3_txt.pas ├── lists_manager.pas ├── locale_manager.pas ├── lod.pas ├── logical_building_condition.pas ├── logical_event_condition.pas ├── logical_expression.pas ├── logical_id_condition.pas ├── main.lfm ├── main.pas ├── map.pas ├── map_actions.pas ├── map_erase_actions.pas ├── map_format.pas ├── map_format_h3m.pas ├── map_format_json.pas ├── map_format_zip.pas ├── map_object_actions.pas ├── map_objects.pas ├── map_rect.pas ├── map_road_river_actions.pas ├── map_terrain_actions.pas ├── minimap.pas ├── object_options.pas ├── progress_form.lfm ├── progress_form.pas ├── road_transitions.pas ├── root_manager.lfm ├── root_manager.pas ├── search_index.pas ├── shaders ├── default_f.glsl └── default_v.glsl ├── stream_adapter.pas ├── terrain.pas ├── tests ├── test_csvdocunent.pas ├── unit_tests.lpi └── unit_tests.lpr ├── transitions.pas ├── undo_base.pas ├── undo_map.pas ├── vcmi.dirs.base.pas ├── vcmi.dirs.windows.pas ├── vcmi.dirs.xdg.pas ├── vcmi.frames.tools.lfm ├── vcmi.frames.tools.pas ├── vcmi.image_formats.h3pcx.pas ├── vcmi.image_loaders.pas ├── vcmi.lpg ├── vcmi_json.pas ├── vcmieditor.ico ├── vcmieditor.lpi ├── vcmieditor.lpr ├── zipper_ex.pas └── zlib_stream.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rd_party/glext40.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/glext40.pas -------------------------------------------------------------------------------- /3rd_party/opengl/topenglcontrol.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/topenglcontrol.xpm -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.glcarbonaglcontext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.glcarbonaglcontext.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.glcocoanscontext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.glcocoanscontext.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.glext.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.glext.pp -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.glgtkglxcontext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.glgtkglxcontext.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.glqtcontext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.glqtcontext.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.glwin32wglcontext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.glwin32wglcontext.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.openglcontext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.openglcontext.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmi.wgl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmi.wgl.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmiopenglcontext.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmiopenglcontext.lpk -------------------------------------------------------------------------------- /3rd_party/opengl/vcmiopenglcontext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmiopenglcontext.pas -------------------------------------------------------------------------------- /3rd_party/opengl/vcmiopenglcontext.rc: -------------------------------------------------------------------------------- 1 | TOPNEGLCONTROL RCDATA "topenglcontrol.xpm" -------------------------------------------------------------------------------- /3rd_party/opengl/vcmiopenglcontext.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/opengl/vcmiopenglcontext.res -------------------------------------------------------------------------------- /3rd_party/vcmi_csvdocument.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/vcmi_csvdocument.pp -------------------------------------------------------------------------------- /3rd_party/vcmi_csvreadwrite.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/vcmi_csvreadwrite.pp -------------------------------------------------------------------------------- /3rd_party/vcmi_fpjsonrtti.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/3rd_party/vcmi_fpjsonrtti.pas -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/COPYING.LGPL.txt -------------------------------------------------------------------------------- /COPYING.modifiedLGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/COPYING.modifiedLGPL.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/Makefile -------------------------------------------------------------------------------- /base_info.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/base_info.pas -------------------------------------------------------------------------------- /compilersetup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/compilersetup.inc -------------------------------------------------------------------------------- /editor_classes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_classes.pas -------------------------------------------------------------------------------- /editor_consts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_consts.pas -------------------------------------------------------------------------------- /editor_gl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_gl.pas -------------------------------------------------------------------------------- /editor_graphics.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_graphics.pas -------------------------------------------------------------------------------- /editor_rtti.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_rtti.pas -------------------------------------------------------------------------------- /editor_str_consts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_str_consts.pas -------------------------------------------------------------------------------- /editor_types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_types.pas -------------------------------------------------------------------------------- /editor_utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/editor_utils.pas -------------------------------------------------------------------------------- /extrafpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/extrafpc.cfg -------------------------------------------------------------------------------- /field_editors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/field_editors.pas -------------------------------------------------------------------------------- /filesystem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/filesystem.pas -------------------------------------------------------------------------------- /filesystem_base.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/filesystem_base.pas -------------------------------------------------------------------------------- /forms/abandoned_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/abandoned_frame.lfm -------------------------------------------------------------------------------- /forms/abandoned_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/abandoned_frame.pas -------------------------------------------------------------------------------- /forms/base_options_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/base_options_frame.lfm -------------------------------------------------------------------------------- /forms/base_options_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/base_options_frame.pas -------------------------------------------------------------------------------- /forms/creature_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/creature_frame.lfm -------------------------------------------------------------------------------- /forms/creature_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/creature_frame.pas -------------------------------------------------------------------------------- /forms/creature_set_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/creature_set_frame.lfm -------------------------------------------------------------------------------- /forms/creature_set_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/creature_set_frame.pas -------------------------------------------------------------------------------- /forms/dwelling_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/dwelling_frame.lfm -------------------------------------------------------------------------------- /forms/dwelling_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/dwelling_frame.pas -------------------------------------------------------------------------------- /forms/edit_hero_options.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_hero_options.lfm -------------------------------------------------------------------------------- /forms/edit_hero_options.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_hero_options.pas -------------------------------------------------------------------------------- /forms/edit_map_options.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_map_options.lfm -------------------------------------------------------------------------------- /forms/edit_map_options.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_map_options.pas -------------------------------------------------------------------------------- /forms/edit_object_options.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_object_options.lfm -------------------------------------------------------------------------------- /forms/edit_object_options.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_object_options.pas -------------------------------------------------------------------------------- /forms/edit_triggered_events.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_triggered_events.lfm -------------------------------------------------------------------------------- /forms/edit_triggered_events.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/edit_triggered_events.pas -------------------------------------------------------------------------------- /forms/flaggable_object_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/flaggable_object_frame.lfm -------------------------------------------------------------------------------- /forms/flaggable_object_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/flaggable_object_frame.pas -------------------------------------------------------------------------------- /forms/grail_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/grail_frame.lfm -------------------------------------------------------------------------------- /forms/grail_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/grail_frame.pas -------------------------------------------------------------------------------- /forms/gui_helpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/gui_helpers.pas -------------------------------------------------------------------------------- /forms/hero_artifacts_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_artifacts_frame.lfm -------------------------------------------------------------------------------- /forms/hero_artifacts_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_artifacts_frame.pas -------------------------------------------------------------------------------- /forms/hero_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_frame.lfm -------------------------------------------------------------------------------- /forms/hero_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_frame.pas -------------------------------------------------------------------------------- /forms/hero_skills_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_skills_frame.lfm -------------------------------------------------------------------------------- /forms/hero_skills_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_skills_frame.pas -------------------------------------------------------------------------------- /forms/hero_spells_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_spells_frame.lfm -------------------------------------------------------------------------------- /forms/hero_spells_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/hero_spells_frame.pas -------------------------------------------------------------------------------- /forms/local_event_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/local_event_frame.lfm -------------------------------------------------------------------------------- /forms/local_event_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/local_event_frame.pas -------------------------------------------------------------------------------- /forms/message_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/message_frame.lfm -------------------------------------------------------------------------------- /forms/message_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/message_frame.pas -------------------------------------------------------------------------------- /forms/new_map.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/new_map.lfm -------------------------------------------------------------------------------- /forms/new_map.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/new_map.pas -------------------------------------------------------------------------------- /forms/player_options_form.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/player_options_form.lfm -------------------------------------------------------------------------------- /forms/player_options_form.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/player_options_form.pas -------------------------------------------------------------------------------- /forms/player_options_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/player_options_frame.lfm -------------------------------------------------------------------------------- /forms/player_options_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/player_options_frame.pas -------------------------------------------------------------------------------- /forms/player_selection_form.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/player_selection_form.lfm -------------------------------------------------------------------------------- /forms/player_selection_form.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/player_selection_form.pas -------------------------------------------------------------------------------- /forms/position.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/position.pas -------------------------------------------------------------------------------- /forms/quest_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/quest_frame.lfm -------------------------------------------------------------------------------- /forms/quest_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/quest_frame.pas -------------------------------------------------------------------------------- /forms/resource_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/resource_frame.lfm -------------------------------------------------------------------------------- /forms/resource_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/resource_frame.pas -------------------------------------------------------------------------------- /forms/reward_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/reward_frame.lfm -------------------------------------------------------------------------------- /forms/reward_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/reward_frame.pas -------------------------------------------------------------------------------- /forms/scholar_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/scholar_frame.lfm -------------------------------------------------------------------------------- /forms/scholar_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/scholar_frame.pas -------------------------------------------------------------------------------- /forms/shrine_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/shrine_frame.lfm -------------------------------------------------------------------------------- /forms/shrine_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/shrine_frame.pas -------------------------------------------------------------------------------- /forms/spellscroll_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/spellscroll_frame.lfm -------------------------------------------------------------------------------- /forms/spellscroll_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/spellscroll_frame.pas -------------------------------------------------------------------------------- /forms/subframes/object_link_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/subframes/object_link_frame.lfm -------------------------------------------------------------------------------- /forms/subframes/object_link_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/subframes/object_link_frame.pas -------------------------------------------------------------------------------- /forms/subframes/triggered_event_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/subframes/triggered_event_frame.lfm -------------------------------------------------------------------------------- /forms/subframes/triggered_event_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/subframes/triggered_event_frame.pas -------------------------------------------------------------------------------- /forms/town_buildings_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/town_buildings_frame.lfm -------------------------------------------------------------------------------- /forms/town_buildings_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/town_buildings_frame.pas -------------------------------------------------------------------------------- /forms/town_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/town_frame.lfm -------------------------------------------------------------------------------- /forms/town_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/town_frame.pas -------------------------------------------------------------------------------- /forms/town_spells_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/town_spells_frame.lfm -------------------------------------------------------------------------------- /forms/town_spells_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/town_spells_frame.pas -------------------------------------------------------------------------------- /forms/witchhut_frame.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/witchhut_frame.lfm -------------------------------------------------------------------------------- /forms/witchhut_frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/forms/witchhut_frame.pas -------------------------------------------------------------------------------- /h3_txt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/h3_txt.pas -------------------------------------------------------------------------------- /lists_manager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/lists_manager.pas -------------------------------------------------------------------------------- /locale_manager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/locale_manager.pas -------------------------------------------------------------------------------- /lod.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/lod.pas -------------------------------------------------------------------------------- /logical_building_condition.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/logical_building_condition.pas -------------------------------------------------------------------------------- /logical_event_condition.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/logical_event_condition.pas -------------------------------------------------------------------------------- /logical_expression.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/logical_expression.pas -------------------------------------------------------------------------------- /logical_id_condition.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/logical_id_condition.pas -------------------------------------------------------------------------------- /main.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/main.lfm -------------------------------------------------------------------------------- /main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/main.pas -------------------------------------------------------------------------------- /map.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map.pas -------------------------------------------------------------------------------- /map_actions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_actions.pas -------------------------------------------------------------------------------- /map_erase_actions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_erase_actions.pas -------------------------------------------------------------------------------- /map_format.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_format.pas -------------------------------------------------------------------------------- /map_format_h3m.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_format_h3m.pas -------------------------------------------------------------------------------- /map_format_json.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_format_json.pas -------------------------------------------------------------------------------- /map_format_zip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_format_zip.pas -------------------------------------------------------------------------------- /map_object_actions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_object_actions.pas -------------------------------------------------------------------------------- /map_objects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_objects.pas -------------------------------------------------------------------------------- /map_rect.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_rect.pas -------------------------------------------------------------------------------- /map_road_river_actions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_road_river_actions.pas -------------------------------------------------------------------------------- /map_terrain_actions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/map_terrain_actions.pas -------------------------------------------------------------------------------- /minimap.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/minimap.pas -------------------------------------------------------------------------------- /object_options.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/object_options.pas -------------------------------------------------------------------------------- /progress_form.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/progress_form.lfm -------------------------------------------------------------------------------- /progress_form.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/progress_form.pas -------------------------------------------------------------------------------- /road_transitions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/road_transitions.pas -------------------------------------------------------------------------------- /root_manager.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/root_manager.lfm -------------------------------------------------------------------------------- /root_manager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/root_manager.pas -------------------------------------------------------------------------------- /search_index.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/search_index.pas -------------------------------------------------------------------------------- /shaders/default_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/shaders/default_f.glsl -------------------------------------------------------------------------------- /shaders/default_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/shaders/default_v.glsl -------------------------------------------------------------------------------- /stream_adapter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/stream_adapter.pas -------------------------------------------------------------------------------- /terrain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/terrain.pas -------------------------------------------------------------------------------- /tests/test_csvdocunent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/tests/test_csvdocunent.pas -------------------------------------------------------------------------------- /tests/unit_tests.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/tests/unit_tests.lpi -------------------------------------------------------------------------------- /tests/unit_tests.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/tests/unit_tests.lpr -------------------------------------------------------------------------------- /transitions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/transitions.pas -------------------------------------------------------------------------------- /undo_base.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/undo_base.pas -------------------------------------------------------------------------------- /undo_map.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/undo_map.pas -------------------------------------------------------------------------------- /vcmi.dirs.base.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.dirs.base.pas -------------------------------------------------------------------------------- /vcmi.dirs.windows.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.dirs.windows.pas -------------------------------------------------------------------------------- /vcmi.dirs.xdg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.dirs.xdg.pas -------------------------------------------------------------------------------- /vcmi.frames.tools.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.frames.tools.lfm -------------------------------------------------------------------------------- /vcmi.frames.tools.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.frames.tools.pas -------------------------------------------------------------------------------- /vcmi.image_formats.h3pcx.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.image_formats.h3pcx.pas -------------------------------------------------------------------------------- /vcmi.image_loaders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.image_loaders.pas -------------------------------------------------------------------------------- /vcmi.lpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi.lpg -------------------------------------------------------------------------------- /vcmi_json.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmi_json.pas -------------------------------------------------------------------------------- /vcmieditor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmieditor.ico -------------------------------------------------------------------------------- /vcmieditor.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmieditor.lpi -------------------------------------------------------------------------------- /vcmieditor.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/vcmieditor.lpr -------------------------------------------------------------------------------- /zipper_ex.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/zipper_ex.pas -------------------------------------------------------------------------------- /zlib_stream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi_editor/HEAD/zlib_stream.pas --------------------------------------------------------------------------------