2012-09-25 01:25:47 -06:00
|
|
|
#include "Core.h"
|
2013-11-07 00:58:11 -07:00
|
|
|
#include "Error.h"
|
2014-06-23 07:15:46 -06:00
|
|
|
#include "Console.h"
|
|
|
|
#include "Export.h"
|
|
|
|
#include "LuaTools.h"
|
|
|
|
#include "MiscUtils.h"
|
|
|
|
#include "PluginManager.h"
|
|
|
|
#include "VTableInterpose.h"
|
2012-12-20 15:42:15 -07:00
|
|
|
|
2014-06-23 07:15:46 -06:00
|
|
|
#include "df/building.h"
|
2015-11-07 14:15:37 -07:00
|
|
|
#include "df/building_furnacest.h"
|
2012-12-20 15:42:15 -07:00
|
|
|
#include "df/building_workshopst.h"
|
2014-06-23 07:15:46 -06:00
|
|
|
#include "df/construction.h"
|
2012-12-09 04:00:49 -07:00
|
|
|
#include "df/item.h"
|
2012-12-09 05:15:39 -07:00
|
|
|
#include "df/item_actual.h"
|
2014-06-23 07:15:46 -06:00
|
|
|
#include "df/job.h"
|
|
|
|
#include "df/proj_itemst.h"
|
|
|
|
#include "df/proj_unitst.h"
|
2012-09-25 01:25:47 -06:00
|
|
|
#include "df/reaction.h"
|
|
|
|
#include "df/reaction_reagent_itemst.h"
|
|
|
|
#include "df/reaction_product_itemst.h"
|
2014-06-23 07:15:46 -06:00
|
|
|
#include "df/unit.h"
|
|
|
|
#include "df/unit_inventory_item.h"
|
|
|
|
#include "df/unit_wound.h"
|
|
|
|
#include "df/world.h"
|
2012-09-25 01:25:47 -06:00
|
|
|
|
2013-10-20 12:44:07 -06:00
|
|
|
#include "modules/EventManager.h"
|
|
|
|
|
2014-06-23 07:15:46 -06:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdexcept>
|
2013-10-20 12:44:07 -06:00
|
|
|
|
2012-09-25 01:25:47 -06:00
|
|
|
using std::vector;
|
|
|
|
using std::string;
|
|
|
|
using std::stack;
|
|
|
|
using namespace DFHack;
|
|
|
|
using namespace df::enums;
|
|
|
|
|
2014-12-02 19:44:20 -07:00
|
|
|
DFHACK_PLUGIN("eventful");
|
|
|
|
REQUIRE_GLOBAL(gps);
|
|
|
|
REQUIRE_GLOBAL(world);
|
|
|
|
REQUIRE_GLOBAL(ui);
|
2012-09-25 01:25:47 -06:00
|
|
|
|
|
|
|
typedef df::reaction_product_itemst item_product;
|
|
|
|
|
|
|
|
struct ReagentSource {
|
|
|
|
int idx;
|
|
|
|
df::reaction_reagent *reagent;
|
|
|
|
|
|
|
|
ReagentSource() : idx(-1), reagent(NULL) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MaterialSource : ReagentSource {
|
|
|
|
bool product;
|
|
|
|
std::string product_name;
|
|
|
|
|
|
|
|
int mat_type, mat_index;
|
|
|
|
|
|
|
|
MaterialSource() : product(false), mat_type(-1), mat_index(-1) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ProductInfo {
|
|
|
|
df::reaction *react;
|
|
|
|
item_product *product;
|
|
|
|
|
|
|
|
MaterialSource material;
|
|
|
|
|
|
|
|
bool isValid() {
|
2013-03-09 03:54:07 -07:00
|
|
|
return true;//due to mat_type being -1 = any
|
2012-09-25 01:25:47 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ReactionInfo {
|
|
|
|
df::reaction *react;
|
|
|
|
|
|
|
|
std::vector<ProductInfo> products;
|
|
|
|
};
|
|
|
|
|
|
|
|
static std::map<std::string, ReactionInfo> reactions;
|
|
|
|
static std::map<df::reaction_product*, ProductInfo*> products;
|
|
|
|
|
|
|
|
static ReactionInfo *find_reaction(const std::string &name)
|
|
|
|
{
|
|
|
|
auto it = reactions.find(name);
|
|
|
|
return (it != reactions.end()) ? &it->second : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_lua_hook(const std::string &name)
|
|
|
|
{
|
|
|
|
return name.size() > 9 && memcmp(name.data(), "LUA_HOOK_", 9) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hooks
|
|
|
|
*/
|
|
|
|
|
2015-12-19 16:14:13 -07:00
|
|
|
DEFINE_LUA_EVENT_NH_2(onWorkshopFillSidebarMenu, df::building_actual*, bool*);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(postWorkshopFillSidebarMenu, df::building_actual*);
|
|
|
|
|
2015-12-21 10:53:02 -07:00
|
|
|
DEFINE_LUA_EVENT_NH_7(onReactionCompleting, df::reaction*, df::reaction_product_itemst*, df::unit *, std::vector<df::item*> *, std::vector<df::reaction_reagent*> *, std::vector<df::item*> *, bool *);
|
|
|
|
DEFINE_LUA_EVENT_NH_6(onReactionComplete, df::reaction*, df::reaction_product_itemst*, df::unit *, std::vector<df::item*> *, std::vector<df::reaction_reagent*> *, std::vector<df::item*> *);
|
2015-12-19 16:14:13 -07:00
|
|
|
DEFINE_LUA_EVENT_NH_5(onItemContaminateWound, df::item_actual*, df::unit*, df::unit_wound*, uint8_t, int16_t);
|
2012-12-15 04:27:16 -07:00
|
|
|
//projectiles
|
2015-12-19 16:14:13 -07:00
|
|
|
DEFINE_LUA_EVENT_NH_2(onProjItemCheckImpact, df::proj_itemst*, bool);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onProjItemCheckMovement, df::proj_itemst*);
|
|
|
|
DEFINE_LUA_EVENT_NH_2(onProjUnitCheckImpact, df::proj_unitst*, bool);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onProjUnitCheckMovement, df::proj_unitst*);
|
2013-10-20 12:44:07 -06:00
|
|
|
//event manager
|
2015-12-19 16:14:13 -07:00
|
|
|
DEFINE_LUA_EVENT_NH_1(onBuildingCreatedDestroyed, int32_t);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onJobInitiated, df::job*);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onJobCompleted, df::job*);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onUnitDeath, int32_t);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onItemCreated, int32_t);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onConstructionCreatedDestroyed, df::construction*);
|
|
|
|
DEFINE_LUA_EVENT_NH_2(onSyndrome, int32_t, int32_t);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onInvasion, int32_t);
|
|
|
|
DEFINE_LUA_EVENT_NH_4(onInventoryChange, int32_t, int32_t, df::unit_inventory_item*, df::unit_inventory_item*);
|
|
|
|
DEFINE_LUA_EVENT_NH_1(onReport, int32_t);
|
|
|
|
DEFINE_LUA_EVENT_NH_3(onUnitAttack, int32_t, int32_t, int32_t);
|
2015-12-20 02:15:29 -07:00
|
|
|
DEFINE_LUA_EVENT_NH_0(onUnload);
|
2015-12-19 16:14:13 -07:00
|
|
|
DEFINE_LUA_EVENT_NH_6(onInteraction, std::string, std::string, int32_t, int32_t, int32_t, int32_t);
|
|
|
|
|
2012-09-25 01:25:47 -06:00
|
|
|
DFHACK_PLUGIN_LUA_EVENTS {
|
2012-12-20 15:42:15 -07:00
|
|
|
DFHACK_LUA_EVENT(onWorkshopFillSidebarMenu),
|
2013-01-02 14:43:38 -07:00
|
|
|
DFHACK_LUA_EVENT(postWorkshopFillSidebarMenu),
|
2015-12-21 10:53:02 -07:00
|
|
|
DFHACK_LUA_EVENT(onReactionCompleting),
|
2012-09-25 01:25:47 -06:00
|
|
|
DFHACK_LUA_EVENT(onReactionComplete),
|
2012-12-09 05:15:39 -07:00
|
|
|
DFHACK_LUA_EVENT(onItemContaminateWound),
|
2012-12-15 04:27:16 -07:00
|
|
|
DFHACK_LUA_EVENT(onProjItemCheckImpact),
|
|
|
|
DFHACK_LUA_EVENT(onProjItemCheckMovement),
|
|
|
|
DFHACK_LUA_EVENT(onProjUnitCheckImpact),
|
|
|
|
DFHACK_LUA_EVENT(onProjUnitCheckMovement),
|
2013-10-20 12:44:07 -06:00
|
|
|
/* event manager events */
|
|
|
|
DFHACK_LUA_EVENT(onBuildingCreatedDestroyed),
|
|
|
|
DFHACK_LUA_EVENT(onConstructionCreatedDestroyed),
|
|
|
|
DFHACK_LUA_EVENT(onJobInitiated),
|
|
|
|
DFHACK_LUA_EVENT(onJobCompleted),
|
|
|
|
DFHACK_LUA_EVENT(onUnitDeath),
|
|
|
|
DFHACK_LUA_EVENT(onItemCreated),
|
|
|
|
DFHACK_LUA_EVENT(onSyndrome),
|
|
|
|
DFHACK_LUA_EVENT(onInvasion),
|
2013-10-24 17:32:52 -06:00
|
|
|
DFHACK_LUA_EVENT(onInventoryChange),
|
2014-06-23 07:15:46 -06:00
|
|
|
DFHACK_LUA_EVENT(onReport),
|
2014-06-28 00:31:34 -06:00
|
|
|
DFHACK_LUA_EVENT(onUnitAttack),
|
2014-06-29 08:03:55 -06:00
|
|
|
DFHACK_LUA_EVENT(onUnload),
|
2014-07-03 02:55:12 -06:00
|
|
|
DFHACK_LUA_EVENT(onInteraction),
|
2013-10-20 12:44:07 -06:00
|
|
|
DFHACK_LUA_END
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ev_mng_jobInitiated(color_ostream& out, void* job)
|
|
|
|
{
|
|
|
|
df::job* ptr=reinterpret_cast<df::job*>(job);
|
|
|
|
onJobInitiated(out,ptr);
|
|
|
|
}
|
|
|
|
void ev_mng_jobCompleted(color_ostream& out, void* job)
|
|
|
|
{
|
|
|
|
df::job* ptr=reinterpret_cast<df::job*>(job);
|
|
|
|
onJobCompleted(out,ptr);
|
|
|
|
}
|
|
|
|
void ev_mng_unitDeath(color_ostream& out, void* ptr)
|
|
|
|
{
|
2016-07-26 21:47:53 -06:00
|
|
|
int32_t myId=*(int32_t*)&ptr;
|
2013-10-20 12:44:07 -06:00
|
|
|
onUnitDeath(out,myId);
|
|
|
|
}
|
|
|
|
void ev_mng_itemCreate(color_ostream& out, void* ptr)
|
|
|
|
{
|
2016-07-26 21:47:53 -06:00
|
|
|
int32_t myId=*(int32_t*)&ptr;
|
2013-10-20 12:44:07 -06:00
|
|
|
onItemCreated(out,myId);
|
|
|
|
}
|
|
|
|
void ev_mng_construction(color_ostream& out, void* ptr)
|
|
|
|
{
|
|
|
|
df::construction* cons=reinterpret_cast<df::construction*>(ptr);
|
|
|
|
onConstructionCreatedDestroyed(out,cons);
|
|
|
|
}
|
|
|
|
void ev_mng_syndrome(color_ostream& out, void* ptr)
|
|
|
|
{
|
|
|
|
EventManager::SyndromeData* data=reinterpret_cast<EventManager::SyndromeData*>(ptr);
|
|
|
|
onSyndrome(out,data->unitId,data->syndromeIndex);
|
|
|
|
}
|
|
|
|
void ev_mng_invasion(color_ostream& out, void* ptr)
|
|
|
|
{
|
2016-07-26 21:47:53 -06:00
|
|
|
int32_t myId=*(int32_t*)&ptr;
|
2013-10-20 12:44:07 -06:00
|
|
|
onInvasion(out,myId);
|
|
|
|
}
|
|
|
|
static void ev_mng_building(color_ostream& out, void* ptr)
|
|
|
|
{
|
2016-07-26 21:47:53 -06:00
|
|
|
int32_t myId=*(int32_t*)&ptr;
|
2013-10-20 12:44:07 -06:00
|
|
|
onBuildingCreatedDestroyed(out,myId);
|
|
|
|
}
|
2013-10-24 17:32:52 -06:00
|
|
|
static void ev_mng_inventory(color_ostream& out, void* ptr)
|
|
|
|
{
|
|
|
|
EventManager::InventoryChangeData* data = reinterpret_cast<EventManager::InventoryChangeData*>(ptr);
|
|
|
|
int32_t unitId = data->unitId;
|
|
|
|
int32_t itemId = -1;
|
|
|
|
df::unit_inventory_item* item_old = NULL;
|
|
|
|
df::unit_inventory_item* item_new = NULL;
|
|
|
|
if ( data->item_old ) {
|
|
|
|
itemId = data->item_old->itemId;
|
|
|
|
item_old = &data->item_old->item;
|
|
|
|
}
|
|
|
|
if ( data->item_new ) {
|
|
|
|
itemId = data->item_new->itemId;
|
|
|
|
item_new = &data->item_new->item;
|
|
|
|
}
|
|
|
|
onInventoryChange(out,unitId,itemId,item_old,item_new);
|
|
|
|
}
|
2014-06-23 07:15:46 -06:00
|
|
|
static void ev_mng_report(color_ostream& out, void* ptr) {
|
2016-07-26 21:47:53 -06:00
|
|
|
onReport(out,*(int32_t*)&ptr);
|
2014-06-23 07:15:46 -06:00
|
|
|
}
|
2014-06-28 00:31:34 -06:00
|
|
|
static void ev_mng_unitAttack(color_ostream& out, void* ptr) {
|
|
|
|
EventManager::UnitAttackData* data = (EventManager::UnitAttackData*)ptr;
|
|
|
|
onUnitAttack(out,data->attacker,data->defender,data->wound);
|
|
|
|
}
|
2014-06-29 08:03:55 -06:00
|
|
|
static void ev_mng_unload(color_ostream& out, void* ptr) {
|
|
|
|
onUnload(out);
|
|
|
|
}
|
2014-07-03 02:55:12 -06:00
|
|
|
static void ev_mng_interaction(color_ostream& out, void* ptr) {
|
|
|
|
EventManager::InteractionData* data = (EventManager::InteractionData*)ptr;
|
|
|
|
onInteraction(out, data->attackVerb, data->defendVerb, data->attacker, data->defender, data->attackReport, data->defendReport);
|
|
|
|
}
|
2013-10-20 12:44:07 -06:00
|
|
|
std::vector<int> enabledEventManagerEvents(EventManager::EventType::EVENT_MAX,-1);
|
2013-10-20 17:56:48 -06:00
|
|
|
typedef void (*handler_t) (color_ostream&,void*);
|
|
|
|
static const handler_t eventHandlers[] = {
|
|
|
|
NULL,
|
|
|
|
ev_mng_jobInitiated,
|
|
|
|
ev_mng_jobCompleted,
|
|
|
|
ev_mng_unitDeath,
|
|
|
|
ev_mng_itemCreate,
|
|
|
|
ev_mng_building,
|
|
|
|
ev_mng_construction,
|
|
|
|
ev_mng_syndrome,
|
|
|
|
ev_mng_invasion,
|
2013-10-24 17:32:52 -06:00
|
|
|
ev_mng_inventory,
|
2014-06-23 07:15:46 -06:00
|
|
|
ev_mng_report,
|
2014-06-28 00:31:34 -06:00
|
|
|
ev_mng_unitAttack,
|
2014-06-29 08:03:55 -06:00
|
|
|
ev_mng_unload,
|
2014-07-03 02:55:12 -06:00
|
|
|
ev_mng_interaction,
|
2013-10-20 17:56:48 -06:00
|
|
|
};
|
2013-10-20 12:44:07 -06:00
|
|
|
static void enableEvent(int evType,int freq)
|
|
|
|
{
|
2013-10-20 17:56:48 -06:00
|
|
|
if (freq < 0)
|
|
|
|
return;
|
2013-11-07 00:58:11 -07:00
|
|
|
CHECK_INVALID_ARGUMENT(evType >= 0 && evType < EventManager::EventType::EVENT_MAX &&
|
|
|
|
evType != EventManager::EventType::TICK);
|
2013-10-20 17:56:48 -06:00
|
|
|
EventManager::EventHandler::callback_t fun_ptr = eventHandlers[evType];
|
2013-10-20 12:44:07 -06:00
|
|
|
EventManager::EventType::EventType typeToEnable=static_cast<EventManager::EventType::EventType>(evType);
|
|
|
|
|
2013-10-20 17:56:48 -06:00
|
|
|
int oldFreq = enabledEventManagerEvents[typeToEnable];
|
|
|
|
if (oldFreq != -1) {
|
|
|
|
if (freq >= oldFreq)
|
|
|
|
return;
|
|
|
|
EventManager::unregister(typeToEnable,EventManager::EventHandler(fun_ptr,oldFreq),plugin_self);
|
|
|
|
}
|
|
|
|
EventManager::registerListener(typeToEnable,EventManager::EventHandler(fun_ptr,freq),plugin_self);
|
|
|
|
enabledEventManagerEvents[typeToEnable] = freq;
|
2013-10-20 12:44:07 -06:00
|
|
|
}
|
|
|
|
DFHACK_PLUGIN_LUA_FUNCTIONS{
|
|
|
|
DFHACK_LUA_FUNCTION(enableEvent),
|
2012-09-25 01:25:47 -06:00
|
|
|
DFHACK_LUA_END
|
|
|
|
};
|
2012-12-20 15:42:15 -07:00
|
|
|
struct workshop_hook : df::building_workshopst{
|
|
|
|
typedef df::building_workshopst interpose_base;
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(void,fillSidebarMenu,())
|
|
|
|
{
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
bool call_native=true;
|
|
|
|
onWorkshopFillSidebarMenu(out,this,&call_native);
|
|
|
|
if(call_native)
|
|
|
|
INTERPOSE_NEXT(fillSidebarMenu)();
|
2013-01-02 14:43:38 -07:00
|
|
|
postWorkshopFillSidebarMenu(out,this);
|
2012-12-20 15:42:15 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(workshop_hook, fillSidebarMenu);
|
2015-11-03 08:59:24 -07:00
|
|
|
|
|
|
|
struct furnace_hook : df::building_furnacest{
|
|
|
|
typedef df::building_furnacest interpose_base;
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(void,fillSidebarMenu,())
|
|
|
|
{
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
bool call_native=true;
|
|
|
|
onWorkshopFillSidebarMenu(out,this,&call_native);
|
|
|
|
if(call_native)
|
|
|
|
INTERPOSE_NEXT(fillSidebarMenu)();
|
|
|
|
postWorkshopFillSidebarMenu(out,this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(furnace_hook, fillSidebarMenu);
|
|
|
|
|
2012-09-25 01:25:47 -06:00
|
|
|
struct product_hook : item_product {
|
|
|
|
typedef item_product interpose_base;
|
2015-12-19 16:14:13 -07:00
|
|
|
|
2012-09-25 01:25:47 -06:00
|
|
|
DEFINE_VMETHOD_INTERPOSE(
|
|
|
|
void, produce,
|
2015-12-18 16:40:11 -07:00
|
|
|
(df::unit *unit,
|
2015-12-22 07:54:00 -07:00
|
|
|
std::vector<df::reaction_product*> *out_products,
|
2015-12-18 16:40:11 -07:00
|
|
|
std::vector<df::item*> *out_items,
|
2012-09-25 01:25:47 -06:00
|
|
|
std::vector<df::reaction_reagent*> *in_reag,
|
|
|
|
std::vector<df::item*> *in_items,
|
2012-11-02 12:59:05 -06:00
|
|
|
int32_t quantity, df::job_skill skill,
|
2016-06-13 14:57:45 -06:00
|
|
|
df::historical_entity *entity, int32_t unk, df::world_site *site, void* unk2)
|
2012-09-25 01:25:47 -06:00
|
|
|
) {
|
2015-02-02 00:25:42 -07:00
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
auto product = products[this];
|
|
|
|
if ( !product ) {
|
2016-06-13 14:57:45 -06:00
|
|
|
INTERPOSE_NEXT(produce)(unit, out_products, out_items, in_reag, in_items, quantity, skill, entity, unk, site, unk2);
|
2015-02-02 00:25:42 -07:00
|
|
|
return;
|
2012-09-25 01:25:47 -06:00
|
|
|
}
|
2015-02-02 00:25:42 -07:00
|
|
|
df::reaction* this_reaction=product->react;
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
bool call_native=true;
|
2015-12-21 10:53:02 -07:00
|
|
|
onReactionCompleting(out,this_reaction,(df::reaction_product_itemst*)this,unit,in_items,in_reag,out_items,&call_native);
|
2015-02-02 00:25:42 -07:00
|
|
|
if(!call_native)
|
|
|
|
return;
|
2012-09-25 01:25:47 -06:00
|
|
|
|
2015-02-02 00:25:42 -07:00
|
|
|
size_t out_item_count = out_items->size();
|
2016-06-13 14:57:45 -06:00
|
|
|
|
|
|
|
INTERPOSE_NEXT(produce)(unit, out_products, out_items, in_reag, in_items, quantity, skill, entity, unk, site, unk2);
|
2015-02-02 00:25:42 -07:00
|
|
|
if ( out_items->size() == out_item_count )
|
|
|
|
return;
|
|
|
|
//if it produced something, call the scripts
|
2015-12-21 10:53:02 -07:00
|
|
|
onReactionComplete(out,this_reaction,(df::reaction_product_itemst*)this,unit,in_items,in_reag,out_items);
|
2012-09-25 01:25:47 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(product_hook, produce);
|
|
|
|
|
|
|
|
|
2012-12-09 05:15:39 -07:00
|
|
|
struct item_hooks :df::item_actual {
|
|
|
|
typedef df::item_actual interpose_base;
|
2012-09-25 01:25:47 -06:00
|
|
|
|
2012-12-09 05:15:39 -07:00
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, contaminateWound,(df::unit* unit, df::unit_wound* wound, uint8_t a1, int16_t a2))
|
|
|
|
{
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
onItemContaminateWound(out,this,unit,wound,a1,a2);
|
|
|
|
INTERPOSE_NEXT(contaminateWound)(unit,wound,a1,a2);
|
|
|
|
}
|
2012-12-15 04:27:16 -07:00
|
|
|
|
2012-12-09 05:15:39 -07:00
|
|
|
};
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(item_hooks, contaminateWound);
|
2012-09-25 01:25:47 -06:00
|
|
|
|
2012-12-15 04:27:16 -07:00
|
|
|
struct proj_item_hook: df::proj_itemst{
|
|
|
|
typedef df::proj_itemst interpose_base;
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(bool,checkImpact,(bool mode))
|
|
|
|
{
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
onProjItemCheckImpact(out,this,mode);
|
|
|
|
return INTERPOSE_NEXT(checkImpact)(mode); //returns destroy item or not?
|
|
|
|
}
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(bool,checkMovement,())
|
|
|
|
{
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
onProjItemCheckMovement(out,this);
|
|
|
|
return INTERPOSE_NEXT(checkMovement)();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(proj_item_hook,checkImpact);
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(proj_item_hook,checkMovement);
|
2012-09-25 01:25:47 -06:00
|
|
|
|
2012-12-15 04:27:16 -07:00
|
|
|
struct proj_unit_hook: df::proj_unitst{
|
|
|
|
typedef df::proj_unitst interpose_base;
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(bool,checkImpact,(bool mode))
|
|
|
|
{
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
onProjUnitCheckImpact(out,this,mode);
|
|
|
|
return INTERPOSE_NEXT(checkImpact)(mode); //returns destroy item or not?
|
|
|
|
}
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(bool,checkMovement,())
|
|
|
|
{
|
|
|
|
CoreSuspendClaimer suspend;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
onProjUnitCheckMovement(out,this);
|
|
|
|
return INTERPOSE_NEXT(checkMovement)();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(proj_unit_hook,checkImpact);
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(proj_unit_hook,checkMovement);
|
2012-09-25 01:25:47 -06:00
|
|
|
/*
|
|
|
|
* Scan raws for matching reactions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
static void parse_product(
|
2012-11-16 14:33:36 -07:00
|
|
|
color_ostream &out, ProductInfo &info, df::reaction *react, item_product *prod
|
|
|
|
) {
|
|
|
|
info.react = react;
|
|
|
|
info.product = prod;
|
|
|
|
info.material.mat_type = prod->mat_type;
|
|
|
|
info.material.mat_index = prod->mat_index;
|
2012-09-25 01:25:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool find_reactions(color_ostream &out)
|
|
|
|
{
|
|
|
|
reactions.clear();
|
|
|
|
|
|
|
|
auto &rlist = world->raws.reactions;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < rlist.size(); i++)
|
|
|
|
{
|
|
|
|
reactions[rlist[i]->code].react = rlist[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it = reactions.begin(); it != reactions.end(); ++it)
|
|
|
|
{
|
|
|
|
auto &prod = it->second.react->products;
|
|
|
|
auto &out_prod = it->second.products;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < prod.size(); i++)
|
|
|
|
{
|
|
|
|
auto itprod = strict_virtual_cast<item_product>(prod[i]);
|
|
|
|
if (!itprod) continue;
|
|
|
|
|
|
|
|
out_prod.push_back(ProductInfo());
|
|
|
|
parse_product(out, out_prod.back(), it->second.react, itprod);
|
|
|
|
}
|
|
|
|
|
2015-01-31 18:10:06 -07:00
|
|
|
for (size_t i = 0; i < out_prod.size(); i++)
|
2012-09-25 01:25:47 -06:00
|
|
|
{
|
|
|
|
if (out_prod[i].isValid())
|
|
|
|
products[out_prod[i].product] = &out_prod[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return !products.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void enable_hooks(bool enable)
|
|
|
|
{
|
2012-12-20 15:42:15 -07:00
|
|
|
INTERPOSE_HOOK(workshop_hook,fillSidebarMenu).apply(enable);
|
2015-11-03 09:01:41 -07:00
|
|
|
INTERPOSE_HOOK(furnace_hook,fillSidebarMenu).apply(enable);
|
2012-12-09 05:15:39 -07:00
|
|
|
INTERPOSE_HOOK(item_hooks,contaminateWound).apply(enable);
|
2012-12-15 04:27:16 -07:00
|
|
|
INTERPOSE_HOOK(proj_unit_hook,checkImpact).apply(enable);
|
|
|
|
INTERPOSE_HOOK(proj_unit_hook,checkMovement).apply(enable);
|
|
|
|
INTERPOSE_HOOK(proj_item_hook,checkImpact).apply(enable);
|
|
|
|
INTERPOSE_HOOK(proj_item_hook,checkMovement).apply(enable);
|
2012-09-25 01:25:47 -06:00
|
|
|
}
|
2012-12-09 04:00:49 -07:00
|
|
|
static void world_specific_hooks(color_ostream &out,bool enable)
|
|
|
|
{
|
|
|
|
if(enable && find_reactions(out))
|
|
|
|
{
|
2012-12-09 05:15:39 -07:00
|
|
|
INTERPOSE_HOOK(product_hook, produce).apply(true);
|
2012-12-09 04:00:49 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-01-31 18:10:06 -07:00
|
|
|
INTERPOSE_HOOK(product_hook, produce).apply(false);
|
2012-12-09 04:00:49 -07:00
|
|
|
reactions.clear();
|
|
|
|
products.clear();
|
|
|
|
}
|
|
|
|
}
|
2012-12-09 05:15:39 -07:00
|
|
|
void disable_all_hooks(color_ostream &out)
|
|
|
|
{
|
|
|
|
world_specific_hooks(out,false);
|
|
|
|
enable_hooks(false);
|
|
|
|
}
|
2012-09-25 01:25:47 -06:00
|
|
|
DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_change_event event)
|
|
|
|
{
|
|
|
|
switch (event) {
|
|
|
|
case SC_WORLD_LOADED:
|
2012-12-09 04:00:49 -07:00
|
|
|
world_specific_hooks(out,true);
|
2012-09-25 01:25:47 -06:00
|
|
|
break;
|
|
|
|
case SC_WORLD_UNLOADED:
|
2012-12-09 04:00:49 -07:00
|
|
|
world_specific_hooks(out,false);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2012-09-25 01:25:47 -06:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands)
|
|
|
|
{
|
|
|
|
if (Core::getInstance().isWorldLoaded())
|
|
|
|
plugin_onstatechange(out, SC_WORLD_LOADED);
|
2012-12-09 05:15:39 -07:00
|
|
|
enable_hooks(true);
|
2012-09-25 01:25:47 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_shutdown ( color_ostream &out )
|
|
|
|
{
|
2012-12-09 05:15:39 -07:00
|
|
|
disable_all_hooks(out);
|
2012-09-25 01:25:47 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|