server/contrib/vmap_assembler
2011-09-17 19:53:15 +06:00
..
VC90 [10826] Fix vmap_assembler compilation after vmap folder move 2010-12-05 10:10:48 +01:00
VC100 [10826] Fix vmap_assembler compilation after vmap folder move 2010-12-05 10:10:48 +01:00
.gitignore [10463] Clean up the .gitignore files. 2010-09-10 19:29:52 +02:00
CMakeLists.txt [11274] Updated some more copyrights which were outdated 2011-03-21 23:49:36 +01:00
README [10483] Finally add README to vmap_assembler 2010-09-14 16:25:23 +02:00
vmap_assembler.cpp [11291] And just when we thought that we'd have updated all copyrights in all files... 2011-03-27 16:45:53 +02:00
vmap_assemblerVC90.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_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

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).