2012-04-02 08:07:23 -06:00
|
|
|
// Intention: help with activity zone management (auto-pasture animals, auto-pit goblins, ...)
|
2012-11-16 14:33:36 -07:00
|
|
|
//
|
2012-04-02 08:07:23 -06:00
|
|
|
// the following things would be nice:
|
|
|
|
// - dump info about pastures, pastured animals, count non-pastured tame animals, print gender info
|
|
|
|
// - help finding caged dwarves? (maybe even allow to build their cages for fast release)
|
|
|
|
// - dump info about caged goblins, animals, ...
|
|
|
|
// - count grass tiles on pastures, move grazers to new pasture if old pasture is empty
|
|
|
|
// move hungry unpastured grazers to pasture with grass
|
2012-11-16 14:33:36 -07:00
|
|
|
//
|
2012-04-02 08:07:23 -06:00
|
|
|
// What is working so far:
|
|
|
|
// - print detailed info about activity zone and units under cursor (mostly for checking refs and stuff)
|
|
|
|
// - mark a zone which is used for future assignment commands
|
|
|
|
// - assign single selected creature to a zone
|
2012-04-10 01:15:38 -06:00
|
|
|
// - mass-assign creatures using filters
|
2012-04-02 08:07:23 -06:00
|
|
|
// - unassign single creature under cursor from current zone
|
|
|
|
// - pitting own dwarves :)
|
2022-08-02 02:07:13 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
#include <functional>
|
|
|
|
#include <stdexcept>
|
2022-08-02 02:07:13 -06:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
2012-04-02 08:07:23 -06:00
|
|
|
|
|
|
|
#include "df/building_cagest.h"
|
|
|
|
#include "df/building_chainst.h"
|
2022-08-02 02:07:13 -06:00
|
|
|
#include "df/building_civzonest.h"
|
2012-04-02 08:07:23 -06:00
|
|
|
#include "df/general_ref_building_civzone_assignedst.h"
|
2022-08-02 02:07:13 -06:00
|
|
|
#include "df/ui.h"
|
|
|
|
#include "df/unit.h"
|
2016-08-10 21:50:00 -06:00
|
|
|
#include "df/unit_relationship_type.h"
|
2012-11-26 02:03:23 -07:00
|
|
|
#include "df/viewscreen_dwarfmodest.h"
|
2022-08-02 02:07:13 -06:00
|
|
|
#include "df/world.h"
|
|
|
|
|
|
|
|
#include "PluginManager.h"
|
|
|
|
#include "uicommon.h"
|
|
|
|
#include "VTableInterpose.h"
|
|
|
|
|
|
|
|
#include "modules/Buildings.h"
|
|
|
|
#include "modules/Gui.h"
|
|
|
|
#include "modules/Units.h"
|
2012-11-26 02:03:23 -07:00
|
|
|
#include "modules/Translation.h"
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
using std::function;
|
2016-04-22 17:43:05 -06:00
|
|
|
using std::make_pair;
|
2022-08-02 02:07:13 -06:00
|
|
|
using std::ostringstream;
|
|
|
|
using std::pair;
|
|
|
|
using std::runtime_error;
|
2016-04-22 17:43:05 -06:00
|
|
|
using std::string;
|
2016-02-01 07:45:46 -07:00
|
|
|
using std::unordered_map;
|
|
|
|
using std::unordered_set;
|
2016-04-22 17:43:05 -06:00
|
|
|
using std::vector;
|
|
|
|
|
2012-04-02 08:07:23 -06:00
|
|
|
using namespace DFHack;
|
2014-08-11 14:07:52 -06:00
|
|
|
|
2014-12-06 16:47:35 -07:00
|
|
|
DFHACK_PLUGIN("zone");
|
|
|
|
DFHACK_PLUGIN_IS_ENABLED(is_enabled);
|
|
|
|
|
|
|
|
REQUIRE_GLOBAL(cursor);
|
|
|
|
REQUIRE_GLOBAL(gps);
|
2022-08-02 02:07:13 -06:00
|
|
|
REQUIRE_GLOBAL(ui);
|
2014-12-06 16:47:35 -07:00
|
|
|
REQUIRE_GLOBAL(ui_building_item_cursor);
|
|
|
|
REQUIRE_GLOBAL(ui_building_assign_type);
|
|
|
|
REQUIRE_GLOBAL(ui_building_assign_is_marked);
|
|
|
|
REQUIRE_GLOBAL(ui_building_assign_units);
|
|
|
|
REQUIRE_GLOBAL(ui_building_assign_items);
|
|
|
|
REQUIRE_GLOBAL(ui_building_in_assign);
|
|
|
|
REQUIRE_GLOBAL(ui_menu_width);
|
2022-08-02 02:07:13 -06:00
|
|
|
REQUIRE_GLOBAL(world);
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static void doMarkForSlaughter(df::unit* unit)
|
2012-04-05 03:40:27 -06:00
|
|
|
{
|
|
|
|
unit->flags2.bits.slaughter = 1;
|
2012-04-02 08:58:12 -06:00
|
|
|
}
|
|
|
|
|
2012-04-06 18:31:10 -06:00
|
|
|
// found a unit with weird position values on one of my maps (negative and in the thousands)
|
|
|
|
// it didn't appear in the animal stocks screen, but looked completely fine otherwise (alive, tame, own, etc)
|
2012-04-08 04:51:03 -06:00
|
|
|
// maybe a rare bug, but better avoid assigning such units to zones or slaughter etc.
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool hasValidMapPos(df::unit* unit)
|
2012-04-06 18:31:10 -06:00
|
|
|
{
|
|
|
|
if( unit->pos.x >=0 && unit->pos.y >= 0 && unit->pos.z >= 0
|
2012-11-16 14:33:36 -07:00
|
|
|
&& unit->pos.x < world->map.x_count
|
|
|
|
&& unit->pos.y < world->map.y_count
|
2012-04-06 18:31:10 -06:00
|
|
|
&& unit->pos.z < world->map.z_count)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-05 09:08:34 -06:00
|
|
|
static bool isInBuiltCageRoom(df::unit*);
|
|
|
|
|
2012-04-02 08:07:23 -06:00
|
|
|
// dump some unit info
|
2022-08-02 02:07:13 -06:00
|
|
|
static void unitInfo(color_ostream & out, df::unit* unit, bool verbose = false)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2012-04-04 06:58:53 -06:00
|
|
|
out.print("Unit %d ", unit->id); //race %d, civ %d,", creature->race, creature->civ_id
|
2012-04-02 08:07:23 -06:00
|
|
|
if(unit->name.has_name)
|
2012-04-05 03:40:27 -06:00
|
|
|
{
|
|
|
|
// units given a nick with the rename tool might not have a first name (animals etc)
|
|
|
|
string firstname = unit->name.first_name;
|
|
|
|
if(firstname.size() > 0)
|
|
|
|
{
|
|
|
|
firstname[0] = toupper(firstname[0]);
|
|
|
|
out << "Name: " << firstname;
|
|
|
|
}
|
|
|
|
if(unit->name.nickname.size() > 0)
|
|
|
|
out << " '" << unit->name.nickname << "'";
|
2012-04-04 06:58:53 -06:00
|
|
|
out << ", ";
|
2012-04-05 03:40:27 -06:00
|
|
|
}
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isAdult(unit))
|
2012-04-05 12:32:44 -06:00
|
|
|
out << "adult";
|
2022-08-02 02:07:13 -06:00
|
|
|
else if(Units::isBaby(unit))
|
2012-04-05 12:32:44 -06:00
|
|
|
out << "baby";
|
2022-08-02 02:07:13 -06:00
|
|
|
else if(Units::isChild(unit))
|
2012-04-05 12:32:44 -06:00
|
|
|
out << "child";
|
|
|
|
out << " ";
|
2012-11-16 14:33:36 -07:00
|
|
|
// sometimes empty even in vanilla RAWS, sometimes contains full race name (e.g. baby alpaca)
|
2016-02-01 07:45:46 -07:00
|
|
|
// all animals I looked at don't have babies anyways, their offspring tarts as CHILD
|
2012-04-05 12:32:44 -06:00
|
|
|
//out << getRaceBabyName(unit);
|
|
|
|
//out << getRaceChildName(unit);
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
out << Units::getRaceName(unit) << " (";
|
2012-04-02 08:07:23 -06:00
|
|
|
switch(unit->sex)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
out << "female";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
out << "male";
|
|
|
|
break;
|
2012-04-04 06:58:53 -06:00
|
|
|
case -1:
|
2012-04-02 08:07:23 -06:00
|
|
|
default:
|
2012-04-04 06:58:53 -06:00
|
|
|
out << "n/a";
|
2012-04-02 08:07:23 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
out << ")";
|
2022-08-02 02:07:13 -06:00
|
|
|
out << ", age: " << Units::getAge(unit, true);
|
2012-04-08 00:07:29 -06:00
|
|
|
|
2020-09-17 09:00:15 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isTame(unit))
|
2012-11-16 14:33:36 -07:00
|
|
|
out << ", tame";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isOwnCiv(unit))
|
2012-04-02 08:07:23 -06:00
|
|
|
out << ", owned";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isWar(unit))
|
2012-04-02 08:07:23 -06:00
|
|
|
out << ", war";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isHunter(unit))
|
2012-04-02 08:07:23 -06:00
|
|
|
out << ", hunter";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isMerchant(unit))
|
2012-04-08 04:51:03 -06:00
|
|
|
out << ", merchant";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isForest(unit))
|
2012-04-08 04:51:03 -06:00
|
|
|
out << ", forest";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isEggLayer(unit))
|
2012-04-09 07:03:26 -06:00
|
|
|
out << ", egglayer";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isGrazer(unit))
|
2012-04-09 07:03:26 -06:00
|
|
|
out << ", grazer";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Units::isMilkable(unit))
|
2012-04-09 07:03:26 -06:00
|
|
|
out << ", milkable";
|
2020-09-17 09:00:15 -06:00
|
|
|
if(unit->flags2.bits.slaughter)
|
|
|
|
out << ", slaughter";
|
2020-11-15 20:18:54 -07:00
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
if(verbose)
|
|
|
|
{
|
2012-04-09 16:22:38 -06:00
|
|
|
out << ". Pos: ("<<unit->pos.x << "/"<< unit->pos.y << "/" << unit->pos.z << ") " << endl;
|
2022-08-02 02:07:13 -06:00
|
|
|
out << "index in units vector: " << Units::findIndexById(unit->id) << endl;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
out << endl;
|
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
if(!verbose)
|
2012-04-02 08:07:23 -06:00
|
|
|
return;
|
|
|
|
|
2012-11-12 07:27:58 -07:00
|
|
|
//out << "number of refs: " << creature->general_refs.size() << endl;
|
|
|
|
for(size_t r = 0; r<unit->general_refs.size(); r++)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2012-11-12 07:27:58 -07:00
|
|
|
df::general_ref* ref = unit->general_refs.at(r);
|
2012-04-02 08:07:23 -06:00
|
|
|
df::general_ref_type refType = ref->getType();
|
|
|
|
out << " ref#" << r <<" refType#" << refType << " "; //endl;
|
|
|
|
switch(refType)
|
|
|
|
{
|
|
|
|
case df::general_ref_type::BUILDING_CIVZONE_ASSIGNED:
|
|
|
|
{
|
|
|
|
out << "assigned to zone";
|
|
|
|
df::building_civzonest * civAss = (df::building_civzonest *) ref->getBuilding();
|
|
|
|
out << " #" << civAss->id;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case df::general_ref_type::CONTAINED_IN_ITEM:
|
|
|
|
out << "contained in item";
|
|
|
|
break;
|
|
|
|
case df::general_ref_type::BUILDING_CAGED:
|
|
|
|
out << "caged";
|
|
|
|
break;
|
|
|
|
case df::general_ref_type::BUILDING_CHAIN:
|
|
|
|
out << "chained";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//out << "unhandled reftype";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
out << endl;
|
|
|
|
}
|
2012-04-16 08:31:12 -06:00
|
|
|
if(isInBuiltCageRoom(unit))
|
|
|
|
{
|
|
|
|
out << "in a room." << endl;
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isCage(df::building * building)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return building && (building->getType() == df::building_type::Cage);
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isChain(df::building * building)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return building && (building->getType() == df::building_type::Chain);
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static df::general_ref_building_civzone_assignedst * createCivzoneRef()
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
|
|
|
static bool vt_initialized = false;
|
|
|
|
df::general_ref_building_civzone_assignedst* newref = NULL;
|
|
|
|
|
|
|
|
// after having run successfully for the first time it's safe to simply create the object
|
|
|
|
if(vt_initialized)
|
|
|
|
{
|
|
|
|
newref = (df::general_ref_building_civzone_assignedst*)
|
|
|
|
df::general_ref_building_civzone_assignedst::_identity.instantiate();
|
|
|
|
return newref;
|
|
|
|
}
|
|
|
|
|
|
|
|
// being called for the first time, need to initialize the vtable
|
|
|
|
for(size_t i = 0; i < world->units.all.size(); i++)
|
|
|
|
{
|
2012-11-16 14:33:36 -07:00
|
|
|
df::unit * creature = world->units.all[i];
|
2012-11-12 07:27:58 -07:00
|
|
|
for(size_t r = 0; r<creature->general_refs.size(); r++)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
|
|
|
df::general_ref* ref;
|
2012-11-12 07:27:58 -07:00
|
|
|
ref = creature->general_refs.at(r);
|
2012-04-02 08:07:23 -06:00
|
|
|
if(ref->getType() == df::general_ref_type::BUILDING_CIVZONE_ASSIGNED)
|
|
|
|
{
|
|
|
|
if (strict_virtual_cast<df::general_ref_building_civzone_assignedst>(ref))
|
|
|
|
{
|
|
|
|
// !! calling new() doesn't work, need _identity.instantiate() instead !!
|
2012-11-16 14:33:36 -07:00
|
|
|
newref = (df::general_ref_building_civzone_assignedst*)
|
2012-04-02 08:07:23 -06:00
|
|
|
df::general_ref_building_civzone_assignedst::_identity.instantiate();
|
|
|
|
vt_initialized = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(vt_initialized)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return newref;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isInBuiltCage(df::unit* unit);
|
2012-04-14 16:35:59 -06:00
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
// check if assigned to pen, pit, (built) cage or chain
|
|
|
|
// note: BUILDING_CAGED is not set for animals (maybe it's used for dwarves who get caged as sentence)
|
|
|
|
// animals in cages (no matter if built or on stockpile) get the ref CONTAINED_IN_ITEM instead
|
|
|
|
// removing them from cages on stockpiles is no problem even without clearing the ref
|
|
|
|
// and usually it will be desired behavior to do so.
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isAssigned(df::unit* unit)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
|
|
|
bool assigned = false;
|
2012-11-12 07:27:58 -07:00
|
|
|
for (size_t r=0; r < unit->general_refs.size(); r++)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2012-11-12 07:27:58 -07:00
|
|
|
df::general_ref * ref = unit->general_refs[r];
|
2012-04-05 03:40:27 -06:00
|
|
|
auto rtype = ref->getType();
|
2012-04-04 06:58:53 -06:00
|
|
|
if( rtype == df::general_ref_type::BUILDING_CIVZONE_ASSIGNED
|
2012-04-05 03:40:27 -06:00
|
|
|
|| rtype == df::general_ref_type::BUILDING_CAGED
|
|
|
|
|| rtype == df::general_ref_type::BUILDING_CHAIN
|
2012-04-14 11:06:03 -06:00
|
|
|
|| (rtype == df::general_ref_type::CONTAINED_IN_ITEM && isInBuiltCage(unit))
|
2012-04-05 03:40:27 -06:00
|
|
|
)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2012-04-05 03:40:27 -06:00
|
|
|
assigned = true;
|
2012-04-04 06:58:53 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return assigned;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isAssignedToZone(df::unit* unit)
|
2012-11-26 02:03:23 -07:00
|
|
|
{
|
|
|
|
bool assigned = false;
|
2013-03-15 23:25:02 -06:00
|
|
|
for (size_t r=0; r < unit->general_refs.size(); r++)
|
2012-11-26 02:03:23 -07:00
|
|
|
{
|
2013-03-15 23:25:02 -06:00
|
|
|
df::general_ref * ref = unit->general_refs[r];
|
2012-11-26 02:03:23 -07:00
|
|
|
auto rtype = ref->getType();
|
|
|
|
if(rtype == df::general_ref_type::BUILDING_CIVZONE_ASSIGNED)
|
|
|
|
{
|
|
|
|
assigned = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return assigned;
|
|
|
|
}
|
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
// check if contained in item (e.g. animals in cages)
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isContainedInItem(df::unit* unit)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
|
|
|
bool contained = false;
|
2012-11-12 07:27:58 -07:00
|
|
|
for (size_t r=0; r < unit->general_refs.size(); r++)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2012-11-12 07:27:58 -07:00
|
|
|
df::general_ref * ref = unit->general_refs[r];
|
2012-04-04 06:58:53 -06:00
|
|
|
auto rtype = ref->getType();
|
|
|
|
if(rtype == df::general_ref_type::CONTAINED_IN_ITEM)
|
|
|
|
{
|
|
|
|
contained = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return contained;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isInBuiltCage(df::unit* unit)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
|
|
|
bool caged = false;
|
|
|
|
for (size_t b=0; b < world->buildings.all.size(); b++)
|
|
|
|
{
|
|
|
|
df::building* building = world->buildings.all[b];
|
2022-08-02 02:07:13 -06:00
|
|
|
if( building->getType() == df::building_type::Cage)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
2012-04-14 11:06:03 -06:00
|
|
|
df::building_cagest* cage = (df::building_cagest*) building;
|
2014-02-27 13:51:45 -07:00
|
|
|
for(size_t c=0; c<cage->assigned_units.size(); c++)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
if(cage->assigned_units[c] == unit->id)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
|
|
|
caged = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(caged)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return caged;
|
|
|
|
}
|
|
|
|
|
2012-04-16 02:15:37 -06:00
|
|
|
// built cage defined as room (supposed to detect zoo cages)
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool isInBuiltCageRoom(df::unit* unit)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
bool caged_room = false;
|
|
|
|
for (size_t b=0; b < world->buildings.all.size(); b++)
|
|
|
|
{
|
|
|
|
df::building* building = world->buildings.all[b];
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2012-04-17 08:57:41 -06:00
|
|
|
// !!! building->isRoom() returns true if the building can be made a room but currently isn't
|
|
|
|
// !!! except for coffins/tombs which always return false
|
|
|
|
// !!! using the bool is_room however gives the correct state/value
|
|
|
|
if(!building->is_room)
|
2012-04-16 08:31:12 -06:00
|
|
|
continue;
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if(building->getType() == df::building_type::Cage)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
df::building_cagest* cage = (df::building_cagest*) building;
|
2014-02-27 13:51:45 -07:00
|
|
|
for(size_t c=0; c<cage->assigned_units.size(); c++)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
if(cage->assigned_units[c] == unit->id)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
caged_room = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(caged_room)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return caged_room;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static df::building * getBuiltCageAtPos(df::coord pos)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
|
|
|
df::building* cage = NULL;
|
|
|
|
for (size_t b=0; b < world->buildings.all.size(); b++)
|
|
|
|
{
|
|
|
|
df::building* building = world->buildings.all[b];
|
2022-08-02 02:07:13 -06:00
|
|
|
if( building->getType() == df::building_type::Cage
|
2012-04-10 01:15:38 -06:00
|
|
|
&& building->x1 == pos.x
|
|
|
|
&& building->y1 == pos.y
|
|
|
|
&& building->z == pos.z )
|
|
|
|
{
|
2012-04-17 10:11:14 -06:00
|
|
|
// don't set pointer if not constructed yet
|
|
|
|
if(building->getBuildStage()!=building->getMaxBuildStage())
|
|
|
|
break;
|
|
|
|
|
2012-04-10 01:15:38 -06:00
|
|
|
cage = building;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cage;
|
|
|
|
}
|
|
|
|
|
2012-04-02 08:07:23 -06:00
|
|
|
// check if unit is already assigned to a zone, remove that ref from unit and old zone
|
2012-04-10 01:15:38 -06:00
|
|
|
// check if unit is already assigned to a cage, remove that ref from the cage
|
|
|
|
// returns false if no cage or pasture information was found
|
2012-04-02 08:07:23 -06:00
|
|
|
// helps as workaround for http://www.bay12games.com/dwarves/mantisbt/view.php?id=4475 by the way
|
|
|
|
// (pastured animals assigned to chains will get hauled back and forth because the pasture ref is not deleted)
|
2022-08-02 02:07:13 -06:00
|
|
|
static bool unassignUnitFromBuilding(df::unit* unit)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
|
|
|
bool success = false;
|
2012-11-12 07:27:58 -07:00
|
|
|
for (std::size_t idx = 0; idx < unit->general_refs.size(); idx++)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2012-11-12 07:27:58 -07:00
|
|
|
df::general_ref * oldref = unit->general_refs[idx];
|
2012-04-10 01:15:38 -06:00
|
|
|
switch(oldref->getType())
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2012-04-10 01:15:38 -06:00
|
|
|
case df::general_ref_type::BUILDING_CIVZONE_ASSIGNED:
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2012-11-12 07:27:58 -07:00
|
|
|
unit->general_refs.erase(unit->general_refs.begin() + idx);
|
2012-04-10 01:15:38 -06:00
|
|
|
df::building_civzonest * oldciv = (df::building_civzonest *) oldref->getBuilding();
|
2014-02-27 13:51:45 -07:00
|
|
|
for(size_t oc=0; oc<oldciv->assigned_units.size(); oc++)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
if(oldciv->assigned_units[oc] == unit->id)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
oldciv->assigned_units.erase(oldciv->assigned_units.begin() + oc);
|
2012-04-10 01:15:38 -06:00
|
|
|
break;
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
2012-04-10 01:15:38 -06:00
|
|
|
delete oldref;
|
|
|
|
success = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case df::general_ref_type::CONTAINED_IN_ITEM:
|
|
|
|
{
|
|
|
|
// game does not erase the ref until creature gets removed from cage
|
2012-11-12 07:27:58 -07:00
|
|
|
//unit->general_refs.erase(unit->general_refs.begin() + idx);
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2012-04-10 01:15:38 -06:00
|
|
|
// walk through buildings, check cages for inhabitants, compare ids
|
|
|
|
for (size_t b=0; b < world->buildings.all.size(); b++)
|
|
|
|
{
|
|
|
|
bool found = false;
|
|
|
|
df::building* building = world->buildings.all[b];
|
|
|
|
if(isCage(building))
|
|
|
|
{
|
|
|
|
df::building_cagest* oldcage = (df::building_cagest*) building;
|
2014-02-27 13:51:45 -07:00
|
|
|
for(size_t oc=0; oc<oldcage->assigned_units.size(); oc++)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
if(oldcage->assigned_units[oc] == unit->id)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
oldcage->assigned_units.erase(oldcage->assigned_units.begin() + oc);
|
2012-04-10 01:15:38 -06:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(found)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
success = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case df::general_ref_type::BUILDING_CHAIN:
|
|
|
|
{
|
|
|
|
// try not erasing the ref and see what happens
|
2012-11-12 07:27:58 -07:00
|
|
|
//unit->general_refs.erase(unit->general_refs.begin() + idx);
|
2012-04-10 01:15:38 -06:00
|
|
|
// probably need to delete chain reference here
|
|
|
|
//success = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case df::general_ref_type::BUILDING_CAGED:
|
|
|
|
{
|
|
|
|
// not sure what to do here, doesn't seem to get used by the game
|
2012-11-12 07:27:58 -07:00
|
|
|
//unit->general_refs.erase(unit->general_refs.begin() + idx);
|
2012-04-10 01:15:38 -06:00
|
|
|
//success = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
// some reference which probably shouldn't get deleted
|
|
|
|
// (animals who are historical figures and have a NEMESIS reference or whatever)
|
|
|
|
break;
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
// assign to pen or pit
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result assignUnitToZone(color_ostream& out, df::unit* unit, df::building* building, bool verbose = false)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
|
|
|
// building must be a pen/pasture or pit
|
2022-08-02 02:07:13 -06:00
|
|
|
if(!Buildings::isPenPasture(building) && !Buildings::isPitPond(building))
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2012-04-11 06:08:47 -06:00
|
|
|
out << "Invalid building type. This is not a pen/pasture or pit/pond." << endl;
|
2012-04-02 08:07:23 -06:00
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// try to get a fresh civzone ref
|
|
|
|
df::general_ref_building_civzone_assignedst * ref = createCivzoneRef();
|
|
|
|
if(!ref)
|
|
|
|
{
|
|
|
|
out << "Could not find a clonable activity zone reference" << endl
|
|
|
|
<< "You need to pen/pasture/pit at least one creature" << endl
|
|
|
|
<< "before using 'assign' for the first time." << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2012-04-02 08:07:23 -06:00
|
|
|
// check if unit is already pastured, remove that ref from unit and old pasture
|
2012-04-10 01:15:38 -06:00
|
|
|
// testing showed that removing the ref from the unit only seems to be necessary for pastured creatures
|
2012-04-04 06:58:53 -06:00
|
|
|
// if they are in cages on stockpiles the game unassigns them automatically
|
2012-04-10 01:15:38 -06:00
|
|
|
// if they are in built cages the pointer to the creature needs to be removed from the cage
|
|
|
|
// TODO: check what needs to be done for chains
|
|
|
|
bool cleared_old = unassignUnitFromBuilding(unit);
|
2012-04-04 06:58:53 -06:00
|
|
|
|
2012-04-02 08:07:23 -06:00
|
|
|
if(verbose)
|
|
|
|
{
|
2012-04-04 06:58:53 -06:00
|
|
|
if(cleared_old)
|
2012-04-02 08:07:23 -06:00
|
|
|
out << "old zone info cleared.";
|
|
|
|
else
|
|
|
|
out << "no old zone info found.";
|
|
|
|
}
|
|
|
|
|
2012-04-05 03:40:27 -06:00
|
|
|
ref->building_id = building->id;
|
2012-11-12 07:27:58 -07:00
|
|
|
unit->general_refs.push_back(ref);
|
2012-04-02 08:07:23 -06:00
|
|
|
|
|
|
|
df::building_civzonest * civz = (df::building_civzonest *) building;
|
2014-02-27 13:51:45 -07:00
|
|
|
civz->assigned_units.push_back(unit->id);
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2012-11-16 14:33:36 -07:00
|
|
|
out << "Unit " << unit->id
|
2022-08-02 02:07:13 -06:00
|
|
|
<< "(" << Units::getRaceName(unit) << ")"
|
2012-04-02 08:07:23 -06:00
|
|
|
<< " assigned to zone " << building->id;
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Buildings::isPitPond(building))
|
2012-04-11 06:08:47 -06:00
|
|
|
out << " (pit/pond).";
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Buildings::isPenPasture(building))
|
2012-04-02 08:07:23 -06:00
|
|
|
out << " (pen/pasture).";
|
|
|
|
out << endl;
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result assignUnitToCage(color_ostream& out, df::unit* unit, df::building* building, bool verbose)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2012-04-10 01:15:38 -06:00
|
|
|
// building must be a pen/pasture or pit
|
|
|
|
if(!isCage(building))
|
|
|
|
{
|
|
|
|
out << "Invalid building type. This is not a cage." << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
2012-04-15 15:21:36 -06:00
|
|
|
// don't assign owned pets to a cage. the owner will release them, resulting into infinite hauling (df bug)
|
2016-08-10 21:50:00 -06:00
|
|
|
if(unit->relationship_ids[df::unit_relationship_type::Pet] != -1)
|
2012-04-15 15:21:36 -06:00
|
|
|
return CR_OK;
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2012-04-10 01:15:38 -06:00
|
|
|
// check if unit is already pastured or caged, remove refs where necessary
|
|
|
|
bool cleared_old = unassignUnitFromBuilding(unit);
|
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
if(cleared_old)
|
|
|
|
out << "old zone info cleared.";
|
|
|
|
else
|
|
|
|
out << "no old zone info found.";
|
|
|
|
}
|
|
|
|
|
|
|
|
//ref->building_id = building->id;
|
2012-11-12 07:27:58 -07:00
|
|
|
//unit->general_refs.push_back(ref);
|
2012-04-10 01:15:38 -06:00
|
|
|
|
|
|
|
df::building_cagest* civz = (df::building_cagest*) building;
|
2014-02-27 13:51:45 -07:00
|
|
|
civz->assigned_units.push_back(unit->id);
|
2012-04-10 01:15:38 -06:00
|
|
|
|
2012-11-16 14:33:36 -07:00
|
|
|
out << "Unit " << unit->id
|
2022-08-02 02:07:13 -06:00
|
|
|
<< "(" << Units::getRaceName(unit) << ")"
|
2012-04-10 01:15:38 -06:00
|
|
|
<< " assigned to cage " << building->id;
|
|
|
|
out << endl;
|
|
|
|
|
|
|
|
return CR_OK;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result assignUnitToChain(color_ostream& out, df::unit* unit, df::building* building, bool verbose)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
|
|
|
out << "sorry. assigning to chains is not possible yet." << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result assignUnitToBuilding(color_ostream& out, df::unit* unit, df::building* building, bool verbose)
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
|
|
|
command_result result = CR_WRONG_USAGE;
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Buildings::isActivityZone(building))
|
2012-04-04 06:58:53 -06:00
|
|
|
result = assignUnitToZone(out, unit, building, verbose);
|
|
|
|
else if(isCage(building))
|
|
|
|
result = assignUnitToCage(out, unit, building, verbose);
|
|
|
|
else if(isChain(building))
|
|
|
|
result = assignUnitToChain(out, unit, building, verbose);
|
|
|
|
else
|
|
|
|
out << "Cannot assign units to this type of building!" << endl;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result assignUnitsToCagezone(color_ostream& out, vector<df::unit*> units, df::building* building, bool verbose)
|
2012-04-16 08:31:12 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
if(!Buildings::isPenPasture(building))
|
2012-04-16 08:31:12 -06:00
|
|
|
{
|
|
|
|
out << "A cage zone needs to be a pen/pasture containing at least one cage!" << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t x1 = building->x1;
|
|
|
|
int32_t x2 = building->x2;
|
|
|
|
int32_t y1 = building->y1;
|
|
|
|
int32_t y2 = building->y2;
|
|
|
|
int32_t z = building->z;
|
|
|
|
vector <df::building_cagest*> cages;
|
|
|
|
for (int32_t x = x1; x<=x2; x++)
|
|
|
|
{
|
|
|
|
for (int32_t y = y1; y<=y2; y++)
|
|
|
|
{
|
|
|
|
df::building* cage = getBuiltCageAtPos(df::coord(x,y,z));
|
|
|
|
if(cage)
|
|
|
|
{
|
|
|
|
df::building_cagest* cagest = (df::building_cagest*) cage;
|
|
|
|
cages.push_back(cagest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!cages.size())
|
|
|
|
{
|
|
|
|
out << "No cages found in this zone!" << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << "Number of cages: " << cages.size() << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(units.size())
|
|
|
|
{
|
|
|
|
// hrm, better use sort() instead?
|
|
|
|
df::building_cagest * bestcage = cages[0];
|
2014-02-27 13:51:45 -07:00
|
|
|
size_t lowest = cages[0]->assigned_units.size();
|
2012-04-16 08:31:12 -06:00
|
|
|
for(size_t i=1; i<cages.size(); i++)
|
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
if(cages[i]->assigned_units.size()<lowest)
|
2012-04-16 08:31:12 -06:00
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
lowest = cages[i]->assigned_units.size();
|
2012-04-16 08:31:12 -06:00
|
|
|
bestcage = cages[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
df::unit* unit = units.back();
|
2012-04-16 13:37:48 -06:00
|
|
|
units.pop_back();
|
2012-04-16 08:31:12 -06:00
|
|
|
command_result result = assignUnitToCage(out, unit, (df::building*) bestcage, verbose);
|
|
|
|
if(result!=CR_OK)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result nickUnitsInZone(color_ostream& out, df::building* building, string nick)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
// building must be a pen/pasture or pit
|
2022-08-02 02:07:13 -06:00
|
|
|
if(!Buildings::isPenPasture(building) && !Buildings::isPitPond(building))
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
out << "Invalid building type. This is not a pen/pasture or pit/pond." << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
df::building_civzonest * civz = (df::building_civzonest *) building;
|
2014-02-27 13:51:45 -07:00
|
|
|
for(size_t i = 0; i < civz->assigned_units.size(); i++)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
2015-01-28 14:26:17 -07:00
|
|
|
df::unit* unit = df::unit::find(civz->assigned_units[i]);
|
2012-04-16 02:15:37 -06:00
|
|
|
if(unit)
|
|
|
|
Units::setNickname(unit, nick);
|
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result nickUnitsInCage(color_ostream& out, df::building* building, string nick)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
// building must be a pen/pasture or pit
|
|
|
|
if(!isCage(building))
|
|
|
|
{
|
|
|
|
out << "Invalid building type. This is not a cage." << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
df::building_cagest* cage = (df::building_cagest*) building;
|
2014-02-27 13:51:45 -07:00
|
|
|
for(size_t i=0; i<cage->assigned_units.size(); i++)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
2015-01-28 14:26:17 -07:00
|
|
|
df::unit* unit = df::unit::find(cage->assigned_units[i]);
|
2012-04-16 02:15:37 -06:00
|
|
|
if(unit)
|
|
|
|
Units::setNickname(unit, nick);
|
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result nickUnitsInChain(color_ostream& out, df::building* building, string nick)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
out << "sorry. nicknaming chained units is not possible yet." << endl;
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
2012-04-16 08:31:12 -06:00
|
|
|
// give all units inside a pasture or cage the same nickname
|
|
|
|
// (usage example: protect them from being autobutchered)
|
2022-08-02 02:07:13 -06:00
|
|
|
static command_result nickUnitsInBuilding(color_ostream& out, df::building* building, string nick)
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
|
|
|
command_result result = CR_WRONG_USAGE;
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Buildings::isActivityZone(building))
|
2012-04-16 02:15:37 -06:00
|
|
|
result = nickUnitsInZone(out, building, nick);
|
|
|
|
else if(isCage(building))
|
|
|
|
result = nickUnitsInCage(out, building, nick);
|
|
|
|
else if(isChain(building))
|
|
|
|
result = nickUnitsInChain(out, building, nick);
|
|
|
|
else
|
|
|
|
out << "Cannot nickname units in this type of building!" << endl;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-04-02 08:07:23 -06:00
|
|
|
// dump some zone info
|
2022-08-02 02:07:13 -06:00
|
|
|
static void zoneInfo(color_ostream & out, df::building* building, bool verbose)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
if(!Buildings::isActivityZone(building))
|
2012-04-02 08:07:23 -06:00
|
|
|
return;
|
|
|
|
|
|
|
|
string name;
|
|
|
|
building->getName(&name);
|
|
|
|
out.print("Building %i - \"%s\" - type %s (%i)",
|
|
|
|
building->id,
|
|
|
|
name.c_str(),
|
|
|
|
ENUM_KEY_STR(building_type, building->getType()).c_str(),
|
|
|
|
building->getType());
|
|
|
|
out.print(", subtype %s (%i)",
|
|
|
|
ENUM_KEY_STR(civzone_type, (df::civzone_type)building->getSubtype()).c_str(),
|
|
|
|
building->getSubtype());
|
|
|
|
out.print("\n");
|
|
|
|
|
|
|
|
df::building_civzonest * civ = (df::building_civzonest *) building;
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Buildings::isActive(civ))
|
2012-04-02 08:07:23 -06:00
|
|
|
out << "active";
|
|
|
|
else
|
|
|
|
out << "not active";
|
|
|
|
|
|
|
|
if(civ->zone_flags.bits.pen_pasture)
|
|
|
|
out << ", pen/pasture";
|
2012-04-11 06:08:47 -06:00
|
|
|
else if (civ->zone_flags.bits.pit_pond)
|
|
|
|
{
|
2012-05-01 08:55:30 -06:00
|
|
|
out << " (pit flags:" << civ->pit_flags.whole << ")";
|
|
|
|
if(civ->pit_flags.bits.is_pond)
|
2012-04-11 06:08:47 -06:00
|
|
|
out << ", pond";
|
2012-11-16 14:33:36 -07:00
|
|
|
else
|
2012-04-11 06:08:47 -06:00
|
|
|
out << ", pit";
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
out << endl;
|
2012-04-04 06:58:53 -06:00
|
|
|
out << "x1:" <<building->x1
|
2012-04-05 03:40:27 -06:00
|
|
|
<< " x2:" <<building->x2
|
|
|
|
<< " y1:" <<building->y1
|
|
|
|
<< " y2:" <<building->y2
|
|
|
|
<< " z:" <<building->z
|
|
|
|
<< endl;
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2015-01-28 09:44:59 -07:00
|
|
|
size_t creaturecount = civ->assigned_units.size();
|
2012-04-02 08:07:23 -06:00
|
|
|
out << "Creatures in this zone: " << creaturecount << endl;
|
|
|
|
for(size_t c = 0; c < creaturecount; c++)
|
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
int32_t cindex = civ->assigned_units.at(c);
|
2012-04-02 08:07:23 -06:00
|
|
|
|
|
|
|
// print list of all units assigned to that zone
|
|
|
|
for(size_t i = 0; i < world->units.all.size(); i++)
|
|
|
|
{
|
|
|
|
df::unit * creature = world->units.all[i];
|
|
|
|
if(creature->id != cindex)
|
|
|
|
continue;
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
unitInfo(out, creature, verbose);
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dump some cage info
|
2022-08-02 02:07:13 -06:00
|
|
|
static void cageInfo(color_ostream & out, df::building* building, bool verbose)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
|
|
|
if(!isCage(building))
|
|
|
|
return;
|
|
|
|
|
|
|
|
string name;
|
|
|
|
building->getName(&name);
|
|
|
|
out.print("Building %i - \"%s\" - type %s (%i)",
|
|
|
|
building->id,
|
|
|
|
name.c_str(),
|
|
|
|
ENUM_KEY_STR(building_type, building->getType()).c_str(),
|
|
|
|
building->getType());
|
|
|
|
out.print("\n");
|
|
|
|
|
2012-04-05 03:40:27 -06:00
|
|
|
out << "x:" << building->x1
|
|
|
|
<< " y:" << building->y1
|
|
|
|
<< " z:" << building->z
|
|
|
|
<< endl;
|
2012-04-04 06:58:53 -06:00
|
|
|
|
2012-04-02 08:07:23 -06:00
|
|
|
df::building_cagest * cage = (df::building_cagest*) building;
|
2012-04-16 08:31:12 -06:00
|
|
|
|
2015-01-28 09:44:59 -07:00
|
|
|
size_t creaturecount = cage->assigned_units.size();
|
2012-04-02 08:07:23 -06:00
|
|
|
out << "Creatures in this cage: " << creaturecount << endl;
|
|
|
|
for(size_t c = 0; c < creaturecount; c++)
|
|
|
|
{
|
2014-02-27 13:51:45 -07:00
|
|
|
int32_t cindex = cage->assigned_units.at(c);
|
2012-04-02 08:07:23 -06:00
|
|
|
|
|
|
|
// print list of all units assigned to that cage
|
|
|
|
for(size_t i = 0; i < world->units.all.size(); i++)
|
|
|
|
{
|
|
|
|
df::unit * creature = world->units.all[i];
|
|
|
|
if(creature->id != cindex)
|
|
|
|
continue;
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
unitInfo(out, creature, verbose);
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dump some chain/restraint info
|
2022-08-02 02:07:13 -06:00
|
|
|
static void chainInfo(color_ostream & out, df::building* building, bool list_refs = false)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
|
|
|
if(!isChain(building))
|
|
|
|
return;
|
|
|
|
|
|
|
|
string name;
|
|
|
|
building->getName(&name);
|
|
|
|
out.print("Building %i - \"%s\" - type %s (%i)",
|
|
|
|
building->id,
|
|
|
|
name.c_str(),
|
|
|
|
ENUM_KEY_STR(building_type, building->getType()).c_str(),
|
|
|
|
building->getType());
|
|
|
|
out.print("\n");
|
|
|
|
|
|
|
|
df::building_chainst* chain = (df::building_chainst*) building;
|
2012-04-05 03:40:27 -06:00
|
|
|
if(chain->assigned)
|
|
|
|
{
|
|
|
|
out << "assigned: ";
|
|
|
|
unitInfo(out, chain->assigned, true);
|
|
|
|
}
|
|
|
|
if(chain->chained)
|
|
|
|
{
|
|
|
|
out << "chained: ";
|
|
|
|
unitInfo(out, chain->chained, true);
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static df::building* getAssignableBuildingAtCursor(color_ostream& out)
|
2016-02-01 07:45:46 -07:00
|
|
|
{
|
|
|
|
// set building at cursor position to be new target building
|
|
|
|
if (cursor->x == -30000)
|
|
|
|
{
|
|
|
|
out.printerr("No cursor; place cursor over activity zone, pen,"
|
|
|
|
" pasture, pit, pond, chain, or cage.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto building_at_tile = Buildings::findAtTile(Gui::getCursorPos());
|
|
|
|
|
|
|
|
// cagezone wants a pen/pit as starting point
|
|
|
|
if (isCage(building_at_tile))
|
|
|
|
{
|
|
|
|
out << "Target building type: cage." << endl;
|
|
|
|
return building_at_tile;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
auto zone_at_tile = Buildings::findPenPitAt(Gui::getCursorPos());
|
2016-02-01 07:45:46 -07:00
|
|
|
if(!zone_at_tile)
|
|
|
|
{
|
|
|
|
out << "No pen/pasture, pit, or cage under cursor!" << endl;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << "Target building type: pen/pasture or pit." << endl;
|
|
|
|
return zone_at_tile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ZONE FILTERS (as in, filters used by 'zone')
|
|
|
|
|
|
|
|
// Maps parameter names to filters.
|
2022-08-02 02:07:13 -06:00
|
|
|
static unordered_map<string, function<bool(df::unit*)>> zone_filters;
|
2016-04-22 16:45:32 -06:00
|
|
|
static struct zone_filters_init { zone_filters_init() {
|
|
|
|
zone_filters["caged"] = isContainedInItem;
|
2022-08-02 02:07:13 -06:00
|
|
|
zone_filters["egglayer"] = Units::isEggLayer;
|
|
|
|
zone_filters["female"] = Units::isFemale;
|
|
|
|
zone_filters["grazer"] = Units::isGrazer;
|
|
|
|
zone_filters["hunting"] = Units::isHunter;
|
|
|
|
zone_filters["male"] = Units::isMale;
|
|
|
|
zone_filters["milkable"] = Units::isMilkable;
|
|
|
|
zone_filters["naked"] = Units::isNaked;
|
|
|
|
zone_filters["own"] = Units::isOwnCiv;
|
|
|
|
zone_filters["tamable"] = Units::isTamable;
|
|
|
|
zone_filters["tame"] = Units::isTame;
|
2016-04-22 16:45:32 -06:00
|
|
|
zone_filters["trainablewar"] = [](df::unit *unit) -> bool
|
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return !Units::isWar(unit) && !Units::isHunter(unit) && Units::isTrainableWar(unit);
|
2016-04-22 16:45:32 -06:00
|
|
|
};
|
|
|
|
zone_filters["trainablehunt"] = [](df::unit *unit) -> bool
|
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return !Units::isWar(unit) && !Units::isHunter(unit) && Units::isTrainableHunting(unit);
|
2016-04-22 16:45:32 -06:00
|
|
|
};
|
2022-08-02 02:07:13 -06:00
|
|
|
zone_filters["trained"] = Units::isTrained;
|
2016-02-01 07:45:46 -07:00
|
|
|
// backwards compatibility
|
2016-04-22 16:45:32 -06:00
|
|
|
zone_filters["unassigned"] = [](df::unit *unit) -> bool
|
|
|
|
{
|
|
|
|
return !isAssigned(unit);
|
|
|
|
};
|
2022-08-02 02:07:13 -06:00
|
|
|
zone_filters["war"] = Units::isWar;
|
2016-04-22 16:45:32 -06:00
|
|
|
}} zone_filters_init_;
|
2016-02-01 07:45:46 -07:00
|
|
|
|
|
|
|
// Extra annotations / descriptions for parameter names.
|
2022-08-02 02:07:13 -06:00
|
|
|
static unordered_map<string, string> zone_filter_notes;
|
2016-04-22 16:45:32 -06:00
|
|
|
static struct zone_filter_notes_init { zone_filter_notes_init() {
|
|
|
|
zone_filter_notes["caged"] = "caged (ignores built cages)";
|
|
|
|
zone_filter_notes["hunting"] = "trained hunting creature";
|
|
|
|
zone_filter_notes["named"] = "has name or nickname";
|
|
|
|
zone_filter_notes["own"] = "own civilization";
|
|
|
|
zone_filter_notes["trainablehunt"] = "trainable for hunting";
|
|
|
|
zone_filter_notes["trainablewar"] = "trainable for war";
|
|
|
|
zone_filter_notes["war"] = "trained war creature";
|
|
|
|
}} zone_filter_notes_init_;
|
2016-02-01 07:45:46 -07:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static pair<string, function<bool(df::unit*)>> createRaceFilter(vector<string> &filter_args)
|
2016-02-01 07:45:46 -07:00
|
|
|
{
|
|
|
|
// guaranteed to exist.
|
|
|
|
string race = filter_args[0];
|
|
|
|
|
2016-04-22 18:26:07 -06:00
|
|
|
return make_pair(
|
2016-02-01 07:45:46 -07:00
|
|
|
"race of " + race,
|
|
|
|
[race](df::unit *unit) -> bool {
|
2022-08-02 02:07:13 -06:00
|
|
|
return Units::getRaceName(unit) == race;
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
2016-04-22 18:26:07 -06:00
|
|
|
);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static pair<string, function<bool(df::unit*)>> createAgeFilter(vector<string> &filter_args)
|
2016-02-01 07:45:46 -07:00
|
|
|
{
|
|
|
|
int target_age;
|
|
|
|
stringstream ss(filter_args[0]);
|
|
|
|
|
|
|
|
ss >> target_age;
|
|
|
|
|
|
|
|
if (ss.fail()) {
|
|
|
|
ostringstream err;
|
|
|
|
err << "Invalid age: " << filter_args[0] << "; age must be a number!";
|
|
|
|
throw runtime_error(err.str());
|
|
|
|
}
|
|
|
|
if (target_age < 0) {
|
|
|
|
ostringstream err;
|
|
|
|
err << "Invalid age: " << target_age << "; age must be >= 0!";
|
|
|
|
throw runtime_error(err.str());
|
|
|
|
}
|
|
|
|
|
2016-04-22 18:26:07 -06:00
|
|
|
return make_pair(
|
2016-04-22 18:27:53 -06:00
|
|
|
"age of exactly " + int_to_string(target_age),
|
2016-02-01 07:45:46 -07:00
|
|
|
[target_age](df::unit *unit) -> bool {
|
2022-08-02 02:07:13 -06:00
|
|
|
return Units::getAge(unit, true) == target_age;
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
2016-04-22 18:26:07 -06:00
|
|
|
);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static pair<string, function<bool(df::unit*)>> createMinAgeFilter(vector<string> &filter_args)
|
2016-02-01 07:45:46 -07:00
|
|
|
{
|
2020-09-17 09:00:15 -06:00
|
|
|
double min_age;
|
2016-02-01 07:45:46 -07:00
|
|
|
stringstream ss(filter_args[0]);
|
|
|
|
|
|
|
|
ss >> min_age;
|
|
|
|
|
|
|
|
if (ss.fail()) {
|
|
|
|
ostringstream err;
|
|
|
|
err << "Invalid minimum age: " << filter_args[0] << "; age must be a number!";
|
|
|
|
throw runtime_error(err.str());
|
|
|
|
}
|
|
|
|
if (min_age < 0) {
|
|
|
|
ostringstream err;
|
|
|
|
err << "Invalid minimum age: " << min_age << "; age must be >= 0!";
|
|
|
|
throw runtime_error(err.str());
|
|
|
|
}
|
|
|
|
|
2016-04-22 18:26:07 -06:00
|
|
|
return make_pair(
|
2016-04-22 18:27:53 -06:00
|
|
|
"minimum age of " + int_to_string(min_age),
|
2016-02-01 07:45:46 -07:00
|
|
|
[min_age](df::unit *unit) -> bool {
|
2022-08-02 02:07:13 -06:00
|
|
|
return Units::getAge(unit, true) >= min_age;
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
2016-04-22 18:26:07 -06:00
|
|
|
);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
static pair<string, function<bool(df::unit*)>> createMaxAgeFilter(vector<string> &filter_args)
|
2016-02-01 07:45:46 -07:00
|
|
|
{
|
2020-09-17 09:00:15 -06:00
|
|
|
double max_age;
|
2016-02-01 07:45:46 -07:00
|
|
|
stringstream ss(filter_args[0]);
|
|
|
|
|
|
|
|
ss >> max_age;
|
|
|
|
|
|
|
|
if (ss.fail()) {
|
|
|
|
ostringstream err;
|
|
|
|
err << "Invalid maximum age: " << filter_args[0] << "; age must be a number!";
|
|
|
|
throw runtime_error(err.str());
|
|
|
|
}
|
|
|
|
if (max_age < 0) {
|
|
|
|
ostringstream err;
|
|
|
|
err << "Invalid maximum age: " << max_age << "; age must be >= 0!";
|
|
|
|
throw runtime_error(err.str());
|
|
|
|
}
|
|
|
|
|
2016-04-22 18:26:07 -06:00
|
|
|
return make_pair(
|
2016-04-22 18:27:53 -06:00
|
|
|
"maximum age of " + int_to_string(max_age),
|
2016-02-01 07:45:46 -07:00
|
|
|
[max_age](df::unit *unit) -> bool {
|
2022-08-02 02:07:13 -06:00
|
|
|
return Units::getAge(unit, true) <= max_age;
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
2016-04-22 18:26:07 -06:00
|
|
|
);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Filters that take arguments.
|
|
|
|
// Wow, what a type signature.
|
|
|
|
// Applied to their number of arguments in a vector<string>& to create a pair.
|
|
|
|
// Like:
|
|
|
|
// int argcount = zone_param_filters[...].first;
|
|
|
|
// function<bool(df::unit*)> filter = zone_param_filters[...].second(filter_args);
|
|
|
|
// (description, filter).
|
|
|
|
// Sort of like filter function constructors.
|
|
|
|
// Constructor functions are permitted to throw strings, which will be caught and printed.
|
|
|
|
// Result filter functions are not permitted to throw std::exceptions.
|
2016-02-01 23:14:04 -07:00
|
|
|
// Result filter functions should not store references
|
2022-08-02 02:07:13 -06:00
|
|
|
static unordered_map<string, pair<int,
|
2016-04-22 16:45:32 -06:00
|
|
|
function<pair<string, function<bool(df::unit*)>>(vector<string>&)>>> zone_param_filters;
|
|
|
|
static struct zone_param_filters_init { zone_param_filters_init() {
|
2016-04-22 17:43:05 -06:00
|
|
|
zone_param_filters["race"] = make_pair(1, createRaceFilter);
|
|
|
|
zone_param_filters["age"] = make_pair(1, createAgeFilter);
|
|
|
|
zone_param_filters["minage"] = make_pair(1, createMinAgeFilter);
|
|
|
|
zone_param_filters["maxage"] = make_pair(1, createMaxAgeFilter);
|
2016-04-22 16:45:32 -06:00
|
|
|
}} zone_param_filters_init_;
|
2016-02-01 07:45:46 -07:00
|
|
|
|
2022-08-05 09:08:34 -06:00
|
|
|
static command_result df_zone(color_ostream &out, vector <string> & parameters) {
|
2012-04-02 08:07:23 -06:00
|
|
|
CoreSuspender suspend;
|
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if (!Maps::IsValid())
|
|
|
|
{
|
|
|
|
out.printerr("Map is not available!\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
static df::building* target_building = NULL;
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
int target_count = 0;
|
|
|
|
|
|
|
|
bool unit_info = false;
|
|
|
|
bool unit_slaughter = false;
|
2012-04-10 01:15:38 -06:00
|
|
|
bool building_assign = false;
|
|
|
|
bool building_unassign = false;
|
2012-04-16 08:31:12 -06:00
|
|
|
bool cagezone_assign = false;
|
2012-04-16 02:15:37 -06:00
|
|
|
bool nick_set = false;
|
2016-02-01 07:45:46 -07:00
|
|
|
string target_nick;
|
2020-11-15 20:18:54 -07:00
|
|
|
bool enum_nick = false;
|
2020-09-17 09:00:15 -06:00
|
|
|
string enum_prefix;
|
2016-02-01 07:45:46 -07:00
|
|
|
|
|
|
|
bool verbose = false;
|
|
|
|
|
|
|
|
size_t start_index;
|
2012-04-02 08:07:23 -06:00
|
|
|
|
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
const string & p0 = parameters[0];
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if (p0 == "help" || p0 == "?")
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2022-08-05 09:08:34 -06:00
|
|
|
return CR_WRONG_USAGE;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "zinfo")
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if (cursor->x == -30000) {
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "No cursor; place cursor over activity zone, chain, or cage." << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_FAILURE;
|
2012-04-15 11:49:50 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
|
|
|
|
// give info on zone(s), chain or cage under cursor
|
|
|
|
// (doesn't use the findXyzAtCursor() methods because zones might
|
|
|
|
// overlap and contain a cage or chain)
|
|
|
|
vector<df::building_civzonest*> zones;
|
|
|
|
Buildings::findCivzonesAt(&zones, Gui::getCursorPos());
|
|
|
|
for (auto zone = zones.begin(); zone != zones.end(); ++zone)
|
|
|
|
zoneInfo(out, *zone, verbose);
|
|
|
|
df::building* building = Buildings::findAtTile(Gui::getCursorPos());
|
|
|
|
chainInfo(out, building, verbose);
|
|
|
|
cageInfo(out, building, verbose);
|
|
|
|
return CR_OK;
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "set")
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
target_building = getAssignableBuildingAtCursor(out);
|
|
|
|
if (target_building) {
|
|
|
|
out.color(COLOR_BLUE);
|
2016-02-01 23:14:04 -07:00
|
|
|
out << "Current building set to #"
|
2016-02-01 07:45:46 -07:00
|
|
|
<< target_building->id << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
} else {
|
|
|
|
out.color(COLOR_BLUE);
|
2020-11-15 20:18:54 -07:00
|
|
|
out << "Current building unset (no building under cursor)." << endl;
|
2016-02-01 07:45:46 -07:00
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_OK;
|
2012-04-15 11:49:50 -06:00
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "unassign")
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
// if there's a unit selected...
|
2022-08-02 02:07:13 -06:00
|
|
|
df::unit *unit = Gui::getSelectedUnit(out, true);
|
2016-02-01 07:45:46 -07:00
|
|
|
if (unit) {
|
|
|
|
// remove assignment reference from unit and old zone
|
|
|
|
if(unassignUnitFromBuilding(unit))
|
|
|
|
{
|
|
|
|
out.color(COLOR_BLUE);
|
|
|
|
out << "Selected unit unassigned." << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Selected unit is not assigned to an activity zone!"
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
}
|
2012-04-15 11:49:50 -06:00
|
|
|
}
|
|
|
|
|
2012-04-04 08:48:22 -06:00
|
|
|
// if followed by another parameter, check if it's numeric
|
2016-02-01 07:45:46 -07:00
|
|
|
bool target_building_given = false;
|
|
|
|
if(parameters.size() >= 2)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
auto & str = parameters[1];
|
2012-07-11 18:16:08 -06:00
|
|
|
if(str.size() > 0 && str[0] >= '0' && str[0] <= '9')
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
stringstream ss(parameters[1]);
|
2012-07-11 18:16:08 -06:00
|
|
|
int new_building = -1;
|
|
|
|
ss >> new_building;
|
|
|
|
if(new_building != -1)
|
|
|
|
{
|
2015-01-29 11:13:51 -07:00
|
|
|
target_building = df::building::find(new_building);
|
2016-02-01 07:45:46 -07:00
|
|
|
target_building_given = true;
|
|
|
|
out << "Using building #" << new_building << endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Couldn't parse " << parameters[1] << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
2012-07-11 18:16:08 -06:00
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
if (!target_building_given)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if(target_building) {
|
|
|
|
out << "No building id specified. Will use #"
|
|
|
|
<< target_building->id << endl;
|
|
|
|
} else {
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "No building id specified and current one is invalid!" << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
2016-04-22 16:45:32 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
out << "Unassigning unit(s) from building..." << endl;
|
|
|
|
building_unassign = true;
|
|
|
|
start_index = 1;
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "uinfo")
|
2012-04-16 08:31:12 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out << "Logging unit info..." << endl;
|
|
|
|
unit_info = true;
|
|
|
|
start_index = 1;
|
|
|
|
}
|
|
|
|
else if(p0 == "assign" || p0 == "tocages")
|
|
|
|
{
|
|
|
|
const char* const building_type = p0 == "assign" ? "building" : "cage zone";
|
2012-04-16 08:31:12 -06:00
|
|
|
|
|
|
|
// if followed by another parameter, check if it's numeric
|
2016-04-22 16:45:32 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
bool target_building_given = false;
|
|
|
|
if(parameters.size() >= 2)
|
2012-04-16 08:31:12 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
auto & str = parameters[1];
|
|
|
|
if(str.size() > 0 && str[0] >= '0' && str[0] <= '9')
|
2012-04-16 08:31:12 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
stringstream ss(parameters[1]);
|
|
|
|
int new_building = -1;
|
|
|
|
ss >> new_building;
|
|
|
|
if(new_building != -1)
|
|
|
|
{
|
|
|
|
target_building = df::building::find(new_building);
|
|
|
|
target_building_given = true;
|
|
|
|
out << "Assign unit(s) to " << building_type
|
|
|
|
<< " #" << new_building << endl;
|
|
|
|
start_index = 2;
|
|
|
|
}
|
2012-04-16 08:31:12 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
if(!target_building_given)
|
2012-04-16 08:31:12 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if(target_building) {
|
|
|
|
out << "No " << building_type << " id specified. Will use #"
|
|
|
|
<< target_building->id << endl;
|
|
|
|
building_assign = true;
|
|
|
|
start_index = 1;
|
|
|
|
} else {
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "No " << building_type
|
|
|
|
<< " id specified and current one is invalid!" << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p0 == "assign")
|
|
|
|
{
|
|
|
|
building_assign = true;
|
2012-04-16 08:31:12 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cagezone_assign = true;
|
|
|
|
}
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "slaughter")
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out << "Assign animals for slaughter." << endl;
|
|
|
|
unit_slaughter = true;
|
|
|
|
start_index = 1;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "nick")
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if(parameters.size() <= 2)
|
2012-04-15 11:49:50 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.printerr("No nickname specified! Use 'remnick' to remove nicknames!\n");
|
2012-04-15 11:49:50 -06:00
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
nick_set = true;
|
|
|
|
target_nick = parameters[1];
|
|
|
|
start_index = 2;
|
|
|
|
out << "Set nickname to: " << target_nick << endl;
|
2012-04-15 11:49:50 -06:00
|
|
|
}
|
2020-09-17 09:00:15 -06:00
|
|
|
else if(p0 == "enumnick")
|
|
|
|
{
|
|
|
|
if(parameters.size() <= 2)
|
|
|
|
{
|
|
|
|
out.printerr("No prefix specified! Use 'remnick' to remove nicknames!\n");
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
enum_nick = true;
|
|
|
|
enum_prefix = parameters[1];
|
|
|
|
start_index = 2;
|
|
|
|
out << "Set nickname to: " << enum_prefix <<" <N>" << endl;
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "remnick")
|
2012-04-15 11:49:50 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
nick_set = true;
|
|
|
|
target_nick = "";
|
|
|
|
start_index = 1;
|
|
|
|
out << "Remove nicknames..." << endl;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p0 == "zone") {
|
|
|
|
// when there are no other arguments
|
|
|
|
return CR_WRONG_USAGE;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Unknown command: " << p0 << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_WRONG_USAGE;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// whether to invert the next filter we read
|
|
|
|
bool invert_filter = false;
|
|
|
|
|
|
|
|
// custom handling for things with defaults
|
|
|
|
bool merchant_filter_set = false;
|
|
|
|
bool named_filter_set = false;
|
|
|
|
bool race_filter_set = false;
|
|
|
|
|
|
|
|
// a vector of active filters
|
|
|
|
// if all filters return true, we process a unit
|
|
|
|
// if any filter returns false, we skip that unit
|
|
|
|
vector<function<bool(df::unit*)>> active_filters;
|
|
|
|
|
|
|
|
for (size_t i = start_index; i < parameters.size(); i++)
|
|
|
|
{
|
|
|
|
string& p = parameters[i];
|
|
|
|
|
|
|
|
if(p == "verbose")
|
2012-04-15 11:49:50 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if(invert_filter)
|
|
|
|
{
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Note: 'not verbose' unnecessary, verbose mode disabled by default"
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
}
|
|
|
|
verbose = !invert_filter;
|
2012-04-15 11:49:50 -06:00
|
|
|
invert_filter = false;
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p == "not")
|
2012-04-05 03:40:27 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
invert_filter = true;
|
2012-04-05 03:40:27 -06:00
|
|
|
}
|
2012-04-04 06:58:53 -06:00
|
|
|
else if(p == "count")
|
|
|
|
{
|
2012-04-15 11:49:50 -06:00
|
|
|
if(invert_filter)
|
2016-02-01 07:45:46 -07:00
|
|
|
{
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Error: 'not count' doesn't make sense." << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
2012-04-15 11:49:50 -06:00
|
|
|
return CR_WRONG_USAGE;
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
2012-04-04 06:58:53 -06:00
|
|
|
if(i == parameters.size()-1)
|
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Error: no count specified." << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stringstream ss(parameters[i+1]);
|
|
|
|
i++;
|
|
|
|
ss >> target_count;
|
|
|
|
if(target_count <= 0)
|
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Error: invalid count specified (must be > 0)."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Process up to " << target_count << " units."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p == "all")
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if(invert_filter) {
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Error: 'not all' doesn't make sense."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Process all units." << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
target_count = INT_MAX;
|
|
|
|
}
|
|
|
|
else if (zone_filters.count(p) == 1) {
|
|
|
|
string& desc = zone_filter_notes.count(p) == 1 ?
|
|
|
|
zone_filter_notes[p] : p;
|
|
|
|
|
|
|
|
if (invert_filter) {
|
|
|
|
auto &filter = zone_filters[p];
|
|
|
|
|
|
|
|
auto z = not1(filter);
|
|
|
|
|
|
|
|
// we have to invert the filter, so we use a closure
|
|
|
|
active_filters.push_back(not1(filter));
|
|
|
|
|
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: 'not " << desc << "'"
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
active_filters.push_back(zone_filters[p]);
|
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: '" << desc << "'"
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
invert_filter = false;
|
|
|
|
} else if (zone_param_filters.count(p) == 1) {
|
|
|
|
// get the constructor
|
|
|
|
auto &filter_pair = zone_param_filters[p];
|
|
|
|
auto arg_count = filter_pair.first;
|
|
|
|
auto &filter_constructor = filter_pair.second;
|
|
|
|
vector<string> args;
|
|
|
|
|
|
|
|
// get arguments
|
|
|
|
while (arg_count) {
|
2012-04-04 06:58:53 -06:00
|
|
|
i++;
|
2016-02-01 07:45:46 -07:00
|
|
|
arg_count--;
|
|
|
|
args.push_back(parameters[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get results
|
|
|
|
try {
|
|
|
|
auto result_pair = filter_constructor(args);
|
2016-02-01 23:14:04 -07:00
|
|
|
string& desc = result_pair.first;
|
2016-02-01 07:45:46 -07:00
|
|
|
auto& filter = result_pair.second;
|
|
|
|
|
|
|
|
if (invert_filter) {
|
|
|
|
active_filters.push_back(not1(filter));
|
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: 'not " << desc << "'"
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
active_filters.push_back(filter);
|
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: '" << desc << "'"
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
}
|
|
|
|
invert_filter = false;
|
|
|
|
|
|
|
|
if (p == "race") {
|
|
|
|
race_filter_set = true;
|
|
|
|
}
|
2018-04-06 20:22:48 -06:00
|
|
|
} catch (const exception&) {
|
2016-02-01 07:45:46 -07:00
|
|
|
return CR_FAILURE;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p == "merchant")
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if (invert_filter) {
|
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: 'not merchant'" << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
active_filters.push_back([](df::unit *unit)
|
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return !Units::isMerchant(unit) && !Units::isForest(unit);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: 'merchant'" << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
active_filters.push_back([](df::unit *unit)
|
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return Units::isMerchant(unit) || Units::isForest(unit);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
);
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
merchant_filter_set = true;
|
|
|
|
invert_filter = false;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(p == "named")
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if (invert_filter) {
|
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: 'not named'" << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
if (unit_slaughter) {
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Note: 'not named' unnecessary when slaughtering, "
|
|
|
|
"named units ignored by default" << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
}
|
|
|
|
active_filters.push_back([](df::unit *unit)
|
|
|
|
{
|
|
|
|
return !unit->name.has_name;
|
|
|
|
}
|
|
|
|
);
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_GREEN);
|
|
|
|
out << "Filter: 'named'" << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
active_filters.push_back([](df::unit *unit)
|
|
|
|
{
|
|
|
|
return unit->name.has_name;
|
|
|
|
}
|
|
|
|
);
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
named_filter_set = true;
|
|
|
|
invert_filter = false;
|
|
|
|
} else {
|
|
|
|
out.printerr("Unknown command: %s\n", p.c_str());
|
|
|
|
return CR_WRONG_USAGE;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (building_unassign)
|
|
|
|
{
|
|
|
|
// filter for units in the building
|
|
|
|
unordered_set<int32_t> assigned_unit_ids;
|
2022-08-02 02:07:13 -06:00
|
|
|
if(Buildings::isActivityZone(target_building))
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
df::building_civzonest *civz = (df::building_civzonest *) target_building;
|
|
|
|
auto &assigned_units_vec = civz->assigned_units;
|
|
|
|
|
|
|
|
copy(assigned_units_vec.begin(),
|
|
|
|
assigned_units_vec.end(),
|
|
|
|
std::inserter(assigned_unit_ids, assigned_unit_ids.end()));
|
2012-04-16 02:15:37 -06:00
|
|
|
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(isCage(target_building))
|
2012-04-16 02:15:37 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
df::building_cagest *cage = (df::building_cagest *) target_building;
|
|
|
|
auto &assigned_units_vec = cage->assigned_units;
|
|
|
|
|
|
|
|
copy(assigned_units_vec.begin(),
|
|
|
|
assigned_units_vec.end(),
|
|
|
|
std::inserter(assigned_unit_ids, assigned_unit_ids.end()));
|
2012-04-16 02:15:37 -06:00
|
|
|
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(isChain(target_building))
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Sorry, unassigning units from chains is not possible yet."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_FAILURE;
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
2016-02-01 23:14:04 -07:00
|
|
|
else
|
2012-04-05 03:40:27 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Cannot unassign units from this type of building!"
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
2012-04-05 12:32:44 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
active_filters.push_back([assigned_unit_ids](df::unit *unit) -> bool
|
|
|
|
{
|
|
|
|
return assigned_unit_ids.count(unit->id) == 1;
|
|
|
|
}
|
|
|
|
);
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if (target_count == 0)
|
2012-04-15 11:49:50 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "No target count! 'zone " << parameters[0]
|
|
|
|
<< "' must be followed by 'all' or 'count [COUNT]'." << endl;
|
|
|
|
out.reset_color();
|
2012-04-15 11:49:50 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
return CR_WRONG_USAGE;
|
2012-04-15 11:49:50 -06:00
|
|
|
}
|
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if(!race_filter_set && (building_assign || cagezone_assign || unit_slaughter))
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
string own_race_name = Units::getRaceNameById(ui->race_id);
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_BROWN);
|
|
|
|
out << "Default filter for " << parameters[0]
|
|
|
|
<< ": 'not (race " << own_race_name << " or own civilization)'; use 'race "
|
|
|
|
<< own_race_name << "' filter to override."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
active_filters.push_back([](df::unit *unit)
|
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return !Units::isOwnRace(unit) || !Units::isOwnCiv(unit);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
);
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
if(!named_filter_set && unit_slaughter)
|
2012-04-15 15:21:36 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_BROWN);
|
|
|
|
out << "Default filter for " << parameters[0]
|
|
|
|
<< ": 'not named'; use 'named' filter to override."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
2012-04-09 20:10:07 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
active_filters.push_back([](df::unit *unit)
|
|
|
|
{
|
|
|
|
return !unit->name.has_name;
|
|
|
|
}
|
|
|
|
);
|
2012-04-09 20:10:07 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
if(!merchant_filter_set && (building_assign || cagezone_assign || unit_slaughter))
|
2012-04-04 06:58:53 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_BROWN);
|
|
|
|
out << "Default filter for " << parameters[0]
|
|
|
|
<< ": 'not merchant'; use 'merchant' filter to override."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
2012-04-04 06:58:53 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
active_filters.push_back([](df::unit *unit)
|
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
return !Units::isMerchant(unit) && !Units::isForest(unit);
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
|
|
|
);
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if(building_assign || cagezone_assign || (nick_set && target_count == 0))
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
if (!target_building)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Invalid building id." << endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return CR_WRONG_USAGE;
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
if(nick_set)
|
2012-04-10 01:15:38 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_BLUE);
|
|
|
|
out << "Renaming all units in target building."
|
|
|
|
<< endl;
|
|
|
|
out.reset_color();
|
|
|
|
|
|
|
|
return nickUnitsInBuilding(out, target_building, target_nick);
|
2012-04-10 01:15:38 -06:00
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if(target_count > 0)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
vector <df::unit*> units_for_cagezone;
|
2018-04-06 00:18:15 -06:00
|
|
|
int count = 0;
|
2020-09-17 09:00:15 -06:00
|
|
|
int matchedCount = 0;
|
2016-02-01 07:45:46 -07:00
|
|
|
for(auto unit_it = world->units.all.begin(); unit_it != world->units.all.end(); ++unit_it)
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
df::unit *unit = *unit_it;
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2018-06-14 08:30:35 -06:00
|
|
|
// ignore inactive and undead units
|
2022-08-02 02:07:13 -06:00
|
|
|
if (!Units::isActive(unit) || Units::isUndead(unit)) {
|
2016-02-01 07:45:46 -07:00
|
|
|
continue;
|
|
|
|
}
|
2012-04-04 06:58:53 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
bool passes_all_filters = true;
|
2012-04-06 18:31:10 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
for (auto filter_it = active_filters.begin(); filter_it != active_filters.end(); ++filter_it)
|
|
|
|
{
|
|
|
|
auto &filter = *filter_it;
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if (!filter(unit)) {
|
|
|
|
passes_all_filters = false;
|
|
|
|
break;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
}
|
2012-04-16 08:31:12 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if (!passes_all_filters) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-04-16 02:15:37 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
// animals bought in cages have an invalid map pos until they are freed for the first time
|
|
|
|
// but if they are not in a cage and have an invalid pos it's better not to touch them
|
|
|
|
if(!isContainedInItem(unit) && !hasValidMapPos(unit))
|
|
|
|
{
|
|
|
|
if(verbose)
|
2012-04-05 03:40:27 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
out << "----------"<<endl;
|
|
|
|
out << "invalid unit pos but not in cage either. will skip this unit." << endl;
|
|
|
|
unitInfo(out, unit, verbose);
|
|
|
|
out << "----------"<<endl;
|
2012-04-05 03:40:27 -06:00
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
continue;
|
2012-04-16 08:31:12 -06:00
|
|
|
}
|
2020-11-15 20:18:54 -07:00
|
|
|
|
2020-09-17 09:00:15 -06:00
|
|
|
matchedCount++;
|
2012-04-16 08:31:12 -06:00
|
|
|
|
2012-04-04 06:58:53 -06:00
|
|
|
if(unit_info)
|
|
|
|
{
|
|
|
|
unitInfo(out, unit, verbose);
|
2016-02-01 07:45:46 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if(nick_set)
|
|
|
|
{
|
|
|
|
Units::setNickname(unit, target_nick);
|
|
|
|
}
|
2020-09-17 09:00:15 -06:00
|
|
|
else if(enum_nick)
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << enum_prefix << " " << matchedCount;
|
|
|
|
Units::setNickname(unit, ss.str());
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(cagezone_assign)
|
|
|
|
{
|
|
|
|
units_for_cagezone.push_back(unit);
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2012-04-10 01:15:38 -06:00
|
|
|
else if(building_assign)
|
2012-04-05 03:40:27 -06:00
|
|
|
{
|
2016-02-01 07:45:46 -07:00
|
|
|
command_result result = assignUnitToBuilding(out, unit, target_building, verbose);
|
|
|
|
if(result != CR_OK)
|
|
|
|
return result;
|
2012-04-05 03:40:27 -06:00
|
|
|
}
|
|
|
|
else if(unit_slaughter)
|
|
|
|
{
|
|
|
|
doMarkForSlaughter(unit);
|
|
|
|
}
|
2016-02-01 07:45:46 -07:00
|
|
|
else if(building_unassign)
|
|
|
|
{
|
|
|
|
bool removed = unassignUnitFromBuilding(unit);
|
2016-04-22 16:45:32 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if (removed)
|
|
|
|
{
|
|
|
|
out << "Unit " << unit->id
|
2022-08-02 02:07:13 -06:00
|
|
|
<< "(" << Units::getRaceName(unit) << ")"
|
2016-02-01 07:45:46 -07:00
|
|
|
<< " unassigned from";
|
2016-04-22 16:45:32 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if (Buildings::isActivityZone(target_building))
|
2016-02-01 07:45:46 -07:00
|
|
|
{
|
|
|
|
out << " zone ";
|
|
|
|
}
|
|
|
|
else if (isCage(target_building))
|
|
|
|
{
|
|
|
|
out << " cage ";
|
|
|
|
}
|
|
|
|
else if (isChain(target_building))
|
|
|
|
{
|
|
|
|
out << " chain ";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << " ???? ";
|
|
|
|
}
|
|
|
|
|
|
|
|
out << target_building->id << endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out.printerr("Failed to remove unit from building:");
|
|
|
|
unitInfo(out, unit, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
count++;
|
|
|
|
if(count >= target_count)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(cagezone_assign)
|
|
|
|
{
|
|
|
|
command_result result = assignUnitsToCagezone(out, units_for_cagezone, target_building, verbose);
|
|
|
|
if(result != CR_OK)
|
|
|
|
return result;
|
2012-04-04 06:58:53 -06:00
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
out.color(COLOR_BLUE);
|
2020-09-17 09:00:15 -06:00
|
|
|
out << "Matched creatures: " << matchedCount << endl;
|
2016-02-01 07:45:46 -07:00
|
|
|
out << "Processed creatures: " << count << endl;
|
|
|
|
out.reset_color();
|
|
|
|
}
|
|
|
|
else
|
2012-04-02 08:07:23 -06:00
|
|
|
{
|
|
|
|
// must have unit selected
|
2022-08-02 02:07:13 -06:00
|
|
|
df::unit *unit = Gui::getSelectedUnit(out, true);
|
2016-02-01 07:45:46 -07:00
|
|
|
if (!unit) {
|
|
|
|
out.color(COLOR_RED);
|
|
|
|
out << "Error: no unit selected!" << endl;
|
|
|
|
out.reset_color();
|
2012-04-02 08:07:23 -06:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2016-02-01 07:45:46 -07:00
|
|
|
if(unit_info)
|
|
|
|
{
|
|
|
|
unitInfo(out, unit, verbose);
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
else if(building_assign)
|
|
|
|
{
|
|
|
|
return assignUnitToBuilding(out, unit, target_building, verbose);
|
|
|
|
}
|
|
|
|
else if(unit_slaughter)
|
|
|
|
{
|
|
|
|
doMarkForSlaughter(unit);
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2012-04-02 08:07:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2012-04-05 12:32:44 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
//START zone filters
|
2015-01-31 19:04:12 -07:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
class zone_filter
|
2012-04-06 18:31:10 -06:00
|
|
|
{
|
|
|
|
public:
|
2022-08-02 02:07:13 -06:00
|
|
|
zone_filter()
|
2012-04-06 18:31:10 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
initialized = false;
|
2012-04-06 18:31:10 -06:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
void initialize(const df::ui_sidebar_mode &mode)
|
2012-04-09 07:03:26 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
if (!initialized)
|
2012-04-09 07:03:26 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
this->mode = mode;
|
|
|
|
saved_ui_building_assign_type.clear();
|
|
|
|
saved_ui_building_assign_units.clear();
|
|
|
|
saved_ui_building_assign_items.clear();
|
|
|
|
saved_ui_building_assign_is_marked.clear();
|
|
|
|
saved_indexes.clear();
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
for (size_t i = 0; i < ui_building_assign_units->size(); i++)
|
|
|
|
{
|
|
|
|
saved_ui_building_assign_type.push_back(ui_building_assign_type->at(i));
|
|
|
|
saved_ui_building_assign_units.push_back(ui_building_assign_units->at(i));
|
|
|
|
saved_ui_building_assign_items.push_back(ui_building_assign_items->at(i));
|
|
|
|
saved_ui_building_assign_is_marked.push_back(ui_building_assign_is_marked->at(i));
|
|
|
|
}
|
2012-04-09 07:03:26 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
search_string.clear();
|
|
|
|
show_non_grazers = show_pastured = show_noncaged = show_male = show_female = show_other_zones = true;
|
|
|
|
entry_mode = false;
|
2012-11-16 14:33:36 -07:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
initialized = true;
|
2012-04-06 18:31:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
void deinitialize()
|
2015-01-05 12:59:32 -07:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
initialized = false;
|
2015-01-05 12:59:32 -07:00
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
void apply_filters()
|
2013-04-06 07:10:13 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
if (saved_indexes.size() > 0)
|
2013-04-06 07:10:13 -06:00
|
|
|
{
|
2022-08-02 02:07:13 -06:00
|
|
|
bool list_has_been_sorted = (ui_building_assign_units->size() == reference_list.size()
|
|
|
|
&& *ui_building_assign_units != reference_list);
|
2013-04-06 07:10:13 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
for (size_t i = 0; i < saved_indexes.size(); i++)
|
|
|
|
{
|
|
|
|
int adjusted_item_index = i;
|
|
|
|
if (list_has_been_sorted)
|
|
|
|
{
|
|
|
|
for (size_t j = 0; j < ui_building_assign_units->size(); j++)
|
|
|
|
{
|
|
|
|
if (ui_building_assign_units->at(j) == reference_list[i])
|
|
|
|
{
|
|
|
|
adjusted_item_index = j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-06 18:31:10 -06:00
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
saved_ui_building_assign_is_marked[saved_indexes[i]] = ui_building_assign_is_marked->at(adjusted_item_index);
|
|
|
|
}
|
2012-11-26 02:03:23 -07:00
|
|
|
}
|
2015-02-06 17:13:34 -07:00
|
|
|
|
2012-11-26 02:03:23 -07:00
|
|
|
string search_string_l = toLower(search_string);
|
|
|
|
saved_indexes.clear();
|
|
|
|
ui_building_assign_type->clear();
|
|
|
|
ui_building_assign_is_marked->clear();
|
|
|
|
ui_building_assign_units->clear();
|
|
|
|
ui_building_assign_items->clear();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < saved_ui_building_assign_units.size(); i++)
|
|
|
|
{
|
|
|
|
df::unit *curr_unit = saved_ui_building_assign_units[i];
|
|
|
|
|
|
|
|
if (!curr_unit)
|
|
|
|
continue;
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if (!show_non_grazers && !Units::isGrazer(curr_unit))
|
2012-11-26 02:03:23 -07:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!show_pastured && isAssignedToZone(curr_unit))
|
|
|
|
continue;
|
|
|
|
|
2013-04-06 07:10:13 -06:00
|
|
|
if (!show_noncaged)
|
2015-02-06 17:13:34 -07:00
|
|
|
{
|
2013-04-06 07:10:13 -06:00
|
|
|
// must be in a container
|
|
|
|
if(!isContainedInItem(curr_unit))
|
|
|
|
continue;
|
|
|
|
// but exclude built cages (zoos, traps, ...) to avoid "accidental" pitting of creatures you'd prefer to keep
|
|
|
|
if (isInBuiltCage(curr_unit))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if (!show_male && Units::isMale(curr_unit))
|
2013-04-06 07:10:13 -06:00
|
|
|
continue;
|
|
|
|
|
2022-08-02 02:07:13 -06:00
|
|
|
if (!show_female && Units::isFemale(curr_unit))
|
2013-04-06 07:10:13 -06:00
|
|
|
continue;
|
|
|
|
|
2012-11-26 02:03:23 -07:00
|
|
|
if (!search_string_l.empty())
|
|
|
|
{
|
|
|
|
string desc = Translation::TranslateName(
|
|
|
|
Units::getVisibleName(curr_unit), false);
|
|
|
|
|
|
|
|
desc += Units::getProfessionName(curr_unit);
|
|
|
|
desc = toLower(desc);
|
|
|
|
|
|
|
|
if (desc.find(search_string_l) == string::npos)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui_building_assign_type->push_back(saved_ui_building_assign_type[i]);
|
|
|
|
ui_building_assign_units->push_back(curr_unit);
|
|
|
|
ui_building_assign_items->push_back(saved_ui_building_assign_items[i]);
|
|
|
|
ui_building_assign_is_marked->push_back(saved_ui_building_assign_is_marked[i]);
|
|
|
|
|
|
|
|
saved_indexes.push_back(i); // Used to map filtered indexes back to original, if needed
|
|
|
|
}
|
|
|
|
|
|
|
|
reference_list = *ui_building_assign_units;
|
|
|
|
*ui_building_item_cursor = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool handle_input(const set<df::interface_key> *input)
|
|
|
|
{
|
|
|
|
if (!initialized)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool key_processed = true;
|
|
|
|
|
|
|
|
if (entry_mode)
|
|
|
|
{
|
|
|
|
// Query typing mode
|
|
|
|
|
|
|
|
if (input->count(interface_key::SECONDSCROLL_UP) || input->count(interface_key::SECONDSCROLL_DOWN) ||
|
|
|
|
input->count(interface_key::SECONDSCROLL_PAGEUP) || input->count(interface_key::SECONDSCROLL_PAGEDOWN))
|
|
|
|
{
|
|
|
|
// Arrow key pressed. Leave entry mode and allow screen to process key
|
|
|
|
entry_mode = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-28 16:34:29 -06:00
|
|
|
df::interface_key last_token = get_string_key(input);
|
2014-08-11 04:23:19 -06:00
|
|
|
int charcode = Screen::keyToChar(last_token);
|
|
|
|
if (charcode >= 32 && charcode <= 126)
|
2012-11-26 02:03:23 -07:00
|
|
|
{
|
|
|
|
// Standard character
|
2014-08-11 04:23:19 -06:00
|
|
|
search_string += char(charcode);
|
2012-11-26 02:03:23 -07:00
|
|
|
apply_filters();
|
|
|
|
}
|
|
|
|
else if (last_token == interface_key::STRING_A000)
|
|
|
|
{
|
|
|
|
// Backspace
|
|
|
|
if (search_string.length() > 0)
|
|
|
|
{
|
|
|
|
search_string.erase(search_string.length()-1);
|
|
|
|
apply_filters();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (input->count(interface_key::SELECT) || input->count(interface_key::LEAVESCREEN))
|
|
|
|
{
|
|
|
|
// ENTER or ESC: leave typing mode
|
|
|
|
entry_mode = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Not in query typing mode
|
2015-02-06 17:13:34 -07:00
|
|
|
else if (input->count(interface_key::CUSTOM_SHIFT_G) &&
|
2013-04-06 07:10:13 -06:00
|
|
|
(mode == ui_sidebar_mode::ZonesPenInfo || mode == ui_sidebar_mode::QueryBuilding))
|
2012-11-26 02:03:23 -07:00
|
|
|
{
|
|
|
|
show_non_grazers = !show_non_grazers;
|
|
|
|
apply_filters();
|
|
|
|
}
|
2015-02-06 17:13:34 -07:00
|
|
|
else if (input->count(interface_key::CUSTOM_SHIFT_C) &&
|
2013-04-06 07:10:13 -06:00
|
|
|
(mode == ui_sidebar_mode::ZonesPenInfo || mode == ui_sidebar_mode::ZonesPitInfo || mode == ui_sidebar_mode::QueryBuilding))
|
|
|
|
{
|
|
|
|
show_noncaged = !show_noncaged;
|
|
|
|
apply_filters();
|
|
|
|
}
|
2015-02-06 17:13:34 -07:00
|
|
|
else if (input->count(interface_key::CUSTOM_SHIFT_P) &&
|
2013-04-06 07:10:13 -06:00
|
|
|
(mode == ui_sidebar_mode::ZonesPenInfo || mode == ui_sidebar_mode::ZonesPitInfo || mode == ui_sidebar_mode::QueryBuilding))
|
2012-11-26 02:03:23 -07:00
|
|
|
{
|
|
|
|
show_pastured = !show_pastured;
|
|
|
|
apply_filters();
|
|
|
|
}
|
2015-02-06 17:13:34 -07:00
|
|
|
else if (input->count(interface_key::CUSTOM_SHIFT_M) &&
|
2013-04-06 07:10:13 -06:00
|
|
|
(mode == ui_sidebar_mode::ZonesPenInfo || mode == ui_sidebar_mode::ZonesPitInfo || mode == ui_sidebar_mode::QueryBuilding))
|
|
|
|
{
|
|
|
|
show_male = !show_male;
|
|
|
|
apply_filters();
|
|
|
|
}
|
2015-02-06 17:13:34 -07:00
|
|
|
else if (input->count(interface_key::CUSTOM_SHIFT_F) &&
|
2013-04-06 07:10:13 -06:00
|
|
|
(mode == ui_sidebar_mode::ZonesPenInfo || mode == ui_sidebar_mode::ZonesPitInfo || mode == ui_sidebar_mode::QueryBuilding))
|
|
|
|
{
|
|
|
|
show_female = !show_female;
|
|
|
|
apply_filters();
|
|
|
|
}
|
2012-11-26 02:03:23 -07:00
|
|
|
else if (input->count(interface_key::CUSTOM_S))
|
|
|
|
{
|
|
|
|
// Hotkey pressed, enter typing mode
|
|
|
|
entry_mode = true;
|
|
|
|
}
|
|
|
|
else if (input->count(interface_key::CUSTOM_SHIFT_S))
|
|
|
|
{
|
|
|
|
// Shift + Hotkey pressed, clear query
|
|
|
|
search_string.clear();
|
|
|
|
apply_filters();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Not a key for us, pass it on to the screen
|
|
|
|
key_processed = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return key_processed || entry_mode; // Only pass unrecognized keys down if not in typing mode
|
|
|
|
}
|
|
|
|
|
|
|
|
void do_render()
|
|
|
|
{
|
|
|
|
if (!initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
int left_margin = gps->dimx - 30;
|
2017-12-03 19:34:59 -07:00
|
|
|
int8_t a = (*ui_menu_width)[0];
|
|
|
|
int8_t b = (*ui_menu_width)[1];
|
2012-11-26 02:03:23 -07:00
|
|
|
if ((a == 1 && b > 1) || (a == 2 && b == 2))
|
|
|
|
left_margin -= 24;
|
|
|
|
|
|
|
|
int x = left_margin;
|
|
|
|
int y = 24;
|
|
|
|
|
|
|
|
OutputString(COLOR_BROWN, x, y, "DFHack Filtering");
|
|
|
|
x = left_margin;
|
|
|
|
++y;
|
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "s");
|
|
|
|
OutputString(COLOR_WHITE, x, y, ": Search");
|
|
|
|
if (!search_string.empty() || entry_mode)
|
|
|
|
{
|
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
if (!search_string.empty())
|
|
|
|
OutputString(COLOR_WHITE, x, y, search_string);
|
|
|
|
if (entry_mode)
|
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "_");
|
|
|
|
}
|
|
|
|
|
2013-04-06 07:10:13 -06:00
|
|
|
if (mode == ui_sidebar_mode::ZonesPenInfo || mode == ui_sidebar_mode::QueryBuilding)
|
2012-11-26 02:03:23 -07:00
|
|
|
{
|
|
|
|
x = left_margin;
|
|
|
|
y += 2;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "G");
|
2012-11-26 02:03:23 -07:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_non_grazers) ? COLOR_WHITE : COLOR_GREY, x, y, "Non-Grazing");
|
|
|
|
|
2013-04-06 07:10:13 -06:00
|
|
|
x = left_margin;
|
|
|
|
++y;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "C");
|
2013-04-06 07:10:13 -06:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_noncaged) ? COLOR_WHITE : COLOR_GREY, x, y, "Not Caged");
|
|
|
|
|
|
|
|
x = left_margin;
|
|
|
|
++y;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "P");
|
2013-04-06 07:10:13 -06:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_pastured) ? COLOR_WHITE : COLOR_GREY, x, y, "Currently Pastured");
|
|
|
|
|
|
|
|
x = left_margin;
|
|
|
|
++y;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "F");
|
2013-04-06 07:10:13 -06:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_female) ? COLOR_WHITE : COLOR_GREY, x, y, "Female");
|
|
|
|
|
|
|
|
x = left_margin;
|
|
|
|
++y;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "M");
|
2013-04-06 07:10:13 -06:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_male) ? COLOR_WHITE : COLOR_GREY, x, y, "Male");
|
|
|
|
}
|
2015-02-06 17:13:34 -07:00
|
|
|
|
2013-04-06 07:10:13 -06:00
|
|
|
// pits don't have grazer filter because it seems pointless
|
|
|
|
if (mode == ui_sidebar_mode::ZonesPitInfo)
|
|
|
|
{
|
|
|
|
x = left_margin;
|
|
|
|
y += 2;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "C");
|
2013-04-06 07:10:13 -06:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_noncaged) ? COLOR_WHITE : COLOR_GREY, x, y, "Not Caged");
|
|
|
|
|
2012-11-26 02:03:23 -07:00
|
|
|
x = left_margin;
|
|
|
|
++y;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "P");
|
2012-11-26 02:03:23 -07:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_pastured) ? COLOR_WHITE : COLOR_GREY, x, y, "Currently Pastured");
|
2013-04-06 07:10:13 -06:00
|
|
|
|
|
|
|
x = left_margin;
|
|
|
|
++y;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "F");
|
2013-04-06 07:10:13 -06:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_female) ? COLOR_WHITE : COLOR_GREY, x, y, "Female");
|
|
|
|
|
|
|
|
x = left_margin;
|
|
|
|
++y;
|
2013-04-07 22:38:36 -06:00
|
|
|
OutputString(COLOR_LIGHTGREEN, x, y, "M");
|
2013-04-06 07:10:13 -06:00
|
|
|
OutputString(COLOR_WHITE, x, y, ": ");
|
|
|
|
OutputString((show_male) ? COLOR_WHITE : COLOR_GREY, x, y, "Male");
|
2012-11-26 02:03:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
df::ui_sidebar_mode mode;
|
|
|
|
string search_string;
|
|
|
|
bool initialized;
|
|
|
|
bool entry_mode;
|
2013-04-06 07:10:13 -06:00
|
|
|
bool show_non_grazers, show_pastured, show_noncaged, show_male, show_female, show_other_zones;
|
2012-11-26 02:03:23 -07:00
|
|
|
|
|
|
|
std::vector<int8_t> saved_ui_building_assign_type;
|
|
|
|
std::vector<df::unit*> saved_ui_building_assign_units, reference_list;
|
|
|
|
std::vector<df::item*> saved_ui_building_assign_items;
|
|
|
|
std::vector<char> saved_ui_building_assign_is_marked;
|
|
|
|
|
|
|
|
vector <int> saved_indexes;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
struct zone_hook : public df::viewscreen_dwarfmodest
|
|
|
|
{
|
|
|
|
typedef df::viewscreen_dwarfmodest interpose_base;
|
|
|
|
static zone_filter filter;
|
|
|
|
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, feed, (set<df::interface_key> *input))
|
|
|
|
{
|
|
|
|
if (!filter.handle_input(input))
|
|
|
|
INTERPOSE_NEXT(feed)(input);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, render, ())
|
|
|
|
{
|
2013-04-06 07:10:13 -06:00
|
|
|
if ( ( (ui->main.mode == ui_sidebar_mode::ZonesPenInfo || ui->main.mode == ui_sidebar_mode::ZonesPitInfo) &&
|
2012-11-26 02:03:23 -07:00
|
|
|
ui_building_assign_type && ui_building_assign_units &&
|
|
|
|
ui_building_assign_is_marked && ui_building_assign_items &&
|
|
|
|
ui_building_assign_type->size() == ui_building_assign_units->size() &&
|
|
|
|
ui_building_item_cursor)
|
2013-04-06 07:10:13 -06:00
|
|
|
// allow mode QueryBuilding, but only for cages (bedrooms will crash DF with this code, chains don't work either etc)
|
|
|
|
||
|
|
|
|
( ui->main.mode == ui_sidebar_mode::QueryBuilding &&
|
|
|
|
ui_building_in_assign && *ui_building_in_assign &&
|
|
|
|
ui_building_assign_type && ui_building_assign_units &&
|
|
|
|
ui_building_assign_type->size() == ui_building_assign_units->size() &&
|
2015-02-06 17:12:10 -07:00
|
|
|
ui_building_assign_type->size() == ui_building_assign_items->size() &&
|
|
|
|
ui_building_assign_type->size() == ui_building_assign_is_marked->size() &&
|
|
|
|
ui_building_item_cursor &&
|
|
|
|
world->selected_building && isCage(world->selected_building) )
|
2013-04-06 07:10:13 -06:00
|
|
|
)
|
2012-11-26 02:03:23 -07:00
|
|
|
{
|
|
|
|
if (vector_get(*ui_building_assign_units, *ui_building_item_cursor))
|
|
|
|
filter.initialize(ui->main.mode);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
filter.deinitialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERPOSE_NEXT(render)();
|
|
|
|
|
|
|
|
filter.do_render();
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
zone_filter zone_hook::filter;
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(zone_hook, feed);
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(zone_hook, render);
|
|
|
|
//END zone filters
|
|
|
|
|
2022-08-05 09:08:34 -06:00
|
|
|
DFhackCExport command_result plugin_enable(color_ostream &out, bool enable) {
|
|
|
|
if (enable != is_enabled) {
|
2013-09-30 03:19:51 -06:00
|
|
|
if (!INTERPOSE_HOOK(zone_hook, feed).apply(enable) ||
|
|
|
|
!INTERPOSE_HOOK(zone_hook, render).apply(enable))
|
|
|
|
return CR_FAILURE;
|
|
|
|
|
|
|
|
is_enabled = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2012-11-26 02:03:23 -07:00
|
|
|
|
2022-08-05 09:08:34 -06:00
|
|
|
DFhackCExport command_result plugin_init(color_ostream &out, std::vector <PluginCommand> &commands) {
|
2012-11-26 02:03:23 -07:00
|
|
|
commands.push_back(PluginCommand(
|
2022-08-02 02:07:13 -06:00
|
|
|
"zone",
|
2022-08-05 09:08:34 -06:00
|
|
|
"Manage activity zones.",
|
|
|
|
df_zone));
|
2012-11-26 02:03:23 -07:00
|
|
|
return CR_OK;
|
|
|
|
}
|