This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AccountObjectSetCheats | |
{ | |
bool AutoBattle = false; | |
AccountobjectSetCheats Type; | |
int8 SlotLockCheat = 0; | |
}; | |
class AccountObjectGetProfile | |
{ | |
std::string Filename; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/server/game/DataStores/DBCStores.h b/src/server/game/DataStores/DBCStores.h | |
index b394bc9..3b50526 100644 | |
--- a/src/server/game/DataStores/DBCStores.h | |
+++ b/src/server/game/DataStores/DBCStores.h | |
@@ -109,6 +109,35 @@ public: | |
uint32 GetTableRowCount() const { return _gtEntry->NumRows; } | |
uint32 GetTableColumnCount() const { return _gtEntry->NumColumns; } | |
+ std::string Dump() | |
+ { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the CMakeCache file. | |
# For build in directory: /home/shauren/projects/TrinityCore/build | |
# It was generated by CMake: /usr/bin/cmake | |
# You can edit this file to change values found and used by cmake. | |
# If you do not want to change any of the values, simply exit the editor. | |
# If you do want to change a value, simply edit, save, and exit the editor. | |
# The syntax for the file is as follows: | |
# KEY:TYPE=VALUE | |
# KEY is the name of a variable in the cache. | |
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WIN32_LEAN_AND_MEAN | |
#include <Windows.h> | |
#include <cstdio> | |
#include <fcntl.h> | |
#include <io.h> | |
#include <streambuf> | |
void RedirectHandle(DWORD handle, FILE* file, char const* mode) | |
{ | |
long lStdHandle = (long)GetStdHandle(handle); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/common/Utilities/StringFormat.h b/src/common/Utilities/StringFormat.h | |
index 12eeb2a6d1..f44101224f 100644 | |
--- a/src/common/Utilities/StringFormat.h | |
+++ b/src/common/Utilities/StringFormat.h | |
@@ -23,11 +23,51 @@ | |
namespace Trinity | |
{ | |
+ struct FmtArgWrapper | |
+ { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://godbolt.org/g/G8mq4T // cpp14 | |
#include <unordered_map> | |
#include <vector> | |
#include <boost/functional/hash.hpp> | |
#include <cstdint> | |
#include <cstdio> | |
template<typename C, typename R, R C::*M> | |
struct DB2Field { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/WowPacketParser/Enums/UpdateFields.cs b/WowPacketParser/Enums/UpdateFields.cs | |
index a394691c1..7be6b5633 100644 | |
--- a/WowPacketParser/Enums/UpdateFields.cs | |
+++ b/WowPacketParser/Enums/UpdateFields.cs | |
@@ -1,4 +1,5 @@ | |
using WowPacketParser.Parsing; | |
+using WowPacketParser.Parsing.Parsers; | |
namespace WowPacketParser.Enums | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace TrinityOld | |
{ | |
struct TrainerRequirement | |
{ | |
uint32 trainer_type; | |
uint32 trainer_spell; | |
uint32 trainer_class; | |
uint32 trainer_race; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt | |
index 57e9d0c4f6..4a2332c2c1 100644 | |
--- a/dep/boost/CMakeLists.txt | |
+++ b/dep/boost/CMakeLists.txt | |
@@ -77,7 +77,8 @@ target_compile_definitions(boost | |
-DBOOST_OPTIONAL_USE_OLD_DEFINITION_OF_NONE | |
-DBOOST_CHRONO_NO_LIB | |
-DBOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE | |
- -DBOOST_ASIO_NO_DEPRECATED) | |
+ -DBOOST_ASIO_NO_DEPRECATED |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/RecastDemo/Source/NavMeshTesterTool.cpp b/RecastDemo/Source/NavMeshTesterTool.cpp | |
index 8b99ac7..8c48929 100644 | |
--- a/RecastDemo/Source/NavMeshTesterTool.cpp | |
+++ b/RecastDemo/Source/NavMeshTesterTool.cpp | |
@@ -414,22 +414,22 @@ void NavMeshTesterTool::handleMenu() | |
imguiLabel("Include Flags"); | |
imguiIndent(); | |
- if (imguiCheck("Walk", (m_filter.getIncludeFlags() & SAMPLE_POLYFLAGS_WALK) != 0)) | |
+ if (imguiCheck("Ground", (m_filter.getIncludeFlags() & SAMPLE_POLYFLAGS_WALK) != 0)) |
OlderNewer