This is a rewrite of https://github.com/ahungry/p99-patcher map portion in C++.
The original p99-patcher is a collection of tools for the Project1999 EverQuest emulator/server.
The general idea of this is that it parses your log file, and draws a map of the current zone you're in.
Make a symlink (or Shortcut for you Windows users) as follows:
ln -s /path/to/your/eq/map/directory/maps ./res/maps
ln -s /path/to/your/eq/log/file.txt ./res/logs/active.log
The map program will read your data from active.log, and generate map files from the content in ./res/maps/.txt.
Run the following (only tested on GNU/Linux so far):
git clone https://github.com/ahungry/ahungry-map.git
cd ahungry-map
make
./bin/ahungry-map
This is heavily WIP at the moment, so don't expect to use it immediately.
I'll update this, but main tasks to go:
- Precompiled binary downloads
- General code cleanup/refactoring
GPLv3