Skip to content

Commit

Permalink
[7428] Add new .map file format use more compact data store and use
Browse files Browse the repository at this point in the history
Rewrite .map extractor
 + extract more useful data
 + add "-f 0" option for disable size/accuracy optimisation
 + Compatability vs 2.4.3 client data
More fast get .map data
Implement fatigue timer
Rewrite breath timer
Allow absorb/resist for lava/slime environmental damage

Need re-extract map for work.

Signed-off-by: DiSlord <dislord@nomail.com>
  • Loading branch information
DiSlord committed Mar 9, 2009
1 parent 3562afb commit 485cb0c
Show file tree
Hide file tree
Showing 22 changed files with 2,275 additions and 872 deletions.
7 changes: 6 additions & 1 deletion contrib/extractor/CMakeLists.txt
Expand Up @@ -12,10 +12,15 @@ cmake_minimum_required (VERSION 2.6)
project (MANGOS_MAP_EXTRACTOR)

add_subdirectory (libmpq)
add_subdirectory (loadlib)

include_directories (${MANGOS_MAP_EXTRACTOR_SOURCE_DIR}/libmpq)
include_directories (${MANGOS_MAP_EXTRACTOR_SOURCE_DIR}/loadlib)

link_directories (${MANGOS_MAP_EXTRACTOR_SOURCE_DIR}/libmpq)
link_directories (${MANGOS_MAP_EXTRACTOR_SOURCE_DIR}/loadlib)

add_executable (ad adt.cpp dbcfile.cpp mpq_libmpq.cpp System.cpp)
add_executable (ad dbcfile.cpp mpq_libmpq.cpp System.cpp)

target_link_libraries (ad libmpq)
target_link_libraries (ad loadlib)

1 comment on commit 485cb0c

@nanouniko
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My client crash when the player go into the thral room.

Please sign in to comment.