2013-05-24 12:43:40 -06:00
|
|
|
/*
|
|
|
|
* Stockflow plugin.
|
2013-05-31 15:30:57 -06:00
|
|
|
* For best effect, place "stockflow enable" in your dfhack.init configuration,
|
2014-04-18 21:58:20 -06:00
|
|
|
* or set AUTOENABLE to true.
|
2013-05-24 12:43:40 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "uicommon.h"
|
|
|
|
#include "LuaTools.h"
|
|
|
|
|
|
|
|
#include "df/building_stockpilest.h"
|
|
|
|
#include "df/job.h"
|
|
|
|
#include "df/viewscreen_dwarfmodest.h"
|
|
|
|
|
|
|
|
#include "modules/Gui.h"
|
|
|
|
#include "modules/Maps.h"
|
|
|
|
#include "modules/World.h"
|
|
|
|
|
|
|
|
using namespace DFHack;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
using df::building_stockpilest;
|
|
|
|
|
|
|
|
DFHACK_PLUGIN("stockflow");
|
2014-04-18 21:58:20 -06:00
|
|
|
#define AUTOENABLE false
|
|
|
|
DFHACK_PLUGIN_IS_ENABLED(enabled);
|
|
|
|
|
2015-07-28 19:48:00 -06:00
|
|
|
REQUIRE_GLOBAL(gps);
|
2014-12-06 16:47:35 -07:00
|
|
|
REQUIRE_GLOBAL(world);
|
|
|
|
REQUIRE_GLOBAL(ui);
|
|
|
|
|
2014-08-03 15:14:20 -06:00
|
|
|
bool fast = false;
|
2015-11-09 20:37:45 -07:00
|
|
|
const char *tagline = "Allow the bookkeeper to queue manager jobs.";
|
2013-05-24 12:43:40 -06:00
|
|
|
const char *usage = (
|
|
|
|
" stockflow enable\n"
|
|
|
|
" Enable the plugin.\n"
|
|
|
|
" stockflow disable\n"
|
|
|
|
" Disable the plugin.\n"
|
2014-08-03 16:40:03 -06:00
|
|
|
" stockflow fast\n"
|
|
|
|
" Enable the plugin in fast mode.\n"
|
2013-05-24 12:43:40 -06:00
|
|
|
" stockflow list\n"
|
|
|
|
" List any work order settings for your stockpiles.\n"
|
|
|
|
" stockflow status\n"
|
|
|
|
" Display whether the plugin is enabled.\n"
|
|
|
|
"\n"
|
|
|
|
"While enabled, the 'q' menu of each stockpile will have two new options:\n"
|
|
|
|
" j: Select a job to order, from an interface like the manager's screen.\n"
|
|
|
|
" J: Cycle between several options for how many such jobs to order.\n"
|
|
|
|
"\n"
|
|
|
|
"Whenever the bookkeeper updates stockpile records, new work orders will\n"
|
|
|
|
"be placed on the manager's queue for each such selection, reduced by the\n"
|
|
|
|
"number of identical orders already in the queue.\n"
|
2014-08-03 16:40:03 -06:00
|
|
|
"\n"
|
|
|
|
"In fast mode, new work orders will be enqueued once per day, instead of\n"
|
|
|
|
"waiting for the bookkeeper.\n"
|
2013-05-24 12:43:40 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lua interface.
|
|
|
|
* Currently calls out to Lua functions, but never back in.
|
|
|
|
*/
|
|
|
|
class LuaHelper {
|
|
|
|
public:
|
|
|
|
void cycle(color_ostream &out) {
|
|
|
|
bool found = false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-08-03 15:14:20 -06:00
|
|
|
if (fast) {
|
|
|
|
// Ignore the bookkeeper; either gather or enqueue orders every cycle.
|
|
|
|
found = !bookkeeping;
|
|
|
|
} else {
|
|
|
|
// Gather orders when the bookkeeper starts updating stockpile records,
|
|
|
|
// and enqueue them when the job is done.
|
2017-11-24 22:59:59 -07:00
|
|
|
for (df::job_list_link* link = &world->jobs.list; link != NULL; link = link->next) {
|
2014-08-03 15:14:20 -06:00
|
|
|
if (link->item == NULL) continue;
|
|
|
|
if (link->item->job_type == job_type::UpdateStockpileRecords) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-05-24 12:43:40 -06:00
|
|
|
}
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2015-03-20 19:23:04 -06:00
|
|
|
if (found) {
|
|
|
|
// Entice the bookkeeper to spend less time update records.
|
2021-02-10 17:54:05 -07:00
|
|
|
ui->nobles.bookkeeper_precision += ui->nobles.bookkeeper_precision >> 3;
|
2015-03-20 19:23:04 -06:00
|
|
|
if (!bookkeeping) {
|
|
|
|
command_method("start_bookkeeping", out);
|
|
|
|
bookkeeping = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Entice the bookkeeper to update records more often.
|
2021-02-10 17:54:05 -07:00
|
|
|
ui->nobles.bookkeeper_precision -= ui->nobles.bookkeeper_precision >> 5;
|
|
|
|
ui->nobles.bookkeeper_cooldown -= ui->nobles.bookkeeper_cooldown >> 2;
|
2015-03-20 19:23:04 -06:00
|
|
|
if (bookkeeping) {
|
|
|
|
command_method("finish_bookkeeping", out);
|
|
|
|
bookkeeping = false;
|
|
|
|
}
|
2013-05-24 12:43:40 -06:00
|
|
|
}
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
void init() {
|
|
|
|
stockpile_id = -1;
|
|
|
|
initialized = false;
|
|
|
|
bookkeeping = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool reset(color_ostream &out, bool load) {
|
|
|
|
stockpile_id = -1;
|
|
|
|
bookkeeping = false;
|
|
|
|
if (load) {
|
|
|
|
return initialized = command_method("initialize_world", out);
|
|
|
|
} else if (initialized) {
|
|
|
|
initialized = false;
|
|
|
|
return command_method("clear_caches", out);
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
bool command_method(const char *method, color_ostream &out) {
|
|
|
|
// Calls a lua function with no parameters.
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
// Suspension is required for "stockflow enable" from the command line,
|
|
|
|
// but may be overkill for other situations.
|
|
|
|
CoreSuspender suspend;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
auto L = Lua::Core::State;
|
|
|
|
Lua::StackUnwinder top(L);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!lua_checkstack(L, 1))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Lua::PushModulePublic(out, L, "plugins.stockflow", method))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Lua::SafeCall(out, L, 0, 0))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
bool stockpile_method(const char *method, building_stockpilest *sp) {
|
|
|
|
// Combines the select_order and toggle_trigger method calls,
|
|
|
|
// because they share the same signature.
|
|
|
|
CoreSuspendClaimer suspend;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
auto L = Lua::Core::State;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
Lua::StackUnwinder top(L);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!lua_checkstack(L, 2))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Lua::PushModulePublic(out, L, "plugins.stockflow", method))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
Lua::Push(L, sp);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Lua::SafeCall(out, L, 1, 0))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
// Invalidate the string cache.
|
|
|
|
stockpile_id = -1;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
bool collect_settings(building_stockpilest *sp) {
|
|
|
|
// Find strings representing the job to order, and the trigger condition.
|
|
|
|
// There might be a memory leak here; C++ is odd like that.
|
|
|
|
auto L = Lua::Core::State;
|
|
|
|
color_ostream_proxy out(Core::getInstance().getConsole());
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-06-03 02:24:45 -06:00
|
|
|
CoreSuspendClaimer suspend;
|
2013-05-24 12:43:40 -06:00
|
|
|
Lua::StackUnwinder top(L);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!lua_checkstack(L, 2))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Lua::PushModulePublic(out, L, "plugins.stockflow", "stockpile_settings"))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
Lua::Push(L, sp);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Lua::SafeCall(out, L, 1, 2))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!lua_isstring(L, -1))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
current_trigger = lua_tostring(L, -1);
|
|
|
|
lua_pop(L, 1);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!lua_isstring(L, -1))
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
current_job = lua_tostring(L, -1);
|
|
|
|
lua_pop(L, 1);
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
stockpile_id = sp->id;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
void draw(building_stockpilest *sp) {
|
|
|
|
if (sp->id != stockpile_id) {
|
|
|
|
if (!collect_settings(sp)) {
|
|
|
|
Core::printerr("Stockflow job collection failed!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
auto dims = Gui::getDwarfmodeViewDims();
|
|
|
|
int left_margin = dims.menu_x1 + 1;
|
|
|
|
int x = left_margin;
|
2021-01-30 19:12:06 -07:00
|
|
|
int y = dims.y2 - 2; // below autodump, automelt, autotrade, stocks, stockpiles
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-08-19 14:19:13 -06:00
|
|
|
int links = 0;
|
|
|
|
links += sp->links.give_to_pile.size();
|
|
|
|
links += sp->links.take_from_pile.size();
|
|
|
|
links += sp->links.give_to_workshop.size();
|
|
|
|
links += sp->links.take_from_workshop.size();
|
|
|
|
if (links + 12 >= y)
|
|
|
|
y += 1;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
OutputHotkeyString(x, y, current_job, "j", true, left_margin, COLOR_WHITE, COLOR_LIGHTRED);
|
|
|
|
if (*current_trigger)
|
|
|
|
OutputHotkeyString(x, y, current_trigger, " J", true, left_margin, COLOR_WHITE, COLOR_LIGHTRED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
long stockpile_id;
|
|
|
|
bool initialized;
|
|
|
|
bool bookkeeping;
|
|
|
|
const char *current_job;
|
|
|
|
const char *current_trigger;
|
|
|
|
};
|
|
|
|
|
|
|
|
static LuaHelper helper;
|
|
|
|
|
|
|
|
#define DELTA_TICKS 600
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_onupdate(color_ostream &out) {
|
2015-02-14 20:53:06 -07:00
|
|
|
if (!enabled)
|
2013-05-24 12:43:40 -06:00
|
|
|
return CR_OK;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Maps::IsValid())
|
|
|
|
return CR_OK;
|
|
|
|
|
|
|
|
if (DFHack::World::ReadPauseState())
|
|
|
|
return CR_OK;
|
|
|
|
|
2018-05-29 21:24:02 -06:00
|
|
|
if (world->frame_counter % DELTA_TICKS != 0)
|
2013-05-24 12:43:40 -06:00
|
|
|
return CR_OK;
|
|
|
|
|
|
|
|
helper.cycle(out);
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Interface hooks
|
|
|
|
*/
|
|
|
|
struct stockflow_hook : public df::viewscreen_dwarfmodest {
|
|
|
|
typedef df::viewscreen_dwarfmodest interpose_base;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
bool handleInput(set<df::interface_key> *input) {
|
2021-01-27 09:25:21 -07:00
|
|
|
if (Gui::inRenameBuilding())
|
|
|
|
return false;
|
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
building_stockpilest *sp = get_selected_stockpile();
|
|
|
|
if (!sp)
|
|
|
|
return false;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (input->count(interface_key::CUSTOM_J)) {
|
|
|
|
// Select a new order for this stockpile.
|
|
|
|
if (!helper.stockpile_method("select_order", sp)) {
|
|
|
|
Core::printerr("Stockflow order selection failed!\n");
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return true;
|
|
|
|
} else if (input->count(interface_key::CUSTOM_SHIFT_J)) {
|
|
|
|
// Toggle the order trigger for this stockpile.
|
|
|
|
if (!helper.stockpile_method("toggle_trigger", sp)) {
|
|
|
|
Core::printerr("Stockflow trigger toggle failed!\n");
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return false;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, feed, (set<df::interface_key> *input)) {
|
|
|
|
if (!handleInput(input))
|
|
|
|
INTERPOSE_NEXT(feed)(input);
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, render, ()) {
|
|
|
|
INTERPOSE_NEXT(render)();
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
building_stockpilest *sp = get_selected_stockpile();
|
|
|
|
if (sp)
|
|
|
|
helper.draw(sp);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(stockflow_hook, feed);
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(stockflow_hook, render);
|
|
|
|
|
|
|
|
|
2013-05-31 15:30:57 -06:00
|
|
|
static bool apply_hooks(color_ostream &out, bool enabling) {
|
|
|
|
if (enabling && !gps) {
|
|
|
|
out.printerr("Stockflow needs graphics.\n");
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-31 15:30:57 -06:00
|
|
|
if (!INTERPOSE_HOOK(stockflow_hook, feed).apply(enabling) || !INTERPOSE_HOOK(stockflow_hook, render).apply(enabling)) {
|
|
|
|
out.printerr("Could not %s stockflow hooks!\n", enabling? "insert": "remove");
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-31 15:30:57 -06:00
|
|
|
if (!helper.reset(out, enabling && Maps::IsValid())) {
|
|
|
|
out.printerr("Could not reset stockflow world data!\n");
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-31 15:30:57 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
static command_result stockflow_cmd(color_ostream &out, vector <string> & parameters) {
|
|
|
|
bool desired = enabled;
|
|
|
|
if (parameters.size() == 1) {
|
|
|
|
if (parameters[0] == "enable" || parameters[0] == "on" || parameters[0] == "1") {
|
|
|
|
desired = true;
|
2014-08-03 15:14:20 -06:00
|
|
|
fast = false;
|
2013-05-24 12:43:40 -06:00
|
|
|
} else if (parameters[0] == "disable" || parameters[0] == "off" || parameters[0] == "0") {
|
|
|
|
desired = false;
|
2014-08-03 15:14:20 -06:00
|
|
|
fast = false;
|
|
|
|
} else if (parameters[0] == "fast" || parameters[0] == "always" || parameters[0] == "2") {
|
|
|
|
desired = true;
|
|
|
|
fast = true;
|
2013-05-24 12:43:40 -06:00
|
|
|
} else if (parameters[0] == "usage" || parameters[0] == "help" || parameters[0] == "?") {
|
2015-08-14 14:11:23 -06:00
|
|
|
out.print("%s: %s\nUsage:\n%s", plugin_name, tagline, usage);
|
2013-05-24 12:43:40 -06:00
|
|
|
return CR_OK;
|
|
|
|
} else if (parameters[0] == "list") {
|
|
|
|
if (!enabled) {
|
|
|
|
out.printerr("Stockflow is not currently enabled.\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (!Maps::IsValid()) {
|
|
|
|
out.printerr("You haven't loaded a map yet.\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
// Tell Lua to list any saved stockpile orders.
|
|
|
|
return helper.command_method("list_orders", out)? CR_OK: CR_FAILURE;
|
|
|
|
} else if (parameters[0] != "status") {
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
} else if (parameters.size() > 1) {
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
if (desired != enabled) {
|
2013-05-31 15:30:57 -06:00
|
|
|
if (!apply_hooks(out, desired)) {
|
2013-05-24 12:43:40 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-08-03 16:40:03 -06:00
|
|
|
out.print("Stockflow is %s %s%s.\n", (desired == enabled)? "currently": "now", desired? "enabled": "disabled", fast? ", in fast mode": "");
|
2013-05-24 12:43:40 -06:00
|
|
|
enabled = desired;
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_change_event event) {
|
|
|
|
if (event == DFHack::SC_MAP_LOADED) {
|
|
|
|
if (!helper.reset(out, enabled)) {
|
|
|
|
out.printerr("Could not load stockflow world data!\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
} else if (event == DFHack::SC_MAP_UNLOADED) {
|
|
|
|
if (!helper.reset(out, false)) {
|
|
|
|
out.printerr("Could not unload stockflow world data!\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2014-04-18 21:58:20 -06:00
|
|
|
DFhackCExport command_result plugin_enable(color_ostream& out, bool enable) {
|
|
|
|
/* Accept the "enable stockflow"/"disable stockflow" syntax, where available. */
|
|
|
|
/* Same as "stockflow enable"/"stockflow disable" except without the status line. */
|
|
|
|
if (enable != enabled) {
|
|
|
|
if (!apply_hooks(out, enable)) {
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-04-18 21:58:20 -06:00
|
|
|
enabled = enable;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-04-18 21:58:20 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2013-05-24 12:43:40 -06:00
|
|
|
DFhackCExport command_result plugin_init(color_ostream &out, std::vector <PluginCommand> &commands) {
|
|
|
|
helper.init();
|
2014-04-18 21:58:20 -06:00
|
|
|
if (AUTOENABLE) {
|
|
|
|
if (!apply_hooks(out, true)) {
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-04-18 21:58:20 -06:00
|
|
|
enabled = true;
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2015-08-14 14:11:23 -06:00
|
|
|
commands.push_back(PluginCommand(plugin_name, tagline, stockflow_cmd, false, usage));
|
2013-05-24 12:43:40 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_shutdown(color_ostream &out) {
|
2014-04-18 21:58:20 -06:00
|
|
|
return plugin_enable(out, false);
|
2013-05-24 12:43:40 -06:00
|
|
|
}
|