2012-09-17 11:15:51 -06:00
|
|
|
#include "Core.h"
|
|
|
|
#include <Console.h>
|
|
|
|
#include <Export.h>
|
|
|
|
#include <PluginManager.h>
|
|
|
|
#include <modules/Gui.h>
|
|
|
|
#include <modules/Screen.h>
|
|
|
|
#include <modules/Maps.h>
|
|
|
|
#include <modules/Job.h>
|
|
|
|
#include <modules/Items.h>
|
2012-09-18 03:15:25 -06:00
|
|
|
#include <modules/Units.h>
|
2012-09-17 11:15:51 -06:00
|
|
|
#include <TileTypes.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <stack>
|
|
|
|
#include <string>
|
|
|
|
#include <cmath>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <VTableInterpose.h>
|
|
|
|
#include "df/item_liquid_miscst.h"
|
|
|
|
#include "df/item_constructed.h"
|
|
|
|
#include "df/builtin_mats.h"
|
|
|
|
#include "df/world.h"
|
|
|
|
#include "df/job.h"
|
|
|
|
#include "df/job_item.h"
|
|
|
|
#include "df/job_item_ref.h"
|
2023-01-05 18:11:01 -07:00
|
|
|
#include "df/plotinfost.h"
|
2012-09-17 11:15:51 -06:00
|
|
|
#include "df/report.h"
|
|
|
|
#include "df/reaction.h"
|
|
|
|
#include "df/reaction_reagent_itemst.h"
|
|
|
|
#include "df/reaction_product_item_improvementst.h"
|
|
|
|
#include "df/reaction_product_improvement_flags.h"
|
|
|
|
#include "df/matter_state.h"
|
2014-09-18 14:05:15 -06:00
|
|
|
#include "df/spatter.h"
|
2012-09-17 11:15:51 -06:00
|
|
|
|
|
|
|
#include "MiscUtils.h"
|
|
|
|
|
|
|
|
using std::vector;
|
|
|
|
using std::string;
|
|
|
|
using std::stack;
|
|
|
|
using namespace DFHack;
|
|
|
|
using namespace df::enums;
|
|
|
|
|
|
|
|
DFHACK_PLUGIN("add-spatter");
|
2013-09-30 03:19:51 -06:00
|
|
|
DFHACK_PLUGIN_IS_ENABLED(is_enabled);
|
2014-12-02 19:44:20 -07:00
|
|
|
REQUIRE_GLOBAL(gps);
|
|
|
|
REQUIRE_GLOBAL(world);
|
2023-01-05 18:11:01 -07:00
|
|
|
REQUIRE_GLOBAL(plotinfo);
|
2014-12-02 19:44:20 -07:00
|
|
|
|
|
|
|
typedef df::reaction_product_item_improvementst improvement_product;
|
2012-09-17 11:15:51 -06:00
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
struct ReagentSource {
|
2012-09-17 11:15:51 -06:00
|
|
|
int idx;
|
|
|
|
df::reaction_reagent *reagent;
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
ReagentSource() : idx(-1), reagent(NULL) {}
|
2012-09-17 11:15:51 -06:00
|
|
|
};
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
struct MaterialSource : ReagentSource {
|
2012-09-17 11:15:51 -06:00
|
|
|
bool product;
|
|
|
|
std::string product_name;
|
|
|
|
|
|
|
|
int mat_type, mat_index;
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
MaterialSource() : product(false), mat_type(-1), mat_index(-1) {}
|
2012-09-17 11:15:51 -06:00
|
|
|
};
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
struct ProductInfo {
|
2012-09-17 11:15:51 -06:00
|
|
|
df::reaction *react;
|
|
|
|
improvement_product *product;
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
ReagentSource object;
|
|
|
|
MaterialSource material;
|
2012-09-17 11:15:51 -06:00
|
|
|
|
|
|
|
bool isValid() {
|
|
|
|
return object.reagent && (material.mat_type >= 0 || material.reagent);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
struct ReactionInfo {
|
2012-09-17 11:15:51 -06:00
|
|
|
df::reaction *react;
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
std::vector<ProductInfo> products;
|
2012-09-17 11:15:51 -06:00
|
|
|
};
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
static std::map<std::string, ReactionInfo> reactions;
|
|
|
|
static std::map<df::reaction_product*, ProductInfo*> products;
|
2012-09-17 11:15:51 -06:00
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
static ReactionInfo *find_reaction(const std::string &name)
|
2012-09-17 11:15:51 -06:00
|
|
|
{
|
|
|
|
auto it = reactions.find(name);
|
|
|
|
return (it != reactions.end()) ? &it->second : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_add_spatter(const std::string &name)
|
|
|
|
{
|
|
|
|
return name.size() > 12 && memcmp(name.data(), "SPATTER_ADD_", 12) == 0;
|
|
|
|
}
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
static void find_material(int *type, int *index, df::item *input, MaterialSource &mat)
|
2012-09-17 11:15:51 -06:00
|
|
|
{
|
|
|
|
if (input && mat.reagent)
|
|
|
|
{
|
|
|
|
MaterialInfo info(input);
|
|
|
|
|
|
|
|
if (mat.product)
|
|
|
|
{
|
|
|
|
if (!info.findProduct(info, mat.product_name))
|
|
|
|
{
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
|
|
|
out.printerr("Cannot find product '%s'\n", mat.product_name.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*type = info.type;
|
|
|
|
*index = info.index;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*type = mat.mat_type;
|
|
|
|
*index = mat.mat_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-18 03:15:25 -06:00
|
|
|
static int has_contaminant(df::item_actual *item, int type, int index)
|
2012-09-17 11:15:51 -06:00
|
|
|
{
|
|
|
|
auto cont = item->contaminants;
|
|
|
|
if (!cont)
|
2012-09-18 03:15:25 -06:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
int size = 0;
|
2012-09-17 11:15:51 -06:00
|
|
|
|
|
|
|
for (size_t i = 0; i < cont->size(); i++)
|
|
|
|
{
|
|
|
|
auto cur = (*cont)[i];
|
|
|
|
if (cur->mat_type == type && cur->mat_index == index)
|
2012-09-18 03:15:25 -06:00
|
|
|
size += cur->size;
|
2012-09-17 11:15:51 -06:00
|
|
|
}
|
|
|
|
|
2012-09-18 03:15:25 -06:00
|
|
|
return size;
|
2012-09-17 11:15:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hooks
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef std::map<int, std::vector<df::item*> > item_table;
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
static void index_items(item_table &table, df::job *job, ReactionInfo *info)
|
2012-09-17 11:15:51 -06:00
|
|
|
{
|
|
|
|
for (int i = job->items.size()-1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
auto iref = job->items[i];
|
|
|
|
if (iref->job_item_idx < 0) continue;
|
|
|
|
auto iitem = job->job_items[iref->job_item_idx];
|
|
|
|
|
|
|
|
if (iitem->contains.empty())
|
|
|
|
{
|
|
|
|
table[iitem->reagent_index].push_back(iref->item);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::vector<df::item*> contents;
|
|
|
|
Items::getContainedItems(iref->item, &contents);
|
|
|
|
|
|
|
|
for (int j = contents.size()-1; j >= 0; j--)
|
|
|
|
{
|
|
|
|
for (int k = iitem->contains.size()-1; k >= 0; k--)
|
|
|
|
{
|
|
|
|
int ridx = iitem->contains[k];
|
|
|
|
auto reag = info->react->reagents[ridx];
|
|
|
|
|
2012-09-18 03:11:11 -06:00
|
|
|
if (reag->matchesChild(contents[j], info->react, iitem->reaction_id))
|
2012-09-17 11:15:51 -06:00
|
|
|
table[ridx].push_back(contents[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
df::item* find_item(ReagentSource &info, item_table &table)
|
2012-09-17 11:15:51 -06:00
|
|
|
{
|
|
|
|
if (!info.reagent)
|
|
|
|
return NULL;
|
|
|
|
if (table[info.idx].empty())
|
|
|
|
return NULL;
|
|
|
|
return table[info.idx].back();
|
|
|
|
}
|
|
|
|
|
|
|
|
struct item_hook : df::item_constructed {
|
|
|
|
typedef df::item_constructed interpose_base;
|
|
|
|
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(bool, isImprovable, (df::job *job, int16_t mat_type, int32_t mat_index))
|
|
|
|
{
|
2015-02-19 09:56:57 -07:00
|
|
|
ReactionInfo *info;
|
2012-09-17 11:15:51 -06:00
|
|
|
|
|
|
|
if (job && job->job_type == job_type::CustomReaction &&
|
|
|
|
(info = find_reaction(job->reaction_name)) != NULL)
|
|
|
|
{
|
|
|
|
if (!contaminants || contaminants->empty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
item_table table;
|
|
|
|
index_items(table, job, info);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < info->products.size(); i++)
|
|
|
|
{
|
|
|
|
auto &product = info->products[i];
|
|
|
|
|
|
|
|
int mattype, matindex;
|
|
|
|
auto material = find_item(info->products[i].material, table);
|
|
|
|
|
|
|
|
find_material(&mattype, &matindex, material, product.material);
|
|
|
|
|
2012-09-18 03:15:25 -06:00
|
|
|
if (mattype < 0 || has_contaminant(this, mattype, matindex) >= 50)
|
2012-09-17 11:15:51 -06:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return INTERPOSE_NEXT(isImprovable)(job, mat_type, mat_index);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(item_hook, isImprovable);
|
|
|
|
|
|
|
|
df::item* find_item(
|
2015-02-19 09:56:57 -07:00
|
|
|
ReagentSource &info,
|
2012-09-17 11:15:51 -06:00
|
|
|
std::vector<df::reaction_reagent*> *in_reag,
|
|
|
|
std::vector<df::item*> *in_items
|
|
|
|
) {
|
|
|
|
if (!info.reagent)
|
|
|
|
return NULL;
|
|
|
|
for (int i = in_items->size(); i >= 0; i--)
|
|
|
|
if ((*in_reag)[i] == info.reagent)
|
|
|
|
return (*in_items)[i];
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct product_hook : improvement_product {
|
|
|
|
typedef improvement_product interpose_base;
|
|
|
|
|
|
|
|
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-17 11:15:51 -06:00
|
|
|
std::vector<df::reaction_reagent*> *in_reag,
|
|
|
|
std::vector<df::item*> *in_items,
|
2012-10-26 10:29:21 -06:00
|
|
|
int32_t quantity, df::job_skill skill,
|
2020-06-23 13:31:27 -06:00
|
|
|
int32_t quality, df::historical_entity *entity, df::world_site *site, std::vector<void *> *unk2)
|
2012-09-17 11:15:51 -06:00
|
|
|
) {
|
|
|
|
if (auto product = products[this])
|
|
|
|
{
|
|
|
|
auto object = find_item(product->object, in_reag, in_items);
|
|
|
|
auto material = find_item(product->material, in_reag, in_items);
|
|
|
|
|
|
|
|
if (object && (material || !product->material.reagent))
|
|
|
|
{
|
2012-09-18 03:15:25 -06:00
|
|
|
using namespace df::enums::improvement_type;
|
|
|
|
|
2012-09-17 11:15:51 -06:00
|
|
|
int mattype, matindex;
|
|
|
|
find_material(&mattype, &matindex, material, product->material);
|
|
|
|
|
2012-09-18 03:15:25 -06:00
|
|
|
df::matter_state state = matter_state::Liquid;
|
|
|
|
|
|
|
|
switch (improvement_type)
|
|
|
|
{
|
|
|
|
case COVERED:
|
|
|
|
if (flags.is_set(reaction_product_improvement_flags::GLAZED))
|
|
|
|
state = matter_state::Solid;
|
|
|
|
break;
|
|
|
|
case BANDS:
|
|
|
|
state = matter_state::Paste;
|
|
|
|
break;
|
|
|
|
case SPIKES:
|
|
|
|
state = matter_state::Powder;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-10-26 10:29:21 -06:00
|
|
|
int rating = unit ? Units::getEffectiveSkill(unit, skill) : 0;
|
2012-09-18 03:15:25 -06:00
|
|
|
int size = int(probability*(1.0f + 0.06f*rating)); // +90% at legendary
|
|
|
|
|
2012-09-17 11:15:51 -06:00
|
|
|
object->addContaminant(
|
2012-09-18 03:15:25 -06:00
|
|
|
mattype, matindex, state,
|
2012-09-17 11:15:51 -06:00
|
|
|
object->getTemperature(),
|
2012-09-18 03:15:25 -06:00
|
|
|
size, -1,
|
2012-09-17 11:15:51 -06:00
|
|
|
0x8000 // not washed by water, and 'clean items' safe.
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-23 13:31:27 -06:00
|
|
|
INTERPOSE_NEXT(produce)(unit, out_products, out_items, in_reag, in_items, quantity, skill, quality, entity, site, unk2);
|
2012-09-17 11:15:51 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(product_hook, produce);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan raws for matching reactions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void find_reagent(
|
2015-02-19 09:56:57 -07:00
|
|
|
color_ostream &out, ReagentSource &info, df::reaction *react, std::string name
|
2012-09-17 11:15:51 -06:00
|
|
|
) {
|
|
|
|
for (size_t i = 0; i < react->reagents.size(); i++)
|
|
|
|
{
|
|
|
|
if (react->reagents[i]->code != name)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
info.idx = i;
|
|
|
|
info.reagent = react->reagents[i];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
out.printerr("Invalid reagent name '%s' in '%s'\n", name.c_str(), react->code.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parse_product(
|
2015-02-19 09:56:57 -07:00
|
|
|
color_ostream &out, ProductInfo &info, df::reaction *react, improvement_product *prod
|
2012-09-17 11:15:51 -06:00
|
|
|
) {
|
|
|
|
using namespace df::enums::reaction_product_improvement_flags;
|
|
|
|
|
|
|
|
info.react = react;
|
|
|
|
info.product = prod;
|
|
|
|
|
|
|
|
find_reagent(out, info.object, react, prod->target_reagent);
|
|
|
|
|
|
|
|
auto ritem = strict_virtual_cast<df::reaction_reagent_itemst>(info.object.reagent);
|
|
|
|
if (ritem)
|
|
|
|
ritem->flags1.bits.improvable = true;
|
|
|
|
|
|
|
|
info.material.mat_type = prod->mat_type;
|
|
|
|
info.material.mat_index = prod->mat_index;
|
|
|
|
|
|
|
|
if (prod->flags.is_set(GET_MATERIAL_PRODUCT))
|
|
|
|
{
|
|
|
|
find_reagent(out, info.material, react, prod->get_material.reagent_code);
|
|
|
|
|
|
|
|
info.material.product = true;
|
|
|
|
info.material.product_name = prod->get_material.product_code;
|
|
|
|
}
|
|
|
|
else if (prod->flags.is_set(GET_MATERIAL_SAME))
|
|
|
|
{
|
|
|
|
find_reagent(out, info.material, react, prod->get_material.reagent_code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool find_reactions(color_ostream &out)
|
|
|
|
{
|
|
|
|
reactions.clear();
|
|
|
|
products.clear();
|
|
|
|
|
2018-03-10 14:53:45 -07:00
|
|
|
auto &rlist = df::reaction::get_vector();
|
2012-09-17 11:15:51 -06:00
|
|
|
|
|
|
|
for (size_t i = 0; i < rlist.size(); i++)
|
|
|
|
{
|
|
|
|
if (!is_add_spatter(rlist[i]->code))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
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<improvement_product>(prod[i]);
|
|
|
|
if (!itprod) continue;
|
|
|
|
|
2015-02-19 09:56:57 -07:00
|
|
|
out_prod.push_back(ProductInfo());
|
2012-09-17 11:15:51 -06:00
|
|
|
parse_product(out, out_prod.back(), it->second.react, itprod);
|
|
|
|
}
|
|
|
|
|
2013-08-22 01:22:18 -06:00
|
|
|
for (size_t i = 0; i < out_prod.size(); i++)
|
2012-09-17 11:15:51 -06:00
|
|
|
{
|
|
|
|
if (out_prod[i].isValid())
|
|
|
|
products[out_prod[i].product] = &out_prod[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return !products.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void enable_hooks(bool enable)
|
|
|
|
{
|
2013-09-30 03:19:51 -06:00
|
|
|
is_enabled = enable;
|
2012-09-17 11:15:51 -06:00
|
|
|
INTERPOSE_HOOK(item_hook, isImprovable).apply(enable);
|
|
|
|
INTERPOSE_HOOK(product_hook, produce).apply(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_change_event event)
|
|
|
|
{
|
|
|
|
switch (event) {
|
2012-09-19 09:46:54 -06:00
|
|
|
case SC_WORLD_LOADED:
|
2012-09-17 11:15:51 -06:00
|
|
|
if (find_reactions(out))
|
|
|
|
{
|
|
|
|
out.print("Detected spatter add reactions - enabling plugin.\n");
|
|
|
|
enable_hooks(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
enable_hooks(false);
|
|
|
|
break;
|
2012-09-19 09:46:54 -06:00
|
|
|
case SC_WORLD_UNLOADED:
|
2012-09-17 11:15:51 -06:00
|
|
|
enable_hooks(false);
|
|
|
|
reactions.clear();
|
|
|
|
products.clear();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands)
|
|
|
|
{
|
2012-09-19 09:46:54 -06:00
|
|
|
if (Core::getInstance().isWorldLoaded())
|
|
|
|
plugin_onstatechange(out, SC_WORLD_LOADED);
|
2012-09-17 11:15:51 -06:00
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_shutdown ( color_ostream &out )
|
|
|
|
{
|
|
|
|
enable_hooks(false);
|
|
|
|
return CR_OK;
|
|
|
|
}
|