1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include "System/Util.h"
#include "Sim/Projectiles/Projectile.h" // for operator delete
#include "System/EventBatchHandler.h"
#include "System/EventHandler.h"
#if UNSYNCED_PROJ_NOEVENT
#include "Rendering/ProjectileDrawer.h"
#endif
#include "Rendering/Textures/S3OTextureHandler.h"
#include "System/Platform/Threading.h"
EventBatchHandler* EventBatchHandler::ebh = nullptr;
boost::int64_t EventBatchHandler::eventSequenceNumber = 0;
EventBatchHandler::EventBatchHandler()
: CEventClient("[EventBatchHandler]", 0, true)
{
autoLinkEvents = true;
RegisterLinkedEvents(this);
eventHandler.AddClient(this);
}
void EventBatchHandler::CreateInstance()
{
ebh = new EventBatchHandler();
}
void EventBatchHandler::DeleteInstance()
{
delete ebh;
ebh = nullptr;
}
void EventBatchHandler::UnitMoved(const CUnit* unit) { EnqueueUnitMovedEvent(unit, unit->pos); }
void EventBatchHandler::UnitEnteredRadar(const CUnit* unit, int at) { EnqueueUnitLOSStateChangeEvent(unit, at, unit->losStatus[at]); }
void EventBatchHandler::UnitEnteredLos(const CUnit* unit, int at) { EnqueueUnitLOSStateChangeEvent(unit, at, unit->losStatus[at]); }
void EventBatchHandler::UnitLeftRadar(const CUnit* unit, int at) { EnqueueUnitLOSStateChangeEvent(unit, at, unit->losStatus[at]); }
void EventBatchHandler::UnitLeftLos(const CUnit* unit, int at) { EnqueueUnitLOSStateChangeEvent(unit, at, unit->losStatus[at]); }
void EventBatchHandler::UnitCloaked(const CUnit* unit) { EnqueueUnitCloakStateChangeEvent(unit, 1); }
void EventBatchHandler::UnitDecloaked(const CUnit* unit) { EnqueueUnitCloakStateChangeEvent(unit, 0); }
void EventBatchHandler::FeatureCreated(const CFeature* feature) { GetFeatureCreatedDestroyedEventBatch().enqueue(feature); }
void EventBatchHandler::FeatureDestroyed(const CFeature* feature) { GetFeatureCreatedDestroyedEventBatch().dequeue(feature); }
void EventBatchHandler::FeatureMoved(const CFeature* feature, const float3& oldpos) { EnqueueFeatureMovedEvent(feature, oldpos, feature->pos); }
void EventBatchHandler::ProjectileCreated(const CProjectile* proj)
{
if (proj->synced) {
GetSyncedProjectileCreatedDestroyedBatch().insert(proj);
} else {
GetUnsyncedProjectileCreatedDestroyedBatch().insert(proj);
}
}
void EventBatchHandler::ProjectileDestroyed(const CProjectile* proj)
{
if (proj->synced) {
GetSyncedProjectileCreatedDestroyedBatch().erase_delete(proj);
} else {
GetUnsyncedProjectileCreatedDestroyedBatch().erase_delete(proj);
}
}
void EventBatchHandler::ProjectileCreatedDestroyedEvent::Add(const CProjectile* p) { eventHandler.RenderProjectileCreated(p); }
void EventBatchHandler::ProjectileCreatedDestroyedEvent::Remove(const CProjectile* p) { eventHandler.RenderProjectileDestroyed(p); }
void EventBatchHandler::ProjectileCreatedDestroyedEvent::Delete(const CProjectile* p) { delete p; }
#if UNSYNCED_PROJ_NOEVENT
EventBatchHandler::UnsyncedProjectileCreatedDestroyedEventBatch EventBatchHandler::unsyncedProjectileCreatedDestroyedEventBatch;
void EventBatchHandler::UnsyncedProjectileCreatedDestroyedEvent::Add(const CProjectile* p) { projectileDrawer->RenderProjectileCreated(p); }
void EventBatchHandler::UnsyncedProjectileCreatedDestroyedEvent::Remove(const CProjectile* p) { projectileDrawer->RenderProjectileDestroyed(p); }
void EventBatchHandler::UnsyncedProjectileCreatedDestroyedEvent::Delete(const CProjectile* p) { delete p; }
#endif
void EventBatchHandler::UnitCreatedDestroyedEvent::Add(const UD& u) { eventHandler.RenderUnitCreated(u.unit, u.data); }
void EventBatchHandler::UnitCreatedDestroyedEvent::Remove(const UD& u) { eventHandler.RenderUnitDestroyed(u.unit); }
void EventBatchHandler::UnitCloakStateChangedEvent::Add(const UAD& u) { if(!u.unit->isDead) eventHandler.RenderUnitCloakChanged(u.unit, u.data); }
void EventBatchHandler::UnitLOSStateChangedEvent::Add(const UAD& u) { if(!u.unit->isDead) eventHandler.RenderUnitLOSChanged(u.unit, u.data, u.status); }
void EventBatchHandler::UnitMovedEvent::Add(const UAP& u) { eventHandler.RenderUnitMoved(u.unit, u.newpos); }
void EventBatchHandler::FeatureCreatedDestroyedEvent::Add(const CFeature* f) { eventHandler.RenderFeatureCreated(f); }
void EventBatchHandler::FeatureCreatedDestroyedEvent::Remove(const CFeature* f) { eventHandler.RenderFeatureDestroyed(f); }
void EventBatchHandler::FeatureMovedEvent::Add(const FAP& f) { eventHandler.RenderFeatureMoved(f.feat, f.oldpos, f.newpos); }
void EventBatchHandler::UpdateUnits() {
unitCreatedDestroyedEventBatch.delay();
unitCloakStateChangedEventBatch.delay();
unitLOSStateChangedEventBatch.delay();
unitMovedEventBatch.delay();
}
void EventBatchHandler::UpdateDrawUnits() {
unitCreatedDestroyedEventBatch.execute();
unitCloakStateChangedEventBatch.execute();
unitLOSStateChangedEventBatch.execute();
unitMovedEventBatch.execute();
}
void EventBatchHandler::DeleteSyncedUnits() {
unitCloakStateChangedEventBatch.clean(unitCreatedDestroyedEventBatch.to_destroy());
unitLOSStateChangedEventBatch.clean(unitCreatedDestroyedEventBatch.to_destroy());
unitMovedEventBatch.clean(unitCreatedDestroyedEventBatch.to_destroy());
unitCreatedDestroyedEventBatch.clean();
unitCreatedDestroyedEventBatch.destroy_synced();
}
void EventBatchHandler::UpdateFeatures() {
featureCreatedDestroyedEventBatch.delay();
featureMovedEventBatch.delay();
}
void EventBatchHandler::UpdateDrawFeatures() {
featureCreatedDestroyedEventBatch.execute();
featureMovedEventBatch.execute();
}
void EventBatchHandler::DeleteSyncedFeatures() {
featureMovedEventBatch.clean(featureCreatedDestroyedEventBatch.to_destroy());
featureCreatedDestroyedEventBatch.clean();
featureCreatedDestroyedEventBatch.destroy();
}
void EventBatchHandler::UpdateProjectiles() {
syncedProjectileCreatedDestroyedEventBatch.delay_delete();
syncedProjectileCreatedDestroyedEventBatch.delay_add();
unsyncedProjectileCreatedDestroyedEventBatch.delay_delete();
unsyncedProjectileCreatedDestroyedEventBatch.delay_add();
}
void EventBatchHandler::UpdateDrawProjectiles() {
projectileHandler->GetSyncedRenderProjectileIDs().delete_delayed();
syncedProjectileCreatedDestroyedEventBatch.delete_delayed();
syncedProjectileCreatedDestroyedEventBatch.add_delayed();
projectileHandler->GetSyncedRenderProjectileIDs().add_delayed();
#if !UNSYNCED_PROJ_NOEVENT
projectileHandler->GetUnsyncedRenderProjectileIDs().delete_delayed();
#endif
unsyncedProjectileCreatedDestroyedEventBatch.delete_delayed();
unsyncedProjectileCreatedDestroyedEventBatch.add_delayed();
#if !UNSYNCED_PROJ_NOEVENT
projectileHandler->GetUnsyncedRenderProjectileIDs().add_delayed();
#endif
}
void EventBatchHandler::DeleteSyncedProjectiles() {
}
void EventBatchHandler::UpdateObjects() {
UpdateUnits();
UpdateFeatures();
UpdateProjectiles();
}
void EventBatchHandler::LoadedModelRequested() {
}
|