2018-08-25 10:59:28 -06:00
|
|
|
/*
|
|
|
|
* Tailor plugin. Automatically manages keeping your dorfs clothed.
|
|
|
|
*/
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2018-08-25 10:59:28 -06:00
|
|
|
|
|
|
|
#include "df/creature_raw.h"
|
|
|
|
#include "df/historical_entity.h"
|
2023-02-06 19:38:16 -07:00
|
|
|
#include "df/item.h"
|
|
|
|
#include "df/item_flags.h"
|
2018-08-25 10:59:28 -06:00
|
|
|
#include "df/itemdef_armorst.h"
|
|
|
|
#include "df/itemdef_glovesst.h"
|
|
|
|
#include "df/itemdef_helmst.h"
|
|
|
|
#include "df/itemdef_pantsst.h"
|
|
|
|
#include "df/itemdef_shoesst.h"
|
|
|
|
#include "df/items_other_id.h"
|
|
|
|
#include "df/manager_order.h"
|
2023-01-05 18:11:01 -07:00
|
|
|
#include "df/plotinfost.h"
|
2018-08-25 10:59:28 -06:00
|
|
|
#include "df/world.h"
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
#include "Core.h"
|
|
|
|
#include "Debug.h"
|
|
|
|
#include "LuaTools.h"
|
|
|
|
#include "PluginManager.h"
|
|
|
|
|
|
|
|
#include "modules/Materials.h"
|
|
|
|
#include "modules/Persistence.h"
|
2018-08-25 10:59:28 -06:00
|
|
|
#include "modules/Translation.h"
|
2023-02-06 19:38:16 -07:00
|
|
|
#include "modules/Units.h"
|
2018-08-25 10:59:28 -06:00
|
|
|
#include "modules/World.h"
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
using namespace DFHack;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
|
|
|
DFHACK_PLUGIN("tailor");
|
2023-02-06 19:38:16 -07:00
|
|
|
DFHACK_PLUGIN_IS_ENABLED(is_enabled);
|
2023-01-18 13:40:31 -07:00
|
|
|
|
2023-01-05 18:11:01 -07:00
|
|
|
REQUIRE_GLOBAL(plotinfo);
|
2023-01-20 14:21:45 -07:00
|
|
|
REQUIRE_GLOBAL(standing_orders_use_dyed_cloth);
|
2023-02-06 19:38:16 -07:00
|
|
|
REQUIRE_GLOBAL(world);
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-01-18 13:40:31 -07:00
|
|
|
namespace DFHack {
|
|
|
|
DBG_DECLARE(tailor, cycle, DebugCategory::LINFO);
|
|
|
|
DBG_DECLARE(tailor, config, DebugCategory::LINFO);
|
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static const string CONFIG_KEY = string(plugin_name) + "/config";
|
|
|
|
static PersistentDataItem config;
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
enum ConfigValues {
|
|
|
|
CONFIG_IS_ENABLED = 0,
|
|
|
|
CONFIG_SILK_IDX = 1,
|
|
|
|
CONFIG_CLOTH_IDX = 2,
|
|
|
|
CONFIG_YARN_IDX = 3,
|
|
|
|
CONFIG_LEATHER_IDX = 4,
|
2023-02-16 14:33:55 -07:00
|
|
|
CONFIG_ADAMANTINE_IDX = 5,
|
2023-02-06 19:38:16 -07:00
|
|
|
};
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static int get_config_val(PersistentDataItem &c, int index) {
|
|
|
|
if (!c.isValid())
|
|
|
|
return -1;
|
|
|
|
return c.ival(index);
|
|
|
|
}
|
|
|
|
static bool get_config_bool(PersistentDataItem &c, int index) {
|
|
|
|
return get_config_val(c, index) == 1;
|
|
|
|
}
|
|
|
|
static void set_config_val(PersistentDataItem &c, int index, int value) {
|
|
|
|
if (c.isValid())
|
|
|
|
c.ival(index) = value;
|
|
|
|
}
|
|
|
|
static void set_config_bool(PersistentDataItem &c, int index, bool value) {
|
|
|
|
set_config_val(c, index, value ? 1 : 0);
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static const int32_t CYCLE_TICKS = 1200; // one day
|
|
|
|
static int32_t cycle_timestamp = 0; // world->frame_counter at last cycle
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
// ah, if only STL had a bimap
|
|
|
|
static const std::map<df::job_type, df::item_type> jobTypeMap = {
|
|
|
|
{ df::job_type::MakeArmor, df::item_type::ARMOR },
|
|
|
|
{ df::job_type::MakePants, df::item_type::PANTS },
|
|
|
|
{ df::job_type::MakeHelm, df::item_type::HELM },
|
|
|
|
{ df::job_type::MakeGloves, df::item_type::GLOVES },
|
|
|
|
{ df::job_type::MakeShoes, df::item_type::SHOES }
|
|
|
|
};
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static const std::map<df::item_type, df::job_type> itemTypeMap = {
|
|
|
|
{ df::item_type::ARMOR, df::job_type::MakeArmor },
|
|
|
|
{ df::item_type::PANTS, df::job_type::MakePants },
|
|
|
|
{ df::item_type::HELM, df::job_type::MakeHelm },
|
|
|
|
{ df::item_type::GLOVES, df::job_type::MakeGloves },
|
|
|
|
{ df::item_type::SHOES, df::job_type::MakeShoes }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MatType {
|
|
|
|
public:
|
|
|
|
const std::string name;
|
|
|
|
const df::job_material_category job_material;
|
|
|
|
const df::armor_general_flags armor_flag;
|
|
|
|
|
|
|
|
bool operator==(const MatType& m) const {
|
|
|
|
return name == m.name;
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
// operator< is required to use this as a std::map key
|
|
|
|
bool operator<(const MatType& m) const {
|
|
|
|
return name < m.name;
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
MatType(std::string& n, df::job_material_category jm, df::armor_general_flags af)
|
|
|
|
: name(n), job_material(jm), armor_flag(af) {};
|
|
|
|
MatType(const char* n, df::job_material_category jm, df::armor_general_flags af)
|
|
|
|
: name(std::string(n)), job_material(jm), armor_flag(af) {};
|
|
|
|
};
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static const MatType
|
|
|
|
M_SILK = MatType("silk", df::job_material_category::mask_silk, df::armor_general_flags::SOFT),
|
|
|
|
M_CLOTH = MatType("cloth", df::job_material_category::mask_cloth, df::armor_general_flags::SOFT),
|
|
|
|
M_YARN = MatType("yarn", df::job_material_category::mask_yarn, df::armor_general_flags::SOFT),
|
2023-02-16 14:33:55 -07:00
|
|
|
M_LEATHER = MatType("leather", df::job_material_category::mask_leather, df::armor_general_flags::LEATHER),
|
|
|
|
M_ADAMANTINE = MatType("adamantine", df::job_material_category::mask_strand, df::armor_general_flags::SOFT);
|
2023-02-06 19:38:16 -07:00
|
|
|
|
2023-02-16 14:33:55 -07:00
|
|
|
static const std::list<MatType> all_materials = { M_SILK, M_CLOTH, M_YARN, M_LEATHER, M_ADAMANTINE };
|
2023-03-22 17:29:47 -06:00
|
|
|
static const std::list<MatType> default_materials = { M_SILK, M_CLOTH, M_YARN, M_LEATHER }; // adamantine not included by default
|
|
|
|
static std::list<MatType> material_order = default_materials;
|
2023-02-06 19:38:16 -07:00
|
|
|
|
|
|
|
static struct BadFlags {
|
|
|
|
uint32_t whole;
|
|
|
|
|
|
|
|
BadFlags() {
|
|
|
|
df::item_flags flags;
|
|
|
|
#define F(x) flags.bits.x = true;
|
|
|
|
F(dump); F(forbid); F(garbage_collect);
|
|
|
|
F(hostile); F(on_fire); F(rotten); F(trader);
|
|
|
|
F(in_building); F(construction); F(owned);
|
|
|
|
F(in_chest); F(removed); F(encased);
|
|
|
|
F(spider_web);
|
|
|
|
#undef F
|
|
|
|
whole = flags.whole;
|
|
|
|
}
|
|
|
|
} badFlags;
|
2019-11-02 19:07:10 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
class Tailor {
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-03-26 23:07:40 -06:00
|
|
|
private:
|
2023-01-18 13:40:31 -07:00
|
|
|
std::map<int, int> sizes; // this maps body size to races
|
2023-03-26 23:07:40 -06:00
|
|
|
|
|
|
|
std::map<std::pair<df::item_type, int>, int> available;
|
|
|
|
|
|
|
|
std::map<std::pair<df::item_type, int>, int> needed;
|
|
|
|
|
|
|
|
std::map<std::tuple<df::job_type, int, int>, int> orders;
|
2019-11-02 19:07:10 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
std::map<MatType, int> supply;
|
|
|
|
std::map<MatType, int> reserves;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
int default_reserve = 10;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-03-25 13:56:04 -06:00
|
|
|
bool inventory_sanity_checking = false;
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
public:
|
2023-03-25 13:56:04 -06:00
|
|
|
void set_debug_flag(bool f)
|
|
|
|
{
|
|
|
|
inventory_sanity_checking = f;
|
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
void reset()
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2021-08-08 08:53:32 -06:00
|
|
|
available.clear();
|
|
|
|
needed.clear();
|
|
|
|
sizes.clear();
|
|
|
|
supply.clear();
|
2023-03-26 23:07:40 -06:00
|
|
|
orders.clear();
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
void scan_clothing()
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2023-03-26 23:07:40 -06:00
|
|
|
for (auto i : world->items.other[df::items_other_id::ANY_GENERIC37]) // GENERIC37 is "nontattered clothing"
|
2018-08-26 08:30:08 -06:00
|
|
|
{
|
2023-03-26 23:07:40 -06:00
|
|
|
if (i->flags.whole & badFlags.whole)
|
2023-03-25 13:56:04 -06:00
|
|
|
{
|
2023-03-26 23:07:40 -06:00
|
|
|
continue;
|
2023-03-25 13:56:04 -06:00
|
|
|
}
|
2023-03-26 23:07:40 -06:00
|
|
|
if (i->getWear() >= 1)
|
|
|
|
continue;
|
|
|
|
df::item_type t = i->getType();
|
|
|
|
int size = world->raws.creatures.all[i->getMakerRace()]->adultsize;
|
2023-03-25 13:56:04 -06:00
|
|
|
|
2023-03-26 23:07:40 -06:00
|
|
|
available[std::make_pair(t, size)] += 1;
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-03-26 23:44:03 -06:00
|
|
|
if (DBG_NAME(cycle).isEnabled(DebugCategory::LDEBUG))
|
2023-03-26 23:07:40 -06:00
|
|
|
{
|
2023-03-26 23:44:03 -06:00
|
|
|
for (auto& i : available)
|
|
|
|
{
|
|
|
|
df::item_type t;
|
|
|
|
int size;
|
|
|
|
std::tie(t, size) = i.first;
|
|
|
|
DEBUG(cycle).print("tailor: %d %s of size %d found\n",
|
|
|
|
i.second, ENUM_KEY_STR(item_type, t).c_str(), size);
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
void scan_materials()
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2023-01-20 14:21:45 -07:00
|
|
|
bool require_dyed = df::global::standing_orders_use_dyed_cloth ? (*df::global::standing_orders_use_dyed_cloth) : false;
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
for (auto i : world->items.other[df::items_other_id::CLOTH])
|
|
|
|
{
|
2023-02-06 19:38:16 -07:00
|
|
|
if (i->flags.whole & badFlags.whole)
|
2021-08-08 08:53:32 -06:00
|
|
|
continue;
|
2023-01-20 14:21:45 -07:00
|
|
|
|
2023-03-22 17:29:47 -06:00
|
|
|
if (require_dyed && (!i->isDyed()))
|
2023-01-20 14:21:45 -07:00
|
|
|
{
|
|
|
|
// only count dyed
|
|
|
|
std::string d;
|
|
|
|
i->getItemDescription(&d, 0);
|
|
|
|
TRACE(cycle).print("tailor: skipping undyed %s\n", d.c_str());
|
2021-08-08 08:53:32 -06:00
|
|
|
continue;
|
2023-01-20 14:21:45 -07:00
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
MaterialInfo mat(i);
|
|
|
|
int ss = i->getStackSize();
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
if (mat.material)
|
|
|
|
{
|
|
|
|
if (mat.material->flags.is_set(df::material_flags::SILK))
|
|
|
|
supply[M_SILK] += ss;
|
|
|
|
else if (mat.material->flags.is_set(df::material_flags::THREAD_PLANT))
|
|
|
|
supply[M_CLOTH] += ss;
|
|
|
|
else if (mat.material->flags.is_set(df::material_flags::YARN))
|
|
|
|
supply[M_YARN] += ss;
|
2023-02-16 14:33:55 -07:00
|
|
|
else if (mat.material->flags.is_set(df::material_flags::STOCKPILE_THREAD_METAL))
|
|
|
|
supply[M_ADAMANTINE] += ss;
|
2023-01-20 14:21:45 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string d;
|
|
|
|
i->getItemDescription(&d, 0);
|
2023-02-16 14:39:10 -07:00
|
|
|
DEBUG(cycle).print("tailor: weird cloth item found: %s (%d)\n", d.c_str(), i->id);
|
2023-01-20 14:21:45 -07:00
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
for (auto i : world->items.other[df::items_other_id::SKIN_TANNED])
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2023-02-06 19:38:16 -07:00
|
|
|
if (i->flags.whole & badFlags.whole)
|
2018-08-25 10:59:28 -06:00
|
|
|
continue;
|
2021-08-08 08:53:32 -06:00
|
|
|
supply[M_LEATHER] += i->getStackSize();
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2023-02-16 14:33:55 -07:00
|
|
|
DEBUG(cycle).print("tailor: available silk %d yarn %d cloth %d leather %d adamantine %d\n",
|
|
|
|
supply[M_SILK], supply[M_YARN], supply[M_CLOTH], supply[M_LEATHER], supply[M_ADAMANTINE]);
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
void scan_replacements()
|
|
|
|
{
|
|
|
|
for (auto u : world->units.active)
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2021-08-08 08:53:32 -06:00
|
|
|
if (!Units::isOwnCiv(u) ||
|
|
|
|
!Units::isOwnGroup(u) ||
|
|
|
|
!Units::isActive(u) ||
|
2023-03-26 23:07:40 -06:00
|
|
|
Units::isBaby(u) ||
|
|
|
|
!Units::casteFlagSet(u->race, u->caste, df::enums::caste_raw_flags::EQUIPS))
|
|
|
|
continue; // skip units we don't control or that can't wear clothes
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-01-18 13:40:31 -07:00
|
|
|
std::set <df::item_type> wearing;
|
2023-03-26 23:07:40 -06:00
|
|
|
std::set <df::item_type> ordered;
|
2023-01-18 13:40:31 -07:00
|
|
|
std::deque<df::item*> worn;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
for (auto inv : u->inventory)
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2021-08-08 08:53:32 -06:00
|
|
|
if (inv->mode != df::unit_inventory_item::Worn)
|
|
|
|
continue;
|
|
|
|
if (inv->item->getWear() > 0)
|
|
|
|
worn.push_back(inv->item);
|
|
|
|
else
|
|
|
|
wearing.insert(inv->item->getType());
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-17 11:58:48 -07:00
|
|
|
int usize = world->raws.creatures.all[u->race]->adultsize;
|
|
|
|
sizes[usize] = u->race;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
for (auto w : worn)
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2021-08-08 08:53:32 -06:00
|
|
|
auto ty = w->getType();
|
|
|
|
|
2023-02-17 11:58:48 -07:00
|
|
|
int isize = world->raws.creatures.all[w->getMakerRace()]->adultsize;
|
2021-08-08 08:53:32 -06:00
|
|
|
std::string description;
|
|
|
|
w->getItemDescription(&description, 0);
|
|
|
|
|
2023-03-26 23:07:40 -06:00
|
|
|
if (wearing.count(ty) == 0)
|
|
|
|
{
|
|
|
|
if (available[std::make_pair(ty, usize)] > 0)
|
|
|
|
{
|
|
|
|
available[std::make_pair(ty, usize)] -= 1;
|
|
|
|
DEBUG(cycle).print("tailor: allocating a %s (size %d) to %s\n",
|
|
|
|
ENUM_KEY_STR(item_type, ty).c_str(), usize,
|
|
|
|
Translation::TranslateName(&u->name, false).c_str());
|
|
|
|
wearing.insert(ty);
|
|
|
|
}
|
|
|
|
else if (ordered.count(ty) == 0)
|
|
|
|
{
|
|
|
|
DEBUG(cycle).print ("tailor: %s (size %d) worn by %s (size %d) needs replacement, but none available\n",
|
|
|
|
description.c_str(), isize,
|
|
|
|
Translation::TranslateName(&u->name, false).c_str(), usize);
|
|
|
|
needed[std::make_pair(ty, usize)] += 1;
|
|
|
|
ordered.insert(ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wearing.count(ty) > 0)
|
2021-08-08 08:53:32 -06:00
|
|
|
{
|
|
|
|
if (w->flags.bits.owned)
|
|
|
|
{
|
|
|
|
bool confiscated = Items::setOwner(w, NULL);
|
|
|
|
|
2023-01-18 13:40:31 -07:00
|
|
|
INFO(cycle).print(
|
2021-08-08 08:53:32 -06:00
|
|
|
"tailor: %s %s from %s.\n",
|
|
|
|
(confiscated ? "confiscated" : "could not confiscate"),
|
|
|
|
description.c_str(),
|
|
|
|
Translation::TranslateName(&u->name, false).c_str()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (w->getWear() > 1)
|
|
|
|
w->flags.bits.dump = true;
|
|
|
|
}
|
2023-03-26 23:07:40 -06:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto ty : std::set<df::item_type>{ df::item_type::ARMOR, df::item_type::PANTS, df::item_type::SHOES })
|
|
|
|
{
|
|
|
|
if (wearing.count(ty) == 0 && ordered.count(ty) == 0)
|
2021-08-08 08:53:32 -06:00
|
|
|
{
|
2023-03-26 23:07:40 -06:00
|
|
|
TRACE(cycle).print("tailor: one %s of size %d needed to cover %s\n",
|
|
|
|
ENUM_KEY_STR(item_type, ty).c_str(),
|
|
|
|
usize,
|
|
|
|
Translation::TranslateName(&u->name, false).c_str());
|
|
|
|
needed[std::make_pair(ty, usize)] += 1;
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
void create_orders()
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2023-01-05 18:11:01 -07:00
|
|
|
auto entity = world->entities.all[plotinfo->civ_id];
|
2021-08-08 08:53:32 -06:00
|
|
|
|
|
|
|
for (auto& a : needed)
|
|
|
|
{
|
|
|
|
df::item_type ty = a.first.first;
|
|
|
|
int size = a.first.second;
|
|
|
|
int count = a.second;
|
|
|
|
|
2023-03-26 23:07:40 -06:00
|
|
|
if (count <= 0)
|
|
|
|
continue;
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
int sub = 0;
|
2023-01-18 13:40:31 -07:00
|
|
|
std::vector<int16_t> v;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
|
|
|
switch (ty) {
|
2021-08-08 08:53:32 -06:00
|
|
|
case df::item_type::ARMOR: v = entity->resources.armor_type; break;
|
|
|
|
case df::item_type::GLOVES: v = entity->resources.gloves_type; break;
|
|
|
|
case df::item_type::HELM: v = entity->resources.helm_type; break;
|
|
|
|
case df::item_type::PANTS: v = entity->resources.pants_type; break;
|
|
|
|
case df::item_type::SHOES: v = entity->resources.shoes_type; break;
|
2019-12-06 11:24:27 -07:00
|
|
|
default: break;
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
|
|
|
for (auto vv : v) {
|
|
|
|
bool isClothing = false;
|
|
|
|
switch (ty) {
|
|
|
|
case df::item_type::ARMOR: isClothing = world->raws.itemdefs.armor[vv]->armorlevel == 0; break;
|
|
|
|
case df::item_type::GLOVES: isClothing = world->raws.itemdefs.gloves[vv]->armorlevel == 0; break;
|
|
|
|
case df::item_type::HELM: isClothing = world->raws.itemdefs.helms[vv]->armorlevel == 0; break;
|
|
|
|
case df::item_type::PANTS: isClothing = world->raws.itemdefs.pants[vv]->armorlevel == 0; break;
|
|
|
|
case df::item_type::SHOES: isClothing = world->raws.itemdefs.shoes[vv]->armorlevel == 0; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
if (isClothing)
|
|
|
|
{
|
|
|
|
sub = vv;
|
|
|
|
break;
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2023-01-23 21:24:45 -07:00
|
|
|
auto jj = itemTypeMap.find(ty);
|
|
|
|
if (jj != itemTypeMap.end())
|
|
|
|
{
|
|
|
|
const df::job_type j = jj->second;
|
|
|
|
orders[std::make_tuple(j, sub, size)] += count;
|
|
|
|
DEBUG(cycle).print("tailor: %s times %d of size %d ordered\n", ENUM_KEY_STR(job_type, j).c_str(), count, size);
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
void scan_existing_orders()
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2021-08-08 08:53:32 -06:00
|
|
|
for (auto o : world->manager_orders)
|
|
|
|
{
|
|
|
|
auto f = jobTypeMap.find(o->job_type);
|
|
|
|
if (f == jobTypeMap.end())
|
|
|
|
continue;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
int race = o->hist_figure_id;
|
2023-03-23 15:21:14 -06:00
|
|
|
|
|
|
|
for (auto& m : all_materials)
|
|
|
|
{
|
|
|
|
if (o->material_category.whole == m.job_material.whole)
|
|
|
|
{
|
|
|
|
supply[m] -= o->amount_left;
|
|
|
|
TRACE(cycle).print("tailor: supply of %s reduced by %d due to being required for an existing order\n",
|
|
|
|
m.name.c_str(), o->amount_left);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
if (race == -1)
|
|
|
|
continue; // -1 means that the race of the worker will determine the size made; we must ignore these jobs
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
int size = world->raws.creatures.all[race]->adultsize;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-03-26 23:07:40 -06:00
|
|
|
|
|
|
|
auto tt = jobTypeMap.find(o->job_type);
|
|
|
|
if (tt == jobTypeMap.end())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
needed[std::make_pair(tt->second, size)] -= o->amount_left;
|
2023-01-18 13:40:31 -07:00
|
|
|
TRACE(cycle).print("tailor: existing order for %d %s of size %d detected\n",
|
|
|
|
o->amount_left,
|
|
|
|
ENUM_KEY_STR(job_type, o->job_type).c_str(),
|
|
|
|
size);
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
int place_orders()
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2023-02-06 19:38:16 -07:00
|
|
|
int ordered = 0;
|
2023-01-05 18:11:01 -07:00
|
|
|
auto entity = world->entities.all[plotinfo->civ_id];
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
for (auto& o : orders)
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2021-08-08 08:53:32 -06:00
|
|
|
df::job_type ty;
|
|
|
|
int sub;
|
|
|
|
int size;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-01-18 13:40:31 -07:00
|
|
|
std::tie(ty, sub, size) = o.first;
|
2021-08-08 08:53:32 -06:00
|
|
|
int count = o.second;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-16 13:37:10 -07:00
|
|
|
if (sizes.count(size) == 0)
|
|
|
|
{
|
|
|
|
WARN(cycle).print("tailor: cannot determine race for clothing of size %d, skipped\n",
|
|
|
|
size);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
if (count > 0)
|
2018-08-25 10:59:28 -06:00
|
|
|
{
|
2023-01-18 13:40:31 -07:00
|
|
|
std::vector<int16_t> v;
|
2021-08-08 08:53:32 -06:00
|
|
|
BitArray<df::armor_general_flags>* fl;
|
2023-01-18 13:40:31 -07:00
|
|
|
std::string name_s, name_p;
|
2021-08-08 08:53:32 -06:00
|
|
|
|
|
|
|
switch (ty) {
|
|
|
|
|
|
|
|
case df::job_type::MakeArmor:
|
|
|
|
v = entity->resources.armor_type;
|
|
|
|
name_s = world->raws.itemdefs.armor[sub]->name;
|
|
|
|
name_p = world->raws.itemdefs.armor[sub]->name_plural;
|
|
|
|
fl = &world->raws.itemdefs.armor[sub]->props.flags;
|
|
|
|
break;
|
|
|
|
case df::job_type::MakeGloves:
|
|
|
|
name_s = world->raws.itemdefs.gloves[sub]->name;
|
|
|
|
name_p = world->raws.itemdefs.gloves[sub]->name_plural;
|
|
|
|
v = entity->resources.gloves_type;
|
|
|
|
fl = &world->raws.itemdefs.gloves[sub]->props.flags;
|
|
|
|
break;
|
|
|
|
case df::job_type::MakeHelm:
|
|
|
|
name_s = world->raws.itemdefs.helms[sub]->name;
|
|
|
|
name_p = world->raws.itemdefs.helms[sub]->name_plural;
|
|
|
|
v = entity->resources.helm_type;
|
|
|
|
fl = &world->raws.itemdefs.helms[sub]->props.flags;
|
|
|
|
break;
|
|
|
|
case df::job_type::MakePants:
|
|
|
|
name_s = world->raws.itemdefs.pants[sub]->name;
|
|
|
|
name_p = world->raws.itemdefs.pants[sub]->name_plural;
|
|
|
|
v = entity->resources.pants_type;
|
|
|
|
fl = &world->raws.itemdefs.pants[sub]->props.flags;
|
|
|
|
break;
|
|
|
|
case df::job_type::MakeShoes:
|
|
|
|
name_s = world->raws.itemdefs.shoes[sub]->name;
|
|
|
|
name_p = world->raws.itemdefs.shoes[sub]->name_plural;
|
|
|
|
v = entity->resources.shoes_type;
|
|
|
|
fl = &world->raws.itemdefs.shoes[sub]->props.flags;
|
|
|
|
break;
|
|
|
|
default:
|
2018-08-25 10:59:28 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
bool can_make = std::find(v.begin(), v.end(), sub) != v.end();
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
if (!can_make)
|
|
|
|
{
|
2023-01-18 13:40:31 -07:00
|
|
|
INFO(cycle).print("tailor: civilization cannot make %s, skipped\n", name_p.c_str());
|
2021-08-08 08:53:32 -06:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-01-20 14:21:45 -07:00
|
|
|
DEBUG(cycle).print("tailor: ordering %d %s\n", count, name_p.c_str());
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
for (auto& m : material_order)
|
|
|
|
{
|
|
|
|
if (count <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
auto r = reserves.find(m);
|
|
|
|
int res = (r == reserves.end()) ? default_reserve : r->second;
|
|
|
|
|
|
|
|
if (supply[m] > res && fl->is_set(m.armor_flag)) {
|
|
|
|
int c = count;
|
|
|
|
if (supply[m] < count + res)
|
2023-01-20 14:21:45 -07:00
|
|
|
{
|
2021-08-08 08:53:32 -06:00
|
|
|
c = supply[m] - res;
|
2023-01-20 14:21:45 -07:00
|
|
|
TRACE(cycle).print("tailor: order reduced from %d to %d to protect reserves of %s\n",
|
|
|
|
count, c, m.name.c_str());
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
supply[m] -= c;
|
|
|
|
|
|
|
|
auto order = new df::manager_order;
|
|
|
|
order->job_type = ty;
|
|
|
|
order->item_type = df::item_type::NONE;
|
|
|
|
order->item_subtype = sub;
|
|
|
|
order->mat_type = -1;
|
|
|
|
order->mat_index = -1;
|
|
|
|
order->amount_left = c;
|
|
|
|
order->amount_total = c;
|
|
|
|
order->status.bits.validated = false;
|
|
|
|
order->status.bits.active = false;
|
|
|
|
order->id = world->manager_order_next_id++;
|
|
|
|
order->hist_figure_id = sizes[size];
|
|
|
|
order->material_category = m.job_material;
|
|
|
|
|
|
|
|
world->manager_orders.push_back(order);
|
|
|
|
|
2023-01-18 13:40:31 -07:00
|
|
|
INFO(cycle).print("tailor: added order #%d for %d %s %s, sized for %s\n",
|
2021-08-08 08:53:32 -06:00
|
|
|
order->id,
|
|
|
|
c,
|
|
|
|
bitfield_to_string(order->material_category).c_str(),
|
|
|
|
(c > 1) ? name_p.c_str() : name_s.c_str(),
|
|
|
|
world->raws.creatures.all[order->hist_figure_id]->name[1].c_str()
|
|
|
|
);
|
|
|
|
|
|
|
|
count -= c;
|
2023-02-06 19:38:16 -07:00
|
|
|
ordered += c;
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2023-01-20 14:21:45 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
TRACE(cycle).print("tailor: material %s skipped due to lack of reserves, %d available\n", m.name.c_str(), supply[m]);
|
|
|
|
}
|
|
|
|
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2023-02-06 19:38:16 -07:00
|
|
|
return ordered;
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2023-03-23 15:21:14 -06:00
|
|
|
|
|
|
|
int do_cycle()
|
|
|
|
{
|
|
|
|
reset();
|
|
|
|
scan_clothing();
|
|
|
|
scan_materials();
|
|
|
|
scan_replacements();
|
|
|
|
scan_existing_orders();
|
2023-03-26 23:07:40 -06:00
|
|
|
create_orders();
|
2023-03-23 15:21:14 -06:00
|
|
|
return place_orders();
|
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
};
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static std::unique_ptr<Tailor> tailor_instance;
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static command_result do_command(color_ostream &out, vector<string> ¶meters);
|
|
|
|
static int do_cycle(color_ostream &out);
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFhackCExport command_result plugin_init(color_ostream &out, std::vector <PluginCommand> &commands) {
|
|
|
|
DEBUG(config,out).print("initializing %s\n", plugin_name);
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
tailor_instance = dts::make_unique<Tailor>();
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
// provide a configuration interface for the plugin
|
|
|
|
commands.push_back(PluginCommand(
|
|
|
|
plugin_name,
|
|
|
|
"Automatically keep your dwarves in fresh clothing.",
|
|
|
|
do_command));
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
return CR_OK;
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFhackCExport command_result plugin_enable(color_ostream &out, bool enable) {
|
|
|
|
if (!Core::getInstance().isWorldLoaded()) {
|
|
|
|
out.printerr("Cannot enable %s without a loaded world.\n", plugin_name);
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
if (enable != is_enabled) {
|
|
|
|
is_enabled = enable;
|
|
|
|
DEBUG(config,out).print("%s from the API; persisting\n",
|
|
|
|
is_enabled ? "enabled" : "disabled");
|
|
|
|
set_config_bool(config, CONFIG_IS_ENABLED, is_enabled);
|
|
|
|
if (enable)
|
|
|
|
do_cycle(out);
|
|
|
|
} else {
|
|
|
|
DEBUG(config,out).print("%s from the API, but already %s; no action\n",
|
|
|
|
is_enabled ? "enabled" : "disabled",
|
|
|
|
is_enabled ? "enabled" : "disabled");
|
|
|
|
}
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFhackCExport command_result plugin_shutdown (color_ostream &out) {
|
|
|
|
DEBUG(config,out).print("shutting down %s\n", plugin_name);
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
tailor_instance.release();
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
return CR_OK;
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static void set_material_order() {
|
|
|
|
material_order.clear();
|
2023-02-08 15:16:11 -07:00
|
|
|
for (size_t i = 0; i < all_materials.size(); ++i) {
|
|
|
|
if (i == (size_t)get_config_val(config, CONFIG_SILK_IDX))
|
2023-02-06 19:38:16 -07:00
|
|
|
material_order.push_back(M_SILK);
|
2023-02-08 15:16:11 -07:00
|
|
|
else if (i == (size_t)get_config_val(config, CONFIG_CLOTH_IDX))
|
2023-02-06 19:38:16 -07:00
|
|
|
material_order.push_back(M_CLOTH);
|
2023-02-08 15:16:11 -07:00
|
|
|
else if (i == (size_t)get_config_val(config, CONFIG_YARN_IDX))
|
2023-02-06 19:38:16 -07:00
|
|
|
material_order.push_back(M_YARN);
|
2023-02-08 15:16:11 -07:00
|
|
|
else if (i == (size_t)get_config_val(config, CONFIG_LEATHER_IDX))
|
2023-02-06 19:38:16 -07:00
|
|
|
material_order.push_back(M_LEATHER);
|
2023-02-17 11:10:23 -07:00
|
|
|
else if (i == (size_t)get_config_val(config, CONFIG_ADAMANTINE_IDX))
|
|
|
|
material_order.push_back(M_ADAMANTINE);
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2023-02-06 19:38:16 -07:00
|
|
|
if (!material_order.size())
|
2023-03-22 17:29:47 -06:00
|
|
|
std::copy(default_materials.begin(), default_materials.end(), std::back_inserter(material_order));
|
2023-02-06 19:38:16 -07:00
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFhackCExport command_result plugin_load_data (color_ostream &out) {
|
|
|
|
cycle_timestamp = 0;
|
|
|
|
config = World::GetPersistentData(CONFIG_KEY);
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
if (!config.isValid()) {
|
|
|
|
DEBUG(config,out).print("no config found in this save; initializing\n");
|
|
|
|
config = World::AddPersistentData(CONFIG_KEY);
|
|
|
|
set_config_bool(config, CONFIG_IS_ENABLED, is_enabled);
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
is_enabled = get_config_bool(config, CONFIG_IS_ENABLED);
|
|
|
|
DEBUG(config,out).print("loading persisted enabled state: %s\n",
|
|
|
|
is_enabled ? "true" : "false");
|
|
|
|
set_material_order();
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
return CR_OK;
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_change_event event) {
|
|
|
|
if (event == DFHack::SC_WORLD_UNLOADED) {
|
|
|
|
if (is_enabled) {
|
|
|
|
DEBUG(config,out).print("world unloaded; disabling %s\n",
|
|
|
|
plugin_name);
|
|
|
|
is_enabled = false;
|
2021-08-08 08:53:32 -06:00
|
|
|
}
|
2023-02-06 19:38:16 -07:00
|
|
|
}
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFhackCExport command_result plugin_onupdate(color_ostream &out) {
|
|
|
|
if (is_enabled && world->frame_counter - cycle_timestamp >= CYCLE_TICKS) {
|
|
|
|
int ordered = do_cycle(out);
|
|
|
|
if (0 < ordered)
|
|
|
|
out.print("tailor: ordered %d items of clothing\n", ordered);
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
2023-02-06 19:38:16 -07:00
|
|
|
return CR_OK;
|
|
|
|
}
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static bool call_tailor_lua(color_ostream *out, const char *fn_name,
|
|
|
|
int nargs = 0, int nres = 0,
|
|
|
|
Lua::LuaLambda && args_lambda = Lua::DEFAULT_LUA_LAMBDA,
|
|
|
|
Lua::LuaLambda && res_lambda = Lua::DEFAULT_LUA_LAMBDA) {
|
|
|
|
DEBUG(config).print("calling tailor lua function: '%s'\n", fn_name);
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
CoreSuspender guard;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
auto L = Lua::Core::State;
|
|
|
|
Lua::StackUnwinder top(L);
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
if (!out)
|
|
|
|
out = &Core::getInstance().getConsole();
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
return Lua::CallLuaModuleFunction(*out, L, "plugins.tailor", fn_name,
|
|
|
|
nargs, nres,
|
|
|
|
std::forward<Lua::LuaLambda&&>(args_lambda),
|
|
|
|
std::forward<Lua::LuaLambda&&>(res_lambda));
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static command_result do_command(color_ostream &out, vector<string> ¶meters) {
|
|
|
|
CoreSuspender suspend;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
if (!Core::getInstance().isWorldLoaded()) {
|
|
|
|
out.printerr("Cannot run %s without a loaded world.\n", plugin_name);
|
|
|
|
return CR_FAILURE;
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
bool show_help = false;
|
|
|
|
if (!call_tailor_lua(&out, "parse_commandline", parameters.size(), 1,
|
|
|
|
[&](lua_State *L) {
|
|
|
|
for (const string ¶m : parameters)
|
|
|
|
Lua::Push(L, param);
|
|
|
|
},
|
|
|
|
[&](lua_State *L) {
|
|
|
|
show_help = !lua_toboolean(L, -1);
|
|
|
|
})) {
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return show_help ? CR_WRONG_USAGE : CR_OK;
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
// cycle logic
|
|
|
|
//
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static int do_cycle(color_ostream &out) {
|
|
|
|
// mark that we have recently run
|
|
|
|
cycle_timestamp = world->frame_counter;
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DEBUG(cycle,out).print("running %s cycle\n", plugin_name);
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-03-23 15:21:14 -06:00
|
|
|
return tailor_instance->do_cycle();
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
// Lua API
|
|
|
|
//
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static void tailor_doCycle(color_ostream &out) {
|
|
|
|
DEBUG(config,out).print("entering tailor_doCycle\n");
|
|
|
|
out.print("ordered %d items of clothing\n", do_cycle(out));
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
// remember, these are ONE-based indices from Lua
|
|
|
|
static void tailor_setMaterialPreferences(color_ostream &out, int32_t silkIdx,
|
2023-02-17 13:03:42 -07:00
|
|
|
int32_t clothIdx, int32_t yarnIdx, int32_t leatherIdx,
|
|
|
|
int32_t adamantineIdx) {
|
2023-02-06 19:38:16 -07:00
|
|
|
DEBUG(config,out).print("entering tailor_setMaterialPreferences\n");
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
// it doesn't really matter if these are invalid. set_material_order will do
|
|
|
|
// the right thing.
|
2023-02-08 15:01:38 -07:00
|
|
|
set_config_val(config, CONFIG_SILK_IDX, silkIdx - 1);
|
|
|
|
set_config_val(config, CONFIG_CLOTH_IDX, clothIdx - 1);
|
|
|
|
set_config_val(config, CONFIG_YARN_IDX, yarnIdx - 1);
|
|
|
|
set_config_val(config, CONFIG_LEATHER_IDX, leatherIdx - 1);
|
2023-02-17 13:03:42 -07:00
|
|
|
set_config_val(config, CONFIG_ADAMANTINE_IDX, adamantineIdx - 1);
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
set_material_order();
|
|
|
|
}
|
2018-08-25 10:59:28 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
static int tailor_getMaterialPreferences(lua_State *L) {
|
|
|
|
color_ostream *out = Lua::GetOutput(L);
|
|
|
|
if (!out)
|
|
|
|
out = &Core::getInstance().getConsole();
|
|
|
|
DEBUG(config,*out).print("entering tailor_getMaterialPreferences\n");
|
|
|
|
vector<string> names;
|
|
|
|
for (const auto& m : material_order)
|
|
|
|
names.emplace_back(m.name);
|
|
|
|
Lua::PushVector(L, names);
|
|
|
|
return 1;
|
2018-08-25 10:59:28 -06:00
|
|
|
}
|
|
|
|
|
2023-03-25 13:56:04 -06:00
|
|
|
static void tailor_setDebugFlag(color_ostream& out, bool enable)
|
|
|
|
{
|
|
|
|
DEBUG(config, out).print("entering tailor_setDebugFlag\n");
|
|
|
|
|
|
|
|
tailor_instance->set_debug_flag(enable);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFHACK_PLUGIN_LUA_FUNCTIONS {
|
|
|
|
DFHACK_LUA_FUNCTION(tailor_doCycle),
|
|
|
|
DFHACK_LUA_FUNCTION(tailor_setMaterialPreferences),
|
2023-03-25 13:56:04 -06:00
|
|
|
DFHACK_LUA_FUNCTION(tailor_setDebugFlag),
|
2023-02-06 19:38:16 -07:00
|
|
|
DFHACK_LUA_END
|
|
|
|
};
|
2021-08-08 08:53:32 -06:00
|
|
|
|
2023-02-06 19:38:16 -07:00
|
|
|
DFHACK_PLUGIN_LUA_COMMANDS {
|
|
|
|
DFHACK_LUA_COMMAND(tailor_getMaterialPreferences),
|
|
|
|
DFHACK_LUA_END
|
|
|
|
};
|