summaryrefslogtreecommitdiff
path: root/plugins/getplants.cpp
diff options
context:
space:
mode:
authorQuietust2012-01-21 17:54:57 -0600
committerQuietust2012-01-21 17:54:57 -0600
commitccf22bed10a78504701bbdb1f8177a16cf9ffdde (patch)
treed867a8135512c572de2cffbf1c95e63e048fe875 /plugins/getplants.cpp
parentd2c78646ea55c11429b452b83a4d7a0d7f50f835 (diff)
downloaddfhack-ccf22bed10a78504701bbdb1f8177a16cf9ffdde.tar.gz
dfhack-ccf22bed10a78504701bbdb1f8177a16cf9ffdde.tar.bz2
dfhack-ccf22bed10a78504701bbdb1f8177a16cf9ffdde.tar.xz
Replace df_plant with df::plant - this leaves the Vegetation module a bit empty, but I'll leave it in case we decide to add something new there
Diffstat (limited to 'plugins/getplants.cpp')
-rw-r--r--plugins/getplants.cpp233
1 files changed, 120 insertions, 113 deletions
diff --git a/plugins/getplants.cpp b/plugins/getplants.cpp
index c2ddc499..a4b954c4 100644
--- a/plugins/getplants.cpp
+++ b/plugins/getplants.cpp
@@ -1,4 +1,4 @@
-// Designate all matching plants for gathering/cutting
+// (un)designate matching plants for gathering/cutting
#include "Core.h"
#include "Console.h"
@@ -19,137 +19,144 @@ using std::string;
using std::vector;
using std::set;
using namespace DFHack;
+using namespace df::enums;
using df::global::world;
DFhackCExport command_result df_getplants (Core * c, vector <string> & parameters)
{
- string plantMatStr = "";
- set<int> plantIDs;
- set<string> plantNames;
- bool deselect = false, exclude = false, treesonly = false, shrubsonly = false;
+ string plantMatStr = "";
+ set<int> plantIDs;
+ set<string> plantNames;
+ bool deselect = false, exclude = false, treesonly = false, shrubsonly = false;
- int count = 0;
- for (size_t i = 0; i < parameters.size(); i++)
- {
- if(parameters[i] == "help" || parameters[i] == "?")
- {
- c->con.print("Specify the types of trees to cut down and/or shrubs to gather by their plant names, separated by spaces.\n"
- "Options:\n"
- "\t-t - Select trees only (exclude shrubs)\n"
- "\t-s - Select shrubs only (exclude trees)\n"
- "\t-c - Clear designations instead of setting them\n"
- "\t-x - Apply selected action to all plants except those specified\n"
- "Specifying both -t and -s will have no effect.\n"
- "If no plant IDs are specified, all valid plant IDs will be listed.\n"
- );
- return CR_OK;
- }
- else if(parameters[i] == "-t")
- treesonly = true;
- else if(parameters[i] == "-s")
- shrubsonly = true;
- else if(parameters[i] == "-c")
- deselect = true;
- else if(parameters[i] == "-x")
- exclude = true;
- else plantNames.insert(parameters[i]);
- }
+ int count = 0;
+ for (size_t i = 0; i < parameters.size(); i++)
+ {
+ if(parameters[i] == "help" || parameters[i] == "?")
+ {
+ c->con.print("Specify the types of trees to cut down and/or shrubs to gather by their plant IDs, separated by spaces.\n"
+ "Options:\n"
+ "\t-t - Select trees only (exclude shrubs)\n"
+ "\t-s - Select shrubs only (exclude trees)\n"
+ "\t-c - Clear designations instead of setting them\n"
+ "\t-x - Apply selected action to all plants except those specified\n"
+ "Specifying both -t and -s will have no effect.\n"
+ "If no plant IDs are specified, all valid plant IDs will be listed.\n"
+ );
+ return CR_WRONG_USAGE;
+ }
+ else if(parameters[i] == "-t")
+ treesonly = true;
+ else if(parameters[i] == "-s")
+ shrubsonly = true;
+ else if(parameters[i] == "-c")
+ deselect = true;
+ else if(parameters[i] == "-x")
+ exclude = true;
+ else
+ plantNames.insert(parameters[i]);
+ }
+ if (treesonly && shrubsonly)
+ {
+ c->con.printerr("Cannot specify both -t and -s at the same time!\n");
+ return CR_WRONG_USAGE;
+ }
- CoreSuspender suspend(c);
+ CoreSuspender suspend(c);
- for (int i = 0; i < world->raws.plants.all.size(); i++)
- {
- df::plant_raw *plant = world->raws.plants.all[i];
- if (plantNames.find(plant->id) != plantNames.end())
- {
- plantNames.erase(plant->id);
- plantIDs.insert(i);
- }
- }
- if (plantNames.size() > 0)
- {
- c->con.printerr("Invalid plant ID(s):");
- for (set<string>::const_iterator it = plantNames.begin(); it != plantNames.end(); it++)
- c->con.printerr(" %s", it->c_str());
- c->con.printerr("\n");
- return CR_FAILURE;
- }
+ for (int i = 0; i < world->raws.plants.all.size(); i++)
+ {
+ df::plant_raw *plant = world->raws.plants.all[i];
+ if (plantNames.find(plant->id) != plantNames.end())
+ {
+ plantNames.erase(plant->id);
+ plantIDs.insert(i);
+ }
+ }
+ if (plantNames.size() > 0)
+ {
+ c->con.printerr("Invalid plant ID(s):");
+ for (set<string>::const_iterator it = plantNames.begin(); it != plantNames.end(); it++)
+ c->con.printerr(" %s", it->c_str());
+ c->con.printerr("\n");
+ return CR_FAILURE;
+ }
- if (plantIDs.size() == 0)
- {
- c->con.print("Valid plant IDs:\n");
- for (int i = 0; i < world->raws.plants.all.size(); i++)
- {
- df::plant_raw *plant = world->raws.plants.all[i];
- if (plant->flags.is_set(df::plant_raw_flags::GRASS))
- continue;
- c->con.print("* (%s) %s - %s\n", plant->flags.is_set(df::plant_raw_flags::TREE) ? "tree" : "shrub", plant->id.c_str(), plant->name.c_str());
- }
- return CR_OK;
- }
+ if (plantIDs.size() == 0)
+ {
+ c->con.print("Valid plant IDs:\n");
+ for (int i = 0; i < world->raws.plants.all.size(); i++)
+ {
+ df::plant_raw *plant = world->raws.plants.all[i];
+ if (plant->flags.is_set(plant_raw_flags::GRASS))
+ continue;
+ c->con.print("* (%s) %s - %s\n", plant->flags.is_set(plant_raw_flags::TREE) ? "tree" : "shrub", plant->id.c_str(), plant->name.c_str());
+ }
+ return CR_OK;
+ }
- count = 0;
- for (int i = 0; i < world->map.map_blocks.size(); i++)
- {
- df::map_block *cur = world->map.map_blocks[i];
- bool dirty = false;
- for (int j = 0; j < cur->plants.size(); j++)
- {
- const df_plant *plant = (df_plant *)cur->plants[i];
- int x = plant->x % 16;
- int y = plant->y % 16;
- if (plantIDs.find(plant->material) != plantIDs.end())
- {
- if (exclude)
- continue;
- }
- else
- {
- if (!exclude)
- continue;
- }
- TileShape shape = tileShape(cur->tiletype[x][y]);
- if (plant->is_shrub && (treesonly || shape != SHRUB_OK))
- continue;
- if (!plant->is_shrub && (shrubsonly || (shape != TREE_OK && shape != TREE_DEAD)))
- continue;
- if (cur->designation[x][y].bits.hidden)
- continue;
- if (deselect && cur->designation[x][y].bits.dig != df::tile_dig_designation::No)
- {
- cur->designation[x][y].bits.dig = df::tile_dig_designation::No;
- dirty = true;
- ++count;
- }
- if (!deselect && cur->designation[x][y].bits.dig != df::tile_dig_designation::Default)
- {
- cur->designation[x][y].bits.dig = df::tile_dig_designation::Default;
- dirty = true;
- ++count;
- }
- }
- if (dirty)
- cur->flags.set(df::block_flags::Designated);
- }
- if (count)
- c->con.print("Updated %d plant designations.\n", count);
- return CR_OK;
+ count = 0;
+ for (int i = 0; i < world->map.map_blocks.size(); i++)
+ {
+ df::map_block *cur = world->map.map_blocks[i];
+ bool dirty = false;
+ for (int j = 0; j < cur->plants.size(); j++)
+ {
+ const df::plant *plant = cur->plants[i];
+ int x = plant->pos.x % 16;
+ int y = plant->pos.y % 16;
+ if (plantIDs.find(plant->material) != plantIDs.end())
+ {
+ if (exclude)
+ continue;
+ }
+ else
+ {
+ if (!exclude)
+ continue;
+ }
+ TileShape shape = tileShape(cur->tiletype[x][y]);
+ if (plant->flags.bits.is_shrub && (treesonly || shape != SHRUB_OK))
+ continue;
+ if (!plant->flags.bits.is_shrub && (shrubsonly || (shape != TREE_OK && shape != TREE_DEAD)))
+ continue;
+ if (cur->designation[x][y].bits.hidden)
+ continue;
+ if (deselect && cur->designation[x][y].bits.dig == tile_dig_designation::Default)
+ {
+ cur->designation[x][y].bits.dig = tile_dig_designation::No;
+ dirty = true;
+ ++count;
+ }
+ if (!deselect && cur->designation[x][y].bits.dig == tile_dig_designation::No)
+ {
+ cur->designation[x][y].bits.dig = tile_dig_designation::Default;
+ dirty = true;
+ ++count;
+ }
+ }
+ if (dirty)
+ cur->flags.set(block_flags::Designated);
+ }
+ if (count)
+ c->con.print("Updated %d plant designations.\n", count);
+ return CR_OK;
}
DFhackCExport const char * plugin_name ( void )
{
- return "getplants";
+ return "getplants";
}
DFhackCExport command_result plugin_init ( Core * c, vector <PluginCommand> &commands)
{
- commands.clear();
- commands.push_back(PluginCommand("getplants", "Cut down all of the specified trees or gather all of the specified shrubs", df_getplants));
- return CR_OK;
+ commands.clear();
+ commands.push_back(PluginCommand("getplants", "Cut down all of the specified trees or gather all of the specified shrubs", df_getplants));
+ return CR_OK;
}
DFhackCExport command_result plugin_shutdown ( Core * c )
{
- return CR_OK;
-}
+ return CR_OK;
+} \ No newline at end of file