mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
Merge branch 'main' into use-npc-paths
This commit is contained in:
commit
2465bb7462
@ -92,9 +92,6 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|
|||||||
# Create a /res directory
|
# Create a /res directory
|
||||||
make_directory(${CMAKE_BINARY_DIR}/res)
|
make_directory(${CMAKE_BINARY_DIR}/res)
|
||||||
|
|
||||||
# Create a /locale directory
|
|
||||||
make_directory(${CMAKE_BINARY_DIR}/locale)
|
|
||||||
|
|
||||||
# Create a /logs directory
|
# Create a /logs directory
|
||||||
make_directory(${CMAKE_BINARY_DIR}/logs)
|
make_directory(${CMAKE_BINARY_DIR}/logs)
|
||||||
|
|
||||||
@ -155,6 +152,8 @@ endforeach()
|
|||||||
# Create our list of include directories
|
# Create our list of include directories
|
||||||
set(INCLUDED_DIRECTORIES
|
set(INCLUDED_DIRECTORIES
|
||||||
"dCommon"
|
"dCommon"
|
||||||
|
"dCommon/dClient"
|
||||||
|
"dCommon/dEnums"
|
||||||
"dChatFilter"
|
"dChatFilter"
|
||||||
"dGame"
|
"dGame"
|
||||||
"dGame/dBehaviors"
|
"dGame/dBehaviors"
|
||||||
@ -165,7 +164,6 @@ set(INCLUDED_DIRECTORIES
|
|||||||
"dGame/dEntity"
|
"dGame/dEntity"
|
||||||
"dGame/dPropertyBehaviors"
|
"dGame/dPropertyBehaviors"
|
||||||
"dGame/dUtilities"
|
"dGame/dUtilities"
|
||||||
"dCommon/dClient"
|
|
||||||
"dPhysics"
|
"dPhysics"
|
||||||
"dNavigation"
|
"dNavigation"
|
||||||
"dNavigation/dTerrain"
|
"dNavigation/dTerrain"
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"description": "Same as default, Used in GitHub actions workflow",
|
"description": "Same as default, Used in GitHub actions workflow",
|
||||||
"inherits": "default",
|
"inherits": "default",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"OPENSSL_ROOT_DIR": "/usr/local/Cellar/openssl@3/3.0.5/"
|
"OPENSSL_ROOT_DIR": "/usr/local/opt/openssl@3/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
#include "Database.h"
|
#include "Database.h"
|
||||||
#include "dConfig.h"
|
#include "dConfig.h"
|
||||||
#include "Diagnostics.h"
|
#include "Diagnostics.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
//RakNet includes:
|
//RakNet includes:
|
||||||
#include "RakNetDefines.h"
|
#include "RakNetDefines.h"
|
||||||
@ -82,7 +83,7 @@ int main(int argc, char** argv) {
|
|||||||
if (config.GetValue("max_clients") != "") maxClients = std::stoi(config.GetValue("max_clients"));
|
if (config.GetValue("max_clients") != "") maxClients = std::stoi(config.GetValue("max_clients"));
|
||||||
if (config.GetValue("port") != "") ourPort = std::atoi(config.GetValue("port").c_str());
|
if (config.GetValue("port") != "") ourPort = std::atoi(config.GetValue("port").c_str());
|
||||||
|
|
||||||
Game::server = new dServer(config.GetValue("external_ip"), ourPort, 0, maxClients, false, true, Game::logger, masterIP, masterPort, ServerType::Auth);
|
Game::server = new dServer(config.GetValue("external_ip"), ourPort, 0, maxClients, false, true, Game::logger, masterIP, masterPort, ServerType::Auth, Game::config);
|
||||||
|
|
||||||
//Run it until server gets a kill message from Master:
|
//Run it until server gets a kill message from Master:
|
||||||
auto t = std::chrono::high_resolution_clock::now();
|
auto t = std::chrono::high_resolution_clock::now();
|
||||||
@ -150,7 +151,7 @@ int main(int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dLogger* SetupLogger() {
|
dLogger* SetupLogger() {
|
||||||
std::string logPath = "./logs/AuthServer_" + std::to_string(time(nullptr)) + ".log";
|
std::string logPath = (BinaryPathFinder::GetBinaryDir() / ("logs/AuthServer_" + std::to_string(time(nullptr)) + ".log")).string();
|
||||||
bool logToConsole = false;
|
bool logToConsole = false;
|
||||||
bool logDebugStatements = false;
|
bool logDebugStatements = false;
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "dChatFilter.h"
|
#include "dChatFilter.h"
|
||||||
#include "Diagnostics.h"
|
#include "Diagnostics.h"
|
||||||
#include "AssetManager.h"
|
#include "AssetManager.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
#include "PlayerContainer.h"
|
#include "PlayerContainer.h"
|
||||||
#include "ChatPacketHandler.h"
|
#include "ChatPacketHandler.h"
|
||||||
@ -53,9 +54,14 @@ int main(int argc, char** argv) {
|
|||||||
Game::logger->SetLogDebugStatements(config.GetValue("log_debug_statements") == "1");
|
Game::logger->SetLogDebugStatements(config.GetValue("log_debug_statements") == "1");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
std::string client_path = config.GetValue("client_location");
|
std::string clientPathStr = config.GetValue("client_location");
|
||||||
if (client_path.empty()) client_path = "./res";
|
if (clientPathStr.empty()) clientPathStr = "./res";
|
||||||
Game::assetManager = new AssetManager(client_path);
|
std::filesystem::path clientPath = std::filesystem::path(clientPathStr);
|
||||||
|
if (clientPath.is_relative()) {
|
||||||
|
clientPath = BinaryPathFinder::GetBinaryDir() / clientPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
Game::assetManager = new AssetManager(clientPath);
|
||||||
} catch (std::runtime_error& ex) {
|
} catch (std::runtime_error& ex) {
|
||||||
Game::logger->Log("ChatServer", "Got an error while setting up assets: %s", ex.what());
|
Game::logger->Log("ChatServer", "Got an error while setting up assets: %s", ex.what());
|
||||||
|
|
||||||
@ -97,7 +103,7 @@ int main(int argc, char** argv) {
|
|||||||
if (config.GetValue("max_clients") != "") maxClients = std::stoi(config.GetValue("max_clients"));
|
if (config.GetValue("max_clients") != "") maxClients = std::stoi(config.GetValue("max_clients"));
|
||||||
if (config.GetValue("port") != "") ourPort = std::atoi(config.GetValue("port").c_str());
|
if (config.GetValue("port") != "") ourPort = std::atoi(config.GetValue("port").c_str());
|
||||||
|
|
||||||
Game::server = new dServer(config.GetValue("external_ip"), ourPort, 0, maxClients, false, true, Game::logger, masterIP, masterPort, ServerType::Chat);
|
Game::server = new dServer(config.GetValue("external_ip"), ourPort, 0, maxClients, false, true, Game::logger, masterIP, masterPort, ServerType::Chat, Game::config);
|
||||||
|
|
||||||
Game::chatFilter = new dChatFilter(Game::assetManager->GetResPath().string() + "/chatplus_en_us", bool(std::stoi(config.GetValue("dont_generate_dcf"))));
|
Game::chatFilter = new dChatFilter(Game::assetManager->GetResPath().string() + "/chatplus_en_us", bool(std::stoi(config.GetValue("dont_generate_dcf"))));
|
||||||
|
|
||||||
@ -167,7 +173,7 @@ int main(int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dLogger* SetupLogger() {
|
dLogger* SetupLogger() {
|
||||||
std::string logPath = "./logs/ChatServer_" + std::to_string(time(nullptr)) + ".log";
|
std::string logPath = (BinaryPathFinder::GetBinaryDir() / ("logs/ChatServer_" + std::to_string(time(nullptr)) + ".log")).string();
|
||||||
bool logToConsole = false;
|
bool logToConsole = false;
|
||||||
bool logDebugStatements = false;
|
bool logDebugStatements = false;
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
71
dCommon/BinaryPathFinder.cpp
Normal file
71
dCommon/BinaryPathFinder.cpp
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
#include <filesystem>
|
||||||
|
#include <string>
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
#include "dPlatforms.h"
|
||||||
|
|
||||||
|
#if defined(DARKFLAME_PLATFORM_WIN32)
|
||||||
|
#include <Windows.h>
|
||||||
|
#elif defined(DARKFLAME_PLATFORM_MACOS) || defined(DARKFLAME_PLATFORM_IOS)
|
||||||
|
#include <mach-o/dyld.h>
|
||||||
|
#elif defined(DARKFLAME_PLATFORM_FREEBSD)
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/sysctl.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
std::filesystem::path BinaryPathFinder::binaryDir;
|
||||||
|
|
||||||
|
std::filesystem::path BinaryPathFinder::GetBinaryDir() {
|
||||||
|
if (!binaryDir.empty()) {
|
||||||
|
return binaryDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string pathStr;
|
||||||
|
|
||||||
|
// Derived from boost::dll::program_location, licensed under the Boost Software License: http://www.boost.org/LICENSE_1_0.txt
|
||||||
|
#if defined(DARKFLAME_PLATFORM_WIN32)
|
||||||
|
char path[MAX_PATH];
|
||||||
|
GetModuleFileName(NULL, path, MAX_PATH);
|
||||||
|
pathStr = std::string(path);
|
||||||
|
#elif defined(DARKFLAME_PLATFORM_MACOS) || defined(DARKFLAME_PLATFORM_IOS)
|
||||||
|
char path[1024];
|
||||||
|
uint32_t size = sizeof(path);
|
||||||
|
if (_NSGetExecutablePath(path, &size) == 0) {
|
||||||
|
pathStr = std::string(path);
|
||||||
|
} else {
|
||||||
|
// The filepath size is greater than our initial buffer size, so try again with the size
|
||||||
|
// that _NSGetExecutablePath told us it actually is
|
||||||
|
char *p = new char[size];
|
||||||
|
if (_NSGetExecutablePath(p, &size) != 0) {
|
||||||
|
throw std::runtime_error("Failed to get binary path from _NSGetExecutablePath");
|
||||||
|
}
|
||||||
|
|
||||||
|
pathStr = std::string(p);
|
||||||
|
delete[] p;
|
||||||
|
}
|
||||||
|
#elif defined(DARKFLAME_PLATFORM_FREEBSD)
|
||||||
|
int mib[4];
|
||||||
|
mib[0] = CTL_KERN;
|
||||||
|
mib[1] = KERN_PROC;
|
||||||
|
mib[2] = KERN_PROC_PATHNAME;
|
||||||
|
mib[3] = -1;
|
||||||
|
char buf[10240];
|
||||||
|
size_t cb = sizeof(buf);
|
||||||
|
sysctl(mib, 4, buf, &cb, NULL, 0);
|
||||||
|
pathStr = std::string(buf);
|
||||||
|
#else // DARKFLAME_PLATFORM_LINUX || DARKFLAME_PLATFORM_UNIX || DARKFLAME_PLATFORM_ANDROID
|
||||||
|
pathStr = std::filesystem::read_symlink("/proc/self/exe");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Some methods like _NSGetExecutablePath could return a symlink
|
||||||
|
// Either way, we need to get the parent path because we want the directory, not the binary itself
|
||||||
|
// We also ensure that it is an absolute path so that it is valid if we need to construct a path
|
||||||
|
// to exucute on unix systems (eg sudo BinaryPathFinder::GetBinaryDir() / WorldServer)
|
||||||
|
if (std::filesystem::is_symlink(pathStr)) {
|
||||||
|
binaryDir = std::filesystem::absolute(std::filesystem::read_symlink(pathStr).parent_path());
|
||||||
|
} else {
|
||||||
|
binaryDir = std::filesystem::absolute(std::filesystem::path(pathStr).parent_path());
|
||||||
|
}
|
||||||
|
|
||||||
|
return binaryDir;
|
||||||
|
}
|
15
dCommon/BinaryPathFinder.h
Normal file
15
dCommon/BinaryPathFinder.h
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef __BINARYPATHFINDER__H__
|
||||||
|
#define __BINARYPATHFINDER__H__
|
||||||
|
|
||||||
|
#include <filesystem>
|
||||||
|
|
||||||
|
class BinaryPathFinder {
|
||||||
|
private:
|
||||||
|
static std::filesystem::path binaryDir;
|
||||||
|
public:
|
||||||
|
static std::filesystem::path GetBinaryDir();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //!__BINARYPATHFINDER__H__
|
@ -15,6 +15,8 @@ set(DCOMMON_SOURCES "AMFFormat.cpp"
|
|||||||
"Type.cpp"
|
"Type.cpp"
|
||||||
"ZCompression.cpp"
|
"ZCompression.cpp"
|
||||||
"BrickByBrickFix.cpp"
|
"BrickByBrickFix.cpp"
|
||||||
|
"BinaryPathFinder.cpp"
|
||||||
|
"FdbToSqlite.cpp"
|
||||||
)
|
)
|
||||||
|
|
||||||
add_subdirectory(dClient)
|
add_subdirectory(dClient)
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
#include "Diagnostics.h"
|
#include "Diagnostics.h"
|
||||||
|
#include "Game.h"
|
||||||
|
#include "dLogger.h"
|
||||||
|
|
||||||
// If we're on Win32, we'll include our minidump writer
|
// If we're on Win32, we'll include our minidump writer
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
@ -26,7 +28,7 @@ void make_minidump(EXCEPTION_POINTERS* e) {
|
|||||||
"_%4d%02d%02d_%02d%02d%02d.dmp",
|
"_%4d%02d%02d_%02d%02d%02d.dmp",
|
||||||
t.wYear, t.wMonth, t.wDay, t.wHour, t.wMinute, t.wSecond);
|
t.wYear, t.wMonth, t.wDay, t.wHour, t.wMinute, t.wSecond);
|
||||||
}
|
}
|
||||||
|
Game::logger->Log("Diagnostics", "Creating crash dump %s", name);
|
||||||
auto hFile = CreateFileA(name, GENERIC_WRITE, FILE_SHARE_READ, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
|
auto hFile = CreateFileA(name, GENERIC_WRITE, FILE_SHARE_READ, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
|
||||||
if (hFile == INVALID_HANDLE_VALUE)
|
if (hFile == INVALID_HANDLE_VALUE)
|
||||||
return;
|
return;
|
||||||
@ -81,6 +83,7 @@ struct bt_ctx {
|
|||||||
|
|
||||||
static inline void Bt(struct backtrace_state* state) {
|
static inline void Bt(struct backtrace_state* state) {
|
||||||
std::string fileName = Diagnostics::GetOutDirectory() + "crash_" + Diagnostics::GetProcessName() + "_" + std::to_string(getpid()) + ".log";
|
std::string fileName = Diagnostics::GetOutDirectory() + "crash_" + Diagnostics::GetProcessName() + "_" + std::to_string(getpid()) + ".log";
|
||||||
|
Game::logger->Log("Diagnostics", "backtrace is enabled, crash dump located at %s", fileName.c_str());
|
||||||
FILE* file = fopen(fileName.c_str(), "w+");
|
FILE* file = fopen(fileName.c_str(), "w+");
|
||||||
if (file != nullptr) {
|
if (file != nullptr) {
|
||||||
backtrace_print(state, 2, file);
|
backtrace_print(state, 2, file);
|
||||||
@ -114,6 +117,8 @@ void GenerateDump() {
|
|||||||
void CatchUnhandled(int sig) {
|
void CatchUnhandled(int sig) {
|
||||||
#ifndef __include_backtrace__
|
#ifndef __include_backtrace__
|
||||||
|
|
||||||
|
std::string fileName = Diagnostics::GetOutDirectory() + "crash_" + Diagnostics::GetProcessName() + "_" + std::to_string(getpid()) + ".log";
|
||||||
|
Game::logger->Log("Diagnostics", "Encountered signal %i, creating crash dump %s", sig, fileName.c_str());
|
||||||
if (Diagnostics::GetProduceMemoryDump()) {
|
if (Diagnostics::GetProduceMemoryDump()) {
|
||||||
GenerateDump();
|
GenerateDump();
|
||||||
}
|
}
|
||||||
@ -124,7 +129,6 @@ void CatchUnhandled(int sig) {
|
|||||||
// get void*'s for all entries on the stack
|
// get void*'s for all entries on the stack
|
||||||
size = backtrace(array, 10);
|
size = backtrace(array, 10);
|
||||||
|
|
||||||
printf("Fatal error %i\nStacktrace:\n", sig);
|
|
||||||
#if defined(__GNUG__) and defined(__dynamic)
|
#if defined(__GNUG__) and defined(__dynamic)
|
||||||
|
|
||||||
// Loop through the returned addresses, and get the symbols to be demangled
|
// Loop through the returned addresses, and get the symbols to be demangled
|
||||||
@ -142,19 +146,18 @@ void CatchUnhandled(int sig) {
|
|||||||
demangled = demangle(functionName.c_str());
|
demangled = demangle(functionName.c_str());
|
||||||
|
|
||||||
if (demangled.empty()) {
|
if (demangled.empty()) {
|
||||||
printf("[%02zu] %s\n", i, demangled.c_str());
|
Game::logger->Log("Diagnostics", "[%02zu] %s", i, demangled.c_str());
|
||||||
} else {
|
} else {
|
||||||
printf("[%02zu] %s\n", i, functionName.c_str());
|
Game::logger->Log("Diagnostics", "[%02zu] %s", i, functionName.c_str());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
printf("[%02zu] %s\n", i, functionName.c_str());
|
Game::logger->Log("Diagnostics", "[%02zu] %s", i, functionName.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
backtrace_symbols_fd(array, size, STDOUT_FILENO);
|
backtrace_symbols_fd(array, size, STDOUT_FILENO);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
std::string fileName = Diagnostics::GetOutDirectory() + "crash_" + Diagnostics::GetProcessName() + "_" + std::to_string(getpid()) + ".log";
|
|
||||||
FILE* file = fopen(fileName.c_str(), "w+");
|
FILE* file = fopen(fileName.c_str(), "w+");
|
||||||
if (file != NULL) {
|
if (file != NULL) {
|
||||||
// print out all the frames to stderr
|
// print out all the frames to stderr
|
||||||
|
248
dCommon/FdbToSqlite.cpp
Normal file
248
dCommon/FdbToSqlite.cpp
Normal file
@ -0,0 +1,248 @@
|
|||||||
|
#include "FdbToSqlite.h"
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <fstream>
|
||||||
|
#include <cassert>
|
||||||
|
#include <iomanip>
|
||||||
|
|
||||||
|
#include "BinaryIO.h"
|
||||||
|
#include "CDClientDatabase.h"
|
||||||
|
#include "GeneralUtils.h"
|
||||||
|
#include "Game.h"
|
||||||
|
#include "dLogger.h"
|
||||||
|
|
||||||
|
#include "eSqliteDataType.h"
|
||||||
|
|
||||||
|
std::map<eSqliteDataType, std::string> FdbToSqlite::Convert::sqliteType = {
|
||||||
|
{ eSqliteDataType::NONE, "none"},
|
||||||
|
{ eSqliteDataType::INT32, "int32"},
|
||||||
|
{ eSqliteDataType::REAL, "real"},
|
||||||
|
{ eSqliteDataType::TEXT_4, "text_4"},
|
||||||
|
{ eSqliteDataType::INT_BOOL, "int_bool"},
|
||||||
|
{ eSqliteDataType::INT64, "int64"},
|
||||||
|
{ eSqliteDataType::TEXT_8, "text_8"}
|
||||||
|
};
|
||||||
|
|
||||||
|
FdbToSqlite::Convert::Convert(std::string basePath) {
|
||||||
|
this->basePath = basePath;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool FdbToSqlite::Convert::ConvertDatabase() {
|
||||||
|
fdb.open(basePath + "/cdclient.fdb", std::ios::binary);
|
||||||
|
|
||||||
|
try {
|
||||||
|
CDClientDatabase::Connect(basePath + "/CDServer.sqlite");
|
||||||
|
|
||||||
|
CDClientDatabase::ExecuteQuery("BEGIN TRANSACTION;");
|
||||||
|
|
||||||
|
int32_t numberOfTables = ReadInt32();
|
||||||
|
ReadTables(numberOfTables);
|
||||||
|
|
||||||
|
CDClientDatabase::ExecuteQuery("COMMIT;");
|
||||||
|
} catch (CppSQLite3Exception& e) {
|
||||||
|
Game::logger->Log("FdbToSqlite", "Encountered error %s converting FDB to SQLite", e.errorMessage());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
fdb.close();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int32_t FdbToSqlite::Convert::ReadInt32() {
|
||||||
|
int32_t nextInt{};
|
||||||
|
BinaryIO::BinaryRead(fdb, nextInt);
|
||||||
|
return nextInt;
|
||||||
|
}
|
||||||
|
|
||||||
|
int64_t FdbToSqlite::Convert::ReadInt64() {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
int64_t value{};
|
||||||
|
BinaryIO::BinaryRead(fdb, value);
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string FdbToSqlite::Convert::ReadString() {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
auto readString = BinaryIO::ReadString(fdb);
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
return readString;
|
||||||
|
}
|
||||||
|
|
||||||
|
int32_t FdbToSqlite::Convert::SeekPointer() {
|
||||||
|
int32_t position{};
|
||||||
|
BinaryIO::BinaryRead(fdb, position);
|
||||||
|
int32_t prevPosition = fdb.tellg();
|
||||||
|
fdb.seekg(position);
|
||||||
|
return prevPosition;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string FdbToSqlite::Convert::ReadColumnHeader() {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
int32_t numberOfColumns = ReadInt32();
|
||||||
|
std::string tableName = ReadString();
|
||||||
|
|
||||||
|
auto columns = ReadColumns(numberOfColumns);
|
||||||
|
std::string newTable = "CREATE TABLE IF NOT EXISTS '" + tableName + "' (" + columns + ");";
|
||||||
|
CDClientDatabase::ExecuteDML(newTable);
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
|
||||||
|
return tableName;
|
||||||
|
}
|
||||||
|
|
||||||
|
void FdbToSqlite::Convert::ReadTables(int32_t& numberOfTables) {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
for (int32_t i = 0; i < numberOfTables; i++) {
|
||||||
|
auto columnHeader = ReadColumnHeader();
|
||||||
|
ReadRowHeader(columnHeader);
|
||||||
|
}
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string FdbToSqlite::Convert::ReadColumns(int32_t& numberOfColumns) {
|
||||||
|
std::stringstream columnsToCreate;
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
std::string name{};
|
||||||
|
eSqliteDataType dataType{};
|
||||||
|
for (int32_t i = 0; i < numberOfColumns; i++) {
|
||||||
|
if (i != 0) columnsToCreate << ", ";
|
||||||
|
dataType = static_cast<eSqliteDataType>(ReadInt32());
|
||||||
|
name = ReadString();
|
||||||
|
columnsToCreate << "'" << name << "' " << FdbToSqlite::Convert::sqliteType[dataType];
|
||||||
|
}
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
return columnsToCreate.str();
|
||||||
|
}
|
||||||
|
|
||||||
|
void FdbToSqlite::Convert::ReadRowHeader(std::string& tableName) {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
int32_t numberOfAllocatedRows = ReadInt32();
|
||||||
|
if (numberOfAllocatedRows != 0) assert((numberOfAllocatedRows & (numberOfAllocatedRows - 1)) == 0); // assert power of 2 allocation size
|
||||||
|
ReadRows(numberOfAllocatedRows, tableName);
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
}
|
||||||
|
|
||||||
|
void FdbToSqlite::Convert::ReadRows(int32_t& numberOfAllocatedRows, std::string& tableName) {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
int32_t rowid = 0;
|
||||||
|
for (int32_t row = 0; row < numberOfAllocatedRows; row++) {
|
||||||
|
int32_t rowPointer = ReadInt32();
|
||||||
|
if (rowPointer == -1) rowid++;
|
||||||
|
else ReadRow(rowid, rowPointer, tableName);
|
||||||
|
}
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
}
|
||||||
|
|
||||||
|
void FdbToSqlite::Convert::ReadRow(int32_t& rowid, int32_t& position, std::string& tableName) {
|
||||||
|
int32_t prevPosition = fdb.tellg();
|
||||||
|
fdb.seekg(position);
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
ReadRowInfo(tableName);
|
||||||
|
int32_t linked = ReadInt32();
|
||||||
|
|
||||||
|
rowid += 1;
|
||||||
|
|
||||||
|
if (linked == -1) break;
|
||||||
|
|
||||||
|
fdb.seekg(linked);
|
||||||
|
}
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
}
|
||||||
|
|
||||||
|
void FdbToSqlite::Convert::ReadRowInfo(std::string& tableName) {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
int32_t numberOfColumns = ReadInt32();
|
||||||
|
ReadRowValues(numberOfColumns, tableName);
|
||||||
|
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
}
|
||||||
|
|
||||||
|
void FdbToSqlite::Convert::ReadRowValues(int32_t& numberOfColumns, std::string& tableName) {
|
||||||
|
int32_t prevPosition = SeekPointer();
|
||||||
|
|
||||||
|
int32_t emptyValue{};
|
||||||
|
int32_t intValue{};
|
||||||
|
float_t floatValue{};
|
||||||
|
std::string stringValue{};
|
||||||
|
int32_t boolValue{};
|
||||||
|
int64_t int64Value{};
|
||||||
|
bool insertedFirstEntry = false;
|
||||||
|
std::stringstream insertedRow;
|
||||||
|
insertedRow << "INSERT INTO " << tableName << " values (";
|
||||||
|
|
||||||
|
for (int32_t i = 0; i < numberOfColumns; i++) {
|
||||||
|
if (i != 0) insertedRow << ", "; // Only append comma and space after first entry in row.
|
||||||
|
switch (static_cast<eSqliteDataType>(ReadInt32())) {
|
||||||
|
case eSqliteDataType::NONE:
|
||||||
|
BinaryIO::BinaryRead(fdb, emptyValue);
|
||||||
|
assert(emptyValue == 0);
|
||||||
|
insertedRow << "NULL";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case eSqliteDataType::INT32:
|
||||||
|
intValue = ReadInt32();
|
||||||
|
insertedRow << intValue;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case eSqliteDataType::REAL:
|
||||||
|
BinaryIO::BinaryRead(fdb, floatValue);
|
||||||
|
insertedRow << std::fixed << std::setprecision(34) << floatValue; // maximum precision of floating point number
|
||||||
|
break;
|
||||||
|
|
||||||
|
case eSqliteDataType::TEXT_4:
|
||||||
|
case eSqliteDataType::TEXT_8: {
|
||||||
|
stringValue = ReadString();
|
||||||
|
size_t position = 0;
|
||||||
|
|
||||||
|
// Need to escape quote with a double of ".
|
||||||
|
while (position < stringValue.size()) {
|
||||||
|
if (stringValue.at(position) == '\"') {
|
||||||
|
stringValue.insert(position, "\"");
|
||||||
|
position++;
|
||||||
|
}
|
||||||
|
position++;
|
||||||
|
}
|
||||||
|
insertedRow << "\"" << stringValue << "\"";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case eSqliteDataType::INT_BOOL:
|
||||||
|
BinaryIO::BinaryRead(fdb, boolValue);
|
||||||
|
insertedRow << static_cast<bool>(boolValue);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case eSqliteDataType::INT64:
|
||||||
|
int64Value = ReadInt64();
|
||||||
|
insertedRow << std::to_string(int64Value);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw std::invalid_argument("Unsupported SQLite type encountered.");
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
insertedRow << ");";
|
||||||
|
|
||||||
|
auto copiedString = insertedRow.str();
|
||||||
|
CDClientDatabase::ExecuteDML(copiedString);
|
||||||
|
fdb.seekg(prevPosition);
|
||||||
|
}
|
49
dCommon/FdbToSqlite.h
Normal file
49
dCommon/FdbToSqlite.h
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
#ifndef __FDBTOSQLITE__H__
|
||||||
|
#define __FDBTOSQLITE__H__
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
#include <iosfwd>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
|
enum class eSqliteDataType : int32_t;
|
||||||
|
|
||||||
|
namespace FdbToSqlite {
|
||||||
|
class Convert {
|
||||||
|
public:
|
||||||
|
Convert(std::string inputFile);
|
||||||
|
|
||||||
|
bool ConvertDatabase();
|
||||||
|
|
||||||
|
int32_t ReadInt32();
|
||||||
|
|
||||||
|
int64_t ReadInt64();
|
||||||
|
|
||||||
|
std::string ReadString();
|
||||||
|
|
||||||
|
int32_t SeekPointer();
|
||||||
|
|
||||||
|
std::string ReadColumnHeader();
|
||||||
|
|
||||||
|
void ReadTables(int32_t& numberOfTables);
|
||||||
|
|
||||||
|
std::string ReadColumns(int32_t& numberOfColumns);
|
||||||
|
|
||||||
|
void ReadRowHeader(std::string& tableName);
|
||||||
|
|
||||||
|
void ReadRows(int32_t& numberOfAllocatedRows, std::string& tableName);
|
||||||
|
|
||||||
|
void ReadRow(int32_t& rowid, int32_t& position, std::string& tableName);
|
||||||
|
|
||||||
|
void ReadRowInfo(std::string& tableName);
|
||||||
|
|
||||||
|
void ReadRowValues(int32_t& numberOfColumns, std::string& tableName);
|
||||||
|
private:
|
||||||
|
static std::map<eSqliteDataType, std::string> sqliteType;
|
||||||
|
std::string basePath{};
|
||||||
|
std::ifstream fdb{};
|
||||||
|
}; // class FdbToSqlite
|
||||||
|
}; //! namespace FdbToSqlite
|
||||||
|
|
||||||
|
#endif //!__FDBTOSQLITE__H__
|
@ -8,7 +8,6 @@ class InstanceManager;
|
|||||||
class dpWorld;
|
class dpWorld;
|
||||||
class dChatFilter;
|
class dChatFilter;
|
||||||
class dConfig;
|
class dConfig;
|
||||||
class dLocale;
|
|
||||||
class RakPeerInterface;
|
class RakPeerInterface;
|
||||||
class AssetManager;
|
class AssetManager;
|
||||||
struct SystemAddress;
|
struct SystemAddress;
|
||||||
@ -20,7 +19,6 @@ namespace Game {
|
|||||||
extern dpWorld* physicsWorld;
|
extern dpWorld* physicsWorld;
|
||||||
extern dChatFilter* chatFilter;
|
extern dChatFilter* chatFilter;
|
||||||
extern dConfig* config;
|
extern dConfig* config;
|
||||||
extern dLocale* locale;
|
|
||||||
extern std::mt19937 randomEngine;
|
extern std::mt19937 randomEngine;
|
||||||
extern RakPeerInterface* chatServer;
|
extern RakPeerInterface* chatServer;
|
||||||
extern AssetManager* assetManager;
|
extern AssetManager* assetManager;
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <filesystem>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
inline size_t MinSize(size_t size, const std::basic_string_view<T>& string) {
|
inline size_t MinSize(size_t size, const std::basic_string_view<T>& string) {
|
||||||
@ -290,51 +292,30 @@ std::u16string GeneralUtils::ReadWString(RakNet::BitStream* inStream) {
|
|||||||
return string;
|
return string;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
std::vector<std::string> GeneralUtils::GetSqlFileNamesFromFolder(const std::string& folder) {
|
||||||
#define WIN32_LEAN_AND_MEAN
|
// Because we dont know how large the initial number before the first _ is we need to make it a map like so.
|
||||||
#include <Windows.h>
|
std::map<uint32_t, std::string> filenames{};
|
||||||
|
for (auto& t : std::filesystem::directory_iterator(folder)) {
|
||||||
std::vector<std::string> GeneralUtils::GetFileNamesFromFolder(const std::string& folder) {
|
auto filename = t.path().filename().string();
|
||||||
std::vector<std::string> names;
|
auto index = std::stoi(GeneralUtils::SplitString(filename, '_').at(0));
|
||||||
std::string search_path = folder + "/*.*";
|
filenames.insert(std::make_pair(index, filename));
|
||||||
WIN32_FIND_DATA fd;
|
|
||||||
HANDLE hFind = ::FindFirstFile(search_path.c_str(), &fd);
|
|
||||||
if (hFind != INVALID_HANDLE_VALUE) {
|
|
||||||
do {
|
|
||||||
if (!(fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
|
|
||||||
names.push_back(fd.cFileName);
|
|
||||||
}
|
|
||||||
} while (::FindNextFile(hFind, &fd));
|
|
||||||
::FindClose(hFind);
|
|
||||||
}
|
|
||||||
return names;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <dirent.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <iostream>
|
|
||||||
#include <vector>
|
|
||||||
#include <cstring>
|
|
||||||
|
|
||||||
std::vector<std::string> GeneralUtils::GetFileNamesFromFolder(const std::string& folder) {
|
|
||||||
std::vector<std::string> names;
|
|
||||||
struct dirent* entry;
|
|
||||||
DIR* dir = opendir(folder.c_str());
|
|
||||||
if (dir == NULL) {
|
|
||||||
return names;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((entry = readdir(dir)) != NULL) {
|
// Now sort the map by the oldest migration.
|
||||||
std::string value(entry->d_name, strlen(entry->d_name));
|
std::vector<std::string> sortedFiles{};
|
||||||
if (value == "." || value == "..") {
|
auto fileIterator = filenames.begin();
|
||||||
continue;
|
std::map<uint32_t, std::string>::iterator oldest = filenames.begin();
|
||||||
|
while (!filenames.empty()) {
|
||||||
|
if (fileIterator == filenames.end()) {
|
||||||
|
sortedFiles.push_back(oldest->second);
|
||||||
|
filenames.erase(oldest);
|
||||||
|
fileIterator = filenames.begin();
|
||||||
|
oldest = filenames.begin();
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
names.push_back(value);
|
if (oldest->first > fileIterator->first) oldest = fileIterator;
|
||||||
|
fileIterator++;
|
||||||
}
|
}
|
||||||
|
|
||||||
closedir(dir);
|
return sortedFiles;
|
||||||
|
|
||||||
return names;
|
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#include <BitStream.h>
|
#include <BitStream.h>
|
||||||
|
|
||||||
#include "Game.h"
|
#include "Game.h"
|
||||||
|
#include "dLogger.h"
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\file GeneralUtils.hpp
|
\file GeneralUtils.hpp
|
||||||
@ -138,7 +139,7 @@ namespace GeneralUtils {
|
|||||||
|
|
||||||
std::vector<std::string> SplitString(const std::string& str, char delimiter);
|
std::vector<std::string> SplitString(const std::string& str, char delimiter);
|
||||||
|
|
||||||
std::vector<std::string> GetFileNamesFromFolder(const std::string& folder);
|
std::vector<std::string> GetSqlFileNamesFromFolder(const std::string& folder);
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
T Parse(const char* value);
|
T Parse(const char* value);
|
||||||
|
@ -1,15 +1,17 @@
|
|||||||
|
#include <filesystem>
|
||||||
|
|
||||||
#include "AssetManager.h"
|
#include "AssetManager.h"
|
||||||
#include "Game.h"
|
#include "Game.h"
|
||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
|
|
||||||
#include <zlib.h>
|
#include <zlib.h>
|
||||||
|
|
||||||
AssetManager::AssetManager(const std::string& path) {
|
AssetManager::AssetManager(const std::filesystem::path& path) {
|
||||||
if (!std::filesystem::is_directory(path)) {
|
if (!std::filesystem::is_directory(path)) {
|
||||||
throw std::runtime_error("Attempted to load asset bundle (" + path + ") however it is not a valid directory.");
|
throw std::runtime_error("Attempted to load asset bundle (" + path.string() + ") however it is not a valid directory.");
|
||||||
}
|
}
|
||||||
|
|
||||||
m_Path = std::filesystem::path(path);
|
m_Path = path;
|
||||||
|
|
||||||
if (std::filesystem::exists(m_Path / "client") && std::filesystem::exists(m_Path / "versions")) {
|
if (std::filesystem::exists(m_Path / "client") && std::filesystem::exists(m_Path / "versions")) {
|
||||||
m_AssetBundleType = eAssetBundleType::Packed;
|
m_AssetBundleType = eAssetBundleType::Packed;
|
||||||
|
@ -48,7 +48,7 @@ struct AssetMemoryBuffer : std::streambuf {
|
|||||||
|
|
||||||
class AssetManager {
|
class AssetManager {
|
||||||
public:
|
public:
|
||||||
AssetManager(const std::string& path);
|
AssetManager(const std::filesystem::path& path);
|
||||||
~AssetManager();
|
~AssetManager();
|
||||||
|
|
||||||
std::filesystem::path GetResPath();
|
std::filesystem::path GetResPath();
|
||||||
|
@ -1,60 +1,53 @@
|
|||||||
#include "dConfig.h"
|
#include "dConfig.h"
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
#include "GeneralUtils.h"
|
||||||
|
|
||||||
dConfig::dConfig(const std::string& filepath) {
|
dConfig::dConfig(const std::string& filepath) {
|
||||||
m_EmptyString = "";
|
m_ConfigFilePath = filepath;
|
||||||
std::ifstream in(filepath);
|
LoadConfig();
|
||||||
|
}
|
||||||
|
|
||||||
|
void dConfig::LoadConfig() {
|
||||||
|
std::ifstream in(BinaryPathFinder::GetBinaryDir() / m_ConfigFilePath);
|
||||||
if (!in.good()) return;
|
if (!in.good()) return;
|
||||||
|
|
||||||
std::string line;
|
std::string line{};
|
||||||
while (std::getline(in, line)) {
|
while (std::getline(in, line)) {
|
||||||
if (line.length() > 0) {
|
if (!line.empty() && line.front() != '#') ProcessLine(line);
|
||||||
if (line[0] != '#') ProcessLine(line);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ifstream sharedConfig("sharedconfig.ini", std::ios::in);
|
std::ifstream sharedConfig(BinaryPathFinder::GetBinaryDir() / "sharedconfig.ini", std::ios::in);
|
||||||
if (!sharedConfig.good()) return;
|
if (!sharedConfig.good()) return;
|
||||||
|
|
||||||
|
line.clear();
|
||||||
while (std::getline(sharedConfig, line)) {
|
while (std::getline(sharedConfig, line)) {
|
||||||
if (line.length() > 0) {
|
if (!line.empty() && line.front() != '#') ProcessLine(line);
|
||||||
if (line[0] != '#') ProcessLine(line);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dConfig::~dConfig(void) {
|
void dConfig::ReloadConfig() {
|
||||||
|
this->m_ConfigValues.clear();
|
||||||
|
LoadConfig();
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::string& dConfig::GetValue(std::string key) {
|
const std::string& dConfig::GetValue(std::string key) {
|
||||||
for (size_t i = 0; i < m_Keys.size(); ++i) {
|
return this->m_ConfigValues[key];
|
||||||
if (m_Keys[i] == key) return m_Values[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
return m_EmptyString;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void dConfig::ProcessLine(const std::string& line) {
|
void dConfig::ProcessLine(const std::string& line) {
|
||||||
std::stringstream ss(line);
|
auto splitLine = GeneralUtils::SplitString(line, '=');
|
||||||
std::string segment;
|
|
||||||
std::vector<std::string> seglist;
|
|
||||||
|
|
||||||
while (std::getline(ss, segment, '=')) {
|
if (splitLine.size() != 2) return;
|
||||||
seglist.push_back(segment);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (seglist.size() != 2) return;
|
|
||||||
|
|
||||||
//Make sure that on Linux, we remove special characters:
|
//Make sure that on Linux, we remove special characters:
|
||||||
if (!seglist[1].empty() && seglist[1][seglist[1].size() - 1] == '\r')
|
auto& key = splitLine.at(0);
|
||||||
seglist[1].erase(seglist[1].size() - 1);
|
auto& value = splitLine.at(1);
|
||||||
|
if (!value.empty() && value.at(value.size() - 1) == '\r') value.erase(value.size() - 1);
|
||||||
|
|
||||||
for (const auto& key : m_Keys) {
|
if (this->m_ConfigValues.find(key) != this->m_ConfigValues.end()) return;
|
||||||
if (seglist[0] == key) {
|
|
||||||
return; // first loaded key is preferred due to loading shared config secondarily
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
m_Keys.push_back(seglist[0]);
|
this->m_ConfigValues.insert(std::make_pair(key, value));
|
||||||
m_Values.push_back(seglist[1]);
|
|
||||||
}
|
}
|
||||||
|
@ -1,20 +1,34 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
#include <map>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
class dConfig {
|
class dConfig {
|
||||||
public:
|
public:
|
||||||
dConfig(const std::string& filepath);
|
dConfig(const std::string& filepath);
|
||||||
~dConfig(void);
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the specified key from the config. Returns an empty string if the value is not found.
|
||||||
|
*
|
||||||
|
* @param key Key to find
|
||||||
|
* @return The keys value in the config
|
||||||
|
*/
|
||||||
const std::string& GetValue(std::string key);
|
const std::string& GetValue(std::string key);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads the config from a file
|
||||||
|
*/
|
||||||
|
void LoadConfig();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reloads the config file to reset values
|
||||||
|
*/
|
||||||
|
void ReloadConfig();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void ProcessLine(const std::string& line);
|
void ProcessLine(const std::string& line);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector<std::string> m_Keys;
|
std::map<std::string, std::string> m_ConfigValues;
|
||||||
std::vector<std::string> m_Values;
|
std::string m_ConfigFilePath;
|
||||||
std::string m_EmptyString;
|
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef __DCOMMONVARS__H__
|
||||||
|
#define __DCOMMONVARS__H__
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <set>
|
#include <set>
|
||||||
@ -30,6 +33,8 @@ typedef uint32_t LWOCLONEID; //!< Used for Clone IDs
|
|||||||
typedef uint16_t LWOMAPID; //!< Used for Map IDs
|
typedef uint16_t LWOMAPID; //!< Used for Map IDs
|
||||||
typedef uint16_t LWOINSTANCEID; //!< Used for Instance IDs
|
typedef uint16_t LWOINSTANCEID; //!< Used for Instance IDs
|
||||||
typedef uint32_t PROPERTYCLONELIST; //!< Used for Property Clone IDs
|
typedef uint32_t PROPERTYCLONELIST; //!< Used for Property Clone IDs
|
||||||
|
typedef uint32_t STRIPID;
|
||||||
|
typedef uint32_t BEHAVIORSTATE;
|
||||||
|
|
||||||
typedef int32_t PetTamingPiece; //!< Pet Taming Pieces
|
typedef int32_t PetTamingPiece; //!< Pet Taming Pieces
|
||||||
|
|
||||||
@ -429,6 +434,7 @@ enum eInventoryType : uint32_t {
|
|||||||
ITEMS = 0,
|
ITEMS = 0,
|
||||||
VAULT_ITEMS,
|
VAULT_ITEMS,
|
||||||
BRICKS,
|
BRICKS,
|
||||||
|
MODELS_IN_BBB,
|
||||||
TEMP_ITEMS = 4,
|
TEMP_ITEMS = 4,
|
||||||
MODELS,
|
MODELS,
|
||||||
TEMP_MODELS,
|
TEMP_MODELS,
|
||||||
@ -554,6 +560,7 @@ enum ePlayerFlags {
|
|||||||
ENTER_BBB_FROM_PROPERTY_EDIT_CONFIRMATION_DIALOG = 64,
|
ENTER_BBB_FROM_PROPERTY_EDIT_CONFIRMATION_DIALOG = 64,
|
||||||
AG_FIRST_COMBAT_COMPLETE = 65,
|
AG_FIRST_COMBAT_COMPLETE = 65,
|
||||||
AG_COMPLETE_BOB_MISSION = 66,
|
AG_COMPLETE_BOB_MISSION = 66,
|
||||||
|
IS_NEWS_SCREEN_VISIBLE = 114,
|
||||||
NJ_GARMADON_CINEMATIC_SEEN = 125,
|
NJ_GARMADON_CINEMATIC_SEEN = 125,
|
||||||
ELEPHANT_PET_3050 = 801,
|
ELEPHANT_PET_3050 = 801,
|
||||||
CAT_PET_3054 = 802,
|
CAT_PET_3054 = 802,
|
||||||
@ -648,3 +655,5 @@ inline T const& clamp(const T& val, const T& low, const T& high) {
|
|||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif //!__DCOMMONVARS__H__
|
@ -433,6 +433,7 @@ enum GAME_MSG : unsigned short {
|
|||||||
GAME_MSG_ORIENT_TO_POSITION = 906,
|
GAME_MSG_ORIENT_TO_POSITION = 906,
|
||||||
GAME_MSG_ORIENT_TO_ANGLE = 907,
|
GAME_MSG_ORIENT_TO_ANGLE = 907,
|
||||||
GAME_MSG_BOUNCER_ACTIVE_STATUS = 942,
|
GAME_MSG_BOUNCER_ACTIVE_STATUS = 942,
|
||||||
|
GAME_MSG_UN_USE_BBB_MODEL = 999,
|
||||||
GAME_MSG_BBB_LOAD_ITEM_REQUEST = 1000,
|
GAME_MSG_BBB_LOAD_ITEM_REQUEST = 1000,
|
||||||
GAME_MSG_BBB_SAVE_REQUEST = 1001,
|
GAME_MSG_BBB_SAVE_REQUEST = 1001,
|
||||||
GAME_MSG_BBB_SAVE_RESPONSE = 1006,
|
GAME_MSG_BBB_SAVE_RESPONSE = 1006,
|
||||||
@ -537,6 +538,7 @@ enum GAME_MSG : unsigned short {
|
|||||||
GAME_MSG_REMOVE_RUN_SPEED_MODIFIER = 1506,
|
GAME_MSG_REMOVE_RUN_SPEED_MODIFIER = 1506,
|
||||||
GAME_MSG_UPDATE_PROPERTY_PERFORMANCE_COST = 1547,
|
GAME_MSG_UPDATE_PROPERTY_PERFORMANCE_COST = 1547,
|
||||||
GAME_MSG_PROPERTY_ENTRANCE_BEGIN = 1553,
|
GAME_MSG_PROPERTY_ENTRANCE_BEGIN = 1553,
|
||||||
|
GAME_MSG_REMOVE_BUFF = 1648,
|
||||||
GAME_MSG_REQUEST_MOVE_ITEM_BETWEEN_INVENTORY_TYPES = 1666,
|
GAME_MSG_REQUEST_MOVE_ITEM_BETWEEN_INVENTORY_TYPES = 1666,
|
||||||
GAME_MSG_RESPONSE_MOVE_ITEM_BETWEEN_INVENTORY_TYPES = 1667,
|
GAME_MSG_RESPONSE_MOVE_ITEM_BETWEEN_INVENTORY_TYPES = 1667,
|
||||||
GAME_MSG_PLAYER_SET_CAMERA_CYCLING_MODE = 1676,
|
GAME_MSG_PLAYER_SET_CAMERA_CYCLING_MODE = 1676,
|
16
dCommon/dEnums/eSqliteDataType.h
Normal file
16
dCommon/dEnums/eSqliteDataType.h
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#ifndef __ESQLITEDATATYPE__H__
|
||||||
|
#define __ESQLITEDATATYPE__H__
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
enum class eSqliteDataType : int32_t {
|
||||||
|
NONE = 0,
|
||||||
|
INT32,
|
||||||
|
REAL = 3,
|
||||||
|
TEXT_4,
|
||||||
|
INT_BOOL,
|
||||||
|
INT64,
|
||||||
|
TEXT_8 = 8
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //!__ESQLITEDATATYPE__H__
|
26
dCommon/eBlueprintSaveResponseType.h
Normal file
26
dCommon/eBlueprintSaveResponseType.h
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef __EBLUEPRINTSAVERESPONSETYPE__H__
|
||||||
|
#define __EBLUEPRINTSAVERESPONSETYPE__H__
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
enum class eBlueprintSaveResponseType : uint32_t {
|
||||||
|
EverythingWorked = 0,
|
||||||
|
SaveCancelled,
|
||||||
|
CantBeginTransaction,
|
||||||
|
SaveBlueprintFailed,
|
||||||
|
SaveUgobjectFailed,
|
||||||
|
CantEndTransaction,
|
||||||
|
SaveFilesFailed,
|
||||||
|
BadInput,
|
||||||
|
NotEnoughBricks,
|
||||||
|
InventoryFull,
|
||||||
|
ModelGenerationFailed,
|
||||||
|
PlacementFailed,
|
||||||
|
GmLevelInsufficient,
|
||||||
|
WaitForPreviousSave,
|
||||||
|
FindMatchesFailed
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //!__EBLUEPRINTSAVERESPONSETYPE__H__
|
@ -6,12 +6,13 @@
|
|||||||
#include "Game.h"
|
#include "Game.h"
|
||||||
#include "GeneralUtils.h"
|
#include "GeneralUtils.h"
|
||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
#include <istream>
|
#include <istream>
|
||||||
|
|
||||||
Migration LoadMigration(std::string path) {
|
Migration LoadMigration(std::string path) {
|
||||||
Migration migration{};
|
Migration migration{};
|
||||||
std::ifstream file("./migrations/" + path);
|
std::ifstream file(BinaryPathFinder::GetBinaryDir() / "migrations/" / path);
|
||||||
|
|
||||||
if (file.is_open()) {
|
if (file.is_open()) {
|
||||||
std::string line;
|
std::string line;
|
||||||
@ -37,7 +38,7 @@ void MigrationRunner::RunMigrations() {
|
|||||||
|
|
||||||
sql::SQLString finalSQL = "";
|
sql::SQLString finalSQL = "";
|
||||||
bool runSd0Migrations = false;
|
bool runSd0Migrations = false;
|
||||||
for (const auto& entry : GeneralUtils::GetFileNamesFromFolder("./migrations/dlu/")) {
|
for (const auto& entry : GeneralUtils::GetSqlFileNamesFromFolder((BinaryPathFinder::GetBinaryDir() / "./migrations/dlu/").string())) {
|
||||||
auto migration = LoadMigration("dlu/" + entry);
|
auto migration = LoadMigration("dlu/" + entry);
|
||||||
|
|
||||||
if (migration.data.empty()) {
|
if (migration.data.empty()) {
|
||||||
@ -93,26 +94,49 @@ void MigrationRunner::RunMigrations() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void MigrationRunner::RunSQLiteMigrations() {
|
void MigrationRunner::RunSQLiteMigrations() {
|
||||||
|
auto cdstmt = CDClientDatabase::CreatePreppedStmt("CREATE TABLE IF NOT EXISTS migration_history (name TEXT NOT NULL, date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP);");
|
||||||
|
cdstmt.execQuery().finalize();
|
||||||
|
cdstmt.finalize();
|
||||||
|
|
||||||
auto* stmt = Database::CreatePreppedStmt("CREATE TABLE IF NOT EXISTS migration_history (name TEXT NOT NULL, date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP());");
|
auto* stmt = Database::CreatePreppedStmt("CREATE TABLE IF NOT EXISTS migration_history (name TEXT NOT NULL, date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP());");
|
||||||
stmt->execute();
|
stmt->execute();
|
||||||
delete stmt;
|
delete stmt;
|
||||||
|
|
||||||
for (const auto& entry : GeneralUtils::GetFileNamesFromFolder("./migrations/cdserver/")) {
|
for (const auto& entry : GeneralUtils::GetSqlFileNamesFromFolder((BinaryPathFinder::GetBinaryDir() / "migrations/cdserver/").string())) {
|
||||||
auto migration = LoadMigration("cdserver/" + entry);
|
auto migration = LoadMigration("cdserver/" + entry);
|
||||||
|
|
||||||
if (migration.data.empty()) continue;
|
if (migration.data.empty()) continue;
|
||||||
|
|
||||||
|
// Check if there is an entry in the migration history table on the cdclient database.
|
||||||
|
cdstmt = CDClientDatabase::CreatePreppedStmt("SELECT name FROM migration_history WHERE name = ?;");
|
||||||
|
cdstmt.bind((int32_t) 1, migration.name.c_str());
|
||||||
|
auto cdres = cdstmt.execQuery();
|
||||||
|
bool doExit = !cdres.eof();
|
||||||
|
cdres.finalize();
|
||||||
|
cdstmt.finalize();
|
||||||
|
|
||||||
|
if (doExit) continue;
|
||||||
|
|
||||||
|
// Check first if there is entry in the migration history table on the main database.
|
||||||
stmt = Database::CreatePreppedStmt("SELECT name FROM migration_history WHERE name = ?;");
|
stmt = Database::CreatePreppedStmt("SELECT name FROM migration_history WHERE name = ?;");
|
||||||
stmt->setString(1, migration.name.c_str());
|
stmt->setString(1, migration.name.c_str());
|
||||||
auto* res = stmt->executeQuery();
|
auto* res = stmt->executeQuery();
|
||||||
bool doExit = res->next();
|
doExit = res->next();
|
||||||
delete res;
|
delete res;
|
||||||
delete stmt;
|
delete stmt;
|
||||||
if (doExit) continue;
|
if (doExit) {
|
||||||
|
// Insert into cdclient database if there is an entry in the main database but not the cdclient database.
|
||||||
|
cdstmt = CDClientDatabase::CreatePreppedStmt("INSERT INTO migration_history (name) VALUES (?);");
|
||||||
|
cdstmt.bind((int32_t) 1, migration.name.c_str());
|
||||||
|
cdstmt.execQuery().finalize();
|
||||||
|
cdstmt.finalize();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Doing these 1 migration at a time since one takes a long time and some may think it is crashing.
|
// Doing these 1 migration at a time since one takes a long time and some may think it is crashing.
|
||||||
// This will at the least guarentee that the full migration needs to be run in order to be counted as "migrated".
|
// This will at the least guarentee that the full migration needs to be run in order to be counted as "migrated".
|
||||||
Game::logger->Log("MigrationRunner", "Executing migration: %s. This may take a while. Do not shut down server.", migration.name.c_str());
|
Game::logger->Log("MigrationRunner", "Executing migration: %s. This may take a while. Do not shut down server.", migration.name.c_str());
|
||||||
|
CDClientDatabase::ExecuteQuery("BEGIN TRANSACTION;");
|
||||||
for (const auto& dml : GeneralUtils::SplitString(migration.data, ';')) {
|
for (const auto& dml : GeneralUtils::SplitString(migration.data, ';')) {
|
||||||
if (dml.empty()) continue;
|
if (dml.empty()) continue;
|
||||||
try {
|
try {
|
||||||
@ -121,10 +145,14 @@ void MigrationRunner::RunSQLiteMigrations() {
|
|||||||
Game::logger->Log("MigrationRunner", "Encountered error running DML command: (%i) : %s", e.errorCode(), e.errorMessage());
|
Game::logger->Log("MigrationRunner", "Encountered error running DML command: (%i) : %s", e.errorCode(), e.errorMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stmt = Database::CreatePreppedStmt("INSERT INTO migration_history (name) VALUES (?);");
|
|
||||||
stmt->setString(1, migration.name);
|
// Insert into cdclient database.
|
||||||
stmt->execute();
|
cdstmt = CDClientDatabase::CreatePreppedStmt("INSERT INTO migration_history (name) VALUES (?);");
|
||||||
delete stmt;
|
cdstmt.bind((int32_t) 1, migration.name.c_str());
|
||||||
|
cdstmt.execQuery().finalize();
|
||||||
|
cdstmt.finalize();
|
||||||
|
CDClientDatabase::ExecuteQuery("COMMIT;");
|
||||||
}
|
}
|
||||||
|
|
||||||
Game::logger->Log("MigrationRunner", "CDServer database is up to date.");
|
Game::logger->Log("MigrationRunner", "CDServer database is up to date.");
|
||||||
}
|
}
|
||||||
|
@ -264,14 +264,17 @@ void Character::DoQuickXMLDataParse() {
|
|||||||
if (flags) {
|
if (flags) {
|
||||||
auto* currentChild = flags->FirstChildElement();
|
auto* currentChild = flags->FirstChildElement();
|
||||||
while (currentChild) {
|
while (currentChild) {
|
||||||
uint32_t index = 0;
|
|
||||||
uint64_t value = 0;
|
|
||||||
const auto* temp = currentChild->Attribute("v");
|
const auto* temp = currentChild->Attribute("v");
|
||||||
|
const auto* id = currentChild->Attribute("id");
|
||||||
|
if (temp && id) {
|
||||||
|
uint32_t index = 0;
|
||||||
|
uint64_t value = 0;
|
||||||
|
|
||||||
index = std::stoul(currentChild->Attribute("id"));
|
index = std::stoul(id);
|
||||||
value = std::stoull(temp);
|
value = std::stoull(temp);
|
||||||
|
|
||||||
m_PlayerFlags.insert(std::make_pair(index, value));
|
m_PlayerFlags.insert(std::make_pair(index, value));
|
||||||
|
}
|
||||||
currentChild = currentChild->NextSiblingElement();
|
currentChild = currentChild->NextSiblingElement();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -351,6 +354,13 @@ void Character::SaveXMLToDatabase() {
|
|||||||
flags->LinkEndChild(f);
|
flags->LinkEndChild(f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Prevents the news feed from showing up on world transfers
|
||||||
|
if (GetPlayerFlag(ePlayerFlags::IS_NEWS_SCREEN_VISIBLE)) {
|
||||||
|
auto* s = m_Doc->NewElement("s");
|
||||||
|
s->SetAttribute("si", ePlayerFlags::IS_NEWS_SCREEN_VISIBLE);
|
||||||
|
flags->LinkEndChild(s);
|
||||||
|
}
|
||||||
|
|
||||||
SaveXmlRespawnCheckpoints();
|
SaveXmlRespawnCheckpoints();
|
||||||
|
|
||||||
//Call upon the entity to update our xmlDoc:
|
//Call upon the entity to update our xmlDoc:
|
||||||
@ -361,6 +371,31 @@ void Character::SaveXMLToDatabase() {
|
|||||||
|
|
||||||
m_OurEntity->UpdateXMLDoc(m_Doc);
|
m_OurEntity->UpdateXMLDoc(m_Doc);
|
||||||
|
|
||||||
|
WriteToDatabase();
|
||||||
|
|
||||||
|
//For metrics, log the time it took to save:
|
||||||
|
auto end = std::chrono::system_clock::now();
|
||||||
|
std::chrono::duration<double> elapsed = end - start;
|
||||||
|
Game::logger->Log("Character", "Saved character to Database in: %fs", elapsed.count());
|
||||||
|
}
|
||||||
|
|
||||||
|
void Character::SetIsNewLogin() {
|
||||||
|
// If we dont have a flag element, then we cannot have a s element as a child of flag.
|
||||||
|
auto* flags = m_Doc->FirstChildElement("obj")->FirstChildElement("flag");
|
||||||
|
if (!flags) return;
|
||||||
|
|
||||||
|
auto* currentChild = flags->FirstChildElement();
|
||||||
|
while (currentChild) {
|
||||||
|
if (currentChild->Attribute("si")) {
|
||||||
|
flags->DeleteChild(currentChild);
|
||||||
|
Game::logger->Log("Character", "Removed isLoggedIn flag from character %i, saving character to database", GetID());
|
||||||
|
WriteToDatabase();
|
||||||
|
}
|
||||||
|
currentChild = currentChild->NextSiblingElement();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Character::WriteToDatabase() {
|
||||||
//Dump our xml into m_XMLData:
|
//Dump our xml into m_XMLData:
|
||||||
auto* printer = new tinyxml2::XMLPrinter(0, true, 0);
|
auto* printer = new tinyxml2::XMLPrinter(0, true, 0);
|
||||||
m_Doc->Print(printer);
|
m_Doc->Print(printer);
|
||||||
@ -372,12 +407,6 @@ void Character::SaveXMLToDatabase() {
|
|||||||
stmt->setUInt(2, m_ID);
|
stmt->setUInt(2, m_ID);
|
||||||
stmt->execute();
|
stmt->execute();
|
||||||
delete stmt;
|
delete stmt;
|
||||||
|
|
||||||
//For metrics, log the time it took to save:
|
|
||||||
auto end = std::chrono::system_clock::now();
|
|
||||||
std::chrono::duration<double> elapsed = end - start;
|
|
||||||
Game::logger->Log("Character", "Saved character to Database in: %fs", elapsed.count());
|
|
||||||
|
|
||||||
delete printer;
|
delete printer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,6 +23,10 @@ public:
|
|||||||
Character(uint32_t id, User* parentUser);
|
Character(uint32_t id, User* parentUser);
|
||||||
~Character();
|
~Character();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Write the current m_Doc to the database for saving.
|
||||||
|
*/
|
||||||
|
void WriteToDatabase();
|
||||||
void SaveXMLToDatabase();
|
void SaveXMLToDatabase();
|
||||||
void UpdateFromDatabase();
|
void UpdateFromDatabase();
|
||||||
|
|
||||||
@ -32,6 +36,15 @@ public:
|
|||||||
const std::string& GetXMLData() const { return m_XMLData; }
|
const std::string& GetXMLData() const { return m_XMLData; }
|
||||||
tinyxml2::XMLDocument* GetXMLDoc() const { return m_Doc; }
|
tinyxml2::XMLDocument* GetXMLDoc() const { return m_Doc; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Out of abundance of safety and clarity of what this saves, this is its own function.
|
||||||
|
*
|
||||||
|
* Clears the s element from the flag element and saves the xml to the database. Used to prevent the news
|
||||||
|
* feed from showing up on world transfers.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
void SetIsNewLogin();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the database ID of the character
|
* Gets the database ID of the character
|
||||||
* @return the database ID of the character
|
* @return the database ID of the character
|
||||||
@ -427,7 +440,7 @@ public:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the flying state
|
* @brief Get the flying state
|
||||||
* @return value of the flying state
|
* @return value of the flying state
|
||||||
*/
|
*/
|
||||||
bool GetIsFlying() { return m_IsFlying; }
|
bool GetIsFlying() { return m_IsFlying; }
|
||||||
|
|
||||||
|
@ -454,7 +454,7 @@ void Entity::Initialize() {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
CDScriptComponentTable* scriptCompTable = CDClientManager::Instance()->GetTable<CDScriptComponentTable>("ScriptComponent");
|
CDScriptComponentTable* scriptCompTable = CDClientManager::Instance()->GetTable<CDScriptComponentTable>("ScriptComponent");
|
||||||
int scriptComponentID = compRegistryTable->GetByIDAndType(m_TemplateID, COMPONENT_TYPE_SCRIPT);
|
int32_t scriptComponentID = compRegistryTable->GetByIDAndType(m_TemplateID, COMPONENT_TYPE_SCRIPT, -1);
|
||||||
|
|
||||||
std::string scriptName = "";
|
std::string scriptName = "";
|
||||||
bool client = false;
|
bool client = false;
|
||||||
@ -496,7 +496,7 @@ void Entity::Initialize() {
|
|||||||
scriptName = customScriptServer;
|
scriptName = customScriptServer;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!scriptName.empty() || client || m_Character) {
|
if (!scriptName.empty() || client || m_Character || scriptComponentID >= 0) {
|
||||||
m_Components.insert(std::make_pair(COMPONENT_TYPE_SCRIPT, new ScriptComponent(this, scriptName, true, client && scriptName.empty())));
|
m_Components.insert(std::make_pair(COMPONENT_TYPE_SCRIPT, new ScriptComponent(this, scriptName, true, client && scriptName.empty())));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "Entity.h"
|
#include "Entity.h"
|
||||||
#include "EntityManager.h"
|
#include "EntityManager.h"
|
||||||
#include "SkillComponent.h"
|
#include "SkillComponent.h"
|
||||||
|
#include "AssetManager.h"
|
||||||
|
|
||||||
UserManager* UserManager::m_Address = nullptr;
|
UserManager* UserManager::m_Address = nullptr;
|
||||||
|
|
||||||
@ -32,43 +33,59 @@ inline void StripCR(std::string& str) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void UserManager::Initialize() {
|
void UserManager::Initialize() {
|
||||||
std::string firstNamePath = "./res/names/minifigname_first.txt";
|
|
||||||
std::string middleNamePath = "./res/names/minifigname_middle.txt";
|
|
||||||
std::string lastNamePath = "./res/names/minifigname_last.txt";
|
|
||||||
std::string line;
|
std::string line;
|
||||||
|
|
||||||
std::fstream fnFile(firstNamePath, std::ios::in);
|
AssetMemoryBuffer fnBuff = Game::assetManager->GetFileAsBuffer("names/minifigname_first.txt");
|
||||||
std::fstream mnFile(middleNamePath, std::ios::in);
|
if (!fnBuff.m_Success) {
|
||||||
std::fstream lnFile(lastNamePath, std::ios::in);
|
Game::logger->Log("UserManager", "Failed to load %s", (Game::assetManager->GetResPath() / "names/minifigname_first.txt").string().c_str());
|
||||||
|
throw std::runtime_error("Aborting initialization due to missing minifigure name file.");
|
||||||
while (std::getline(fnFile, line, '\n')) {
|
}
|
||||||
|
std::istream fnStream = std::istream(&fnBuff);
|
||||||
|
while (std::getline(fnStream, line, '\n')) {
|
||||||
std::string name = line;
|
std::string name = line;
|
||||||
StripCR(name);
|
StripCR(name);
|
||||||
m_FirstNames.push_back(name);
|
m_FirstNames.push_back(name);
|
||||||
}
|
}
|
||||||
|
fnBuff.close();
|
||||||
|
|
||||||
while (std::getline(mnFile, line, '\n')) {
|
AssetMemoryBuffer mnBuff = Game::assetManager->GetFileAsBuffer("names/minifigname_middle.txt");
|
||||||
|
if (!mnBuff.m_Success) {
|
||||||
|
Game::logger->Log("UserManager", "Failed to load %s", (Game::assetManager->GetResPath() / "names/minifigname_middle.txt").string().c_str());
|
||||||
|
throw std::runtime_error("Aborting initialization due to missing minifigure name file.");
|
||||||
|
}
|
||||||
|
std::istream mnStream = std::istream(&mnBuff);
|
||||||
|
while (std::getline(mnStream, line, '\n')) {
|
||||||
std::string name = line;
|
std::string name = line;
|
||||||
StripCR(name);
|
StripCR(name);
|
||||||
m_MiddleNames.push_back(name);
|
m_MiddleNames.push_back(name);
|
||||||
}
|
}
|
||||||
|
mnBuff.close();
|
||||||
|
|
||||||
while (std::getline(lnFile, line, '\n')) {
|
AssetMemoryBuffer lnBuff = Game::assetManager->GetFileAsBuffer("names/minifigname_last.txt");
|
||||||
|
if (!lnBuff.m_Success) {
|
||||||
|
Game::logger->Log("UserManager", "Failed to load %s", (Game::assetManager->GetResPath() / "names/minifigname_last.txt").string().c_str());
|
||||||
|
throw std::runtime_error("Aborting initialization due to missing minifigure name file.");
|
||||||
|
}
|
||||||
|
std::istream lnStream = std::istream(&lnBuff);
|
||||||
|
while (std::getline(lnStream, line, '\n')) {
|
||||||
std::string name = line;
|
std::string name = line;
|
||||||
StripCR(name);
|
StripCR(name);
|
||||||
m_LastNames.push_back(name);
|
m_LastNames.push_back(name);
|
||||||
}
|
}
|
||||||
|
lnBuff.close();
|
||||||
fnFile.close();
|
|
||||||
mnFile.close();
|
|
||||||
lnFile.close();
|
|
||||||
|
|
||||||
//Load our pre-approved names:
|
//Load our pre-approved names:
|
||||||
std::fstream chatList("./res/chatplus_en_us.txt", std::ios::in);
|
AssetMemoryBuffer chatListBuff = Game::assetManager->GetFileAsBuffer("chatplus_en_us.txt");
|
||||||
while (std::getline(chatList, line, '\n')) {
|
if (!chatListBuff.m_Success) {
|
||||||
|
Game::logger->Log("UserManager", "Failed to load %s", (Game::assetManager->GetResPath() / "chatplus_en_us.txt").string().c_str());
|
||||||
|
throw std::runtime_error("Aborting initialization due to missing chat whitelist file.");
|
||||||
|
}
|
||||||
|
std::istream chatListStream = std::istream(&chatListBuff);
|
||||||
|
while (std::getline(chatListStream, line, '\n')) {
|
||||||
StripCR(line);
|
StripCR(line);
|
||||||
m_PreapprovedNames.push_back(line);
|
m_PreapprovedNames.push_back(line);
|
||||||
}
|
}
|
||||||
|
chatListBuff.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
UserManager::~UserManager() {
|
UserManager::~UserManager() {
|
||||||
@ -210,6 +227,7 @@ void UserManager::RequestCharacterList(const SystemAddress& sysAddr) {
|
|||||||
while (res->next()) {
|
while (res->next()) {
|
||||||
LWOOBJID objID = res->getUInt64(1);
|
LWOOBJID objID = res->getUInt64(1);
|
||||||
Character* character = new Character(uint32_t(objID), u);
|
Character* character = new Character(uint32_t(objID), u);
|
||||||
|
character->SetIsNewLogin();
|
||||||
chars.push_back(character);
|
chars.push_back(character);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,7 @@
|
|||||||
#include "SkillCastFailedBehavior.h"
|
#include "SkillCastFailedBehavior.h"
|
||||||
#include "SpawnBehavior.h"
|
#include "SpawnBehavior.h"
|
||||||
#include "ForceMovementBehavior.h"
|
#include "ForceMovementBehavior.h"
|
||||||
|
#include "RemoveBuffBehavior.h"
|
||||||
#include "ImmunityBehavior.h"
|
#include "ImmunityBehavior.h"
|
||||||
#include "InterruptBehavior.h"
|
#include "InterruptBehavior.h"
|
||||||
#include "PlayEffectBehavior.h"
|
#include "PlayEffectBehavior.h"
|
||||||
@ -226,7 +227,9 @@ Behavior* Behavior::CreateBehavior(const uint32_t behaviorId) {
|
|||||||
break;
|
break;
|
||||||
case BehaviorTemplates::BEHAVIOR_ALTER_CHAIN_DELAY: break;
|
case BehaviorTemplates::BEHAVIOR_ALTER_CHAIN_DELAY: break;
|
||||||
case BehaviorTemplates::BEHAVIOR_CAMERA: break;
|
case BehaviorTemplates::BEHAVIOR_CAMERA: break;
|
||||||
case BehaviorTemplates::BEHAVIOR_REMOVE_BUFF: break;
|
case BehaviorTemplates::BEHAVIOR_REMOVE_BUFF:
|
||||||
|
behavior = new RemoveBuffBehavior(behaviorId);
|
||||||
|
break;
|
||||||
case BehaviorTemplates::BEHAVIOR_GRAB: break;
|
case BehaviorTemplates::BEHAVIOR_GRAB: break;
|
||||||
case BehaviorTemplates::BEHAVIOR_MODULAR_BUILD: break;
|
case BehaviorTemplates::BEHAVIOR_MODULAR_BUILD: break;
|
||||||
case BehaviorTemplates::BEHAVIOR_NPC_COMBAT_SKILL:
|
case BehaviorTemplates::BEHAVIOR_NPC_COMBAT_SKILL:
|
||||||
|
@ -34,6 +34,7 @@ set(DGAME_DBEHAVIORS_SOURCES "AirMovementBehavior.cpp"
|
|||||||
"PlayEffectBehavior.cpp"
|
"PlayEffectBehavior.cpp"
|
||||||
"ProjectileAttackBehavior.cpp"
|
"ProjectileAttackBehavior.cpp"
|
||||||
"PullToPointBehavior.cpp"
|
"PullToPointBehavior.cpp"
|
||||||
|
"RemoveBuffBehavior.cpp"
|
||||||
"RepairBehavior.cpp"
|
"RepairBehavior.cpp"
|
||||||
"SkillCastFailedBehavior.cpp"
|
"SkillCastFailedBehavior.cpp"
|
||||||
"SkillEventBehavior.cpp"
|
"SkillEventBehavior.cpp"
|
||||||
|
@ -75,5 +75,5 @@ void ForceMovementBehavior::SyncCalculation(BehaviorContext* context, RakNet::Bi
|
|||||||
|
|
||||||
this->m_hitAction->Calculate(context, bitStream, branch);
|
this->m_hitAction->Calculate(context, bitStream, branch);
|
||||||
this->m_hitEnemyAction->Calculate(context, bitStream, branch);
|
this->m_hitEnemyAction->Calculate(context, bitStream, branch);
|
||||||
this->m_hitEnemyAction->Calculate(context, bitStream, branch);
|
this->m_hitFactionAction->Calculate(context, bitStream, branch);
|
||||||
}
|
}
|
||||||
|
21
dGame/dBehaviors/RemoveBuffBehavior.cpp
Normal file
21
dGame/dBehaviors/RemoveBuffBehavior.cpp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#include "RemoveBuffBehavior.h"
|
||||||
|
|
||||||
|
#include "BehaviorBranchContext.h"
|
||||||
|
#include "BehaviorContext.h"
|
||||||
|
#include "EntityManager.h"
|
||||||
|
#include "BuffComponent.h"
|
||||||
|
|
||||||
|
void RemoveBuffBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
||||||
|
auto* entity = EntityManager::Instance()->GetEntity(context->caster);
|
||||||
|
if (!entity) return;
|
||||||
|
|
||||||
|
auto* buffComponent = entity->GetComponent<BuffComponent>();
|
||||||
|
if (!buffComponent) return;
|
||||||
|
|
||||||
|
buffComponent->RemoveBuff(m_BuffId, false, m_RemoveImmunity);
|
||||||
|
}
|
||||||
|
|
||||||
|
void RemoveBuffBehavior::Load() {
|
||||||
|
this->m_RemoveImmunity = GetBoolean("remove_immunity");
|
||||||
|
this->m_BuffId = GetInt("buff_id");
|
||||||
|
}
|
22
dGame/dBehaviors/RemoveBuffBehavior.h
Normal file
22
dGame/dBehaviors/RemoveBuffBehavior.h
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "Behavior.h"
|
||||||
|
|
||||||
|
class RemoveBuffBehavior final : public Behavior
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Inherited
|
||||||
|
*/
|
||||||
|
|
||||||
|
explicit RemoveBuffBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
|
||||||
|
|
||||||
|
void Load() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool m_RemoveImmunity;
|
||||||
|
uint32_t m_BuffId;
|
||||||
|
};
|
@ -123,13 +123,15 @@ void BuffComponent::ApplyBuff(const int32_t id, const float duration, const LWOO
|
|||||||
m_Buffs.emplace(id, buff);
|
m_Buffs.emplace(id, buff);
|
||||||
}
|
}
|
||||||
|
|
||||||
void BuffComponent::RemoveBuff(int32_t id) {
|
void BuffComponent::RemoveBuff(int32_t id, bool fromUnEquip, bool removeImmunity) {
|
||||||
const auto& iter = m_Buffs.find(id);
|
const auto& iter = m_Buffs.find(id);
|
||||||
|
|
||||||
if (iter == m_Buffs.end()) {
|
if (iter == m_Buffs.end()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GameMessages::SendRemoveBuff(m_Parent, fromUnEquip, removeImmunity, id);
|
||||||
|
|
||||||
m_Buffs.erase(iter);
|
m_Buffs.erase(iter);
|
||||||
|
|
||||||
RemoveBuffEffect(id);
|
RemoveBuffEffect(id);
|
||||||
|
@ -78,8 +78,9 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Removes a buff from the parent entity, reversing its effects
|
* Removes a buff from the parent entity, reversing its effects
|
||||||
* @param id the id of the buff to remove
|
* @param id the id of the buff to remove
|
||||||
|
* @param removeImmunity whether or not to remove immunity on removing the buff
|
||||||
*/
|
*/
|
||||||
void RemoveBuff(int32_t id);
|
void RemoveBuff(int32_t id, bool fromUnEquip = false, bool removeImmunity = false);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns whether or not the entity has a buff identified by `id`
|
* Returns whether or not the entity has a buff identified by `id`
|
||||||
|
@ -209,9 +209,11 @@ void InventoryComponent::AddItem(
|
|||||||
|
|
||||||
auto stack = static_cast<uint32_t>(info.stackSize);
|
auto stack = static_cast<uint32_t>(info.stackSize);
|
||||||
|
|
||||||
|
bool isBrick = inventoryType == eInventoryType::BRICKS || (stack == 0 && info.itemType == 1);
|
||||||
|
|
||||||
// info.itemType of 1 is item type brick
|
// info.itemType of 1 is item type brick
|
||||||
if (inventoryType == eInventoryType::BRICKS || (stack == 0 && info.itemType == 1)) {
|
if (isBrick) {
|
||||||
stack = 999;
|
stack = UINT32_MAX;
|
||||||
} else if (stack == 0) {
|
} else if (stack == 0) {
|
||||||
stack = 1;
|
stack = 1;
|
||||||
}
|
}
|
||||||
@ -232,7 +234,8 @@ void InventoryComponent::AddItem(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while (left > 0) {
|
// If we have some leftover and we aren't bricks, make a new stack
|
||||||
|
while (left > 0 && (!isBrick || (isBrick && !existing))) {
|
||||||
const auto size = std::min(left, stack);
|
const auto size = std::min(left, stack);
|
||||||
|
|
||||||
left -= size;
|
left -= size;
|
||||||
@ -327,7 +330,9 @@ void InventoryComponent::MoveItemToInventory(Item* item, const eInventoryType in
|
|||||||
|
|
||||||
const auto lot = item->GetLot();
|
const auto lot = item->GetLot();
|
||||||
|
|
||||||
if (item->GetConfig().empty() && !item->GetBound() || (item->GetBound() && item->GetInfo().isBOP)) {
|
const auto subkey = item->GetSubKey();
|
||||||
|
|
||||||
|
if (subkey == LWOOBJID_EMPTY && item->GetConfig().empty() && (!item->GetBound() || (item->GetBound() && item->GetInfo().isBOP))) {
|
||||||
auto left = std::min<uint32_t>(count, origin->GetLotCount(lot));
|
auto left = std::min<uint32_t>(count, origin->GetLotCount(lot));
|
||||||
|
|
||||||
while (left > 0) {
|
while (left > 0) {
|
||||||
@ -358,7 +363,7 @@ void InventoryComponent::MoveItemToInventory(Item* item, const eInventoryType in
|
|||||||
|
|
||||||
const auto delta = std::min<uint32_t>(item->GetCount(), count);
|
const auto delta = std::min<uint32_t>(item->GetCount(), count);
|
||||||
|
|
||||||
AddItem(lot, delta, eLootSourceType::LOOT_SOURCE_NONE, inventory, config, LWOOBJID_EMPTY, showFlyingLot, isModMoveAndEquip, LWOOBJID_EMPTY, origin->GetType(), 0, item->GetBound(), preferredSlot);
|
AddItem(lot, delta, eLootSourceType::LOOT_SOURCE_NONE, inventory, config, LWOOBJID_EMPTY, showFlyingLot, isModMoveAndEquip, subkey, origin->GetType(), 0, item->GetBound(), preferredSlot);
|
||||||
|
|
||||||
item->SetCount(item->GetCount() - delta, false, false);
|
item->SetCount(item->GetCount() - delta, false, false);
|
||||||
}
|
}
|
||||||
@ -605,16 +610,17 @@ void InventoryComponent::UpdateXml(tinyxml2::XMLDocument* document) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<Inventory*> inventories;
|
std::vector<Inventory*> inventoriesToSave;
|
||||||
|
|
||||||
|
// Need to prevent some transfer inventories from being saved
|
||||||
for (const auto& pair : this->m_Inventories) {
|
for (const auto& pair : this->m_Inventories) {
|
||||||
auto* inventory = pair.second;
|
auto* inventory = pair.second;
|
||||||
|
|
||||||
if (inventory->GetType() == VENDOR_BUYBACK) {
|
if (inventory->GetType() == VENDOR_BUYBACK || inventory->GetType() == eInventoryType::MODELS_IN_BBB) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
inventories.push_back(inventory);
|
inventoriesToSave.push_back(inventory);
|
||||||
}
|
}
|
||||||
|
|
||||||
inventoryElement->SetAttribute("csl", m_Consumable);
|
inventoryElement->SetAttribute("csl", m_Consumable);
|
||||||
@ -629,7 +635,7 @@ void InventoryComponent::UpdateXml(tinyxml2::XMLDocument* document) {
|
|||||||
|
|
||||||
bags->DeleteChildren();
|
bags->DeleteChildren();
|
||||||
|
|
||||||
for (const auto* inventory : inventories) {
|
for (const auto* inventory : inventoriesToSave) {
|
||||||
auto* bag = document->NewElement("b");
|
auto* bag = document->NewElement("b");
|
||||||
|
|
||||||
bag->SetAttribute("t", inventory->GetType());
|
bag->SetAttribute("t", inventory->GetType());
|
||||||
@ -648,7 +654,7 @@ void InventoryComponent::UpdateXml(tinyxml2::XMLDocument* document) {
|
|||||||
|
|
||||||
items->DeleteChildren();
|
items->DeleteChildren();
|
||||||
|
|
||||||
for (auto* inventory : inventories) {
|
for (auto* inventory : inventoriesToSave) {
|
||||||
if (inventory->GetSize() == 0) {
|
if (inventory->GetSize() == 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -985,6 +991,7 @@ void InventoryComponent::ApplyBuff(Item* item) const {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO Something needs to send the remove buff GameMessage as well when it is unequipping items that would remove buffs.
|
||||||
void InventoryComponent::RemoveBuff(Item* item) const {
|
void InventoryComponent::RemoveBuff(Item* item) const {
|
||||||
const auto buffs = FindBuffs(item, false);
|
const auto buffs = FindBuffs(item, false);
|
||||||
|
|
||||||
@ -1258,7 +1265,7 @@ BehaviorSlot InventoryComponent::FindBehaviorSlot(const eItemType type) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool InventoryComponent::IsTransferInventory(eInventoryType type) {
|
bool InventoryComponent::IsTransferInventory(eInventoryType type) {
|
||||||
return type == VENDOR_BUYBACK || type == VAULT_ITEMS || type == VAULT_MODELS || type == TEMP_ITEMS || type == TEMP_MODELS;
|
return type == VENDOR_BUYBACK || type == VAULT_ITEMS || type == VAULT_MODELS || type == TEMP_ITEMS || type == TEMP_MODELS || type == MODELS_IN_BBB;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t InventoryComponent::FindSkill(const LOT lot) {
|
uint32_t InventoryComponent::FindSkill(const LOT lot) {
|
||||||
|
@ -474,7 +474,7 @@ void PropertyManagementComponent::DeleteModel(const LWOOBJID id, const int delet
|
|||||||
settings.push_back(propertyObjectID);
|
settings.push_back(propertyObjectID);
|
||||||
settings.push_back(modelType);
|
settings.push_back(modelType);
|
||||||
|
|
||||||
inventoryComponent->AddItem(6662, 1, eLootSourceType::LOOT_SOURCE_DELETION, eInventoryType::HIDDEN, settings, LWOOBJID_EMPTY, false, false, spawnerId);
|
inventoryComponent->AddItem(6662, 1, eLootSourceType::LOOT_SOURCE_DELETION, eInventoryType::MODELS_IN_BBB, settings, LWOOBJID_EMPTY, false, false, spawnerId);
|
||||||
auto* item = inventoryComponent->FindItemBySubKey(spawnerId);
|
auto* item = inventoryComponent->FindItemBySubKey(spawnerId);
|
||||||
|
|
||||||
if (item == nullptr) {
|
if (item == nullptr) {
|
||||||
|
@ -19,8 +19,9 @@
|
|||||||
#include "DestroyableComponent.h"
|
#include "DestroyableComponent.h"
|
||||||
|
|
||||||
ScriptedActivityComponent::ScriptedActivityComponent(Entity* parent, int activityID) : Component(parent) {
|
ScriptedActivityComponent::ScriptedActivityComponent(Entity* parent, int activityID) : Component(parent) {
|
||||||
|
m_ActivityID = activityID;
|
||||||
CDActivitiesTable* activitiesTable = CDClientManager::Instance()->GetTable<CDActivitiesTable>("Activities");
|
CDActivitiesTable* activitiesTable = CDClientManager::Instance()->GetTable<CDActivitiesTable>("Activities");
|
||||||
std::vector<CDActivities> activities = activitiesTable->Query([=](CDActivities entry) {return (entry.ActivityID == activityID); });
|
std::vector<CDActivities> activities = activitiesTable->Query([=](CDActivities entry) {return (entry.ActivityID == m_ActivityID); });
|
||||||
|
|
||||||
for (CDActivities activity : activities) {
|
for (CDActivities activity : activities) {
|
||||||
m_ActivityInfo = activity;
|
m_ActivityInfo = activity;
|
||||||
@ -88,6 +89,21 @@ void ScriptedActivityComponent::Serialize(RakNet::BitStream* outBitStream, bool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ScriptedActivityComponent::ReloadConfig() {
|
||||||
|
CDActivitiesTable* activitiesTable = CDClientManager::Instance()->GetTable<CDActivitiesTable>("Activities");
|
||||||
|
std::vector<CDActivities> activities = activitiesTable->Query([=](CDActivities entry) {return (entry.ActivityID == m_ActivityID); });
|
||||||
|
for (auto activity : activities) {
|
||||||
|
auto mapID = m_ActivityInfo.instanceMapID;
|
||||||
|
if ((mapID == 1203 || mapID == 1261 || mapID == 1303 || mapID == 1403) && Game::config->GetValue("solo_racing") == "1") {
|
||||||
|
m_ActivityInfo.minTeamSize = 1;
|
||||||
|
m_ActivityInfo.minTeams = 1;
|
||||||
|
} else {
|
||||||
|
m_ActivityInfo.minTeamSize = activity.minTeamSize;
|
||||||
|
m_ActivityInfo.minTeams = activity.minTeams;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ScriptedActivityComponent::HandleMessageBoxResponse(Entity* player, const std::string& id) {
|
void ScriptedActivityComponent::HandleMessageBoxResponse(Entity* player, const std::string& id) {
|
||||||
if (m_ActivityInfo.ActivityID == 103) {
|
if (m_ActivityInfo.ActivityID == 103) {
|
||||||
return;
|
return;
|
||||||
|
@ -276,6 +276,12 @@ public:
|
|||||||
*/
|
*/
|
||||||
ActivityInstance* GetInstance(const LWOOBJID playerID);
|
ActivityInstance* GetInstance(const LWOOBJID playerID);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Reloads the config settings for this component
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
void ReloadConfig();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes all the instances
|
* Removes all the instances
|
||||||
*/
|
*/
|
||||||
@ -361,6 +367,12 @@ private:
|
|||||||
* LMIs for team sizes
|
* LMIs for team sizes
|
||||||
*/
|
*/
|
||||||
std::unordered_map<uint32_t, uint32_t> m_ActivityLootMatrices;
|
std::unordered_map<uint32_t, uint32_t> m_ActivityLootMatrices;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The activity id
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
int32_t m_ActivityID;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // SCRIPTEDACTIVITYCOMPONENT_H
|
#endif // SCRIPTEDACTIVITYCOMPONENT_H
|
||||||
|
@ -46,6 +46,10 @@ void GameMessageHandler::HandleMessage(RakNet::BitStream* inStream, const System
|
|||||||
|
|
||||||
switch (messageID) {
|
switch (messageID) {
|
||||||
|
|
||||||
|
case GAME_MSG_UN_USE_BBB_MODEL: {
|
||||||
|
GameMessages::HandleUnUseModel(inStream, entity, sysAddr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
case GAME_MSG_PLAY_EMOTE: {
|
case GAME_MSG_PLAY_EMOTE: {
|
||||||
GameMessages::HandlePlayEmote(inStream, entity);
|
GameMessages::HandlePlayEmote(inStream, entity);
|
||||||
break;
|
break;
|
||||||
|
@ -70,6 +70,7 @@
|
|||||||
#include "TradingManager.h"
|
#include "TradingManager.h"
|
||||||
#include "ControlBehaviors.h"
|
#include "ControlBehaviors.h"
|
||||||
#include "AMFDeserialize.h"
|
#include "AMFDeserialize.h"
|
||||||
|
#include "eBlueprintSaveResponseType.h"
|
||||||
|
|
||||||
void GameMessages::SendFireEventClientSide(const LWOOBJID& objectID, const SystemAddress& sysAddr, std::u16string args, const LWOOBJID& object, int64_t param1, int param2, const LWOOBJID& sender) {
|
void GameMessages::SendFireEventClientSide(const LWOOBJID& objectID, const SystemAddress& sysAddr, std::u16string args, const LWOOBJID& object, int64_t param1, int param2, const LWOOBJID& sender) {
|
||||||
CBITSTREAM;
|
CBITSTREAM;
|
||||||
@ -2139,6 +2140,32 @@ void GameMessages::HandleSetPropertyAccess(RakNet::BitStream* inStream, Entity*
|
|||||||
PropertyManagementComponent::Instance()->SetPrivacyOption(static_cast<PropertyPrivacyOption>(accessType));
|
PropertyManagementComponent::Instance()->SetPrivacyOption(static_cast<PropertyPrivacyOption>(accessType));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GameMessages::HandleUnUseModel(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr) {
|
||||||
|
bool unknown{};
|
||||||
|
LWOOBJID objIdToAddToInventory{};
|
||||||
|
inStream->Read(unknown);
|
||||||
|
inStream->Read(objIdToAddToInventory);
|
||||||
|
auto* inventoryComponent = entity->GetComponent<InventoryComponent>();
|
||||||
|
if (inventoryComponent) {
|
||||||
|
auto* inventory = inventoryComponent->GetInventory(eInventoryType::MODELS_IN_BBB);
|
||||||
|
auto* item = inventory->FindItemById(objIdToAddToInventory);
|
||||||
|
if (item) {
|
||||||
|
inventoryComponent->MoveItemToInventory(item, eInventoryType::MODELS, 1);
|
||||||
|
} else {
|
||||||
|
Game::logger->Log("GameMessages", "item id %llu not found in MODELS_IN_BBB inventory, likely because it does not exist", objIdToAddToInventory);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (unknown) {
|
||||||
|
CBITSTREAM;
|
||||||
|
PacketUtils::WriteHeader(bitStream, CLIENT, MSG_CLIENT_BLUEPRINT_SAVE_RESPONSE);
|
||||||
|
bitStream.Write<LWOOBJID>(LWOOBJID_EMPTY); //always zero so that a check on the client passes
|
||||||
|
bitStream.Write(eBlueprintSaveResponseType::PlacementFailed); // Sending a non-zero error code here prevents the client from deleting its in progress build for some reason?
|
||||||
|
bitStream.Write<uint32_t>(0);
|
||||||
|
SEND_PACKET;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void GameMessages::HandleUpdatePropertyOrModelForFilterCheck(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr) {
|
void GameMessages::HandleUpdatePropertyOrModelForFilterCheck(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr) {
|
||||||
bool isProperty{};
|
bool isProperty{};
|
||||||
LWOOBJID objectId{};
|
LWOOBJID objectId{};
|
||||||
@ -2353,16 +2380,40 @@ void GameMessages::HandleDeletePropertyModel(RakNet::BitStream* inStream, Entity
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GameMessages::HandleBBBLoadItemRequest(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr) {
|
void GameMessages::HandleBBBLoadItemRequest(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr) {
|
||||||
LWOOBJID itemID = LWOOBJID_EMPTY;
|
LWOOBJID previousItemID = LWOOBJID_EMPTY;
|
||||||
inStream->Read(itemID);
|
inStream->Read(previousItemID);
|
||||||
|
|
||||||
Game::logger->Log("BBB", "Load item request for: %lld", itemID);
|
Game::logger->Log("BBB", "Load item request for: %lld", previousItemID);
|
||||||
|
LWOOBJID newId = previousItemID;
|
||||||
|
auto* inventoryComponent = entity->GetComponent<InventoryComponent>();
|
||||||
|
if (inventoryComponent) {
|
||||||
|
auto* inventory = inventoryComponent->GetInventory(eInventoryType::MODELS);
|
||||||
|
auto* itemToMove = inventory->FindItemById(previousItemID);
|
||||||
|
|
||||||
|
if (itemToMove) {
|
||||||
|
LOT previousLot = itemToMove->GetLot();
|
||||||
|
inventoryComponent->MoveItemToInventory(itemToMove, eInventoryType::MODELS_IN_BBB, 1, false);
|
||||||
|
|
||||||
|
auto* destinationInventory = inventoryComponent->GetInventory(eInventoryType::MODELS_IN_BBB);
|
||||||
|
if (destinationInventory) {
|
||||||
|
auto* movedItem = destinationInventory->FindItemByLot(previousLot);
|
||||||
|
if (movedItem) newId = movedItem->GetId();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Game::logger->Log("GameMessages", "item id %llu not found in MODELS inventory, likely because it does not exist", previousItemID);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Second argument always true (successful) for now
|
||||||
|
SendBlueprintLoadItemResponse(sysAddr, true, previousItemID, newId);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GameMessages::SendBlueprintLoadItemResponse(const SystemAddress& sysAddr, bool success, LWOOBJID oldItemId, LWOOBJID newItemId) {
|
||||||
CBITSTREAM;
|
CBITSTREAM;
|
||||||
PacketUtils::WriteHeader(bitStream, CLIENT, MSG_CLIENT_BLUEPRINT_LOAD_RESPONSE_ITEMID);
|
PacketUtils::WriteHeader(bitStream, CLIENT, MSG_CLIENT_BLUEPRINT_LOAD_RESPONSE_ITEMID);
|
||||||
bitStream.Write(static_cast<uint8_t>(1));
|
bitStream.Write(static_cast<uint8_t>(success));
|
||||||
bitStream.Write<LWOOBJID>(itemID);
|
bitStream.Write<LWOOBJID>(oldItemId);
|
||||||
bitStream.Write<LWOOBJID>(itemID);
|
bitStream.Write<LWOOBJID>(newItemId);
|
||||||
SEND_PACKET;
|
SEND_PACKET;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2413,7 +2464,7 @@ void GameMessages::HandleControlBehaviors(RakNet::BitStream* inStream, Entity* e
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto owner = PropertyManagementComponent::Instance()->GetOwner();
|
auto owner = PropertyManagementComponent::Instance()->GetOwner();
|
||||||
if (!owner) return;
|
if (!owner) return;
|
||||||
|
|
||||||
ControlBehaviors::ProcessCommand(entity, sysAddr, static_cast<AMFArrayValue*>(amfArguments.get()), command, owner);
|
ControlBehaviors::ProcessCommand(entity, sysAddr, static_cast<AMFArrayValue*>(amfArguments.get()), command, owner);
|
||||||
}
|
}
|
||||||
@ -2609,8 +2660,8 @@ void GameMessages::HandleBBBSaveRequest(RakNet::BitStream* inStream, Entity* ent
|
|||||||
CBITSTREAM;
|
CBITSTREAM;
|
||||||
PacketUtils::WriteHeader(bitStream, CLIENT, CLIENT::MSG_CLIENT_BLUEPRINT_SAVE_RESPONSE);
|
PacketUtils::WriteHeader(bitStream, CLIENT, CLIENT::MSG_CLIENT_BLUEPRINT_SAVE_RESPONSE);
|
||||||
bitStream.Write(localId);
|
bitStream.Write(localId);
|
||||||
bitStream.Write<unsigned int>(0);
|
bitStream.Write(eBlueprintSaveResponseType::EverythingWorked);
|
||||||
bitStream.Write<unsigned int>(1);
|
bitStream.Write<uint32_t>(1);
|
||||||
bitStream.Write(blueprintID);
|
bitStream.Write(blueprintID);
|
||||||
|
|
||||||
bitStream.Write<uint32_t>(sd0Size);
|
bitStream.Write<uint32_t>(sd0Size);
|
||||||
@ -2620,7 +2671,6 @@ void GameMessages::HandleBBBSaveRequest(RakNet::BitStream* inStream, Entity* ent
|
|||||||
}
|
}
|
||||||
|
|
||||||
SEND_PACKET;
|
SEND_PACKET;
|
||||||
// PacketUtils::SavePacket("MSG_CLIENT_BLUEPRINT_SAVE_RESPONSE.bin", (char*)bitStream.GetData(), bitStream.GetNumberOfBytesUsed());
|
|
||||||
|
|
||||||
//Now we have to construct this object:
|
//Now we have to construct this object:
|
||||||
|
|
||||||
@ -3476,6 +3526,20 @@ void GameMessages::SendPlayEmote(LWOOBJID objectId, int32_t emoteID, LWOOBJID ta
|
|||||||
SEND_PACKET;
|
SEND_PACKET;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GameMessages::SendRemoveBuff(Entity* entity, bool fromUnEquip, bool removeImmunity, uint32_t buffId) {
|
||||||
|
CBITSTREAM;
|
||||||
|
CMSGHEADER;
|
||||||
|
|
||||||
|
bitStream.Write(entity->GetObjectID());
|
||||||
|
bitStream.Write(GAME_MSG::GAME_MSG_REMOVE_BUFF);
|
||||||
|
|
||||||
|
bitStream.Write(false); // bFromRemoveBehavior but setting this to true makes the GM not do anything on the client?
|
||||||
|
bitStream.Write(fromUnEquip);
|
||||||
|
bitStream.Write(removeImmunity);
|
||||||
|
bitStream.Write(buffId);
|
||||||
|
|
||||||
|
SEND_PACKET_BROADCAST;
|
||||||
|
}
|
||||||
|
|
||||||
void GameMessages::SendBouncerActiveStatus(LWOOBJID objectId, bool bActive, const SystemAddress& sysAddr) {
|
void GameMessages::SendBouncerActiveStatus(LWOOBJID objectId, bool bActive, const SystemAddress& sysAddr) {
|
||||||
CBITSTREAM;
|
CBITSTREAM;
|
||||||
@ -4398,13 +4462,13 @@ void GameMessages::SendAddBuff(LWOOBJID& objectID, const LWOOBJID& casterID, uin
|
|||||||
// NT
|
// NT
|
||||||
|
|
||||||
void GameMessages::HandleRequestMoveItemBetweenInventoryTypes(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr) {
|
void GameMessages::HandleRequestMoveItemBetweenInventoryTypes(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr) {
|
||||||
bool bAllowPartial;
|
bool bAllowPartial{};
|
||||||
int32_t destSlot = -1;
|
int32_t destSlot = -1;
|
||||||
int32_t iStackCount = 1;
|
int32_t iStackCount = 1;
|
||||||
eInventoryType invTypeDst = ITEMS;
|
eInventoryType invTypeDst = ITEMS;
|
||||||
eInventoryType invTypeSrc = ITEMS;
|
eInventoryType invTypeSrc = ITEMS;
|
||||||
LWOOBJID itemID = LWOOBJID_EMPTY;
|
LWOOBJID itemID = LWOOBJID_EMPTY;
|
||||||
bool showFlyingLoot;
|
bool showFlyingLoot{};
|
||||||
LWOOBJID subkey = LWOOBJID_EMPTY;
|
LWOOBJID subkey = LWOOBJID_EMPTY;
|
||||||
LOT itemLOT = 0;
|
LOT itemLOT = 0;
|
||||||
|
|
||||||
@ -4428,12 +4492,12 @@ void GameMessages::HandleRequestMoveItemBetweenInventoryTypes(RakNet::BitStream*
|
|||||||
if (itemID != LWOOBJID_EMPTY) {
|
if (itemID != LWOOBJID_EMPTY) {
|
||||||
auto* item = inventoryComponent->FindItemById(itemID);
|
auto* item = inventoryComponent->FindItemById(itemID);
|
||||||
|
|
||||||
if (item == nullptr) {
|
if (!item) return;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (inventoryComponent->IsPet(item->GetSubKey()) || !item->GetConfig().empty()) {
|
// Despawn the pet if we are moving that pet to the vault.
|
||||||
return;
|
auto* petComponent = PetComponent::GetActivePet(entity->GetObjectID());
|
||||||
|
if (petComponent && petComponent->GetDatabaseId() == item->GetSubKey()) {
|
||||||
|
inventoryComponent->DespawnPet();
|
||||||
}
|
}
|
||||||
|
|
||||||
inventoryComponent->MoveItemToInventory(item, invTypeDst, iStackCount, showFlyingLoot, false, false, destSlot);
|
inventoryComponent->MoveItemToInventory(item, invTypeDst, iStackCount, showFlyingLoot, false, false, destSlot);
|
||||||
@ -4894,27 +4958,27 @@ void GameMessages::HandlePlayEmote(RakNet::BitStream* inStream, Entity* entity)
|
|||||||
inStream->Read(emoteID);
|
inStream->Read(emoteID);
|
||||||
inStream->Read(targetID);
|
inStream->Read(targetID);
|
||||||
|
|
||||||
Game::logger->Log("GameMessages", "Emote (%i) (%llu)", emoteID, targetID);
|
Game::logger->LogDebug("GameMessages", "Emote (%i) (%llu)", emoteID, targetID);
|
||||||
|
|
||||||
//TODO: If targetID != 0, and we have one of the "perform emote" missions, complete them.
|
//TODO: If targetID != 0, and we have one of the "perform emote" missions, complete them.
|
||||||
|
|
||||||
if (emoteID == 0) return;
|
if (emoteID == 0) return;
|
||||||
std::string sAnimationName = "deaded"; //Default name in case we fail to get the emote
|
std::string sAnimationName = "deaded"; //Default name in case we fail to get the emote
|
||||||
|
|
||||||
MissionComponent* mission = static_cast<MissionComponent*>(entity->GetComponent(COMPONENT_TYPE_MISSION));
|
MissionComponent* missionComponent = entity->GetComponent<MissionComponent>();
|
||||||
if (mission) {
|
if (!missionComponent) return;
|
||||||
mission->Progress(MissionTaskType::MISSION_TASK_TYPE_EMOTE, emoteID, targetID);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (targetID != LWOOBJID_EMPTY) {
|
if (targetID != LWOOBJID_EMPTY) {
|
||||||
auto* targetEntity = EntityManager::Instance()->GetEntity(targetID);
|
auto* targetEntity = EntityManager::Instance()->GetEntity(targetID);
|
||||||
|
|
||||||
Game::logger->Log("GameMessages", "Emote target found (%d)", targetEntity != nullptr);
|
Game::logger->LogDebug("GameMessages", "Emote target found (%d)", targetEntity != nullptr);
|
||||||
|
|
||||||
if (targetEntity != nullptr) {
|
if (targetEntity != nullptr) {
|
||||||
targetEntity->OnEmoteReceived(emoteID, entity);
|
targetEntity->OnEmoteReceived(emoteID, entity);
|
||||||
|
missionComponent->Progress(MissionTaskType::MISSION_TASK_TYPE_EMOTE, emoteID, targetID);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Game::logger->LogDebug("GameMessages", "Target ID is empty, using backup");
|
||||||
const auto scriptedEntities = EntityManager::Instance()->GetEntitiesByComponent(COMPONENT_TYPE_SCRIPT);
|
const auto scriptedEntities = EntityManager::Instance()->GetEntitiesByComponent(COMPONENT_TYPE_SCRIPT);
|
||||||
|
|
||||||
const auto& referencePoint = entity->GetPosition();
|
const auto& referencePoint = entity->GetPosition();
|
||||||
@ -4923,6 +4987,7 @@ void GameMessages::HandlePlayEmote(RakNet::BitStream* inStream, Entity* entity)
|
|||||||
if (Vector3::DistanceSquared(scripted->GetPosition(), referencePoint) > 5.0f * 5.0f) continue;
|
if (Vector3::DistanceSquared(scripted->GetPosition(), referencePoint) > 5.0f * 5.0f) continue;
|
||||||
|
|
||||||
scripted->OnEmoteReceived(emoteID, entity);
|
scripted->OnEmoteReceived(emoteID, entity);
|
||||||
|
missionComponent->Progress(MissionTaskType::MISSION_TASK_TYPE_EMOTE, emoteID, scripted->GetObjectID());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -121,6 +121,7 @@ namespace GameMessages {
|
|||||||
void SendMatchResponse(Entity* entity, const SystemAddress& sysAddr, int response);
|
void SendMatchResponse(Entity* entity, const SystemAddress& sysAddr, int response);
|
||||||
void SendMatchUpdate(Entity* entity, const SystemAddress& sysAddr, std::string data, int type);
|
void SendMatchUpdate(Entity* entity, const SystemAddress& sysAddr, std::string data, int type);
|
||||||
|
|
||||||
|
void HandleUnUseModel(RakNet::BitStream* inStream, Entity* entity, const SystemAddress& sysAddr);
|
||||||
void SendStartCelebrationEffect(Entity* entity, const SystemAddress& sysAddr, int celebrationID);
|
void SendStartCelebrationEffect(Entity* entity, const SystemAddress& sysAddr, int celebrationID);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -197,6 +198,16 @@ namespace GameMessages {
|
|||||||
|
|
||||||
void SendDownloadPropertyData(LWOOBJID objectId, const PropertyDataMessage& data, const SystemAddress& sysAddr);
|
void SendDownloadPropertyData(LWOOBJID objectId, const PropertyDataMessage& data, const SystemAddress& sysAddr);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Send an updated item id to the client when they load a blueprint in brick build mode
|
||||||
|
*
|
||||||
|
* @param sysAddr SystemAddress to respond to
|
||||||
|
* @param oldItemId The item ID that was requested to be loaded
|
||||||
|
* @param newItemId The new item ID of the loaded item
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
void SendBlueprintLoadItemResponse(const SystemAddress& sysAddr, bool success, LWOOBJID oldItemId, LWOOBJID newItemId);
|
||||||
|
|
||||||
void SendPropertyRentalResponse(LWOOBJID objectId, LWOCLONEID cloneId, uint32_t code, LWOOBJID propertyId, int64_t rentDue, const SystemAddress& sysAddr);
|
void SendPropertyRentalResponse(LWOOBJID objectId, LWOCLONEID cloneId, uint32_t code, LWOOBJID propertyId, int64_t rentDue, const SystemAddress& sysAddr);
|
||||||
|
|
||||||
void SendLockNodeRotation(Entity* entity, std::string nodeName);
|
void SendLockNodeRotation(Entity* entity, std::string nodeName);
|
||||||
@ -566,6 +577,8 @@ namespace GameMessages {
|
|||||||
|
|
||||||
void HandleReportBug(RakNet::BitStream* inStream, Entity* entity);
|
void HandleReportBug(RakNet::BitStream* inStream, Entity* entity);
|
||||||
|
|
||||||
|
void SendRemoveBuff(Entity* entity, bool fromUnEquip, bool removeImmunity, uint32_t buffId);
|
||||||
|
|
||||||
/* Message to synchronize a skill cast */
|
/* Message to synchronize a skill cast */
|
||||||
class EchoSyncSkill {
|
class EchoSyncSkill {
|
||||||
static const GAME_MSG MsgID = GAME_MSG_ECHO_SYNC_SKILL;
|
static const GAME_MSG MsgID = GAME_MSG_ECHO_SYNC_SKILL;
|
||||||
|
@ -95,7 +95,7 @@ public:
|
|||||||
* @param lot the lot to find items for
|
* @param lot the lot to find items for
|
||||||
* @param ignoreEquipped ignores equipped items
|
* @param ignoreEquipped ignores equipped items
|
||||||
* @param ignoreBound ignores bound items
|
* @param ignoreBound ignores bound items
|
||||||
* @return item in the inventory for the provided LOT
|
* @return item with the lowest stack count in the inventory for the provided LOT
|
||||||
*/
|
*/
|
||||||
Item* FindItemByLot(LOT lot, bool ignoreEquipped = false, bool ignoreBound = false) const;
|
Item* FindItemByLot(LOT lot, bool ignoreEquipped = false, bool ignoreBound = false) const;
|
||||||
|
|
||||||
|
@ -253,7 +253,7 @@ bool Item::Consume() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Game::logger->Log("Item", "Consumed (%i) / (%llu) with (%d)", lot, id, success);
|
Game::logger->LogDebug("Item", "Consumed LOT (%i) itemID (%llu). Success=(%d)", lot, id, success);
|
||||||
|
|
||||||
GameMessages::SendUseItemResult(inventory->GetComponent()->GetParent(), lot, success);
|
GameMessages::SendUseItemResult(inventory->GetComponent()->GetParent(), lot, success);
|
||||||
|
|
||||||
@ -265,14 +265,34 @@ bool Item::Consume() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Item::UseNonEquip() {
|
void Item::UseNonEquip() {
|
||||||
|
LOT thisLot = this->GetLot();
|
||||||
|
if (!GetInventory()) {
|
||||||
|
Game::logger->LogDebug("Item", "item %i has no inventory??", this->GetLot());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto* playerInventoryComponent = GetInventory()->GetComponent();
|
||||||
|
if (!playerInventoryComponent) {
|
||||||
|
Game::logger->LogDebug("Item", "no inventory component attached to item id %llu lot %i", this->GetId(), this->GetLot());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto* playerEntity = playerInventoryComponent->GetParent();
|
||||||
|
if (!playerEntity) {
|
||||||
|
Game::logger->LogDebug("Item", "no player entity attached to inventory? item id is %llu", this->GetId());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const auto type = static_cast<eItemType>(info->itemType);
|
const auto type = static_cast<eItemType>(info->itemType);
|
||||||
if (type == eItemType::ITEM_TYPE_MOUNT) {
|
if (type == eItemType::ITEM_TYPE_MOUNT) {
|
||||||
GetInventory()->GetComponent()->HandlePossession(this);
|
playerInventoryComponent->HandlePossession(this);
|
||||||
|
// TODO Check if mounts are allowed to be spawned
|
||||||
} else if (type == eItemType::ITEM_TYPE_PET_INVENTORY_ITEM && subKey != LWOOBJID_EMPTY) {
|
} else if (type == eItemType::ITEM_TYPE_PET_INVENTORY_ITEM && subKey != LWOOBJID_EMPTY) {
|
||||||
const auto& databasePet = GetInventory()->GetComponent()->GetDatabasePet(subKey);
|
const auto& databasePet = playerInventoryComponent->GetDatabasePet(subKey);
|
||||||
if (databasePet.lot != LOT_NULL) {
|
if (databasePet.lot != LOT_NULL) {
|
||||||
GetInventory()->GetComponent()->SpawnPet(this);
|
playerInventoryComponent->SpawnPet(this);
|
||||||
}
|
}
|
||||||
|
// This precondition response is taken care of in SpawnPet().
|
||||||
} else {
|
} else {
|
||||||
auto* compRegistryTable = CDClientManager::Instance()->GetTable<CDComponentsRegistryTable>("ComponentsRegistry");
|
auto* compRegistryTable = CDClientManager::Instance()->GetTable<CDComponentsRegistryTable>("ComponentsRegistry");
|
||||||
const auto packageComponentId = compRegistryTable->GetByIDAndType(lot, COMPONENT_TYPE_PACKAGE);
|
const auto packageComponentId = compRegistryTable->GetByIDAndType(lot, COMPONENT_TYPE_PACKAGE);
|
||||||
@ -282,18 +302,41 @@ void Item::UseNonEquip() {
|
|||||||
auto* packCompTable = CDClientManager::Instance()->GetTable<CDPackageComponentTable>("PackageComponent");
|
auto* packCompTable = CDClientManager::Instance()->GetTable<CDPackageComponentTable>("PackageComponent");
|
||||||
auto packages = packCompTable->Query([=](const CDPackageComponent entry) {return entry.id == static_cast<uint32_t>(packageComponentId); });
|
auto packages = packCompTable->Query([=](const CDPackageComponent entry) {return entry.id == static_cast<uint32_t>(packageComponentId); });
|
||||||
|
|
||||||
const auto success = !packages.empty();
|
auto success = !packages.empty();
|
||||||
if (success) {
|
if (success) {
|
||||||
auto* entityParent = inventory->GetComponent()->GetParent();
|
if (this->GetPreconditionExpression()->Check(playerInventoryComponent->GetParent())) {
|
||||||
for (auto& pack : packages) {
|
auto* entityParent = playerInventoryComponent->GetParent();
|
||||||
std::unordered_map<LOT, int32_t> result{};
|
// Roll the loot for all the packages then see if it all fits. If it fits, give it to the player, otherwise don't.
|
||||||
result = LootGenerator::Instance().RollLootMatrix(entityParent, pack.LootMatrixIndex);
|
std::unordered_map<LOT, int32_t> rolledLoot{};
|
||||||
if (!inventory->GetComponent()->HasSpaceForLoot(result)) {
|
for (auto& pack : packages) {
|
||||||
|
auto thisPackage = LootGenerator::Instance().RollLootMatrix(entityParent, pack.LootMatrixIndex);
|
||||||
|
for (auto& loot : thisPackage) {
|
||||||
|
// If we already rolled this lot, add it to the existing one, otherwise create a new entry.
|
||||||
|
auto existingLoot = rolledLoot.find(loot.first);
|
||||||
|
if (existingLoot == rolledLoot.end()) {
|
||||||
|
rolledLoot.insert(loot);
|
||||||
|
} else {
|
||||||
|
existingLoot->second += loot.second;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
LootGenerator::Instance().GiveLoot(inventory->GetComponent()->GetParent(), result, eLootSourceType::LOOT_SOURCE_CONSUMPTION);
|
if (playerInventoryComponent->HasSpaceForLoot(rolledLoot)) {
|
||||||
|
LootGenerator::Instance().GiveLoot(playerInventoryComponent->GetParent(), rolledLoot, eLootSourceType::LOOT_SOURCE_CONSUMPTION);
|
||||||
|
playerInventoryComponent->RemoveItem(lot, 1);
|
||||||
|
} else {
|
||||||
|
success = false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
GameMessages::SendUseItemRequirementsResponse(
|
||||||
|
playerInventoryComponent->GetParent()->GetObjectID(),
|
||||||
|
playerInventoryComponent->GetParent()->GetSystemAddress(),
|
||||||
|
UseItemResponse::FailedPrecondition
|
||||||
|
);
|
||||||
|
success = false;
|
||||||
}
|
}
|
||||||
inventory->GetComponent()->RemoveItem(lot, 1);
|
|
||||||
}
|
}
|
||||||
|
Game::logger->LogDebug("Item", "Player %llu %s used item %i", playerEntity->GetObjectID(), success ? "successfully" : "unsuccessfully", thisLot);
|
||||||
|
GameMessages::SendUseItemResult(playerInventoryComponent->GetParent(), thisLot, success);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
#include "Mail.h"
|
#include "Mail.h"
|
||||||
#include "MissionComponent.h"
|
#include "MissionComponent.h"
|
||||||
#include "RacingTaskParam.h"
|
#include "RacingTaskParam.h"
|
||||||
#include "dLocale.h"
|
|
||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
#include "dServer.h"
|
#include "dServer.h"
|
||||||
#include "dZoneManager.h"
|
#include "dZoneManager.h"
|
||||||
@ -335,13 +334,10 @@ void Mission::Complete(const bool yieldRewards) {
|
|||||||
for (const auto& email : missionEmails) {
|
for (const auto& email : missionEmails) {
|
||||||
const auto missionEmailBase = "MissionEmail_" + std::to_string(email.ID) + "_";
|
const auto missionEmailBase = "MissionEmail_" + std::to_string(email.ID) + "_";
|
||||||
|
|
||||||
const auto senderLocale = missionEmailBase + "senderName";
|
if (email.messageType == 1) {
|
||||||
const auto announceLocale = missionEmailBase + "announceText";
|
const auto subject = "%[" + missionEmailBase + "subjectText]";
|
||||||
|
const auto body = "%[" + missionEmailBase + "bodyText]";
|
||||||
if (email.messageType == 1 && Game::locale->HasPhrase(senderLocale)) {
|
const auto sender = "%[" + missionEmailBase + "senderName]";
|
||||||
const auto subject = dLocale::GetTemplate(missionEmailBase + "subjectText");
|
|
||||||
const auto body = dLocale::GetTemplate(missionEmailBase + "bodyText");
|
|
||||||
const auto sender = dLocale::GetTemplate(senderLocale);
|
|
||||||
|
|
||||||
Mail::SendMail(LWOOBJID_EMPTY, sender, GetAssociate(), subject, body, email.attachmentLOT, 1);
|
Mail::SendMail(LWOOBJID_EMPTY, sender, GetAssociate(), subject, body, email.attachmentLOT, 1);
|
||||||
}
|
}
|
||||||
|
20
dGame/dPropertyBehaviors/BehaviorStates.h
Normal file
20
dGame/dPropertyBehaviors/BehaviorStates.h
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef __BEHAVIORSTATES__H__
|
||||||
|
#define __BEHAVIORSTATES__H__
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
#include "dCommonVars.h"
|
||||||
|
|
||||||
|
enum States : BEHAVIORSTATE {
|
||||||
|
HOME_STATE = 0, //!< The HOME behavior state
|
||||||
|
CIRCLE_STATE, //!< The CIRCLE behavior state
|
||||||
|
SQUARE_STATE, //!< The SQUARE behavior state
|
||||||
|
DIAMOND_STATE, //!< The DIAMOND behavior state
|
||||||
|
TRIANGLE_STATE, //!< The TRIANGLE behavior state
|
||||||
|
STAR_STATE //!< The STAR behavior state
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //!__BEHAVIORSTATES__H__
|
@ -5,50 +5,67 @@
|
|||||||
#include "Game.h"
|
#include "Game.h"
|
||||||
#include "GameMessages.h"
|
#include "GameMessages.h"
|
||||||
#include "ModelComponent.h"
|
#include "ModelComponent.h"
|
||||||
|
#include "../../dWorldServer/ObjectIDManager.h"
|
||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
|
|
||||||
void ControlBehaviors::ProcessCommand(Entity* modelEntity, const SystemAddress& sysAddr, AMFArrayValue* arguments, std::string command, Entity* modelOwner) {
|
uint32_t GetBehaviorIDFromArgument(AMFArrayValue* arguments, const std::string& key = "BehaviorID") {
|
||||||
if (!modelEntity || !modelOwner || !arguments) return;
|
auto* behaviorIDValue = arguments->FindValue<AMFStringValue>(key);
|
||||||
|
uint32_t behaviorID = -1;
|
||||||
|
|
||||||
if (command == "sendBehaviorListToClient")
|
if (behaviorIDValue) {
|
||||||
SendBehaviorListToClient(modelEntity, sysAddr, modelOwner);
|
behaviorID = std::stoul(behaviorIDValue->GetStringValue());
|
||||||
else if (command == "modelTypeChanged")
|
} else if (arguments->FindValue<AMFUndefinedValue>(key) == nullptr){
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
throw std::invalid_argument("Unable to find behavior ID from argument \"" + key + "\"");
|
||||||
else if (command == "toggleExecutionUpdates")
|
}
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "addStrip")
|
return behaviorID;
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "removeStrip")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "mergeStrips")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "splitStrip")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "updateStripUI")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "addAction")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "migrateActions")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "rearrangeStrip")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "add")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "removeActions")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "rename")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "sendBehaviorBlocksToClient")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "moveToInventory")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else if (command == "updateAction")
|
|
||||||
Game::logger->Log("ControlBehaviors", "Got command %s but is not implemented!", command.c_str());
|
|
||||||
else
|
|
||||||
Game::logger->Log("ControlBehaviors", "Unknown behavior command (%s)\n", command.c_str());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ControlBehaviors::SendBehaviorListToClient(
|
BEHAVIORSTATE GetBehaviorStateFromArgument(AMFArrayValue* arguments, const std::string& key = "stateID") {
|
||||||
|
auto* stateIDValue = arguments->FindValue<AMFDoubleValue>(key);
|
||||||
|
if (!stateIDValue) throw std::invalid_argument("Unable to find behavior state from argument \"" + key + "\"");
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = static_cast<BEHAVIORSTATE>(stateIDValue->GetDoubleValue());
|
||||||
|
|
||||||
|
return stateID;
|
||||||
|
}
|
||||||
|
|
||||||
|
STRIPID GetStripIDFromArgument(AMFArrayValue* arguments, const std::string& key = "stripID") {
|
||||||
|
auto* stripIDValue = arguments->FindValue<AMFDoubleValue>(key);
|
||||||
|
if (!stripIDValue) throw std::invalid_argument("Unable to find strip ID from argument \"" + key + "\"");
|
||||||
|
|
||||||
|
STRIPID stripID = static_cast<STRIPID>(stripIDValue->GetDoubleValue());
|
||||||
|
|
||||||
|
return stripID;
|
||||||
|
}
|
||||||
|
|
||||||
|
void RequestUpdatedID(int32_t behaviorID, ModelComponent* modelComponent, Entity* modelOwner, const SystemAddress& sysAddr) {
|
||||||
|
// auto behavior = modelComponent->FindBehavior(behaviorID);
|
||||||
|
// if (behavior->GetBehaviorID() == -1 || behavior->GetShouldSetNewID()) {
|
||||||
|
// ObjectIDManager::Instance()->RequestPersistentID(
|
||||||
|
// [behaviorID, behavior, modelComponent, modelOwner, sysAddr](uint32_t persistentId) {
|
||||||
|
// behavior->SetShouldGetNewID(false);
|
||||||
|
// behavior->SetIsTemplated(false);
|
||||||
|
// behavior->SetBehaviorID(persistentId);
|
||||||
|
|
||||||
|
// // This updates the behavior ID of the behavior should this be a new behavior
|
||||||
|
// AMFArrayValue args;
|
||||||
|
|
||||||
|
// AMFStringValue* behaviorIDString = new AMFStringValue();
|
||||||
|
// behaviorIDString->SetStringValue(std::to_string(persistentId));
|
||||||
|
// args.InsertValue("behaviorID", behaviorIDString);
|
||||||
|
|
||||||
|
// AMFStringValue* objectIDAsString = new AMFStringValue();
|
||||||
|
// objectIDAsString->SetStringValue(std::to_string(modelComponent->GetParent()->GetObjectID()));
|
||||||
|
// args.InsertValue("objectID", objectIDAsString);
|
||||||
|
|
||||||
|
// GameMessages::SendUIMessageServerToSingleClient(modelOwner, sysAddr, "UpdateBehaviorID", &args);
|
||||||
|
// ControlBehaviors::SendBehaviorListToClient(modelComponent->GetParent(), sysAddr, modelOwner);
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
void SendBehaviorListToClient(
|
||||||
Entity* modelEntity,
|
Entity* modelEntity,
|
||||||
const SystemAddress& sysAddr,
|
const SystemAddress& sysAddr,
|
||||||
Entity* modelOwner
|
Entity* modelOwner
|
||||||
@ -57,7 +74,7 @@ void ControlBehaviors::SendBehaviorListToClient(
|
|||||||
|
|
||||||
if (!modelComponent) return;
|
if (!modelComponent) return;
|
||||||
|
|
||||||
AMFArrayValue behaviorsToSerialize;
|
AMFArrayValue behaviorsToSerialize;
|
||||||
|
|
||||||
AMFArrayValue* behaviors = new AMFArrayValue(); // Empty for now
|
AMFArrayValue* behaviors = new AMFArrayValue(); // Empty for now
|
||||||
|
|
||||||
@ -79,3 +96,506 @@ void ControlBehaviors::SendBehaviorListToClient(
|
|||||||
behaviorsToSerialize.InsertValue("objectID", amfStringValueForObjectID);
|
behaviorsToSerialize.InsertValue("objectID", amfStringValueForObjectID);
|
||||||
GameMessages::SendUIMessageServerToSingleClient(modelOwner, sysAddr, "UpdateBehaviorList", &behaviorsToSerialize);
|
GameMessages::SendUIMessageServerToSingleClient(modelOwner, sysAddr, "UpdateBehaviorList", &behaviorsToSerialize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ModelTypeChanged(AMFArrayValue* arguments, ModelComponent* ModelComponent) {
|
||||||
|
auto* modelTypeAmf = arguments->FindValue<AMFDoubleValue>("ModelType");
|
||||||
|
if (!modelTypeAmf) return;
|
||||||
|
|
||||||
|
uint32_t modelType = static_cast<uint32_t>(modelTypeAmf->GetDoubleValue());
|
||||||
|
|
||||||
|
//TODO Update the model type here
|
||||||
|
}
|
||||||
|
|
||||||
|
void ToggleExecutionUpdates() {
|
||||||
|
//TODO do something with this info
|
||||||
|
}
|
||||||
|
|
||||||
|
void AddStrip(AMFArrayValue* arguments) {
|
||||||
|
auto* strip = arguments->FindValue<AMFArrayValue>("strip");
|
||||||
|
if (!strip) return;
|
||||||
|
|
||||||
|
auto* actions = strip->FindValue<AMFArrayValue>("actions");
|
||||||
|
if (!actions) return;
|
||||||
|
|
||||||
|
auto* uiArray = arguments->FindValue<AMFArrayValue>("ui");
|
||||||
|
if (!uiArray) return;
|
||||||
|
|
||||||
|
auto* xPositionValue = uiArray->FindValue<AMFDoubleValue>("x");
|
||||||
|
if (!xPositionValue) return;
|
||||||
|
|
||||||
|
double xPosition = xPositionValue->GetDoubleValue();
|
||||||
|
|
||||||
|
auto* yPositionValue = uiArray->FindValue<AMFDoubleValue>("y");
|
||||||
|
if (!yPositionValue) return;
|
||||||
|
|
||||||
|
double yPosition = yPositionValue->GetDoubleValue();
|
||||||
|
|
||||||
|
STRIPID stripID = GetStripIDFromArgument(arguments);
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = GetBehaviorStateFromArgument(arguments);
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
std::string type = "";
|
||||||
|
std::string valueParameterName = "";
|
||||||
|
std::string valueParameterString = "";
|
||||||
|
double valueParameterDouble = 0.0;
|
||||||
|
for (uint32_t position = 0; position < actions->GetDenseValueSize(); position++) {
|
||||||
|
auto* actionAsArray = actions->GetValueAt<AMFArrayValue>(position);
|
||||||
|
if (!actionAsArray) continue;
|
||||||
|
|
||||||
|
for (auto& typeValueMap : actionAsArray->GetAssociativeMap()) {
|
||||||
|
if (typeValueMap.first == "Type") {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFString) continue;
|
||||||
|
|
||||||
|
type = static_cast<AMFStringValue*>(typeValueMap.second)->GetStringValue();
|
||||||
|
} else {
|
||||||
|
valueParameterName = typeValueMap.first;
|
||||||
|
// Message is the only known string parameter
|
||||||
|
if (valueParameterName == "Message") {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFString) continue;
|
||||||
|
valueParameterString = static_cast<AMFStringValue*>(typeValueMap.second)->GetStringValue();
|
||||||
|
} else {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFDouble) continue;
|
||||||
|
valueParameterDouble = static_cast<AMFDoubleValue*>(typeValueMap.second)->GetDoubleValue();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// modelComponent->AddStrip(stateID, stripID, type, behaviorID, valueParameterName, valueParameterString, valueParameterDouble, "", xPosition, yPosition);
|
||||||
|
type.clear();
|
||||||
|
valueParameterName.clear();
|
||||||
|
valueParameterString.clear();
|
||||||
|
valueParameterDouble = 0.0;
|
||||||
|
}
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void RemoveStrip(AMFArrayValue* arguments) {
|
||||||
|
STRIPID stripID = GetStripIDFromArgument(arguments);
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = GetBehaviorStateFromArgument(arguments);
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->RemoveStrip(stateID, stripID, behaviorID);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MergeStrips(AMFArrayValue* arguments) {
|
||||||
|
STRIPID srcStripID = GetStripIDFromArgument(arguments, "srcStripID");
|
||||||
|
|
||||||
|
BEHAVIORSTATE dstStateID = GetBehaviorStateFromArgument(arguments, "dstStateID");
|
||||||
|
|
||||||
|
BEHAVIORSTATE srcStateID = GetBehaviorStateFromArgument(arguments, "srcStateID");
|
||||||
|
|
||||||
|
auto* dstActionIndexValue = arguments->FindValue<AMFDoubleValue>("dstActionIndex");
|
||||||
|
if (!dstActionIndexValue) return;
|
||||||
|
|
||||||
|
uint32_t dstActionIndex = static_cast<uint32_t>(dstActionIndexValue->GetDoubleValue());
|
||||||
|
|
||||||
|
STRIPID dstStripID = GetStripIDFromArgument(arguments, "dstStripID");
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->MergeStrips(srcStripID, dstStripID, srcStateID, dstStateID, behaviorID, dstActionIndex);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void SplitStrip(AMFArrayValue* arguments) {
|
||||||
|
auto* srcActionIndexValue = arguments->FindValue<AMFDoubleValue>("srcActionIndex");
|
||||||
|
if (!srcActionIndexValue) return;
|
||||||
|
|
||||||
|
uint32_t srcActionIndex = static_cast<uint32_t>(srcActionIndexValue->GetDoubleValue());
|
||||||
|
|
||||||
|
STRIPID srcStripID = GetStripIDFromArgument(arguments, "srcStripID");
|
||||||
|
|
||||||
|
BEHAVIORSTATE srcStateID = GetBehaviorStateFromArgument(arguments, "srcStateID");
|
||||||
|
|
||||||
|
STRIPID dstStripID = GetStripIDFromArgument(arguments, "dstStripID");
|
||||||
|
|
||||||
|
BEHAVIORSTATE dstStateID = GetBehaviorStateFromArgument(arguments, "dstStateID");
|
||||||
|
|
||||||
|
auto* dstStripUIArray = arguments->FindValue<AMFArrayValue>("dstStripUI");
|
||||||
|
if (!dstStripUIArray) return;
|
||||||
|
|
||||||
|
auto* xPositionValue = dstStripUIArray->FindValue<AMFDoubleValue>("x");
|
||||||
|
auto* yPositionValue = dstStripUIArray->FindValue<AMFDoubleValue>("y");
|
||||||
|
if (!xPositionValue || !yPositionValue) return;
|
||||||
|
|
||||||
|
// x and y position 15 are just where the game puts the strip by default if none is given.
|
||||||
|
double yPosition = yPositionValue->GetDoubleValue();
|
||||||
|
double xPosition = xPositionValue->GetDoubleValue();
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->SplitStrip(srcActionIndex, srcStripID, srcStateID, dstStripID, dstStateID, behaviorID, yPosition, xPosition);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UpdateStripUI(AMFArrayValue* arguments) {
|
||||||
|
auto* uiArray = arguments->FindValue<AMFArrayValue>("ui");
|
||||||
|
if (!uiArray) return;
|
||||||
|
|
||||||
|
auto* xPositionValue = uiArray->FindValue<AMFDoubleValue>("x");
|
||||||
|
auto* yPositionValue = uiArray->FindValue<AMFDoubleValue>("y");
|
||||||
|
if (!xPositionValue || !yPositionValue) return;
|
||||||
|
|
||||||
|
double yPosition = yPositionValue->GetDoubleValue();
|
||||||
|
double xPosition = xPositionValue->GetDoubleValue();
|
||||||
|
|
||||||
|
STRIPID stripID = GetStripIDFromArgument(arguments);
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = GetBehaviorStateFromArgument(arguments);
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->UpdateUIOfStrip(stateID, stripID, xPosition, yPosition, behaviorID);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void AddAction(AMFArrayValue* arguments) {
|
||||||
|
auto* actionIndexAmf = arguments->FindValue<AMFDoubleValue>("actionIndex");
|
||||||
|
if (!actionIndexAmf) return;
|
||||||
|
|
||||||
|
uint32_t actionIndex = static_cast<uint32_t>(actionIndexAmf->GetDoubleValue());
|
||||||
|
|
||||||
|
STRIPID stripID = GetStripIDFromArgument(arguments);
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = GetBehaviorStateFromArgument(arguments);
|
||||||
|
|
||||||
|
std::string type = "";
|
||||||
|
std::string valueParameterName = "";
|
||||||
|
std::string valueParameterString = "";
|
||||||
|
double valueParameterDouble = 0.0;
|
||||||
|
auto* action = arguments->FindValue<AMFArrayValue>("action");
|
||||||
|
if (!action) return;
|
||||||
|
|
||||||
|
for (auto& typeValueMap : action->GetAssociativeMap()) {
|
||||||
|
if (typeValueMap.first == "Type") {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFString) continue;
|
||||||
|
type = static_cast<AMFStringValue*>(typeValueMap.second)->GetStringValue();
|
||||||
|
} else {
|
||||||
|
valueParameterName = typeValueMap.first;
|
||||||
|
// Message is the only known string parameter
|
||||||
|
if (valueParameterName == "Message") {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFString) continue;
|
||||||
|
valueParameterString = static_cast<AMFStringValue*>(typeValueMap.second)->GetStringValue();
|
||||||
|
} else {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFDouble) continue;
|
||||||
|
valueParameterDouble = static_cast<AMFDoubleValue*>(typeValueMap.second)->GetDoubleValue();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->AddAction(stateID, stripID, type, valueParameterName, valueParameterString, valueParameterDouble, "", actionIndex, behaviorID);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MigrateActions(AMFArrayValue* arguments) {
|
||||||
|
auto* srcActionIndexAmf = arguments->FindValue<AMFDoubleValue>("srcActionIndex");
|
||||||
|
if (!srcActionIndexAmf) return;
|
||||||
|
|
||||||
|
uint32_t srcActionIndex = static_cast<uint32_t>(srcActionIndexAmf->GetDoubleValue());
|
||||||
|
|
||||||
|
STRIPID srcStripID = GetStripIDFromArgument(arguments, "srcStripID");
|
||||||
|
|
||||||
|
BEHAVIORSTATE srcStateID = GetBehaviorStateFromArgument(arguments, "srcStateID");
|
||||||
|
|
||||||
|
auto* dstActionIndexAmf = arguments->FindValue<AMFDoubleValue>("dstActionIndex");
|
||||||
|
if (!dstActionIndexAmf) return;
|
||||||
|
|
||||||
|
uint32_t dstActionIndex = static_cast<uint32_t>(dstActionIndexAmf->GetDoubleValue());
|
||||||
|
|
||||||
|
STRIPID dstStripID = GetStripIDFromArgument(arguments, "dstStripID");
|
||||||
|
|
||||||
|
BEHAVIORSTATE dstStateID = GetBehaviorStateFromArgument(arguments, "dstStateID");
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->MigrateActions(srcActionIndex, srcStripID, srcStateID, dstActionIndex, dstStripID, dstStateID, behaviorID);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void RearrangeStrip(AMFArrayValue* arguments) {
|
||||||
|
auto* srcActionIndexValue = arguments->FindValue<AMFDoubleValue>("srcActionIndex");
|
||||||
|
uint32_t srcActionIndex = static_cast<uint32_t>(srcActionIndexValue->GetDoubleValue());
|
||||||
|
|
||||||
|
uint32_t stripID = GetStripIDFromArgument(arguments);
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
auto* dstActionIndexValue = arguments->FindValue<AMFDoubleValue>("dstActionIndex");
|
||||||
|
uint32_t dstActionIndex = static_cast<uint32_t>(dstActionIndexValue->GetDoubleValue());
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = GetBehaviorStateFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->RearrangeStrip(stateID, stripID, srcActionIndex, dstActionIndex, behaviorID);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Add(AMFArrayValue* arguments) {
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
uint32_t behaviorIndex = 0;
|
||||||
|
auto* behaviorIndexAmf = arguments->FindValue<AMFDoubleValue>("BehaviorIndex");
|
||||||
|
|
||||||
|
if (!behaviorIndexAmf) return;
|
||||||
|
|
||||||
|
behaviorIndex = static_cast<uint32_t>(behaviorIndexAmf->GetDoubleValue());
|
||||||
|
|
||||||
|
// modelComponent->AddBehavior(behaviorID, behaviorIndex, modelOwner);
|
||||||
|
|
||||||
|
// SendBehaviorListToClient();
|
||||||
|
}
|
||||||
|
|
||||||
|
void RemoveActions(AMFArrayValue* arguments) {
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
auto* actionIndexAmf = arguments->FindValue<AMFDoubleValue>("actionIndex");
|
||||||
|
if (!actionIndexAmf) return;
|
||||||
|
|
||||||
|
uint32_t actionIndex = static_cast<uint32_t>(actionIndexAmf->GetDoubleValue());
|
||||||
|
|
||||||
|
STRIPID stripID = GetStripIDFromArgument(arguments);
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = GetBehaviorStateFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->RemoveAction(stateID, stripID, actionIndex, behaviorID);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Rename(Entity* modelEntity, const SystemAddress& sysAddr, Entity* modelOwner, AMFArrayValue* arguments) {
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
auto* nameAmf = arguments->FindValue<AMFStringValue>("Name");
|
||||||
|
if (!nameAmf) return;
|
||||||
|
|
||||||
|
auto name = nameAmf->GetStringValue();
|
||||||
|
|
||||||
|
// modelComponent->Rename(behaviorID, name);
|
||||||
|
|
||||||
|
SendBehaviorListToClient(modelEntity, sysAddr, modelOwner);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO This is also supposed to serialize the state of the behaviors in progress but those aren't implemented yet
|
||||||
|
void SendBehaviorBlocksToClient(ModelComponent* modelComponent, const SystemAddress& sysAddr, Entity* modelOwner, AMFArrayValue* arguments) {
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
// auto modelBehavior = modelComponent->FindBehavior(behaviorID);
|
||||||
|
|
||||||
|
// if (!modelBehavior) return;
|
||||||
|
|
||||||
|
// modelBehavior->VerifyStates();
|
||||||
|
|
||||||
|
// auto states = modelBehavior->GetBehaviorStates();
|
||||||
|
|
||||||
|
// // Begin serialization.
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * for each state
|
||||||
|
// * strip id
|
||||||
|
// * ui info
|
||||||
|
// * x
|
||||||
|
// * y
|
||||||
|
// * actions
|
||||||
|
// * action1
|
||||||
|
// * action2
|
||||||
|
// * ...
|
||||||
|
// * behaviorID of strip
|
||||||
|
// * objectID of strip
|
||||||
|
// */
|
||||||
|
// LWOOBJID targetObjectID = LWOOBJID_EMPTY;
|
||||||
|
// behaviorID = 0;
|
||||||
|
// AMFArrayValue behaviorInfo;
|
||||||
|
|
||||||
|
// AMFArrayValue* stateSerialize = new AMFArrayValue();
|
||||||
|
|
||||||
|
// for (auto it = states.begin(); it != states.end(); it++) {
|
||||||
|
// Game::logger->Log("PropertyBehaviors", "Begin serialization of state %i!\n", it->first);
|
||||||
|
// AMFArrayValue* state = new AMFArrayValue();
|
||||||
|
|
||||||
|
// AMFDoubleValue* stateAsDouble = new AMFDoubleValue();
|
||||||
|
// stateAsDouble->SetDoubleValue(it->first);
|
||||||
|
// state->InsertValue("id", stateAsDouble);
|
||||||
|
|
||||||
|
// AMFArrayValue* strips = new AMFArrayValue();
|
||||||
|
// auto stripsInState = it->second->GetStrips();
|
||||||
|
// for (auto strip = stripsInState.begin(); strip != stripsInState.end(); strip++) {
|
||||||
|
// Game::logger->Log("PropertyBehaviors", "Begin serialization of strip %i!\n", strip->first);
|
||||||
|
// AMFArrayValue* thisStrip = new AMFArrayValue();
|
||||||
|
|
||||||
|
// AMFDoubleValue* stripID = new AMFDoubleValue();
|
||||||
|
// stripID->SetDoubleValue(strip->first);
|
||||||
|
// thisStrip->InsertValue("id", stripID);
|
||||||
|
|
||||||
|
// AMFArrayValue* uiArray = new AMFArrayValue();
|
||||||
|
// AMFDoubleValue* yPosition = new AMFDoubleValue();
|
||||||
|
// yPosition->SetDoubleValue(strip->second->GetYPosition());
|
||||||
|
// uiArray->InsertValue("y", yPosition);
|
||||||
|
|
||||||
|
// AMFDoubleValue* xPosition = new AMFDoubleValue();
|
||||||
|
// xPosition->SetDoubleValue(strip->second->GetXPosition());
|
||||||
|
// uiArray->InsertValue("x", xPosition);
|
||||||
|
|
||||||
|
// thisStrip->InsertValue("ui", uiArray);
|
||||||
|
// targetObjectID = modelComponent->GetParent()->GetObjectID();
|
||||||
|
// behaviorID = modelBehavior->GetBehaviorID();
|
||||||
|
|
||||||
|
// AMFArrayValue* stripSerialize = new AMFArrayValue();
|
||||||
|
// for (auto behaviorAction : strip->second->GetActions()) {
|
||||||
|
// Game::logger->Log("PropertyBehaviors", "Begin serialization of action %s!\n", behaviorAction->actionName.c_str());
|
||||||
|
// AMFArrayValue* thisAction = new AMFArrayValue();
|
||||||
|
|
||||||
|
// AMFStringValue* actionName = new AMFStringValue();
|
||||||
|
// actionName->SetStringValue(behaviorAction->actionName);
|
||||||
|
// thisAction->InsertValue("Type", actionName);
|
||||||
|
|
||||||
|
// if (behaviorAction->parameterValueString != "")
|
||||||
|
// {
|
||||||
|
// AMFStringValue* valueAsString = new AMFStringValue();
|
||||||
|
// valueAsString->SetStringValue(behaviorAction->parameterValueString);
|
||||||
|
// thisAction->InsertValue(behaviorAction->parameterName, valueAsString);
|
||||||
|
// }
|
||||||
|
// else if (behaviorAction->parameterValueDouble != 0.0)
|
||||||
|
// {
|
||||||
|
// AMFDoubleValue* valueAsDouble = new AMFDoubleValue();
|
||||||
|
// valueAsDouble->SetDoubleValue(behaviorAction->parameterValueDouble);
|
||||||
|
// thisAction->InsertValue(behaviorAction->parameterName, valueAsDouble);
|
||||||
|
// }
|
||||||
|
// stripSerialize->PushBackValue(thisAction);
|
||||||
|
// }
|
||||||
|
// thisStrip->InsertValue("actions", stripSerialize);
|
||||||
|
// strips->PushBackValue(thisStrip);
|
||||||
|
// }
|
||||||
|
// state->InsertValue("strips", strips);
|
||||||
|
// stateSerialize->PushBackValue(state);
|
||||||
|
// }
|
||||||
|
// behaviorInfo.InsertValue("states", stateSerialize);
|
||||||
|
|
||||||
|
// AMFStringValue* objectidAsString = new AMFStringValue();
|
||||||
|
// objectidAsString->SetStringValue(std::to_string(targetObjectID));
|
||||||
|
// behaviorInfo.InsertValue("objectID", objectidAsString);
|
||||||
|
|
||||||
|
// AMFStringValue* behaviorIDAsString = new AMFStringValue();
|
||||||
|
// behaviorIDAsString->SetStringValue(std::to_string(behaviorID));
|
||||||
|
// behaviorInfo.InsertValue("BehaviorID", behaviorIDAsString);
|
||||||
|
|
||||||
|
// GameMessages::SendUIMessageServerToSingleClient(modelOwner, sysAddr, "UpdateBehaviorBlocks", &behaviorInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UpdateAction(AMFArrayValue* arguments) {
|
||||||
|
std::string type = "";
|
||||||
|
std::string valueParameterName = "";
|
||||||
|
std::string valueParameterString = "";
|
||||||
|
double valueParameterDouble = 0.0;
|
||||||
|
auto* actionAsArray = arguments->FindValue<AMFArrayValue>("action");
|
||||||
|
if (!actionAsArray) return;
|
||||||
|
for (auto& typeValueMap : actionAsArray->GetAssociativeMap()) {
|
||||||
|
if (typeValueMap.first == "Type") {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFString) continue;
|
||||||
|
type = static_cast<AMFStringValue*>(typeValueMap.second)->GetStringValue();
|
||||||
|
} else {
|
||||||
|
valueParameterName = typeValueMap.first;
|
||||||
|
// Message is the only known string parameter
|
||||||
|
if (valueParameterName == "Message") {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFString) continue;
|
||||||
|
valueParameterString = static_cast<AMFStringValue*>(typeValueMap.second)->GetStringValue();
|
||||||
|
} else {
|
||||||
|
if (typeValueMap.second->GetValueType() != AMFValueType::AMFDouble) continue;
|
||||||
|
valueParameterDouble = static_cast<AMFDoubleValue*>(typeValueMap.second)->GetDoubleValue();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
auto* actionIndexValue = arguments->FindValue<AMFDoubleValue>("actionIndex");
|
||||||
|
if (!actionIndexValue) return;
|
||||||
|
|
||||||
|
uint32_t actionIndex = static_cast<uint32_t>(actionIndexValue->GetDoubleValue());
|
||||||
|
|
||||||
|
STRIPID stripID = GetStripIDFromArgument(arguments);
|
||||||
|
|
||||||
|
BEHAVIORSTATE stateID = GetBehaviorStateFromArgument(arguments);
|
||||||
|
|
||||||
|
// modelComponent->UpdateAction(stateID, stripID, type, valueParameterName, valueParameterString, valueParameterDouble, "", actionIndex, behaviorID);
|
||||||
|
|
||||||
|
// RequestUpdatedID(behaviorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MoveToInventory(ModelComponent* modelComponent, const SystemAddress& sysAddr, Entity* modelOwner, AMFArrayValue* arguments) {
|
||||||
|
// This closes the UI menu should it be open while the player is removing behaviors
|
||||||
|
AMFArrayValue args;
|
||||||
|
|
||||||
|
AMFFalseValue* stateToPop = new AMFFalseValue();
|
||||||
|
args.InsertValue("visible", stateToPop);
|
||||||
|
|
||||||
|
GameMessages::SendUIMessageServerToSingleClient(modelOwner, modelOwner->GetParentUser()->GetSystemAddress(), "ToggleBehaviorEditor", &args);
|
||||||
|
|
||||||
|
uint32_t behaviorID = GetBehaviorIDFromArgument(arguments);
|
||||||
|
|
||||||
|
auto* behaviorIndexValue = arguments->FindValue<AMFDoubleValue>("BehaviorIndex");
|
||||||
|
if (!behaviorIndexValue) return;
|
||||||
|
|
||||||
|
uint32_t behaviorIndex = static_cast<uint32_t>(behaviorIndexValue->GetDoubleValue());
|
||||||
|
|
||||||
|
// modelComponent->MoveBehaviorToInventory(behaviorID, behaviorIndex, modelOwner);
|
||||||
|
|
||||||
|
SendBehaviorListToClient(modelComponent->GetParent(), sysAddr, modelOwner);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ControlBehaviors::ProcessCommand(Entity* modelEntity, const SystemAddress& sysAddr, AMFArrayValue* arguments, std::string command, Entity* modelOwner) {
|
||||||
|
if (!modelEntity || !modelOwner || !arguments) return;
|
||||||
|
auto* modelComponent = modelEntity->GetComponent<ModelComponent>();
|
||||||
|
|
||||||
|
if (!modelComponent) return;
|
||||||
|
|
||||||
|
if (command == "sendBehaviorListToClient")
|
||||||
|
SendBehaviorListToClient(modelEntity, sysAddr, modelOwner);
|
||||||
|
else if (command == "modelTypeChanged")
|
||||||
|
ModelTypeChanged(arguments, modelComponent);
|
||||||
|
else if (command == "toggleExecutionUpdates")
|
||||||
|
ToggleExecutionUpdates();
|
||||||
|
else if (command == "addStrip")
|
||||||
|
AddStrip(arguments);
|
||||||
|
else if (command == "removeStrip")
|
||||||
|
RemoveStrip(arguments);
|
||||||
|
else if (command == "mergeStrips")
|
||||||
|
MergeStrips(arguments);
|
||||||
|
else if (command == "splitStrip")
|
||||||
|
SplitStrip(arguments);
|
||||||
|
else if (command == "updateStripUI")
|
||||||
|
UpdateStripUI(arguments);
|
||||||
|
else if (command == "addAction")
|
||||||
|
AddAction(arguments);
|
||||||
|
else if (command == "migrateActions")
|
||||||
|
MigrateActions(arguments);
|
||||||
|
else if (command == "rearrangeStrip")
|
||||||
|
RearrangeStrip(arguments);
|
||||||
|
else if (command == "add")
|
||||||
|
Add(arguments);
|
||||||
|
else if (command == "removeActions")
|
||||||
|
RemoveActions(arguments);
|
||||||
|
else if (command == "rename")
|
||||||
|
Rename(modelEntity, sysAddr, modelOwner, arguments);
|
||||||
|
else if (command == "sendBehaviorBlocksToClient")
|
||||||
|
SendBehaviorBlocksToClient(modelComponent, sysAddr, modelOwner, arguments);
|
||||||
|
else if (command == "moveToInventory")
|
||||||
|
MoveToInventory(modelComponent, sysAddr, modelOwner, arguments);
|
||||||
|
else if (command == "updateAction")
|
||||||
|
UpdateAction(arguments);
|
||||||
|
else
|
||||||
|
Game::logger->Log("ControlBehaviors", "Unknown behavior command (%s)\n", command.c_str());
|
||||||
|
}
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
class Entity;
|
class Entity;
|
||||||
class AMFArrayValue;
|
class AMFArrayValue;
|
||||||
|
class ModelComponent;
|
||||||
|
|
||||||
namespace ControlBehaviors {
|
namespace ControlBehaviors {
|
||||||
/**
|
/**
|
||||||
@ -21,15 +22,6 @@ namespace ControlBehaviors {
|
|||||||
* @param modelOwner The owner of the model which sent this command
|
* @param modelOwner The owner of the model which sent this command
|
||||||
*/
|
*/
|
||||||
void ProcessCommand(Entity* modelEntity, const SystemAddress& sysAddr, AMFArrayValue* arguments, std::string command, Entity* modelOwner);
|
void ProcessCommand(Entity* modelEntity, const SystemAddress& sysAddr, AMFArrayValue* arguments, std::string command, Entity* modelOwner);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Helper function to send the behavior list to the client
|
|
||||||
*
|
|
||||||
* @param modelEntity The model that sent this command
|
|
||||||
* @param sysAddr The SystemAddress to respond to
|
|
||||||
* @param modelOwner The owner of the model which sent this command
|
|
||||||
*/
|
|
||||||
void SendBehaviorListToClient(Entity* modelEntity, const SystemAddress& sysAddr, Entity* modelOwner);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //!__CONTROLBEHAVIORS__H__
|
#endif //!__CONTROLBEHAVIORS__H__
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
set(DGAME_DUTILITIES_SOURCES "BrickDatabase.cpp"
|
set(DGAME_DUTILITIES_SOURCES "BrickDatabase.cpp"
|
||||||
"dLocale.cpp"
|
|
||||||
"GameConfig.cpp"
|
"GameConfig.cpp"
|
||||||
"GUID.cpp"
|
"GUID.cpp"
|
||||||
"Loot.cpp"
|
"Loot.cpp"
|
||||||
|
@ -154,7 +154,7 @@ bool Precondition::CheckValue(Entity* player, const uint32_t value, bool evaluat
|
|||||||
case PreconditionType::MissionComplete:
|
case PreconditionType::MissionComplete:
|
||||||
mission = missionComponent->GetMission(value);
|
mission = missionComponent->GetMission(value);
|
||||||
|
|
||||||
return mission == nullptr || mission->GetMissionState() >= MissionState::MISSION_STATE_COMPLETE;
|
return mission == nullptr ? false : mission->GetMissionState() >= MissionState::MISSION_STATE_COMPLETE;
|
||||||
case PreconditionType::PetDeployed:
|
case PreconditionType::PetDeployed:
|
||||||
return false; // TODO
|
return false; // TODO
|
||||||
case PreconditionType::HasFlag:
|
case PreconditionType::HasFlag:
|
||||||
@ -277,11 +277,6 @@ bool PreconditionExpression::Check(Entity* player, bool evaluateCosts) const {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (player->GetGMLevel() >= 9) // Developers can skip this for testing
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const auto a = Preconditions::Check(player, condition, evaluateCosts);
|
const auto a = Preconditions::Check(player, condition, evaluateCosts);
|
||||||
|
|
||||||
if (!a) {
|
if (!a) {
|
||||||
|
@ -64,6 +64,8 @@
|
|||||||
#include "ScriptedActivityComponent.h"
|
#include "ScriptedActivityComponent.h"
|
||||||
#include "LevelProgressionComponent.h"
|
#include "LevelProgressionComponent.h"
|
||||||
#include "AssetManager.h"
|
#include "AssetManager.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
#include "dConfig.h"
|
||||||
|
|
||||||
void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entity* entity, const SystemAddress& sysAddr) {
|
void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entity* entity, const SystemAddress& sysAddr) {
|
||||||
std::string chatCommand;
|
std::string chatCommand;
|
||||||
@ -210,22 +212,6 @@ void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entit
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (chatCommand == "skip-ags") {
|
|
||||||
auto* missionComponent = entity->GetComponent<MissionComponent>();
|
|
||||||
|
|
||||||
if (missionComponent != nullptr && missionComponent->HasMission(479)) {
|
|
||||||
missionComponent->CompleteMission(479);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (chatCommand == "skip-sg") {
|
|
||||||
auto* missionComponent = entity->GetComponent<MissionComponent>();
|
|
||||||
|
|
||||||
if (missionComponent != nullptr && missionComponent->HasMission(229)) {
|
|
||||||
missionComponent->CompleteMission(229);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (chatCommand == "fix-stats") {
|
if (chatCommand == "fix-stats") {
|
||||||
// Reset skill component and buff component
|
// Reset skill component and buff component
|
||||||
auto* skillComponent = entity->GetComponent<SkillComponent>();
|
auto* skillComponent = entity->GetComponent<SkillComponent>();
|
||||||
@ -248,7 +234,7 @@ void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entit
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (chatCommand == "credits" || chatCommand == "info") {
|
if (chatCommand == "credits" || chatCommand == "info") {
|
||||||
const auto& customText = chatCommand == "credits" ? VanityUtilities::ParseMarkdown("./vanity/CREDITS.md") : VanityUtilities::ParseMarkdown("./vanity/INFO.md");
|
const auto& customText = chatCommand == "credits" ? VanityUtilities::ParseMarkdown((BinaryPathFinder::GetBinaryDir() / "vanity/CREDITS.md").string()) : VanityUtilities::ParseMarkdown((BinaryPathFinder::GetBinaryDir() / "vanity/INFO.md").string());
|
||||||
|
|
||||||
{
|
{
|
||||||
AMFArrayValue args;
|
AMFArrayValue args;
|
||||||
@ -1263,6 +1249,57 @@ void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entit
|
|||||||
EntityManager::Instance()->ConstructEntity(newEntity);
|
EntityManager::Instance()->ConstructEntity(newEntity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (chatCommand == "spawngroup" && entity->GetGMLevel() >= GAME_MASTER_LEVEL_DEVELOPER && args.size() >= 3) {
|
||||||
|
auto controllablePhysicsComponent = entity->GetComponent<ControllablePhysicsComponent>();
|
||||||
|
if (!controllablePhysicsComponent) return;
|
||||||
|
|
||||||
|
LOT lot{};
|
||||||
|
uint32_t numberToSpawn{};
|
||||||
|
float radiusToSpawnWithin{};
|
||||||
|
|
||||||
|
if (!GeneralUtils::TryParse(args[0], lot)) {
|
||||||
|
ChatPackets::SendSystemMessage(sysAddr, u"Invalid lot.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!GeneralUtils::TryParse(args[1], numberToSpawn) && numberToSpawn > 0) {
|
||||||
|
ChatPackets::SendSystemMessage(sysAddr, u"Invalid number of enemies to spawn.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Must spawn within a radius of at least 0.0f
|
||||||
|
if (!GeneralUtils::TryParse(args[2], radiusToSpawnWithin) && radiusToSpawnWithin < 0.0f) {
|
||||||
|
ChatPackets::SendSystemMessage(sysAddr, u"Invalid radius to spawn within.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
EntityInfo info;
|
||||||
|
info.lot = lot;
|
||||||
|
info.spawner = nullptr;
|
||||||
|
info.spawnerID = entity->GetObjectID();
|
||||||
|
info.spawnerNodeID = 0;
|
||||||
|
|
||||||
|
auto playerPosition = controllablePhysicsComponent->GetPosition();
|
||||||
|
while (numberToSpawn > 0) {
|
||||||
|
auto randomAngle = GeneralUtils::GenerateRandomNumber<float>(0.0f, 2 * PI);
|
||||||
|
auto randomRadius = GeneralUtils::GenerateRandomNumber<float>(0.0f, radiusToSpawnWithin);
|
||||||
|
|
||||||
|
// Set the position to the generated random position plus the player position. This will
|
||||||
|
// spawn the entity in a circle around the player. As you get further from the player, the angle chosen will get less accurate.
|
||||||
|
info.pos = playerPosition + NiPoint3(cos(randomAngle) * randomRadius, 0.0f, sin(randomAngle) * randomRadius);
|
||||||
|
info.rot = NiQuaternion();
|
||||||
|
|
||||||
|
auto newEntity = EntityManager::Instance()->CreateEntity(info);
|
||||||
|
if (newEntity == nullptr) {
|
||||||
|
ChatPackets::SendSystemMessage(sysAddr, u"Failed to spawn entity.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
EntityManager::Instance()->ConstructEntity(newEntity);
|
||||||
|
numberToSpawn--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ((chatCommand == "giveuscore") && args.size() == 1 && entity->GetGMLevel() >= GAME_MASTER_LEVEL_DEVELOPER) {
|
if ((chatCommand == "giveuscore") && args.size() == 1 && entity->GetGMLevel() >= GAME_MASTER_LEVEL_DEVELOPER) {
|
||||||
int32_t uscore;
|
int32_t uscore;
|
||||||
|
|
||||||
@ -1714,6 +1751,21 @@ void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entit
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (chatCommand == "reloadconfig" && entity->GetGMLevel() >= GAME_MASTER_LEVEL_DEVELOPER) {
|
||||||
|
Game::config->ReloadConfig();
|
||||||
|
VanityUtilities::SpawnVanity();
|
||||||
|
dpWorld::Instance().Reload();
|
||||||
|
auto entities = EntityManager::Instance()->GetEntitiesByComponent(COMPONENT_TYPE_SCRIPTED_ACTIVITY);
|
||||||
|
for (auto entity : entities) {
|
||||||
|
auto* scriptedActivityComponent = entity->GetComponent<ScriptedActivityComponent>();
|
||||||
|
if (!scriptedActivityComponent) continue;
|
||||||
|
|
||||||
|
scriptedActivityComponent->ReloadConfig();
|
||||||
|
}
|
||||||
|
Game::server->UpdateBandwidthLimit();
|
||||||
|
ChatPackets::SendSystemMessage(sysAddr, u"Successfully reloaded config for world!");
|
||||||
|
}
|
||||||
|
|
||||||
if (chatCommand == "rollloot" && entity->GetGMLevel() >= GAME_MASTER_LEVEL_OPERATOR && args.size() >= 3) {
|
if (chatCommand == "rollloot" && entity->GetGMLevel() >= GAME_MASTER_LEVEL_OPERATOR && args.size() >= 3) {
|
||||||
uint32_t lootMatrixIndex = 0;
|
uint32_t lootMatrixIndex = 0;
|
||||||
uint32_t targetLot = 0;
|
uint32_t targetLot = 0;
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "tinyxml2.h"
|
#include "tinyxml2.h"
|
||||||
#include "Game.h"
|
#include "Game.h"
|
||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
@ -27,7 +28,7 @@ void VanityUtilities::SpawnVanity() {
|
|||||||
|
|
||||||
const uint32_t zoneID = Game::server->GetZoneID();
|
const uint32_t zoneID = Game::server->GetZoneID();
|
||||||
|
|
||||||
ParseXML("./vanity/NPC.xml");
|
ParseXML((BinaryPathFinder::GetBinaryDir() / "vanity/NPC.xml").string());
|
||||||
|
|
||||||
// Loop through all parties
|
// Loop through all parties
|
||||||
for (const auto& party : m_Parties) {
|
for (const auto& party : m_Parties) {
|
||||||
@ -131,7 +132,7 @@ void VanityUtilities::SpawnVanity() {
|
|||||||
info.spawnerID = EntityManager::Instance()->GetZoneControlEntity()->GetObjectID();
|
info.spawnerID = EntityManager::Instance()->GetZoneControlEntity()->GetObjectID();
|
||||||
|
|
||||||
info.settings = { new LDFData<bool>(u"hasCustomText", true),
|
info.settings = { new LDFData<bool>(u"hasCustomText", true),
|
||||||
new LDFData<std::string>(u"customText", ParseMarkdown("./vanity/TESTAMENT.md")) };
|
new LDFData<std::string>(u"customText", ParseMarkdown((BinaryPathFinder::GetBinaryDir() / "vanity/TESTAMENT.md").string())) };
|
||||||
|
|
||||||
auto* entity = EntityManager::Instance()->CreateEntity(info);
|
auto* entity = EntityManager::Instance()->CreateEntity(info);
|
||||||
|
|
||||||
|
@ -1,81 +0,0 @@
|
|||||||
#include "dLocale.h"
|
|
||||||
|
|
||||||
#include <clocale>
|
|
||||||
#include <fstream>
|
|
||||||
#include <sstream>
|
|
||||||
#include <vector>
|
|
||||||
#include <algorithm>
|
|
||||||
|
|
||||||
#include "tinyxml2.h"
|
|
||||||
#include "Game.h"
|
|
||||||
#include "dConfig.h"
|
|
||||||
|
|
||||||
dLocale::dLocale() {
|
|
||||||
if (Game::config->GetValue("locale_enabled") != "1") {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::ifstream file(m_LocalePath);
|
|
||||||
|
|
||||||
if (!file.good()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::stringstream data;
|
|
||||||
data << file.rdbuf();
|
|
||||||
|
|
||||||
if (data.str().empty()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto* doc = new tinyxml2::XMLDocument();
|
|
||||||
|
|
||||||
if (doc == nullptr) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (doc->Parse(data.str().c_str(), data.str().size()) != 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::hash<std::string> hash;
|
|
||||||
|
|
||||||
auto* localization = doc->FirstChildElement("localization");
|
|
||||||
auto* phrases = localization->FirstChildElement("phrases");
|
|
||||||
|
|
||||||
auto* phrase = phrases->FirstChildElement("phrase");
|
|
||||||
|
|
||||||
while (phrase != nullptr) {
|
|
||||||
// Add the phrase hash to the vector
|
|
||||||
m_Phrases.push_back(hash(phrase->Attribute("id")));
|
|
||||||
phrase = phrase->NextSiblingElement("phrase");
|
|
||||||
}
|
|
||||||
|
|
||||||
file.close();
|
|
||||||
|
|
||||||
delete doc;
|
|
||||||
}
|
|
||||||
|
|
||||||
dLocale::~dLocale() = default;
|
|
||||||
|
|
||||||
std::string dLocale::GetTemplate(const std::string& phraseID) {
|
|
||||||
return "%[" + phraseID + "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
bool dLocale::HasPhrase(const std::string& phraseID) {
|
|
||||||
if (Game::config->GetValue("locale_enabled") != "1") {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compute the hash and see if it's in the vector
|
|
||||||
std::hash<std::string> hash;
|
|
||||||
std::size_t hashValue = hash(phraseID);
|
|
||||||
return std::find(m_Phrases.begin(), m_Phrases.end(), hashValue) != m_Phrases.end();
|
|
||||||
}
|
|
||||||
|
|
||||||
/*std::string dLocale::GetPhrase(const std::string& phraseID) {
|
|
||||||
if (m_Phrases.find(phraseID) == m_Phrases.end()) {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
return m_Phrases[phraseID];
|
|
||||||
}*/
|
|
@ -1,19 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
#include <map>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
#include <cstdint>
|
|
||||||
|
|
||||||
class dLocale {
|
|
||||||
public:
|
|
||||||
dLocale();
|
|
||||||
~dLocale();
|
|
||||||
static std::string GetTemplate(const std::string& phraseID);
|
|
||||||
bool HasPhrase(const std::string& phraseID);
|
|
||||||
//std::string GetPhrase(const std::string& phraseID);
|
|
||||||
|
|
||||||
private:
|
|
||||||
std::string m_LocalePath = "./locale/locale.xml";
|
|
||||||
std::string m_Locale = "en_US"; // TODO: add to config
|
|
||||||
std::vector<std::size_t> m_Phrases;
|
|
||||||
};
|
|
@ -10,6 +10,7 @@
|
|||||||
#include "dMessageIdentifiers.h"
|
#include "dMessageIdentifiers.h"
|
||||||
#include "MasterPackets.h"
|
#include "MasterPackets.h"
|
||||||
#include "PacketUtils.h"
|
#include "PacketUtils.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
InstanceManager::InstanceManager(dLogger* logger, const std::string& externalIP) {
|
InstanceManager::InstanceManager(dLogger* logger, const std::string& externalIP) {
|
||||||
mLogger = logger;
|
mLogger = logger;
|
||||||
@ -48,13 +49,13 @@ Instance* InstanceManager::GetInstance(LWOMAPID mapID, bool isFriendTransfer, LW
|
|||||||
|
|
||||||
//Start the actual process:
|
//Start the actual process:
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
std::string cmd = "start ./WorldServer.exe -zone ";
|
std::string cmd = "start " + (BinaryPathFinder::GetBinaryDir() / "WorldServer.exe").string() + " -zone ";
|
||||||
#else
|
#else
|
||||||
std::string cmd;
|
std::string cmd;
|
||||||
if (std::atoi(Game::config->GetValue("use_sudo_world").c_str())) {
|
if (std::atoi(Game::config->GetValue("use_sudo_world").c_str())) {
|
||||||
cmd = "sudo ./WorldServer -zone ";
|
cmd = "sudo " + (BinaryPathFinder::GetBinaryDir() / "WorldServer").string() + " -zone ";
|
||||||
} else {
|
} else {
|
||||||
cmd = "./WorldServer -zone ";
|
cmd = (BinaryPathFinder::GetBinaryDir() / "WorldServer").string() + " -zone ";
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -300,10 +301,10 @@ Instance* InstanceManager::CreatePrivateInstance(LWOMAPID mapID, LWOCLONEID clon
|
|||||||
instance = new Instance(mExternalIP, port, mapID, ++m_LastInstanceID, cloneID, maxPlayers, maxPlayers, true, password);
|
instance = new Instance(mExternalIP, port, mapID, ++m_LastInstanceID, cloneID, maxPlayers, maxPlayers, true, password);
|
||||||
|
|
||||||
//Start the actual process:
|
//Start the actual process:
|
||||||
std::string cmd = "start ./WorldServer.exe -zone ";
|
std::string cmd = "start " + (BinaryPathFinder::GetBinaryDir() / "WorldServer").string() + " -zone ";
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
cmd = "./WorldServer -zone ";
|
cmd = (BinaryPathFinder::GetBinaryDir() / "WorldServer").string() + " -zone ";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
cmd.append(std::to_string(mapID));
|
cmd.append(std::to_string(mapID));
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
#include "dServer.h"
|
#include "dServer.h"
|
||||||
#include "AssetManager.h"
|
#include "AssetManager.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
//RakNet includes:
|
//RakNet includes:
|
||||||
#include "RakNetDefines.h"
|
#include "RakNetDefines.h"
|
||||||
@ -39,6 +40,7 @@
|
|||||||
#include "ObjectIDManager.h"
|
#include "ObjectIDManager.h"
|
||||||
#include "PacketUtils.h"
|
#include "PacketUtils.h"
|
||||||
#include "dMessageIdentifiers.h"
|
#include "dMessageIdentifiers.h"
|
||||||
|
#include "FdbToSqlite.h"
|
||||||
|
|
||||||
namespace Game {
|
namespace Game {
|
||||||
dLogger* logger;
|
dLogger* logger;
|
||||||
@ -81,17 +83,15 @@ int main(int argc, char** argv) {
|
|||||||
Game::logger->Log("MasterServer", "Version: %i.%i", PROJECT_VERSION_MAJOR, PROJECT_VERSION_MINOR);
|
Game::logger->Log("MasterServer", "Version: %i.%i", PROJECT_VERSION_MAJOR, PROJECT_VERSION_MINOR);
|
||||||
Game::logger->Log("MasterServer", "Compiled on: %s", __TIMESTAMP__);
|
Game::logger->Log("MasterServer", "Compiled on: %s", __TIMESTAMP__);
|
||||||
|
|
||||||
//Read our config:
|
Game::config = new dConfig("masterconfig.ini");
|
||||||
dConfig config("masterconfig.ini");
|
Game::logger->SetLogToConsole(bool(std::stoi(Game::config->GetValue("log_to_console"))));
|
||||||
Game::config = &config;
|
Game::logger->SetLogDebugStatements(Game::config->GetValue("log_debug_statements") == "1");
|
||||||
Game::logger->SetLogToConsole(bool(std::stoi(config.GetValue("log_to_console"))));
|
|
||||||
Game::logger->SetLogDebugStatements(config.GetValue("log_debug_statements") == "1");
|
|
||||||
|
|
||||||
//Connect to the MySQL Database
|
//Connect to the MySQL Database
|
||||||
std::string mysql_host = config.GetValue("mysql_host");
|
std::string mysql_host = Game::config->GetValue("mysql_host");
|
||||||
std::string mysql_database = config.GetValue("mysql_database");
|
std::string mysql_database = Game::config->GetValue("mysql_database");
|
||||||
std::string mysql_username = config.GetValue("mysql_username");
|
std::string mysql_username = Game::config->GetValue("mysql_username");
|
||||||
std::string mysql_password = config.GetValue("mysql_password");
|
std::string mysql_password = Game::config->GetValue("mysql_password");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Database::Connect(mysql_host, mysql_database, mysql_username, mysql_password);
|
Database::Connect(mysql_host, mysql_database, mysql_username, mysql_password);
|
||||||
@ -102,9 +102,14 @@ int main(int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
std::string client_path = config.GetValue("client_location");
|
std::string clientPathStr = Game::config->GetValue("client_location");
|
||||||
if (client_path.empty()) client_path = "./res";
|
if (clientPathStr.empty()) clientPathStr = "./res";
|
||||||
Game::assetManager = new AssetManager(client_path);
|
std::filesystem::path clientPath = std::filesystem::path(clientPathStr);
|
||||||
|
if (clientPath.is_relative()) {
|
||||||
|
clientPath = BinaryPathFinder::GetBinaryDir() / clientPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
Game::assetManager = new AssetManager(clientPath);
|
||||||
} catch (std::runtime_error& ex) {
|
} catch (std::runtime_error& ex) {
|
||||||
Game::logger->Log("MasterServer", "Got an error while setting up assets: %s", ex.what());
|
Game::logger->Log("MasterServer", "Got an error while setting up assets: %s", ex.what());
|
||||||
|
|
||||||
@ -122,23 +127,12 @@ int main(int argc, char** argv) {
|
|||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
Game::logger->Log("WorldServer", "Found cdclient.fdb. Clearing cdserver migration_history then copying and converting to sqlite.");
|
Game::logger->Log("WorldServer", "Found cdclient.fdb. Converting to SQLite");
|
||||||
auto stmt = Database::CreatePreppedStmt(R"#(DELETE FROM migration_history WHERE name LIKE "%cdserver%";)#");
|
|
||||||
stmt->executeUpdate();
|
|
||||||
delete stmt;
|
|
||||||
|
|
||||||
std::string res = "python3 ../thirdparty/docker-utils/utils/fdb_to_sqlite.py " + (Game::assetManager->GetResPath() / "cdclient.fdb").string();
|
if (FdbToSqlite::Convert(Game::assetManager->GetResPath().string()).ConvertDatabase() == false) {
|
||||||
|
|
||||||
int result = system(res.c_str());
|
|
||||||
if (result != 0) {
|
|
||||||
Game::logger->Log("MasterServer", "Failed to convert fdb to sqlite");
|
Game::logger->Log("MasterServer", "Failed to convert fdb to sqlite");
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (std::rename("./cdclient.sqlite", (Game::assetManager->GetResPath() / "CDServer.sqlite").string().c_str()) != 0) {
|
|
||||||
Game::logger->Log("MasterServer", "Failed to move cdclient file.");
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Connect to CDClient
|
//Connect to CDClient
|
||||||
@ -219,16 +213,16 @@ int main(int argc, char** argv) {
|
|||||||
|
|
||||||
int maxClients = 999;
|
int maxClients = 999;
|
||||||
int ourPort = 1000;
|
int ourPort = 1000;
|
||||||
if (config.GetValue("max_clients") != "") maxClients = std::stoi(config.GetValue("max_clients"));
|
if (Game::config->GetValue("max_clients") != "") maxClients = std::stoi(Game::config->GetValue("max_clients"));
|
||||||
if (config.GetValue("port") != "") ourPort = std::stoi(config.GetValue("port"));
|
if (Game::config->GetValue("port") != "") ourPort = std::stoi(Game::config->GetValue("port"));
|
||||||
|
|
||||||
Game::server = new dServer(config.GetValue("external_ip"), ourPort, 0, maxClients, true, false, Game::logger, "", 0, ServerType::Master);
|
Game::server = new dServer(Game::config->GetValue("external_ip"), ourPort, 0, maxClients, true, false, Game::logger, "", 0, ServerType::Master, Game::config);
|
||||||
|
|
||||||
//Query for the database for a server labeled "master"
|
//Query for the database for a server labeled "master"
|
||||||
auto* masterLookupStatement = Database::CreatePreppedStmt("SELECT id FROM `servers` WHERE `name` = 'master'");
|
auto* masterLookupStatement = Database::CreatePreppedStmt("SELECT id FROM `servers` WHERE `name` = 'master'");
|
||||||
auto* result = masterLookupStatement->executeQuery();
|
auto* result = masterLookupStatement->executeQuery();
|
||||||
|
|
||||||
auto master_server_ip = config.GetValue("master_ip");
|
auto master_server_ip = Game::config->GetValue("master_ip");
|
||||||
|
|
||||||
if (master_server_ip == "") {
|
if (master_server_ip == "") {
|
||||||
master_server_ip = Game::server->GetIP();
|
master_server_ip = Game::server->GetIP();
|
||||||
@ -256,7 +250,7 @@ int main(int argc, char** argv) {
|
|||||||
Game::im = new InstanceManager(Game::logger, Game::server->GetIP());
|
Game::im = new InstanceManager(Game::logger, Game::server->GetIP());
|
||||||
|
|
||||||
//Depending on the config, start up servers:
|
//Depending on the config, start up servers:
|
||||||
if (config.GetValue("prestart_servers") != "" && config.GetValue("prestart_servers") == "1") {
|
if (Game::config->GetValue("prestart_servers") != "" && Game::config->GetValue("prestart_servers") == "1") {
|
||||||
StartChatServer();
|
StartChatServer();
|
||||||
|
|
||||||
Game::im->GetInstance(0, false, 0)->SetIsReady(true);
|
Game::im->GetInstance(0, false, 0)->SetIsReady(true);
|
||||||
@ -363,7 +357,7 @@ int main(int argc, char** argv) {
|
|||||||
|
|
||||||
dLogger* SetupLogger() {
|
dLogger* SetupLogger() {
|
||||||
std::string logPath =
|
std::string logPath =
|
||||||
"./logs/MasterServer_" + std::to_string(time(nullptr)) + ".log";
|
(BinaryPathFinder::GetBinaryDir() / ("logs/MasterServer_" + std::to_string(time(nullptr)) + ".log")).string();
|
||||||
bool logToConsole = false;
|
bool logToConsole = false;
|
||||||
bool logDebugStatements = false;
|
bool logDebugStatements = false;
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
@ -738,28 +732,28 @@ void HandlePacket(Packet* packet) {
|
|||||||
void StartChatServer() {
|
void StartChatServer() {
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
//macOS doesn't need sudo to run on ports < 1024
|
//macOS doesn't need sudo to run on ports < 1024
|
||||||
system("./ChatServer&");
|
system(((BinaryPathFinder::GetBinaryDir() / "ChatServer").string() + "&").c_str());
|
||||||
#elif _WIN32
|
#elif _WIN32
|
||||||
system("start ./ChatServer.exe");
|
system(("start " + (BinaryPathFinder::GetBinaryDir() / "ChatServer.exe").string()).c_str());
|
||||||
#else
|
#else
|
||||||
if (std::atoi(Game::config->GetValue("use_sudo_chat").c_str())) {
|
if (std::atoi(Game::config->GetValue("use_sudo_chat").c_str())) {
|
||||||
system("sudo ./ChatServer&");
|
system(("sudo " + (BinaryPathFinder::GetBinaryDir() / "ChatServer").string() + "&").c_str());
|
||||||
} else {
|
} else {
|
||||||
system("./ChatServer&");
|
system(((BinaryPathFinder::GetBinaryDir() / "ChatServer").string() + "&").c_str());
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartAuthServer() {
|
void StartAuthServer() {
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
system("./AuthServer&");
|
system(((BinaryPathFinder::GetBinaryDir() / "AuthServer").string() + "&").c_str());
|
||||||
#elif _WIN32
|
#elif _WIN32
|
||||||
system("start ./AuthServer.exe");
|
system(("start " + (BinaryPathFinder::GetBinaryDir() / "AuthServer.exe").string()).c_str());
|
||||||
#else
|
#else
|
||||||
if (std::atoi(Game::config->GetValue("use_sudo_auth").c_str())) {
|
if (std::atoi(Game::config->GetValue("use_sudo_auth").c_str())) {
|
||||||
system("sudo ./AuthServer&");
|
system(("sudo " + (BinaryPathFinder::GetBinaryDir() / "AuthServer").string() + "&").c_str());
|
||||||
} else {
|
} else {
|
||||||
system("./AuthServer&");
|
system(((BinaryPathFinder::GetBinaryDir() / "AuthServer").string() + "&").c_str());
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@ -839,6 +833,7 @@ void ShutdownSequence() {
|
|||||||
int FinalizeShutdown() {
|
int FinalizeShutdown() {
|
||||||
//Delete our objects here:
|
//Delete our objects here:
|
||||||
Database::Destroy("MasterServer");
|
Database::Destroy("MasterServer");
|
||||||
|
if (Game::config) delete Game::config;
|
||||||
if (Game::im) delete Game::im;
|
if (Game::im) delete Game::im;
|
||||||
if (Game::server) delete Game::server;
|
if (Game::server) delete Game::server;
|
||||||
if (Game::logger) delete Game::logger;
|
if (Game::logger) delete Game::logger;
|
||||||
|
@ -51,13 +51,13 @@ uint32_t ObjectIDManager::GeneratePersistentID(void) {
|
|||||||
uint32_t toReturn = ++this->currentPersistentID;
|
uint32_t toReturn = ++this->currentPersistentID;
|
||||||
|
|
||||||
// So we peroidically save our ObjID to the database:
|
// So we peroidically save our ObjID to the database:
|
||||||
if (toReturn % 25 == 0) { // TEMP: DISABLED FOR DEBUG / DEVELOPMENT!
|
// if (toReturn % 25 == 0) { // TEMP: DISABLED FOR DEBUG / DEVELOPMENT!
|
||||||
sql::PreparedStatement* stmt = Database::CreatePreppedStmt(
|
sql::PreparedStatement* stmt = Database::CreatePreppedStmt(
|
||||||
"UPDATE object_id_tracker SET last_object_id=?");
|
"UPDATE object_id_tracker SET last_object_id=?");
|
||||||
stmt->setUInt(1, toReturn);
|
stmt->setUInt(1, toReturn);
|
||||||
stmt->execute();
|
stmt->execute();
|
||||||
delete stmt;
|
delete stmt;
|
||||||
}
|
// }
|
||||||
|
|
||||||
return toReturn;
|
return toReturn;
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
#include "dPlatforms.h"
|
#include "dPlatforms.h"
|
||||||
#include "NiPoint3.h"
|
#include "NiPoint3.h"
|
||||||
#include "BinaryIO.h"
|
#include "BinaryIO.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
#include "dZoneManager.h"
|
#include "dZoneManager.h"
|
||||||
|
|
||||||
@ -43,7 +44,7 @@ dNavMesh::~dNavMesh() {
|
|||||||
|
|
||||||
void dNavMesh::LoadNavmesh() {
|
void dNavMesh::LoadNavmesh() {
|
||||||
|
|
||||||
std::string path = "./navmeshes/" + std::to_string(m_ZoneId) + ".bin";
|
std::string path = (BinaryPathFinder::GetBinaryDir() / "navmeshes/" / (std::to_string(m_ZoneId) + ".bin")).string();
|
||||||
|
|
||||||
if (!BinaryIO::DoesFileExist(path)) {
|
if (!BinaryIO::DoesFileExist(path)) {
|
||||||
return;
|
return;
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
#include "dServer.h"
|
#include "dServer.h"
|
||||||
#include "dNetCommon.h"
|
#include "dNetCommon.h"
|
||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
|
#include "dConfig.h"
|
||||||
|
|
||||||
#include "RakNetworkFactory.h"
|
#include "RakNetworkFactory.h"
|
||||||
#include "MessageIdentifiers.h"
|
#include "MessageIdentifiers.h"
|
||||||
@ -35,7 +36,7 @@ public:
|
|||||||
}
|
}
|
||||||
} ReceiveDownloadCompleteCB;
|
} ReceiveDownloadCompleteCB;
|
||||||
|
|
||||||
dServer::dServer(const std::string& ip, int port, int instanceID, int maxConnections, bool isInternal, bool useEncryption, dLogger* logger, const std::string masterIP, int masterPort, ServerType serverType, unsigned int zoneID) {
|
dServer::dServer(const std::string& ip, int port, int instanceID, int maxConnections, bool isInternal, bool useEncryption, dLogger* logger, const std::string masterIP, int masterPort, ServerType serverType, dConfig* config, unsigned int zoneID) {
|
||||||
mIP = ip;
|
mIP = ip;
|
||||||
mPort = port;
|
mPort = port;
|
||||||
mZoneID = zoneID;
|
mZoneID = zoneID;
|
||||||
@ -50,6 +51,7 @@ dServer::dServer(const std::string& ip, int port, int instanceID, int maxConnect
|
|||||||
mNetIDManager = nullptr;
|
mNetIDManager = nullptr;
|
||||||
mReplicaManager = nullptr;
|
mReplicaManager = nullptr;
|
||||||
mServerType = serverType;
|
mServerType = serverType;
|
||||||
|
mConfig = config;
|
||||||
//Attempt to start our server here:
|
//Attempt to start our server here:
|
||||||
mIsOkay = Startup();
|
mIsOkay = Startup();
|
||||||
|
|
||||||
@ -181,7 +183,7 @@ bool dServer::Startup() {
|
|||||||
if (mIsInternal) {
|
if (mIsInternal) {
|
||||||
mPeer->SetIncomingPassword("3.25 DARKFLAME1", 15);
|
mPeer->SetIncomingPassword("3.25 DARKFLAME1", 15);
|
||||||
} else {
|
} else {
|
||||||
//mPeer->SetPerConnectionOutgoingBandwidthLimit(800000); //100Kb/s
|
UpdateBandwidthLimit();
|
||||||
mPeer->SetIncomingPassword("3.25 ND1", 8);
|
mPeer->SetIncomingPassword("3.25 ND1", 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -191,6 +193,11 @@ bool dServer::Startup() {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void dServer::UpdateBandwidthLimit() {
|
||||||
|
auto newBandwidth = mConfig->GetValue("maximum_outgoing_bandwidth");
|
||||||
|
mPeer->SetPerConnectionOutgoingBandwidthLimit(!newBandwidth.empty() ? std::stoi(newBandwidth) : 0);
|
||||||
|
}
|
||||||
|
|
||||||
void dServer::Shutdown() {
|
void dServer::Shutdown() {
|
||||||
if (mPeer) {
|
if (mPeer) {
|
||||||
mPeer->Shutdown(1000);
|
mPeer->Shutdown(1000);
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#include "NetworkIDManager.h"
|
#include "NetworkIDManager.h"
|
||||||
|
|
||||||
class dLogger;
|
class dLogger;
|
||||||
|
class dConfig;
|
||||||
|
|
||||||
enum class ServerType : uint32_t {
|
enum class ServerType : uint32_t {
|
||||||
Master,
|
Master,
|
||||||
@ -17,7 +18,7 @@ class dServer {
|
|||||||
public:
|
public:
|
||||||
// Default constructor should only used for testing!
|
// Default constructor should only used for testing!
|
||||||
dServer() {};
|
dServer() {};
|
||||||
dServer(const std::string& ip, int port, int instanceID, int maxConnections, bool isInternal, bool useEncryption, dLogger* logger, const std::string masterIP, int masterPort, ServerType serverType, unsigned int zoneID = 0);
|
dServer(const std::string& ip, int port, int instanceID, int maxConnections, bool isInternal, bool useEncryption, dLogger* logger, const std::string masterIP, int masterPort, ServerType serverType, dConfig* config, unsigned int zoneID = 0);
|
||||||
~dServer();
|
~dServer();
|
||||||
|
|
||||||
Packet* ReceiveFromMaster();
|
Packet* ReceiveFromMaster();
|
||||||
@ -42,6 +43,7 @@ public:
|
|||||||
const int GetInstanceID() const { return mInstanceID; }
|
const int GetInstanceID() const { return mInstanceID; }
|
||||||
ReplicaManager* GetReplicaManager() { return mReplicaManager; }
|
ReplicaManager* GetReplicaManager() { return mReplicaManager; }
|
||||||
void UpdateReplica();
|
void UpdateReplica();
|
||||||
|
void UpdateBandwidthLimit();
|
||||||
|
|
||||||
int GetPing(const SystemAddress& sysAddr) const;
|
int GetPing(const SystemAddress& sysAddr) const;
|
||||||
int GetLatestPing(const SystemAddress& sysAddr) const;
|
int GetLatestPing(const SystemAddress& sysAddr) const;
|
||||||
@ -58,6 +60,7 @@ private:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
dLogger* mLogger = nullptr;
|
dLogger* mLogger = nullptr;
|
||||||
|
dConfig* mConfig = nullptr;
|
||||||
RakPeerInterface* mPeer = nullptr;
|
RakPeerInterface* mPeer = nullptr;
|
||||||
ReplicaManager* mReplicaManager = nullptr;
|
ReplicaManager* mReplicaManager = nullptr;
|
||||||
NetworkIDManager* mNetIDManager = nullptr;
|
NetworkIDManager* mNetIDManager = nullptr;
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
dpGrid::dpGrid(int numCells, int cellSize) {
|
dpGrid::dpGrid(int numCells, int cellSize) {
|
||||||
NUM_CELLS = numCells;
|
NUM_CELLS = numCells;
|
||||||
CELL_SIZE = cellSize;
|
CELL_SIZE = cellSize;
|
||||||
|
m_DeleteGrid = true;
|
||||||
|
|
||||||
//dumb method but i can't be bothered
|
//dumb method but i can't be bothered
|
||||||
|
|
||||||
@ -23,6 +24,7 @@ dpGrid::dpGrid(int numCells, int cellSize) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dpGrid::~dpGrid() {
|
dpGrid::~dpGrid() {
|
||||||
|
if (!this->m_DeleteGrid) return;
|
||||||
for (auto& x : m_Cells) { //x
|
for (auto& x : m_Cells) { //x
|
||||||
for (auto& y : x) { //y
|
for (auto& y : x) { //y
|
||||||
for (auto en : y) {
|
for (auto en : y) {
|
||||||
|
@ -23,6 +23,15 @@ public:
|
|||||||
|
|
||||||
void Update(float deltaTime);
|
void Update(float deltaTime);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the delete grid parameter to value. When false, the grid will not clean up memory.
|
||||||
|
*
|
||||||
|
* @param value Whether or not to delete entities on deletion of the grid.
|
||||||
|
*/
|
||||||
|
void SetDeleteGrid(bool value) { this->m_DeleteGrid = value; };
|
||||||
|
|
||||||
|
std::vector<std::vector<std::forward_list<dpEntity*>>> GetCells() { return this->m_Cells; };
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void HandleEntity(dpEntity* entity, dpEntity* other);
|
void HandleEntity(dpEntity* entity, dpEntity* other);
|
||||||
void HandleCell(int x, int z, float deltaTime);
|
void HandleCell(int x, int z, float deltaTime);
|
||||||
@ -31,4 +40,5 @@ private:
|
|||||||
//cells on X, cells on Y for that X, then another vector that contains the entities within that cell.
|
//cells on X, cells on Y for that X, then another vector that contains the entities within that cell.
|
||||||
std::vector<std::vector<std::forward_list<dpEntity*>>> m_Cells;
|
std::vector<std::vector<std::forward_list<dpEntity*>>> m_Cells;
|
||||||
std::map<LWOOBJID, dpEntity*> m_GargantuanObjects;
|
std::map<LWOOBJID, dpEntity*> m_GargantuanObjects;
|
||||||
|
bool m_DeleteGrid = true;
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
#include "dConfig.h"
|
#include "dConfig.h"
|
||||||
|
|
||||||
void dpWorld::Initialize(unsigned int zoneID) {
|
void dpWorld::Initialize(unsigned int zoneID, bool generateNewNavMesh) {
|
||||||
phys_sp_tilecount = std::atoi(Game::config->GetValue("phys_sp_tilecount").c_str());
|
phys_sp_tilecount = std::atoi(Game::config->GetValue("phys_sp_tilecount").c_str());
|
||||||
phys_sp_tilesize = std::atoi(Game::config->GetValue("phys_sp_tilesize").c_str());
|
phys_sp_tilesize = std::atoi(Game::config->GetValue("phys_sp_tilesize").c_str());
|
||||||
|
|
||||||
@ -21,13 +21,37 @@ void dpWorld::Initialize(unsigned int zoneID) {
|
|||||||
m_Grid = new dpGrid(phys_sp_tilecount, phys_sp_tilesize);
|
m_Grid = new dpGrid(phys_sp_tilecount, phys_sp_tilesize);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_NavMesh = new dNavMesh(zoneID);
|
if (generateNewNavMesh) m_NavMesh = new dNavMesh(zoneID);
|
||||||
|
|
||||||
Game::logger->Log("dpWorld", "Physics world initialized!");
|
Game::logger->Log("dpWorld", "Physics world initialized!");
|
||||||
|
m_ZoneID = zoneID;
|
||||||
|
}
|
||||||
|
|
||||||
|
void dpWorld::Reload() {
|
||||||
|
if (m_Grid) {
|
||||||
|
m_Grid->SetDeleteGrid(false);
|
||||||
|
auto oldGridCells = m_Grid->GetCells();
|
||||||
|
delete m_Grid;
|
||||||
|
m_Grid = nullptr;
|
||||||
|
|
||||||
|
Initialize(m_ZoneID, false);
|
||||||
|
for (auto column : oldGridCells) {
|
||||||
|
for (auto row : column) {
|
||||||
|
for (auto entity : row) {
|
||||||
|
AddEntity(entity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Game::logger->Log("dpWorld", "Successfully reloaded physics world!");
|
||||||
|
} else {
|
||||||
|
Game::logger->Log("dpWorld", "No physics world to reload!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dpWorld::~dpWorld() {
|
dpWorld::~dpWorld() {
|
||||||
if (m_Grid) {
|
if (m_Grid) {
|
||||||
|
// Triple check this is true
|
||||||
|
m_Grid->SetDeleteGrid(true);
|
||||||
delete m_Grid;
|
delete m_Grid;
|
||||||
m_Grid = nullptr;
|
m_Grid = nullptr;
|
||||||
}
|
}
|
||||||
@ -103,14 +127,14 @@ bool dpWorld::ShouldUseSP(unsigned int zoneID) {
|
|||||||
// Only large maps should be added as tiling likely makes little difference on small maps.
|
// Only large maps should be added as tiling likely makes little difference on small maps.
|
||||||
|
|
||||||
switch (zoneID) {
|
switch (zoneID) {
|
||||||
case 1100: // Avant Gardens
|
case 1100: // Avant Gardens
|
||||||
case 1200: // Nimbus Station
|
case 1200: // Nimbus Station
|
||||||
case 1300: // Gnarled Forest
|
case 1300: // Gnarled Forest
|
||||||
case 1400: // Forbidden Valley
|
case 1400: // Forbidden Valley
|
||||||
case 1800: // Crux Prime
|
case 1800: // Crux Prime
|
||||||
case 1900: // Nexus Tower
|
case 1900: // Nexus Tower
|
||||||
case 2000: // Ninjago
|
case 2000: // Ninjago
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -19,7 +19,8 @@ class dpGrid;
|
|||||||
|
|
||||||
class dpWorld : public Singleton<dpWorld> {
|
class dpWorld : public Singleton<dpWorld> {
|
||||||
public:
|
public:
|
||||||
void Initialize(unsigned int zoneID);
|
void Initialize(unsigned int zoneID, bool generateNewNavMesh = true);
|
||||||
|
void Reload();
|
||||||
|
|
||||||
~dpWorld();
|
~dpWorld();
|
||||||
|
|
||||||
@ -43,4 +44,5 @@ private:
|
|||||||
std::vector<dpEntity*> m_DynamicEntites;
|
std::vector<dpEntity*> m_DynamicEntites;
|
||||||
|
|
||||||
dNavMesh* m_NavMesh = nullptr;
|
dNavMesh* m_NavMesh = nullptr;
|
||||||
|
uint32_t m_ZoneID = 0;
|
||||||
};
|
};
|
||||||
|
@ -124,7 +124,7 @@ void ActivityManager::ActivityTimerStart(Entity* self, const std::string& timerN
|
|||||||
auto* timer = new ActivityTimer{ timerName, updateInterval, stopTime };
|
auto* timer = new ActivityTimer{ timerName, updateInterval, stopTime };
|
||||||
activeTimers.push_back(timer);
|
activeTimers.push_back(timer);
|
||||||
|
|
||||||
Game::logger->Log("ActivityManager", "Starting timer '%s', %f, %f", timerName.c_str(), updateInterval, stopTime);
|
Game::logger->LogDebug("ActivityManager", "Starting timer '%s', %f, %f", timerName.c_str(), updateInterval, stopTime);
|
||||||
|
|
||||||
self->AddTimer(GetPrefixedName(timer->name), timer->updateInterval);
|
self->AddTimer(GetPrefixedName(timer->name), timer->updateInterval);
|
||||||
}
|
}
|
||||||
@ -205,10 +205,10 @@ void ActivityManager::OnTimerDone(Entity* self, std::string timerName) {
|
|||||||
activeTimers.erase(std::remove(activeTimers.begin(), activeTimers.end(), timer),
|
activeTimers.erase(std::remove(activeTimers.begin(), activeTimers.end(), timer),
|
||||||
activeTimers.end());
|
activeTimers.end());
|
||||||
delete timer;
|
delete timer;
|
||||||
Game::logger->Log("ActivityManager", "Executing timer '%s'", activityTimerName.c_str());
|
Game::logger->LogDebug("ActivityManager", "Executing timer '%s'", activityTimerName.c_str());
|
||||||
OnActivityTimerDone(self, activityTimerName);
|
OnActivityTimerDone(self, activityTimerName);
|
||||||
} else {
|
} else {
|
||||||
Game::logger->Log("ActivityManager", "Updating timer '%s'", activityTimerName.c_str());
|
Game::logger->LogDebug("ActivityManager", "Updating timer '%s'", activityTimerName.c_str());
|
||||||
OnActivityTimerUpdate(self, timer->name, timer->stopTime - timer->runTime, timer->runTime);
|
OnActivityTimerUpdate(self, timer->name, timer->stopTime - timer->runTime, timer->runTime);
|
||||||
self->AddTimer(GetPrefixedName(timer->name), timer->updateInterval);
|
self->AddTimer(GetPrefixedName(timer->name), timer->updateInterval);
|
||||||
}
|
}
|
||||||
|
@ -19,12 +19,6 @@ void FvNinjaGuard::OnEmoteReceived(Entity* self, const int32_t emote, Entity* ta
|
|||||||
|
|
||||||
GameMessages::SendPlayAnimation(self, u"scared");
|
GameMessages::SendPlayAnimation(self, u"scared");
|
||||||
|
|
||||||
auto* missionComponent = target->GetComponent<MissionComponent>();
|
|
||||||
|
|
||||||
if (missionComponent != nullptr && missionComponent->HasMission(737)) {
|
|
||||||
missionComponent->ForceProgressTaskType(737, 5, 1, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self->GetLOT() == 7412) {
|
if (self->GetLOT() == 7412) {
|
||||||
auto* rightGuard = EntityManager::Instance()->GetEntity(m_RightGuard);
|
auto* rightGuard = EntityManager::Instance()->GetEntity(m_RightGuard);
|
||||||
|
|
||||||
@ -39,4 +33,3 @@ void FvNinjaGuard::OnEmoteReceived(Entity* self, const int32_t emote, Entity* ta
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include "Metrics.hpp"
|
#include "Metrics.hpp"
|
||||||
#include "PerformanceManager.h"
|
#include "PerformanceManager.h"
|
||||||
#include "Diagnostics.h"
|
#include "Diagnostics.h"
|
||||||
|
#include "BinaryPathFinder.h"
|
||||||
|
|
||||||
//RakNet includes:
|
//RakNet includes:
|
||||||
#include "RakNetDefines.h"
|
#include "RakNetDefines.h"
|
||||||
@ -47,7 +48,6 @@
|
|||||||
#include "GameMessageHandler.h"
|
#include "GameMessageHandler.h"
|
||||||
#include "GameMessages.h"
|
#include "GameMessages.h"
|
||||||
#include "Mail.h"
|
#include "Mail.h"
|
||||||
#include "dLocale.h"
|
|
||||||
#include "TeamManager.h"
|
#include "TeamManager.h"
|
||||||
#include "SkillComponent.h"
|
#include "SkillComponent.h"
|
||||||
#include "DestroyableComponent.h"
|
#include "DestroyableComponent.h"
|
||||||
@ -56,6 +56,7 @@
|
|||||||
#include "Player.h"
|
#include "Player.h"
|
||||||
#include "PropertyManagementComponent.h"
|
#include "PropertyManagementComponent.h"
|
||||||
#include "AssetManager.h"
|
#include "AssetManager.h"
|
||||||
|
#include "eBlueprintSaveResponseType.h"
|
||||||
|
|
||||||
#include "ZCompression.h"
|
#include "ZCompression.h"
|
||||||
|
|
||||||
@ -66,7 +67,6 @@ namespace Game {
|
|||||||
dpWorld* physicsWorld;
|
dpWorld* physicsWorld;
|
||||||
dChatFilter* chatFilter;
|
dChatFilter* chatFilter;
|
||||||
dConfig* config;
|
dConfig* config;
|
||||||
dLocale* locale;
|
|
||||||
std::mt19937 randomEngine;
|
std::mt19937 randomEngine;
|
||||||
|
|
||||||
AssetManager* assetManager;
|
AssetManager* assetManager;
|
||||||
@ -146,9 +146,13 @@ int main(int argc, char** argv) {
|
|||||||
if (config.GetValue("disable_chat") == "1") chatDisabled = true;
|
if (config.GetValue("disable_chat") == "1") chatDisabled = true;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
std::string client_path = config.GetValue("client_location");
|
std::string clientPathStr = config.GetValue("client_location");
|
||||||
if (client_path.empty()) client_path = "./res";
|
if (clientPathStr.empty()) clientPathStr = "./res";
|
||||||
Game::assetManager = new AssetManager(client_path);
|
std::filesystem::path clientPath = std::filesystem::path(clientPathStr);
|
||||||
|
if (clientPath.is_relative()) {
|
||||||
|
clientPath = BinaryPathFinder::GetBinaryDir() / clientPath;
|
||||||
|
}
|
||||||
|
Game::assetManager = new AssetManager(clientPath);
|
||||||
} catch (std::runtime_error& ex) {
|
} catch (std::runtime_error& ex) {
|
||||||
Game::logger->Log("WorldServer", "Got an error while setting up assets: %s", ex.what());
|
Game::logger->Log("WorldServer", "Got an error while setting up assets: %s", ex.what());
|
||||||
|
|
||||||
@ -204,7 +208,7 @@ int main(int argc, char** argv) {
|
|||||||
LootGenerator::Instance();
|
LootGenerator::Instance();
|
||||||
Game::chatFilter = new dChatFilter(Game::assetManager->GetResPath().string() + "/chatplus_en_us", bool(std::stoi(config.GetValue("dont_generate_dcf"))));
|
Game::chatFilter = new dChatFilter(Game::assetManager->GetResPath().string() + "/chatplus_en_us", bool(std::stoi(config.GetValue("dont_generate_dcf"))));
|
||||||
|
|
||||||
Game::server = new dServer(masterIP, ourPort, instanceID, maxClients, false, true, Game::logger, masterIP, masterPort, ServerType::World, zoneID);
|
Game::server = new dServer(masterIP, ourPort, instanceID, maxClients, false, true, Game::logger, masterIP, masterPort, ServerType::World, Game::config, zoneID);
|
||||||
|
|
||||||
//Connect to the chat server:
|
//Connect to the chat server:
|
||||||
int chatPort = 1501;
|
int chatPort = 1501;
|
||||||
@ -217,7 +221,6 @@ int main(int argc, char** argv) {
|
|||||||
|
|
||||||
//Set up other things:
|
//Set up other things:
|
||||||
Game::randomEngine = std::mt19937(time(0));
|
Game::randomEngine = std::mt19937(time(0));
|
||||||
Game::locale = new dLocale();
|
|
||||||
|
|
||||||
//Run it until server gets a kill message from Master:
|
//Run it until server gets a kill message from Master:
|
||||||
auto lastTime = std::chrono::high_resolution_clock::now();
|
auto lastTime = std::chrono::high_resolution_clock::now();
|
||||||
@ -247,7 +250,6 @@ int main(int argc, char** argv) {
|
|||||||
//Load our level:
|
//Load our level:
|
||||||
if (zoneID != 0) {
|
if (zoneID != 0) {
|
||||||
dpWorld::Instance().Initialize(zoneID);
|
dpWorld::Instance().Initialize(zoneID);
|
||||||
Game::physicsWorld = &dpWorld::Instance(); //just in case some old code references it
|
|
||||||
dZoneManager::Instance()->Initialize(LWOZONEID(zoneID, instanceID, cloneID));
|
dZoneManager::Instance()->Initialize(LWOZONEID(zoneID, instanceID, cloneID));
|
||||||
g_CloneID = cloneID;
|
g_CloneID = cloneID;
|
||||||
|
|
||||||
@ -489,7 +491,7 @@ int main(int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dLogger* SetupLogger(int zoneID, int instanceID) {
|
dLogger* SetupLogger(int zoneID, int instanceID) {
|
||||||
std::string logPath = "./logs/WorldServer_" + std::to_string(zoneID) + "_" + std::to_string(instanceID) + "_" + std::to_string(time(nullptr)) + ".log";
|
std::string logPath = (BinaryPathFinder::GetBinaryDir() / ("logs/WorldServer_" + std::to_string(zoneID) + "_" + std::to_string(instanceID) + "_" + std::to_string(time(nullptr)) + ".log")).string();
|
||||||
bool logToConsole = false;
|
bool logToConsole = false;
|
||||||
bool logDebugStatements = false;
|
bool logDebugStatements = false;
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
@ -1077,9 +1079,9 @@ void HandlePacket(Packet* packet) {
|
|||||||
|
|
||||||
CBITSTREAM;
|
CBITSTREAM;
|
||||||
PacketUtils::WriteHeader(bitStream, CLIENT, MSG_CLIENT_BLUEPRINT_SAVE_RESPONSE);
|
PacketUtils::WriteHeader(bitStream, CLIENT, MSG_CLIENT_BLUEPRINT_SAVE_RESPONSE);
|
||||||
bitStream.Write<LWOOBJID>(0); //always zero so that a check on the client passes
|
bitStream.Write<LWOOBJID>(LWOOBJID_EMPTY); //always zero so that a check on the client passes
|
||||||
bitStream.Write<unsigned int>(0);
|
bitStream.Write(eBlueprintSaveResponseType::EverythingWorked);
|
||||||
bitStream.Write<unsigned int>(1);
|
bitStream.Write<uint32_t>(1);
|
||||||
bitStream.Write(blueprintID);
|
bitStream.Write(blueprintID);
|
||||||
|
|
||||||
bitStream.Write<uint32_t>(lxfmlSize);
|
bitStream.Write<uint32_t>(lxfmlSize);
|
||||||
@ -1278,7 +1280,6 @@ void WorldShutdownSequence() {
|
|||||||
|
|
||||||
void FinalizeShutdown() {
|
void FinalizeShutdown() {
|
||||||
//Delete our objects here:
|
//Delete our objects here:
|
||||||
if (Game::physicsWorld) Game::physicsWorld = nullptr;
|
|
||||||
if (Game::zoneManager) delete Game::zoneManager;
|
if (Game::zoneManager) delete Game::zoneManager;
|
||||||
|
|
||||||
Game::logger->Log("WorldServer", "Shutdown complete, zone (%i), instance (%i)", Game::server->GetZoneID(), instanceID);
|
Game::logger->Log("WorldServer", "Shutdown complete, zone (%i), instance (%i)", Game::server->GetZoneID(), instanceID);
|
||||||
|
2
docker/start_server.sh
Executable file → Normal file
2
docker/start_server.sh
Executable file → Normal file
@ -7,7 +7,7 @@ function symlink_client_files() {
|
|||||||
ln -s /client/client/res/chatplus_en_us.txt /app/res/chatplus_en_us.txt
|
ln -s /client/client/res/chatplus_en_us.txt /app/res/chatplus_en_us.txt
|
||||||
ln -s /client/client/res/names/ /app/res/names
|
ln -s /client/client/res/names/ /app/res/names
|
||||||
ln -s /client/client/res/CDServer.sqlite /app/res/CDServer.sqlite
|
ln -s /client/client/res/CDServer.sqlite /app/res/CDServer.sqlite
|
||||||
ln -s /client/client/locale/locale.xml /app/locale/locale.xml
|
|
||||||
# need to create this file so the server knows the client is unpacked (see `dCommon/dClient/AssetManager.cpp`)
|
# need to create this file so the server knows the client is unpacked (see `dCommon/dClient/AssetManager.cpp`)
|
||||||
touch /app/res/cdclient.fdb
|
touch /app/res/cdclient.fdb
|
||||||
# need to iterate over entries in maps due to maps already being a directory with navmeshes/ in it
|
# need to iterate over entries in maps due to maps already being a directory with navmeshes/ in it
|
||||||
|
@ -14,8 +14,6 @@ Here is a summary of the commands available in-game. All commands are prefixed b
|
|||||||
|pvp|`/pvp`|Toggle your PVP flag.||
|
|pvp|`/pvp`|Toggle your PVP flag.||
|
||||||
|resurrect|`/resurrect`|Resurrects the player.||
|
|resurrect|`/resurrect`|Resurrects the player.||
|
||||||
|requestmailcount|`/requestmailcount`|Sends notification with number of unread messages in the player's mailbox.||
|
|requestmailcount|`/requestmailcount`|Sends notification with number of unread messages in the player's mailbox.||
|
||||||
|skip-ags|`/skip-ags`|Skips the Avant Gardens Survival minigame mission, "Impress the Sentinel Faction".||
|
|
||||||
|skip-sg|`/skip-sg`|Skips the Shooting Gallery minigame mission, "Monarch of the Sea".||
|
|
||||||
|who|`/who`|Displays in chat all players on the instance.||
|
|who|`/who`|Displays in chat all players on the instance.||
|
||||||
|
|
||||||
## Moderation Commands
|
## Moderation Commands
|
||||||
|
1
migrations/dlu/7_make_play_key_id_nullable.sql
Normal file
1
migrations/dlu/7_make_play_key_id_nullable.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE accounts MODIFY play_key_id INT DEFAULT 0;
|
@ -25,3 +25,6 @@ dump_folder=
|
|||||||
# The location of the client
|
# The location of the client
|
||||||
# Either the folder with /res or with /client and /versions
|
# Either the folder with /res or with /client and /versions
|
||||||
client_location=
|
client_location=
|
||||||
|
|
||||||
|
# The maximum outgoing bandwidth in bits
|
||||||
|
maximum_outgoing_bandwidth=80000
|
||||||
|
@ -5,6 +5,9 @@ set(DGAMETEST_SOURCES
|
|||||||
add_subdirectory(dComponentsTests)
|
add_subdirectory(dComponentsTests)
|
||||||
list(APPEND DGAMETEST_SOURCES ${DCOMPONENTS_TESTS})
|
list(APPEND DGAMETEST_SOURCES ${DCOMPONENTS_TESTS})
|
||||||
|
|
||||||
|
add_subdirectory(dGameMessagesTests)
|
||||||
|
list(APPEND DGAMETEST_SOURCES ${DGAMEMESSAGES_TESTS})
|
||||||
|
|
||||||
# Add the executable. Remember to add all tests above this!
|
# Add the executable. Remember to add all tests above this!
|
||||||
add_executable(dGameTests ${DGAMETEST_SOURCES})
|
add_executable(dGameTests ${DGAMETEST_SOURCES})
|
||||||
|
|
||||||
|
@ -7,7 +7,6 @@ namespace Game {
|
|||||||
dpWorld* physicsWorld;
|
dpWorld* physicsWorld;
|
||||||
dChatFilter* chatFilter;
|
dChatFilter* chatFilter;
|
||||||
dConfig* config;
|
dConfig* config;
|
||||||
dLocale* locale;
|
|
||||||
std::mt19937 randomEngine;
|
std::mt19937 randomEngine;
|
||||||
RakPeerInterface* chatServer;
|
RakPeerInterface* chatServer;
|
||||||
AssetManager* assetManager;
|
AssetManager* assetManager;
|
||||||
|
@ -5,15 +5,18 @@
|
|||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
#include "dServer.h"
|
#include "dServer.h"
|
||||||
#include "EntityManager.h"
|
#include "EntityManager.h"
|
||||||
class dZoneManager;
|
|
||||||
class AssetManager;
|
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
class dZoneManager;
|
||||||
|
class AssetManager;
|
||||||
|
|
||||||
class dServerMock : public dServer {
|
class dServerMock : public dServer {
|
||||||
|
RakNet::BitStream* sentBitStream = nullptr;
|
||||||
public:
|
public:
|
||||||
dServerMock() {};
|
dServerMock() {};
|
||||||
~dServerMock() {};
|
~dServerMock() {};
|
||||||
void Send(RakNet::BitStream* bitStream, const SystemAddress& sysAddr, bool broadcast) override {};
|
RakNet::BitStream* GetMostRecentBitStream() { return sentBitStream; };
|
||||||
|
void Send(RakNet::BitStream* bitStream, const SystemAddress& sysAddr, bool broadcast) override { sentBitStream = bitStream; };
|
||||||
};
|
};
|
||||||
|
|
||||||
class GameDependenciesTest : public ::testing::Test {
|
class GameDependenciesTest : public ::testing::Test {
|
||||||
|
9
tests/dGameTests/dGameMessagesTests/CMakeLists.txt
Normal file
9
tests/dGameTests/dGameMessagesTests/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
SET(DGAMEMESSAGES_TESTS
|
||||||
|
"GameMessageTests.cpp")
|
||||||
|
|
||||||
|
# Get the folder name and prepend it to the files above
|
||||||
|
get_filename_component(thisFolderName ${CMAKE_CURRENT_SOURCE_DIR} NAME)
|
||||||
|
list(TRANSFORM DGAMEMESSAGES_TESTS PREPEND "${thisFolderName}/")
|
||||||
|
|
||||||
|
# Export to parent scope
|
||||||
|
set(DGAMEMESSAGES_TESTS ${DGAMEMESSAGES_TESTS} PARENT_SCOPE)
|
52
tests/dGameTests/dGameMessagesTests/GameMessageTests.cpp
Normal file
52
tests/dGameTests/dGameMessagesTests/GameMessageTests.cpp
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
#include "GameMessages.h"
|
||||||
|
#include "GameDependencies.h"
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
class GameMessageTests : public GameDependenciesTest {
|
||||||
|
protected:
|
||||||
|
void SetUp() override {
|
||||||
|
SetUpDependencies();
|
||||||
|
}
|
||||||
|
void TearDown() override {
|
||||||
|
TearDownDependencies();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Tests that the serialization struct BlueprintLoadItemResponse is serialized correctly
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TEST_F(GameMessageTests, SendBlueprintLoadItemResponse) {
|
||||||
|
GameMessages::SendBlueprintLoadItemResponse(UNASSIGNED_SYSTEM_ADDRESS, true, 515, 990);
|
||||||
|
auto* bitStream = static_cast<dServerMock*>(Game::server)->GetMostRecentBitStream();
|
||||||
|
ASSERT_NE(bitStream, nullptr);
|
||||||
|
ASSERT_EQ(bitStream->GetNumberOfUnreadBits(), 200);
|
||||||
|
// First read in the packets' header
|
||||||
|
uint8_t rakNetPacketId{};
|
||||||
|
uint16_t remoteConnectionType{};
|
||||||
|
uint32_t packetId{};
|
||||||
|
uint8_t always0{};
|
||||||
|
|
||||||
|
bitStream->Read(rakNetPacketId);
|
||||||
|
bitStream->Read(remoteConnectionType);
|
||||||
|
bitStream->Read(packetId);
|
||||||
|
bitStream->Read(always0);
|
||||||
|
ASSERT_EQ(rakNetPacketId, 0x53);
|
||||||
|
ASSERT_EQ(remoteConnectionType, 0x05);
|
||||||
|
ASSERT_EQ(packetId, 0x17);
|
||||||
|
ASSERT_EQ(always0, 0x00);
|
||||||
|
|
||||||
|
// Next read in packet data
|
||||||
|
|
||||||
|
uint8_t bSuccess{}; // unsigned bool
|
||||||
|
LWOOBJID previousId{};
|
||||||
|
LWOOBJID newId{};
|
||||||
|
bitStream->Read(bSuccess);
|
||||||
|
bitStream->Read(previousId);
|
||||||
|
bitStream->Read(newId);
|
||||||
|
ASSERT_EQ(bSuccess, static_cast<uint8_t>(true));
|
||||||
|
ASSERT_EQ(previousId, 515);
|
||||||
|
ASSERT_EQ(newId, 990);
|
||||||
|
|
||||||
|
ASSERT_EQ(bitStream->GetNumberOfUnreadBits(), 0);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user