mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-13 19:58:21 +00:00
4004534732
* Optionally compiled additional TCP transport layer. * Config to enable it. * Tested and functional with lcdr's tcpudp dll, udp being disabled in the dll due to port issues. * Removed unused RakNet replica manager and id manager. We've got our own replica manager since pre-open-source. * Utilizes async boost behavior. Todo: * Figure out how to do ping calculations. * Fix crashes on universe shutdown. * Test TLS on a VPS. * Remove unnecessary logging. * Test with lots of clients. * Finish "master" to "manager" naming refactor.
18 lines
456 B
C++
18 lines
456 B
C++
#include "GameDependencies.h"
|
|
|
|
#include "TransportPeerInterface.h"
|
|
|
|
namespace Game {
|
|
Logger* logger = nullptr;
|
|
dServer* server = nullptr;
|
|
dZoneManager* zoneManager = nullptr;
|
|
dChatFilter* chatFilter = nullptr;
|
|
dConfig* config = nullptr;
|
|
std::mt19937 randomEngine;
|
|
TransportPeerInterface* chatServer = nullptr;
|
|
AssetManager* assetManager = nullptr;
|
|
SystemAddress chatSysAddr;
|
|
EntityManager* entityManager = nullptr;
|
|
std::string projectVersion;
|
|
}
|