mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
Reorder and note client order
This commit is contained in:
parent
0e01948414
commit
82aee95d32
154
dGame/Entity.cpp
154
dGame/Entity.cpp
@ -1013,6 +1013,8 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
possessableComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
possessableComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Blueprint
|
||||||
|
|
||||||
ModuleAssemblyComponent* moduleAssemblyComponent;
|
ModuleAssemblyComponent* moduleAssemblyComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::MODULE_ASSEMBLY, moduleAssemblyComponent)) {
|
if (TryGetComponent(eReplicaComponentType::MODULE_ASSEMBLY, moduleAssemblyComponent)) {
|
||||||
moduleAssemblyComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
moduleAssemblyComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
@ -1023,9 +1025,14 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
controllablePhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
controllablePhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
SimplePhysicsComponent* simplePhysicsComponent;
|
// ProjectilePhysics Deserilized
|
||||||
if (TryGetComponent(eReplicaComponentType::SIMPLE_PHYSICS, simplePhysicsComponent)) {
|
// PhysicsSystem Deserialized
|
||||||
simplePhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
// VehiclePhysics Deserialized
|
||||||
|
|
||||||
|
// This is Havok Vehicle
|
||||||
|
VehiclePhysicsComponent* vehiclePhysicsComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::VEHICLE_PHYSICS, vehiclePhysicsComponent)) {
|
||||||
|
vehiclePhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
RigidbodyPhantomPhysicsComponent* rigidbodyPhantomPhysics;
|
RigidbodyPhantomPhysicsComponent* rigidbodyPhantomPhysics;
|
||||||
@ -1033,9 +1040,9 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
rigidbodyPhantomPhysics->Serialize(outBitStream, bIsInitialUpdate, flags);
|
rigidbodyPhantomPhysics->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
VehiclePhysicsComponent* vehiclePhysicsComponent;
|
SimplePhysicsComponent* simplePhysicsComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::VEHICLE_PHYSICS, vehiclePhysicsComponent)) {
|
if (TryGetComponent(eReplicaComponentType::SIMPLE_PHYSICS, simplePhysicsComponent)) {
|
||||||
vehiclePhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
simplePhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
PhantomPhysicsComponent* phantomPhysicsComponent;
|
PhantomPhysicsComponent* phantomPhysicsComponent;
|
||||||
@ -1043,11 +1050,6 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
phantomPhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
phantomPhysicsComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
SoundTriggerComponent* soundTriggerComponent;
|
|
||||||
if (TryGetComponent(eReplicaComponentType::SOUND_TRIGGER, soundTriggerComponent)) {
|
|
||||||
soundTriggerComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
BuffComponent* buffComponent;
|
BuffComponent* buffComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::BUFF, buffComponent)) {
|
if (TryGetComponent(eReplicaComponentType::BUFF, buffComponent)) {
|
||||||
buffComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
buffComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
@ -1068,11 +1070,6 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
outBitStream->Write(m_CollectibleID); // Collectable component
|
outBitStream->Write(m_CollectibleID); // Collectable component
|
||||||
}
|
}
|
||||||
|
|
||||||
PetComponent* petComponent;
|
|
||||||
if (TryGetComponent(eReplicaComponentType::PET, petComponent)) {
|
|
||||||
petComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
CharacterComponent* characterComponent;
|
CharacterComponent* characterComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::CHARACTER, characterComponent)) {
|
if (TryGetComponent(eReplicaComponentType::CHARACTER, characterComponent)) {
|
||||||
|
|
||||||
@ -1103,8 +1100,9 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
characterComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
characterComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (HasComponent(eReplicaComponentType::ITEM)) {
|
PetComponent* petComponent;
|
||||||
outBitStream->Write0();
|
if (TryGetComponent(eReplicaComponentType::PET, petComponent)) {
|
||||||
|
petComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
InventoryComponent* inventoryComponent;
|
InventoryComponent* inventoryComponent;
|
||||||
@ -1112,6 +1110,9 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
inventoryComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
inventoryComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ProximityMonitor
|
||||||
|
// MovementAI
|
||||||
|
|
||||||
ScriptComponent* scriptComponent;
|
ScriptComponent* scriptComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::SCRIPT, scriptComponent)) {
|
if (TryGetComponent(eReplicaComponentType::SCRIPT, scriptComponent)) {
|
||||||
scriptComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
scriptComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
@ -1127,6 +1128,18 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
baseCombatAiComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
baseCombatAiComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Spawner
|
||||||
|
|
||||||
|
if (HasComponent(eReplicaComponentType::ITEM)) {
|
||||||
|
outBitStream->Write0();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rebuild (The real one)
|
||||||
|
// BuildBorder
|
||||||
|
// Module
|
||||||
|
// RebuildStart
|
||||||
|
// RebuildActivator
|
||||||
|
|
||||||
RebuildComponent* rebuildComponent;
|
RebuildComponent* rebuildComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::QUICK_BUILD, rebuildComponent)) {
|
if (TryGetComponent(eReplicaComponentType::QUICK_BUILD, rebuildComponent)) {
|
||||||
DestroyableComponent* destroyableComponent;
|
DestroyableComponent* destroyableComponent;
|
||||||
@ -1137,56 +1150,56 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
rebuildComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
rebuildComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
MovingPlatformComponent* movingPlatformComponent;
|
// MissionOffer
|
||||||
if (TryGetComponent(eReplicaComponentType::MOVING_PLATFORM, movingPlatformComponent)) {
|
|
||||||
movingPlatformComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
SwitchComponent* switchComponent;
|
|
||||||
if (TryGetComponent(eReplicaComponentType::SWITCH, switchComponent)) {
|
|
||||||
switchComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
VendorComponent* vendorComponent;
|
VendorComponent* vendorComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::VENDOR, vendorComponent)) {
|
if (TryGetComponent(eReplicaComponentType::VENDOR, vendorComponent)) {
|
||||||
vendorComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
vendorComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
BouncerComponent* bouncerComponent;
|
// Donation Vendor
|
||||||
if (TryGetComponent(eReplicaComponentType::BOUNCER, bouncerComponent)) {
|
// Achievement Vendor
|
||||||
bouncerComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
ScriptedActivityComponent* scriptedActivityComponent;
|
|
||||||
if (TryGetComponent(eReplicaComponentType::SCRIPTED_ACTIVITY, scriptedActivityComponent)) {
|
|
||||||
scriptedActivityComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
ShootingGalleryComponent* shootingGalleryComponent;
|
ShootingGalleryComponent* shootingGalleryComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::SHOOTING_GALLERY, shootingGalleryComponent)) {
|
if (TryGetComponent(eReplicaComponentType::SHOOTING_GALLERY, shootingGalleryComponent)) {
|
||||||
shootingGalleryComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
shootingGalleryComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
RacingControlComponent* racingControlComponent;
|
// Roller Deserialized
|
||||||
if (TryGetComponent(eReplicaComponentType::RACING_CONTROL, racingControlComponent)) {
|
|
||||||
racingControlComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
ScriptedActivityComponent* scriptedActivityComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::SCRIPTED_ACTIVITY, scriptedActivityComponent)) {
|
||||||
|
scriptedActivityComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Collectible??? why is it done that way above
|
||||||
|
|
||||||
|
MovingPlatformComponent* movingPlatformComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::MOVING_PLATFORM, movingPlatformComponent)) {
|
||||||
|
movingPlatformComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Changling
|
||||||
|
// ChoiceBuilds Deserialized
|
||||||
|
// Package
|
||||||
|
// PlatformBoundary
|
||||||
|
// HF Light Direction Gadget
|
||||||
|
// Culling Plane
|
||||||
|
// Exhibit
|
||||||
|
|
||||||
LUPExhibitComponent* lupExhibitComponent;
|
LUPExhibitComponent* lupExhibitComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::LUP_EXHIBIT, lupExhibitComponent)) {
|
if (TryGetComponent(eReplicaComponentType::LUP_EXHIBIT, lupExhibitComponent)) {
|
||||||
lupExhibitComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
lupExhibitComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Property
|
||||||
|
// Property Plaque
|
||||||
|
|
||||||
ModelComponent* modelComponent;
|
ModelComponent* modelComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::MODEL, modelComponent)) {
|
if (TryGetComponent(eReplicaComponentType::MODEL, modelComponent)) {
|
||||||
modelComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
modelComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
RenderComponent* renderComponent;
|
|
||||||
if (TryGetComponent(eReplicaComponentType::RENDER, renderComponent)) {
|
|
||||||
renderComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (modelComponent) {
|
if (modelComponent) {
|
||||||
DestroyableComponent* destroyableComponent;
|
DestroyableComponent* destroyableComponent;
|
||||||
if (TryGetComponent(eReplicaComponentType::DESTROYABLE, destroyableComponent) && !destroyableSerialized) {
|
if (TryGetComponent(eReplicaComponentType::DESTROYABLE, destroyableComponent) && !destroyableSerialized) {
|
||||||
@ -1195,14 +1208,67 @@ void Entity::WriteComponents(RakNet::BitStream* outBitStream, eReplicaPacketType
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// PropertyEntrance
|
||||||
|
// Rocket Launch LUP
|
||||||
|
// Property Management
|
||||||
|
// Rail Activator
|
||||||
|
|
||||||
|
BouncerComponent* bouncerComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::BOUNCER, bouncerComponent)) {
|
||||||
|
bouncerComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Spring Pad
|
||||||
|
|
||||||
|
SwitchComponent* switchComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::SWITCH, switchComponent)) {
|
||||||
|
switchComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
|
}
|
||||||
|
|
||||||
if (HasComponent(eReplicaComponentType::ZONE_CONTROL)) {
|
if (HasComponent(eReplicaComponentType::ZONE_CONTROL)) {
|
||||||
outBitStream->Write<uint32_t>(0x40000000);
|
outBitStream->Write<uint32_t>(0x40000000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Model Builder
|
||||||
|
// Sound Repeater Deserialized
|
||||||
|
// Chest Deserialized
|
||||||
|
// Showcase Model Handler
|
||||||
|
// Arcade (Jetpackpad)
|
||||||
|
|
||||||
|
RenderComponent* renderComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::RENDER, renderComponent)) {
|
||||||
|
renderComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Soung Ambient 2D
|
||||||
|
// Soung Ambient 2D
|
||||||
|
|
||||||
|
SoundTriggerComponent* soundTriggerComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::SOUND_TRIGGER, soundTriggerComponent)) {
|
||||||
|
soundTriggerComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Racing Sound Trigger Deserialize
|
||||||
|
// Custom Build Assembly
|
||||||
|
// Generic Activator
|
||||||
|
// Property Vendor
|
||||||
|
// Rocket Launch
|
||||||
|
// Rocket Landing
|
||||||
|
// Faction Trigger
|
||||||
|
|
||||||
|
RacingControlComponent* racingControlComponent;
|
||||||
|
if (TryGetComponent(eReplicaComponentType::RACING_CONTROL, racingControlComponent)) {
|
||||||
|
racingControlComponent->Serialize(outBitStream, bIsInitialUpdate, flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Gate Rush
|
||||||
|
|
||||||
// BBB Component, unused currently
|
// BBB Component, unused currently
|
||||||
// Need to to write0 so that is serialized correctly
|
// Need to to write0 so that is serialized correctly
|
||||||
// TODO: Implement BBB Component
|
// TODO: Implement BBB Component
|
||||||
outBitStream->Write0();
|
outBitStream->Write0();
|
||||||
|
|
||||||
|
// Crafting
|
||||||
}
|
}
|
||||||
|
|
||||||
void Entity::ResetFlags() {
|
void Entity::ResetFlags() {
|
||||||
|
Loading…
Reference in New Issue
Block a user