|
|
@ -36,16 +36,12 @@ multimap<uint32_t, EventHandler> tickQueue;
|
|
|
|
|
|
|
|
|
|
|
|
//TODO: consider unordered_map of pairs, or unordered_map of unordered_set, or whatever
|
|
|
|
//TODO: consider unordered_map of pairs, or unordered_map of unordered_set, or whatever
|
|
|
|
multimap<Plugin*, EventHandler> handlers[EventType::EVENT_MAX];
|
|
|
|
multimap<Plugin*, EventHandler> handlers[EventType::EVENT_MAX];
|
|
|
|
multimap<Plugin*, int32_t> pluginFrequencies[EventType::EVENT_MAX];
|
|
|
|
|
|
|
|
map<int32_t, int32_t> eventFrequency[EventType::EVENT_MAX];
|
|
|
|
|
|
|
|
uint32_t eventLastTick[EventType::EVENT_MAX];
|
|
|
|
uint32_t eventLastTick[EventType::EVENT_MAX];
|
|
|
|
|
|
|
|
|
|
|
|
const uint32_t ticksPerYear = 403200;
|
|
|
|
const uint32_t ticksPerYear = 403200;
|
|
|
|
|
|
|
|
|
|
|
|
void DFHack::EventManager::registerListener(EventType::EventType e, EventHandler handler, int32_t freq, Plugin* plugin) {
|
|
|
|
void DFHack::EventManager::registerListener(EventType::EventType e, EventHandler handler, Plugin* plugin) {
|
|
|
|
handlers[e].insert(pair<Plugin*, EventHandler>(plugin, handler));
|
|
|
|
handlers[e].insert(pair<Plugin*, EventHandler>(plugin, handler));
|
|
|
|
eventFrequency[e][freq]++;
|
|
|
|
|
|
|
|
pluginFrequencies[e].insert(pair<Plugin*,int32_t>(plugin, freq));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DFHack::EventManager::registerTick(EventHandler handler, int32_t when, Plugin* plugin, bool absolute) {
|
|
|
|
void DFHack::EventManager::registerTick(EventHandler handler, int32_t when, Plugin* plugin, bool absolute) {
|
|
|
@ -66,7 +62,7 @@ void DFHack::EventManager::registerTick(EventHandler handler, int32_t when, Plug
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DFHack::EventManager::unregister(EventType::EventType e, EventHandler handler, int32_t freq, Plugin* plugin) {
|
|
|
|
void DFHack::EventManager::unregister(EventType::EventType e, EventHandler handler, Plugin* plugin) {
|
|
|
|
for ( multimap<Plugin*, EventHandler>::iterator i = handlers[e].find(plugin); i != handlers[e].end(); i++ ) {
|
|
|
|
for ( multimap<Plugin*, EventHandler>::iterator i = handlers[e].find(plugin); i != handlers[e].end(); i++ ) {
|
|
|
|
if ( (*i).first != plugin )
|
|
|
|
if ( (*i).first != plugin )
|
|
|
|
break;
|
|
|
|
break;
|
|
|
@ -76,16 +72,6 @@ void DFHack::EventManager::unregister(EventType::EventType e, EventHandler handl
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( eventFrequency[e].find(freq) == eventFrequency[e].end() ) {
|
|
|
|
|
|
|
|
Core::getInstance().getConsole().print("%s, line %d: Error: incorrect frequency on deregister.\n", __FILE__, __LINE__);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
eventFrequency[e][freq]--;
|
|
|
|
|
|
|
|
if ( eventFrequency[e][freq] == 0 ) {
|
|
|
|
|
|
|
|
eventFrequency[e].erase(eventFrequency[e].find(freq));
|
|
|
|
|
|
|
|
} else if ( eventFrequency[e][freq] < 0 ) {
|
|
|
|
|
|
|
|
Core::getInstance().getConsole().print("%s, line %d: Error: incorrect frequency on deregister.\n", __FILE__, __LINE__);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -112,21 +98,6 @@ void DFHack::EventManager::unregisterAll(Plugin* plugin) {
|
|
|
|
for ( size_t a = 0; a < (size_t)EventType::EVENT_MAX; a++ ) {
|
|
|
|
for ( size_t a = 0; a < (size_t)EventType::EVENT_MAX; a++ ) {
|
|
|
|
handlers[a].erase(plugin);
|
|
|
|
handlers[a].erase(plugin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for ( size_t a = 0; a < (size_t)EventType::EVENT_MAX; a++ ) {
|
|
|
|
|
|
|
|
for ( auto b = pluginFrequencies[a].begin(); b != pluginFrequencies[a].end(); b++ ) {
|
|
|
|
|
|
|
|
if ( (*b).first != plugin )
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int32_t freq = (*b).second;
|
|
|
|
|
|
|
|
eventFrequency[a][freq]--;
|
|
|
|
|
|
|
|
if ( eventFrequency[a][freq] < 0 ) {
|
|
|
|
|
|
|
|
Core::getInstance().getConsole().print("%s, line %d: Error: incorrect frequency on deregister.\n", __FILE__, __LINE__);
|
|
|
|
|
|
|
|
eventFrequency[a].erase(eventFrequency[a].find(freq));
|
|
|
|
|
|
|
|
} else if ( eventFrequency[a][freq] == 0 ) {
|
|
|
|
|
|
|
|
eventFrequency[a].erase(eventFrequency[a].find(freq));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -171,8 +142,8 @@ void DFHack::EventManager::onStateChange(color_ostream& out, state_change_event
|
|
|
|
if ( !doOnce ) {
|
|
|
|
if ( !doOnce ) {
|
|
|
|
//TODO: put this somewhere else
|
|
|
|
//TODO: put this somewhere else
|
|
|
|
doOnce = true;
|
|
|
|
doOnce = true;
|
|
|
|
EventHandler buildingHandler(Buildings::updateBuildings);
|
|
|
|
EventHandler buildingHandler(Buildings::updateBuildings, 100);
|
|
|
|
DFHack::EventManager::registerListener(EventType::BUILDING, buildingHandler, 100, NULL);
|
|
|
|
DFHack::EventManager::registerListener(EventType::BUILDING, buildingHandler, NULL);
|
|
|
|
//out.print("Registered listeners.\n %d", __LINE__);
|
|
|
|
//out.print("Registered listeners.\n %d", __LINE__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( event == DFHack::SC_MAP_UNLOADED ) {
|
|
|
|
if ( event == DFHack::SC_MAP_UNLOADED ) {
|
|
|
@ -221,37 +192,48 @@ void DFHack::EventManager::manageEvents(color_ostream& out) {
|
|
|
|
if ( tick <= lastTick )
|
|
|
|
if ( tick <= lastTick )
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
lastTick = tick;
|
|
|
|
lastTick = tick;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int32_t eventFrequency[EventType::EVENT_MAX];
|
|
|
|
|
|
|
|
for ( size_t a = 0; a < EventType::EVENT_MAX; a++ ) {
|
|
|
|
|
|
|
|
int32_t min = 1000000000;
|
|
|
|
|
|
|
|
for ( auto b = handlers[a].begin(); b != handlers[a].end(); b++ ) {
|
|
|
|
|
|
|
|
EventHandler bob = (*b).second;
|
|
|
|
|
|
|
|
if ( bob.freq < min )
|
|
|
|
|
|
|
|
min = bob.freq;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
eventFrequency[a] = min;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
manageTickEvent(out);
|
|
|
|
manageTickEvent(out);
|
|
|
|
if ( tick - eventLastTick[EventType::JOB_INITIATED] >= (*eventFrequency[EventType::JOB_INITIATED].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::JOB_INITIATED] >= eventFrequency[EventType::JOB_INITIATED] ) {
|
|
|
|
manageJobInitiatedEvent(out);
|
|
|
|
manageJobInitiatedEvent(out);
|
|
|
|
eventLastTick[EventType::JOB_INITIATED] = tick;
|
|
|
|
eventLastTick[EventType::JOB_INITIATED] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tick - eventLastTick[EventType::JOB_COMPLETED] >= (*eventFrequency[EventType::JOB_COMPLETED].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::JOB_COMPLETED] >= eventFrequency[EventType::JOB_COMPLETED] ) {
|
|
|
|
manageJobCompletedEvent(out);
|
|
|
|
manageJobCompletedEvent(out);
|
|
|
|
eventLastTick[EventType::JOB_COMPLETED] = tick;
|
|
|
|
eventLastTick[EventType::JOB_COMPLETED] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tick - eventLastTick[EventType::UNIT_DEATH] >= (*eventFrequency[EventType::UNIT_DEATH].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::UNIT_DEATH] >= eventFrequency[EventType::UNIT_DEATH] ) {
|
|
|
|
manageUnitDeathEvent(out);
|
|
|
|
manageUnitDeathEvent(out);
|
|
|
|
eventLastTick[EventType::UNIT_DEATH] = tick;
|
|
|
|
eventLastTick[EventType::UNIT_DEATH] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tick - eventLastTick[EventType::ITEM_CREATED] >= (*eventFrequency[EventType::ITEM_CREATED].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::ITEM_CREATED] >= eventFrequency[EventType::ITEM_CREATED] ) {
|
|
|
|
manageItemCreationEvent(out);
|
|
|
|
manageItemCreationEvent(out);
|
|
|
|
eventLastTick[EventType::ITEM_CREATED] = tick;
|
|
|
|
eventLastTick[EventType::ITEM_CREATED] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tick - eventLastTick[EventType::BUILDING] >= (*eventFrequency[EventType::BUILDING].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::BUILDING] >= eventFrequency[EventType::BUILDING] ) {
|
|
|
|
manageBuildingEvent(out);
|
|
|
|
manageBuildingEvent(out);
|
|
|
|
eventLastTick[EventType::BUILDING] = tick;
|
|
|
|
eventLastTick[EventType::BUILDING] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tick - eventLastTick[EventType::CONSTRUCTION] >= (*eventFrequency[EventType::CONSTRUCTION].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::CONSTRUCTION] >= eventFrequency[EventType::CONSTRUCTION] ) {
|
|
|
|
manageConstructionEvent(out);
|
|
|
|
manageConstructionEvent(out);
|
|
|
|
eventLastTick[EventType::CONSTRUCTION] = tick;
|
|
|
|
eventLastTick[EventType::CONSTRUCTION] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tick - eventLastTick[EventType::SYNDROME] >= (*eventFrequency[EventType::SYNDROME].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::SYNDROME] >= eventFrequency[EventType::SYNDROME] ) {
|
|
|
|
manageSyndromeEvent(out);
|
|
|
|
manageSyndromeEvent(out);
|
|
|
|
eventLastTick[EventType::SYNDROME] = tick;
|
|
|
|
eventLastTick[EventType::SYNDROME] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tick - eventLastTick[EventType::INVASION] >= (*eventFrequency[EventType::INVASION].begin()).first ) {
|
|
|
|
if ( tick - eventLastTick[EventType::INVASION] >= eventFrequency[EventType::INVASION] ) {
|
|
|
|
manageInvasionEvent(out);
|
|
|
|
manageInvasionEvent(out);
|
|
|
|
eventLastTick[EventType::INVASION] = tick;
|
|
|
|
eventLastTick[EventType::INVASION] = tick;
|
|
|
|
}
|
|
|
|
}
|
|
|
|