summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2016-08-23 12:11:46 +0200
committerYehonal <yehonal.azeroth@gmail.com>2016-08-23 12:11:46 +0200
commit0355064321503c46d021f2f571443b9739debc53 (patch)
tree0f5a6e303afc0f0bb716814fb71a7c4d499daa06 /src
parent54bd100573779ad87a1e7e87a04876859f4a6943 (diff)
Project restructuring [PART.2]
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt4
-rw-r--r--src/authserver/CMakeLists.txt18
-rw-r--r--src/game/CMakeLists.txt44
-rw-r--r--src/game/Entities/Creature/CreatureGroups.cpp2
-rw-r--r--src/scripts/CMakeLists.txt46
-rw-r--r--src/worldserver/CMakeLists.txt42
6 files changed, 78 insertions, 78 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index eceb541604..4d106ab3a2 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -20,8 +20,8 @@ add_subdirectory(genrev)
if( SERVERS )
set(sources_windows_Debugging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Debugging/WheatyExceptionReport.cpp
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Debugging/WheatyExceptionReport.h
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Debugging/WheatyExceptionReport.cpp
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Debugging/WheatyExceptionReport.h
)
add_subdirectory(game)
add_subdirectory(authserver)
diff --git a/src/authserver/CMakeLists.txt b/src/authserver/CMakeLists.txt
index 476321a6f2..4fa2f788e1 100644
--- a/src/authserver/CMakeLists.txt
+++ b/src/authserver/CMakeLists.txt
@@ -43,15 +43,15 @@ endif()
include_directories(
${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/modules/acore/framework
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Database
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Debugging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Packets
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Cryptography
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Cryptography/Authentication
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Logging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Threading
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Utilities
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Database
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Debugging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Packets
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Cryptography
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Cryptography/Authentication
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Logging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Threading
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Utilities
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/Authentication
${CMAKE_CURRENT_SOURCE_DIR}/Realms
diff --git a/src/game/CMakeLists.txt b/src/game/CMakeLists.txt
index 094696c626..fbf1f3dd94 100644
--- a/src/game/CMakeLists.txt
+++ b/src/game/CMakeLists.txt
@@ -110,28 +110,28 @@ set(game_STAT_SRCS
include_directories(
${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/recastnavigation/Detour
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/recastnavigation/Recast
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/g3dlite/include
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/SFMT
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/zlib
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision/Management
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision/Models
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision/Maps
- ${CMAKE_SOURCE_DIR}/modules/acore/framework
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Configuration
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Cryptography
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Cryptography/Authentication
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Database
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/DataStores
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Debugging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Dynamic/LinkedReference
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Dynamic
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Logging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Packets
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Threading
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Utilities
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/recastnavigation/Detour
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/recastnavigation/Recast
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/g3dlite/include
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/SFMT
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/zlib
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision/Management
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision/Models
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision/Maps
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Configuration
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Cryptography
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Cryptography/Authentication
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Database
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/DataStores
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Debugging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Dynamic/LinkedReference
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Dynamic
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Logging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Packets
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Threading
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Utilities
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/Accounts
${CMAKE_CURRENT_SOURCE_DIR}/Achievements
diff --git a/src/game/Entities/Creature/CreatureGroups.cpp b/src/game/Entities/Creature/CreatureGroups.cpp
index 62494930a1..e808e1228d 100644
--- a/src/game/Entities/Creature/CreatureGroups.cpp
+++ b/src/game/Entities/Creature/CreatureGroups.cpp
@@ -225,7 +225,7 @@ void CreatureGroup::LeaderMoveTo(float x, float y, float z, bool run)
if (member->HasUnitState(UNIT_STATE_NOT_MOVE))
continue;
- // Xinef: this should be automatized, if turn angle is greater than PI/2 (90°) we should swap formation angle
+ // Xinef: this should be automatized, if turn angle is greater than PI/2 (90�) we should swap formation angle
if (M_PI - fabs(fabs(m_leader->GetOrientation() - pathAngle) - M_PI) > M_PI*0.50f)
{
// pussywizard: in both cases should be 2*M_PI - follow_angle
diff --git a/src/scripts/CMakeLists.txt b/src/scripts/CMakeLists.txt
index ec347eea7d..dd65041523 100644
--- a/src/scripts/CMakeLists.txt
+++ b/src/scripts/CMakeLists.txt
@@ -75,28 +75,28 @@ message("")
include_directories(
${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/recastnavigation/Detour
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/recastnavigation/Recast
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/g3dlite/include
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/SFMT
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/zlib
- ${CMAKE_SOURCE_DIR}/modules/acore/framework
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Configuration
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Cryptography
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Database
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/DataStores
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Debugging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Dynamic/LinkedReference
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Dynamic
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Logging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Packets
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Threading
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Utilities
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision/Management
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision/Models
- ${CMAKE_SOURCE_DIR}/modules/acore/framework
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Database
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/recastnavigation/Detour
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/recastnavigation/Recast
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/g3dlite/include
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/SFMT
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/zlib
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Configuration
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Cryptography
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Database
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/DataStores
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Debugging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Dynamic/LinkedReference
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Dynamic
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Logging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Packets
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Threading
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Utilities
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision/Management
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision/Models
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Database
${CMAKE_SOURCE_DIR}/src/game/Accounts
${CMAKE_SOURCE_DIR}/src/game/Achievements
${CMAKE_SOURCE_DIR}/src/game/Addons
@@ -113,7 +113,7 @@ include_directories(
${CMAKE_SOURCE_DIR}/src/game/Chat
${CMAKE_SOURCE_DIR}/src/game/Chat/Channels
${CMAKE_SOURCE_DIR}/src/game/Conditions
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Configuration
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Configuration
${CMAKE_SOURCE_DIR}/src/game/Combat
${CMAKE_SOURCE_DIR}/src/game/DataStores
${CMAKE_SOURCE_DIR}/src/game/DungeonFinding
diff --git a/src/worldserver/CMakeLists.txt b/src/worldserver/CMakeLists.txt
index 7313c1c946..410a6cf4c1 100644
--- a/src/worldserver/CMakeLists.txt
+++ b/src/worldserver/CMakeLists.txt
@@ -43,27 +43,27 @@ endif()
include_directories(
${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/g3dlite/include
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/recastnavigation/Detour
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/gsoap
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/sockets/include
- ${CMAKE_SOURCE_DIR}/modules/acore/deps/SFMT
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision/Management
- ${CMAKE_SOURCE_DIR}/modules/acore/world-engine/collision/Models
- ${CMAKE_SOURCE_DIR}/modules/acore/framework
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Configuration
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Cryptography
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Cryptography/Authentication
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Database
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/DataStores
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Debugging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Dynamic/LinkedReference
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Dynamic
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Logging
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Packets
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Threading
- ${CMAKE_SOURCE_DIR}/modules/acore/framework/Utilities
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/g3dlite/include
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/recastnavigation/Detour
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/gsoap
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/sockets/include
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/deps/SFMT
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision/Management
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/lib-collision/Models
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Configuration
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Cryptography
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Cryptography/Authentication
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Database
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/DataStores
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Debugging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Dynamic/LinkedReference
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Dynamic
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Logging
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Packets
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Threading
+ ${CMAKE_SOURCE_DIR}/modules/worldengine/nucleus/src/Utilities
${CMAKE_SOURCE_DIR}/src/game
${CMAKE_SOURCE_DIR}/src/game/Accounts
${CMAKE_SOURCE_DIR}/src/game/Achievements