Skip to content

Latest commit

 

History

History
29 lines (29 loc) · 1.96 KB

README.md

File metadata and controls

29 lines (29 loc) · 1.96 KB

Tile Map Editor - Realmz 🌎

A scenario editor for creating 2D tile maps using C++ language and GTK library.

The purpose of the software is to allow the end user to be able to create scenarios and export them for use in games.


Software Modules:

  • Graphics module:

The graphics module is intended to assist in the manipulation of images. Textures atlases can be loaded and their images can be sliced and edited to later be transformed into important scenario data.

  • Thing creator module:

The module of manipulation of things aims to create a list of all objects (things) that can fill the scenario.

  • Utility module:

The utility module, no less important, contains tools that help other modules to achieve their purposes.

  • Artistic module:

The artistic module provides tools to allow visualization of the scene and facilitates the creation process.


How to compile under windows:

  • Download Gtk+ and set up.
  • Download Microsoft Visual C++ 2019.
  • Clone this repository.
  • Select Configuration "Release".
  • Create a new empty project under Visual Studio.
  • Select project properties. Under Tab "Configuration Properties", select Tab "General". Under Menu "C++ Language Standard", choose "Preview - Features the Latest C++ Working Draft (std:C++latest).
  • Select Tab "Linker". Select Tab "input". Go to Menu "Additional Dependencies" them add opengl32.lib.
  • Select Tab "C/C++". Go to Menu "Additional Include Directories" them add "include Folder". JSON LIB & GLM
  • Add all source code to the project.
  • Build!

How to change user interface: