dfhack/plugins/colonies.cpp

163 lines
3.8 KiB
C++

2011-12-31 04:48:42 -07:00
#include "Core.h"
#include <Console.h>
#include <Export.h>
#include <PluginManager.h>
#include <vector>
#include <string>
2011-12-31 04:48:42 -07:00
#include <modules/Vermin.h>
using std::vector;
using std::string;
using namespace DFHack;
2012-01-07 22:59:52 -07:00
using namespace DFHack::Simple;
#include <DFHack.h>
DFhackCExport command_result colonies (Core * c, vector <string> & parameters);
DFhackCExport const char * plugin_name ( void )
{
return "colonies";
}
DFhackCExport command_result plugin_init ( Core * c, std::vector <PluginCommand> &commands)
{
commands.clear();
commands.push_back(PluginCommand("colonies",
"List or change wild colonies (ants hills and such)",
colonies));
return CR_OK;
}
DFhackCExport command_result plugin_shutdown ( Core * c )
{
return CR_OK;
}
2012-01-07 22:59:52 -07:00
void destroyColonies();
void convertColonies(DFHack::Materials *Materials);
void showColonies(Core *c, DFHack::Materials *Materials);
DFhackCExport command_result colonies (Core * c, vector <string> & parameters)
{
bool destroy = false;
bool convert = false;
bool help = false;
for(int i = 0; i < parameters.size();i++)
{
if(parameters[i] == "kill")
destroy = true;
else if(parameters[i] == "bees")
convert = true;
else if(parameters[i] == "help" || parameters[i] == "?")
{
help = true;
}
}
if(help)
{
c->con.print("Without any options, this command lists all the vermin colonies present.\n"
"Options:\n"
"kill - destroy colonies\n"
"bees - turn colonies into honey bees\n"
);
return CR_OK;
}
if (destroy && convert)
{
2011-08-03 20:18:38 -06:00
c->con.printerr("Kill or make bees? DECIDE!\n");
c->Resume();
return CR_FAILURE;
}
c->Suspend();
Materials * materials = c->getMaterials();
materials->ReadCreatureTypesEx();
if (destroy)
2012-01-07 22:59:52 -07:00
destroyColonies();
else if (convert)
2012-01-07 22:59:52 -07:00
convertColonies(materials);
else
2012-01-07 22:59:52 -07:00
showColonies(c, materials);
materials->Finish();
c->Resume();
return CR_OK;
}
2012-01-07 22:59:52 -07:00
void destroyColonies()
{
2012-01-07 22:59:52 -07:00
uint32_t numSpawnPoints = Vermin::getNumVermin();
for (uint32_t i = 0; i < numSpawnPoints; i++)
{
2012-01-07 22:59:52 -07:00
Vermin::t_vermin sp;
Vermin::Read(i, sp);
2012-01-07 22:59:52 -07:00
if (sp.in_use && Vermin::isWildColony(sp))
{
sp.in_use = false;
2012-01-07 22:59:52 -07:00
Vermin::Write(i, sp);
}
}
}
// Convert all colonies to honey bees.
2012-01-07 22:59:52 -07:00
void convertColonies(DFHack::Materials *Materials)
{
int bee_idx = -1;
for (size_t i = 0; i < Materials->raceEx.size(); i++)
if (Materials->raceEx[i].id == "HONEY_BEE")
{
bee_idx = i;
break;
}
if (bee_idx == -1)
{
std::cerr << "Honey bees not present in game." << std::endl;
return;
}
2012-01-07 22:59:52 -07:00
uint32_t numSpawnPoints = Vermin::getNumVermin();
for (uint32_t i = 0; i < numSpawnPoints; i++)
{
2012-01-07 22:59:52 -07:00
Vermin::t_vermin sp;
Vermin::Read(i, sp);
2012-01-07 22:59:52 -07:00
if (sp.in_use && Vermin::isWildColony(sp))
{
sp.race = bee_idx;
2012-01-07 22:59:52 -07:00
Vermin::Write(i, sp);
}
}
}
2012-01-07 22:59:52 -07:00
void showColonies(Core *c, DFHack::Materials *Materials)
{
2012-01-07 22:59:52 -07:00
uint32_t numSpawnPoints = Vermin::getNumVermin();
int numColonies = 0;
for (uint32_t i = 0; i < numSpawnPoints; i++)
{
2012-01-07 22:59:52 -07:00
Vermin::t_vermin sp;
2012-01-07 22:59:52 -07:00
Vermin::Read(i, sp);
2012-01-07 22:59:52 -07:00
if (sp.in_use && Vermin::isWildColony(sp))
{
numColonies++;
string race="(no race)";
if(sp.race != -1)
race = Materials->raceEx[sp.race].id;
c->con.print("Spawn point %u: %s at %d:%d:%d\n", i,
race.c_str(), sp.x, sp.y, sp.z);
}
}
if (numColonies == 0)
c->con << "No colonies present." << std::endl;
}