server/contrib/vmap_assembler
2020-02-17 09:19:44 +00:00
..
VC100 [m] attempt to fix Travis not building 2020-02-17 07:27:37 +00:00
VC110 Rebase resync 2020-02-17 09:19:44 +00:00
.gitignore [10463] Clean up the .gitignore files. 2010-09-10 19:29:52 +02:00
CMakeLists.txt [m] Lots of Doxygen fixes/additions - thanks to lfxGroove 2020-02-17 08:59:03 +00:00
README [10483] Finally add README to vmap_assembler 2010-09-14 16:25:23 +02:00
vmap_assembler.cpp Rebase resync 2020-02-17 09:19:44 +00:00
vmap_assemblerVC100.sln [11285] Revert "[11242] Fix line endings for Visual Studio Solution Files (they need to be CRLF, not LF)" 2011-03-25 21:51:39 +01:00
vmap_assemblerVC110.sln [c12594] Correct file version no. in VC110 sln files 2020-02-16 23:59:13 +00:00

Linux:

1. Building

	cd to contrib/vmap_assembler/ and execute:

	$ cmake .
	$ make

	You should now have an executable file vmap_assembler

2. Assembling vmaps

	Use the created executable to create the vmap files for MaNGOS.
	The executable takes two arguments:

	vmap_assembler <input_dir> <output_dir>

	Example:
	$ ./vmap_assembler Buildings vmaps

	<output_dir> has to exist already and shall be empty.
	The resulting files in <output_dir> are expected to be found in ${DataDir}/vmaps
	by mangos-worldd (DataDir is set in mangosd.conf).

###########################
Windows:

1. Building

	Build the solution in contrib\vmap_assembler\
	Resulting binaries will be in contrib\vmap_assembler\bin\$(PlatformName)_$(ConfigurationName)\

2. Assembling vmaps

	Use the created executable (from command prompt) to create the vmap files for MaNGOS.
	The executable takes two arguments:

	vmap_assembler.exe <input_dir> <output_dir>

	Example:
	C:\my_data_dir\> vmap_assembler.exe Buildings vmaps

	<output_dir> has to exist already and shall be empty.
	The resulting files in <output_dir> are expected to be found in ${DataDir}\vmaps
	by mangos-worldd (DataDir is set in mangosd.conf).