mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-09 20:24:16 +00:00
things switched, just gotta move the handle's
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
|
||||
#include "ClientPackets.h"
|
||||
#include "dCommonVars.h"
|
||||
#include "PositionUpdate.h"
|
||||
#include "LDFFormat.h"
|
||||
#include "ZCompression.h"
|
||||
|
||||
@@ -139,111 +138,3 @@ namespace ClientPackets {
|
||||
bitStream.Write<uint8_t>(supportsObjects);
|
||||
}
|
||||
}
|
||||
|
||||
ChatMessage ClientPackets::HandleChatMessage(Packet* packet) {
|
||||
CINSTREAM_SKIP_HEADER;
|
||||
|
||||
ChatMessage message;
|
||||
uint32_t messageLength;
|
||||
|
||||
inStream.Read(message.chatChannel);
|
||||
inStream.Read(message.unknown);
|
||||
inStream.Read(messageLength);
|
||||
|
||||
for (uint32_t i = 0; i < (messageLength - 1); ++i) {
|
||||
uint16_t character;
|
||||
inStream.Read(character);
|
||||
message.message.push_back(character);
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
|
||||
PositionUpdate ClientPackets::HandleClientPositionUpdate(Packet* packet) {
|
||||
PositionUpdate update;
|
||||
CINSTREAM_SKIP_HEADER;
|
||||
|
||||
inStream.Read(update.position.x);
|
||||
inStream.Read(update.position.y);
|
||||
inStream.Read(update.position.z);
|
||||
|
||||
inStream.Read(update.rotation.x);
|
||||
inStream.Read(update.rotation.y);
|
||||
inStream.Read(update.rotation.z);
|
||||
inStream.Read(update.rotation.w);
|
||||
|
||||
inStream.Read(update.onGround);
|
||||
inStream.Read(update.onRail);
|
||||
|
||||
bool velocityFlag = false;
|
||||
inStream.Read(velocityFlag);
|
||||
if (velocityFlag) {
|
||||
inStream.Read(update.velocity.x);
|
||||
inStream.Read(update.velocity.y);
|
||||
inStream.Read(update.velocity.z);
|
||||
}
|
||||
|
||||
bool angVelocityFlag = false;
|
||||
inStream.Read(angVelocityFlag);
|
||||
if (angVelocityFlag) {
|
||||
inStream.Read(update.angularVelocity.x);
|
||||
inStream.Read(update.angularVelocity.y);
|
||||
inStream.Read(update.angularVelocity.z);
|
||||
}
|
||||
|
||||
// TODO figure out how to use these. Ignoring for now, but reading in if they exist.
|
||||
bool hasLocalSpaceInfo{};
|
||||
if (inStream.Read(hasLocalSpaceInfo) && hasLocalSpaceInfo) {
|
||||
inStream.Read(update.localSpaceInfo.objectId);
|
||||
inStream.Read(update.localSpaceInfo.position.x);
|
||||
inStream.Read(update.localSpaceInfo.position.y);
|
||||
inStream.Read(update.localSpaceInfo.position.z);
|
||||
bool hasLinearVelocity = false;
|
||||
if (inStream.Read(hasLinearVelocity) && hasLinearVelocity) {
|
||||
inStream.Read(update.localSpaceInfo.linearVelocity.x);
|
||||
inStream.Read(update.localSpaceInfo.linearVelocity.y);
|
||||
inStream.Read(update.localSpaceInfo.linearVelocity.z);
|
||||
}
|
||||
}
|
||||
|
||||
bool hasRemoteInputInfo{};
|
||||
if (inStream.Read(hasRemoteInputInfo) && hasRemoteInputInfo) {
|
||||
inStream.Read(update.remoteInputInfo.m_RemoteInputX);
|
||||
inStream.Read(update.remoteInputInfo.m_RemoteInputY);
|
||||
inStream.Read(update.remoteInputInfo.m_IsPowersliding);
|
||||
inStream.Read(update.remoteInputInfo.m_IsModified);
|
||||
}
|
||||
|
||||
return update;
|
||||
}
|
||||
|
||||
ChatModerationRequest ClientPackets::HandleChatModerationRequest(Packet* packet) {
|
||||
CINSTREAM_SKIP_HEADER;
|
||||
|
||||
ChatModerationRequest request;
|
||||
|
||||
inStream.Read(request.chatLevel);
|
||||
inStream.Read(request.requestID);
|
||||
|
||||
for (uint32_t i = 0; i < 42; ++i) {
|
||||
uint16_t character;
|
||||
inStream.Read(character);
|
||||
request.receiver.push_back(static_cast<uint8_t>(character));
|
||||
}
|
||||
|
||||
if (!request.receiver.empty()) {
|
||||
if (std::string(request.receiver.c_str(), 4) == "[GM]") { // Shift the string forward if we are speaking to a GM as the client appends "[GM]" if they are
|
||||
request.receiver = std::string(request.receiver.c_str() + 4, request.receiver.size() - 4);
|
||||
}
|
||||
}
|
||||
|
||||
uint16_t messageLength;
|
||||
inStream.Read(messageLength);
|
||||
for (uint32_t i = 0; i < messageLength; ++i) {
|
||||
uint16_t character;
|
||||
inStream.Read(character);
|
||||
request.message.push_back(static_cast<uint8_t>(character));
|
||||
}
|
||||
|
||||
return request;
|
||||
}
|
||||
|
@@ -17,30 +17,12 @@ class PositionUpdate;
|
||||
|
||||
struct Packet;
|
||||
|
||||
struct ChatMessage {
|
||||
uint8_t chatChannel = 0;
|
||||
uint16_t unknown = 0;
|
||||
std::u16string message;
|
||||
};
|
||||
|
||||
struct ChatModerationRequest {
|
||||
uint8_t chatLevel = 0;
|
||||
uint8_t requestID = 0;
|
||||
std::string receiver;
|
||||
std::string message;
|
||||
};
|
||||
|
||||
|
||||
class User;
|
||||
struct SystemAddress;
|
||||
enum class eCharacterCreationResponse : uint8_t;
|
||||
enum class eRenameResponse : uint8_t;
|
||||
|
||||
namespace ClientPackets {
|
||||
ChatMessage HandleChatMessage(Packet* packet);
|
||||
PositionUpdate HandleClientPositionUpdate(Packet* packet);
|
||||
ChatModerationRequest HandleChatModerationRequest(Packet* packet);
|
||||
|
||||
struct LoadStaticZone : public LUBitStream {
|
||||
LWOZONEID zoneID;
|
||||
uint32_t checksum = 0;
|
||||
|
@@ -30,13 +30,123 @@ namespace WorldPackets {
|
||||
data.Insert("Description4", Game::config->GetValue("help_4_description"));
|
||||
break;
|
||||
case eLanguageCodeID::PL_US:
|
||||
[[fallthrough]];
|
||||
case eLanguageCodeID::DE_DE:
|
||||
[[fallthrough]];
|
||||
case eLanguageCodeID::EN_GB:
|
||||
[[fallthrough]];
|
||||
default:
|
||||
break;
|
||||
}
|
||||
GameMessages::SendUIMessageServerToSingleClient(player, sysAddr, "UIHelpTop5", data);
|
||||
}
|
||||
|
||||
|
||||
bool GeneralChatMessage::Deserialize(RakNet::BitStream& bitStream) {
|
||||
VALIDATE_READ(bitStream.Read(chatChannel));
|
||||
VALIDATE_READ(bitStream.Read(unknown));
|
||||
|
||||
uint32_t messageLength;
|
||||
VALIDATE_READ(bitStream.Read(messageLength));
|
||||
|
||||
for (uint32_t i = 0; i < (messageLength - 1); ++i) {
|
||||
uint16_t character;
|
||||
VALIDATE_READ(bitStream.Read(character));
|
||||
message.push_back(character);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void GeneralChatMessage::Handle() {
|
||||
}
|
||||
|
||||
bool PositionUpdate::Deserialize(RakNet::BitStream& bitStream) {
|
||||
VALIDATE_READ(bitStream.Read(position.x));
|
||||
VALIDATE_READ(bitStream.Read(position.y));
|
||||
VALIDATE_READ(bitStream.Read(position.z));
|
||||
|
||||
VALIDATE_READ(bitStream.Read(rotation.x));
|
||||
VALIDATE_READ(bitStream.Read(rotation.y));
|
||||
VALIDATE_READ(bitStream.Read(rotation.z));
|
||||
VALIDATE_READ(bitStream.Read(rotation.w));
|
||||
|
||||
VALIDATE_READ(bitStream.Read(onGround));
|
||||
VALIDATE_READ(bitStream.Read(onRail));
|
||||
|
||||
bool velocityFlag = false;
|
||||
if (bitStream.Read(velocityFlag) && velocityFlag) {
|
||||
VALIDATE_READ(bitStream.Read(velocity.x));
|
||||
VALIDATE_READ(bitStream.Read(velocity.y));
|
||||
VALIDATE_READ(bitStream.Read(velocity.z));
|
||||
}
|
||||
|
||||
bool angVelocityFlag = false;
|
||||
if (bitStream.Read(angVelocityFlag) && angVelocityFlag) {
|
||||
VALIDATE_READ(bitStream.Read(angularVelocity.x));
|
||||
VALIDATE_READ(bitStream.Read(angularVelocity.y));
|
||||
VALIDATE_READ(bitStream.Read(angularVelocity.z));
|
||||
}
|
||||
|
||||
// TODO figure out how to use these. Ignoring for now, but reading in if they exist.
|
||||
bool hasLocalSpaceInfo{};
|
||||
VALIDATE_READ(bitStream.Read(hasLocalSpaceInfo));
|
||||
if (hasLocalSpaceInfo) {
|
||||
VALIDATE_READ(bitStream.Read(localSpaceInfo.objectId));
|
||||
VALIDATE_READ(bitStream.Read(localSpaceInfo.position.x));
|
||||
VALIDATE_READ(bitStream.Read(localSpaceInfo.position.y));
|
||||
VALIDATE_READ(bitStream.Read(localSpaceInfo.position.z));
|
||||
|
||||
bool hasLinearVelocity = false;
|
||||
if (bitStream.Read(hasLinearVelocity) && hasLinearVelocity) {
|
||||
VALIDATE_READ(bitStream.Read(localSpaceInfo.linearVelocity.x));
|
||||
VALIDATE_READ(bitStream.Read(localSpaceInfo.linearVelocity.y));
|
||||
VALIDATE_READ(bitStream.Read(localSpaceInfo.linearVelocity.z));
|
||||
}
|
||||
}
|
||||
bool hasRemoteInputInfo{};
|
||||
VALIDATE_READ(bitStream.Read(hasRemoteInputInfo));
|
||||
if (hasRemoteInputInfo) {
|
||||
VALIDATE_READ(bitStream.Read(remoteInputInfo.m_RemoteInputX));
|
||||
VALIDATE_READ(bitStream.Read(remoteInputInfo.m_RemoteInputY));
|
||||
VALIDATE_READ(bitStream.Read(remoteInputInfo.m_IsPowersliding));
|
||||
VALIDATE_READ(bitStream.Read(remoteInputInfo.m_IsModified));
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void PositionUpdate::Handle() {
|
||||
|
||||
}
|
||||
|
||||
bool StringCheck::Deserialize(RakNet::BitStream& bitStream) {
|
||||
VALIDATE_READ(bitStream.Read(chatLevel));
|
||||
VALIDATE_READ(bitStream.Read(requestID));
|
||||
|
||||
for (uint32_t i = 0; i < 42; ++i) {
|
||||
uint16_t character;
|
||||
VALIDATE_READ(bitStream.Read(character));
|
||||
receiver.push_back(static_cast<uint8_t>(character));
|
||||
}
|
||||
|
||||
if (!receiver.empty()) {
|
||||
if (std::string(receiver.c_str(), 4) == "[GM]") { // Shift the string forward if we are speaking to a GM as the client appends "[GM]" if they are
|
||||
receiver = std::string(receiver.c_str() + 4, receiver.size() - 4);
|
||||
}
|
||||
}
|
||||
|
||||
uint32_t messageLength;
|
||||
VALIDATE_READ(bitStream.Read(messageLength));
|
||||
for (uint32_t i = 0; i < messageLength; ++i) {
|
||||
uint16_t character;
|
||||
VALIDATE_READ(bitStream.Read(character));
|
||||
message.push_back(static_cast<uint8_t>(character));
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void StringCheck::Handle() {
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -26,6 +26,56 @@ namespace WorldPackets {
|
||||
bool Deserialize(RakNet::BitStream& bitStream) override;
|
||||
void Handle() override;
|
||||
};
|
||||
|
||||
struct GeneralChatMessage : public LUBitStream {
|
||||
uint8_t chatChannel = 0;
|
||||
uint16_t unknown = 0;
|
||||
std::u16string message;
|
||||
|
||||
GeneralChatMessage() : LUBitStream(eConnectionType::WORLD, MessageType::World::GENERAL_CHAT_MESSAGE) {};
|
||||
bool Deserialize(RakNet::BitStream& bitStream) override;
|
||||
void Handle() override;
|
||||
};
|
||||
|
||||
struct PositionUpdate : public LUBitStream {
|
||||
NiPoint3 position = NiPoint3Constant::ZERO;
|
||||
NiQuaternion rotation = NiQuaternionConstant::IDENTITY;
|
||||
bool onGround = false;
|
||||
bool onRail = false;
|
||||
NiPoint3 velocity = NiPoint3Constant::ZERO;
|
||||
NiPoint3 angularVelocity = NiPoint3Constant::ZERO;
|
||||
struct LocalSpaceInfo {
|
||||
LWOOBJID objectId = LWOOBJID_EMPTY;
|
||||
NiPoint3 position = NiPoint3Constant::ZERO;
|
||||
NiPoint3 linearVelocity = NiPoint3Constant::ZERO;
|
||||
};
|
||||
LocalSpaceInfo localSpaceInfo;
|
||||
struct RemoteInputInfo {
|
||||
bool operator==(const RemoteInputInfo& other) {
|
||||
return m_RemoteInputX == other.m_RemoteInputX && m_RemoteInputY == other.m_RemoteInputY && m_IsPowersliding == other.m_IsPowersliding && m_IsModified == other.m_IsModified;
|
||||
}
|
||||
float m_RemoteInputX = 0;
|
||||
float m_RemoteInputY = 0;
|
||||
bool m_IsPowersliding = false;
|
||||
bool m_IsModified = false;
|
||||
};
|
||||
RemoteInputInfo remoteInputInfo;
|
||||
|
||||
PositionUpdate() : LUBitStream(eConnectionType::WORLD, MessageType::World::POSITION_UPDATE) {};
|
||||
bool Deserialize(RakNet::BitStream& bitStream) override;
|
||||
void Handle() override;
|
||||
};
|
||||
|
||||
struct StringCheck : public LUBitStream {
|
||||
uint8_t chatLevel = 0;
|
||||
uint8_t requestID = 0;
|
||||
std::string receiver;
|
||||
std::string message;
|
||||
|
||||
StringCheck() : LUBitStream(eConnectionType::WORLD, MessageType::World::STRING_CHECK) {};
|
||||
bool Deserialize(RakNet::BitStream& bitStream) override;
|
||||
void Handle() override;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // WORLDPACKETS_H
|
||||
|
Reference in New Issue
Block a user