Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Latest commit

 

History

History
55 lines (29 loc) · 1.46 KB

README.md

File metadata and controls

55 lines (29 loc) · 1.46 KB

This project is a converter from HOG2 maps (https://digitalcommons.du.edu/gridmaps2D/) into the LCT file format. The LCT file format can be loaded by the Triplanner dynamic library with C/C++ API (https://www.geometricspaces.com/index.php/products/).

Back to Table of contents

Build

In the terminal, inside the project main folder, run:

g++ src/HOG2toLCT.cpp -o HOG2toLCT

Run

In the terminal inside the project main folder, run:

./HOG2toLCT "assets/HOG2/DragonAgeOrigins/map/arena2.map" "assets/HOG2/DragonAgeOrigins/map/arena2.lct

Note: some HOG2 map files are provied in the assets folder.

Back to Table of contents

.
├── assets                 # HOG2 maps sample files. 
├── src                    # Converter source code.
├── build & run.sh         # Linux shell script to compile and run the converter, for all maps in the **assets** folder.
├── LICENSE
└── README.md

Back to Table of contents

If you have any questions, feel free to e-mail me at gmail and ask away.

Back to Table of contents