2012-01-21 16:54:57 -07:00
// (un)designate matching plants for gathering/cutting
2017-05-05 22:11:07 -06:00
# include <set>
2011-12-31 04:48:42 -07:00
# include "Core.h"
2012-01-15 13:54:14 -07:00
# include "Console.h"
# include "Export.h"
# include "PluginManager.h"
# include "DataDefs.h"
# include "TileTypes.h"
2014-05-04 05:43:52 -06:00
2012-01-07 22:31:23 -07:00
# include "df/map_block.h"
2012-12-06 15:46:59 -07:00
# include "df/plant.h"
2020-01-15 04:40:43 -07:00
# include "df/plant_growth.h"
2017-05-05 22:11:07 -06:00
# include "df/plant_raw.h"
# include "df/tile_dig_designation.h"
# include "df/world.h"
2014-05-04 05:43:52 -06:00
2017-05-05 22:11:07 -06:00
# include "modules/Designations.h"
2014-05-04 05:43:52 -06:00
# include "modules/Maps.h"
2020-01-15 04:40:43 -07:00
# include "modules/Materials.h"
2011-10-06 19:53:58 -06:00
2012-01-07 22:31:23 -07:00
using std : : string ;
using std : : vector ;
using std : : set ;
2017-05-05 22:11:07 -06:00
2012-01-07 22:31:23 -07:00
using namespace DFHack ;
2012-01-21 16:54:57 -07:00
using namespace df : : enums ;
2011-10-06 19:53:58 -06:00
2014-12-06 16:47:35 -07:00
DFHACK_PLUGIN ( " getplants " ) ;
REQUIRE_GLOBAL ( world ) ;
2020-01-15 04:40:43 -07:00
REQUIRE_GLOBAL ( cur_year_tick ) ;
enum class selectability {
Selectable ,
Grass ,
Nonselectable ,
OutOfSeason ,
Unselected
} ;
2020-01-22 09:33:39 -07:00
// Determination of whether seeds can be collected is somewhat messy:
// - Growths of type SEEDS are collected only if they are edible either raw or cooked.
// - Growths of type PLANT_GROWTH are collected provided the STOCKPILE_PLANT_GROWTH
// flag is set.
// The two points above were determined through examination of the DF code, while the ones
// below were determined through examination of the behavior of bugged, working, and
// RAW manipulated shrubs on embarks.
// - If seeds are defined as explicit growths, they are the source of seeds, overriding
// the default STRUCTURAL part as the source.
// - If a growth has the reaction that extracts seeds as a side effect of other
// processing (brewing, eating raw, etc.), this overrides the STRUCTURAL part as the
// source of seeds. However, for some reason it does not produce seeds from eating
// raw growths unless the structural part is collected (at least for shrubs: other
// processing was not examined).
// - If a growth has a (non vanilla) reaction that produces seeds, seeds are produced,
// provided there is something (such as a workshop order) that triggers it.
// The code below is satisfied with detection of a seed producing reaction, and does not
// detect the bugged case where a seed extraction process is defined but doesn't get
// triggered. Such a process can be triggered either as a side effect of other
// processing, or as a workshop reaction, and it would be overkill for this code to
// try to determine if a workshop reaction exists and has been permitted for the played
// race.
// There are two bugged cases of this in the current vanilla RAWs:
// Both Red Spinach and Elephant-Head Amaranth have the seed extraction reaction
// explicitly specified for the structural part, but no other use for it. This causes
// these parts to be collected (a valid reaction is defined), but remain unusable. This
2020-04-25 15:58:09 -06:00
// is one of the issues in bug 6940 on the bug tracker (the others cases are detected and
2020-01-22 09:33:39 -07:00
// result in the plants not being usable for farming or even collectable at all).
//selectability selectablePlant(color_ostream &out, const df::plant_raw *plant, bool farming)
selectability selectablePlant ( const df : : plant_raw * plant , bool farming )
2020-01-15 04:40:43 -07:00
{
2020-06-29 15:16:44 -06:00
const DFHack : : MaterialInfo basic_mat = DFHack : : MaterialInfo ( plant - > material_defs . type [ plant_material_def : : basic_mat ] , plant - > material_defs . idx [ plant_material_def : : basic_mat ] ) ;
2020-01-15 04:40:43 -07:00
bool outOfSeason = false ;
2020-01-22 09:33:39 -07:00
selectability result = selectability : : Nonselectable ;
2020-01-15 04:40:43 -07:00
if ( plant - > flags . is_set ( plant_raw_flags : : TREE ) )
{
// out.print("%s is a selectable tree\n", plant->id.c_str());
2020-01-22 09:33:39 -07:00
if ( farming )
{
return selectability : : Nonselectable ;
}
else
{
return selectability : : Selectable ;
}
2020-01-15 04:40:43 -07:00
}
else if ( plant - > flags . is_set ( plant_raw_flags : : GRASS ) )
{
// out.print("%s is a non selectable Grass\n", plant->id.c_str());
return selectability : : Grass ;
}
2020-06-29 15:16:44 -06:00
if ( farming & & plant - > material_defs . type [ plant_material_def : : seed ] = = - 1 )
2020-01-22 09:33:39 -07:00
{
return selectability : : Nonselectable ;
}
2020-01-15 04:40:43 -07:00
if ( basic_mat . material - > flags . is_set ( material_flags : : EDIBLE_RAW ) | |
basic_mat . material - > flags . is_set ( material_flags : : EDIBLE_COOKED ) )
{
// out.print("%s is edible\n", plant->id.c_str());
2020-01-22 09:33:39 -07:00
if ( farming )
{
if ( basic_mat . material - > flags . is_set ( material_flags : : EDIBLE_RAW ) )
{
result = selectability : : Selectable ;
}
}
else
{
return selectability : : Selectable ;
}
2020-01-15 04:40:43 -07:00
}
if ( plant - > flags . is_set ( plant_raw_flags : : THREAD ) | |
plant - > flags . is_set ( plant_raw_flags : : MILL ) | |
plant - > flags . is_set ( plant_raw_flags : : EXTRACT_VIAL ) | |
plant - > flags . is_set ( plant_raw_flags : : EXTRACT_BARREL ) | |
plant - > flags . is_set ( plant_raw_flags : : EXTRACT_STILL_VIAL ) )
{
// out.print("%s is thread/mill/extract\n", plant->id.c_str());
2020-01-22 09:33:39 -07:00
if ( farming )
{
result = selectability : : Selectable ;
}
else
{
return selectability : : Selectable ;
}
2020-01-15 04:40:43 -07:00
}
if ( basic_mat . material - > reaction_product . id . size ( ) > 0 | |
basic_mat . material - > reaction_class . size ( ) > 0 )
{
// out.print("%s has a reaction\n", plant->id.c_str());
2020-01-22 09:33:39 -07:00
if ( farming )
{
result = selectability : : Selectable ;
}
else
{
return selectability : : Selectable ;
}
2020-01-15 04:40:43 -07:00
}
2020-01-16 04:57:09 -07:00
for ( size_t i = 0 ; i < plant - > growths . size ( ) ; i + + )
2020-01-15 04:40:43 -07:00
{
if ( plant - > growths [ i ] - > item_type = = df : : item_type : : SEEDS | | // Only trees have seed growths in vanilla, but raws can be modded...
plant - > growths [ i ] - > item_type = = df : : item_type : : PLANT_GROWTH )
{
const DFHack : : MaterialInfo growth_mat = DFHack : : MaterialInfo ( plant - > growths [ i ] - > mat_type , plant - > growths [ i ] - > mat_index ) ;
if ( ( plant - > growths [ i ] - > item_type = = df : : item_type : : SEEDS & &
( growth_mat . material - > flags . is_set ( material_flags : : EDIBLE_COOKED ) | |
growth_mat . material - > flags . is_set ( material_flags : : EDIBLE_RAW ) ) ) | |
( plant - > growths [ i ] - > item_type = = df : : item_type : : PLANT_GROWTH & &
2020-01-15 11:31:19 -07:00
growth_mat . material - > flags . is_set ( material_flags : : LEAF_MAT ) ) ) // Will change name to STOCKPILE_PLANT_GROWTH any day now...
2020-01-15 04:40:43 -07:00
{
2020-01-22 09:33:39 -07:00
bool seedSource = plant - > growths [ i ] - > item_type = = df : : item_type : : SEEDS ;
if ( plant - > growths [ i ] - > item_type = = df : : item_type : : PLANT_GROWTH )
{
for ( size_t k = 0 ; growth_mat . material - > reaction_product . material . mat_type . size ( ) ; k + + )
{
2020-06-29 15:16:44 -06:00
if ( growth_mat . material - > reaction_product . material . mat_type [ k ] = = plant - > material_defs . type [ plant_material_def : : seed ] & &
growth_mat . material - > reaction_product . material . mat_index [ k ] = = plant - > material_defs . idx [ plant_material_def : : seed ] )
2020-01-22 09:33:39 -07:00
{
seedSource = true ;
break ;
}
}
}
2020-01-15 04:40:43 -07:00
if ( * cur_year_tick > = plant - > growths [ i ] - > timing_1 & &
( plant - > growths [ i ] - > timing_2 = = - 1 | |
* cur_year_tick < = plant - > growths [ i ] - > timing_2 ) )
{
// out.print("%s has an edible seed or a stockpile growth\n", plant->id.c_str());
2020-01-22 09:33:39 -07:00
if ( ! farming | | seedSource )
{
return selectability : : Selectable ;
}
2020-01-15 04:40:43 -07:00
}
else
{
2020-01-22 09:33:39 -07:00
if ( ! farming | | seedSource )
{
outOfSeason = true ;
}
2020-01-15 04:40:43 -07:00
}
}
}
/* else if (plant->growths[i]->behavior.bits.has_seed) // This code designates beans, etc. when DF doesn't, but plant gatherers still fail to collect anything, so it's useless: bug #0006940.
{
2020-06-29 15:16:44 -06:00
const DFHack : : MaterialInfo seed_mat = DFHack : : MaterialInfo ( plant - > material_defs . type [ plant_material_def : : seed ] , plant - > material_defs . idx [ plant_material_def : : seed ] ) ;
2020-01-15 04:40:43 -07:00
if ( seed_mat . material - > flags . is_set ( material_flags : : EDIBLE_RAW ) | |
seed_mat . material - > flags . is_set ( material_flags : : EDIBLE_COOKED ) )
{
if ( * cur_year_tick > = plant - > growths [ i ] - > timing_1 & &
( plant - > growths [ i ] - > timing_2 = = - 1 | |
* cur_year_tick < = plant - > growths [ i ] - > timing_2 ) )
{
return selectability : : Selectable ;
}
else
{
outOfSeason = true ;
}
}
2020-01-15 13:29:01 -07:00
} */
2020-01-15 04:40:43 -07:00
}
if ( outOfSeason )
{
// out.print("%s has an out of season growth\n", plant->id.c_str());
return selectability : : OutOfSeason ;
}
else
{
// out.printerr("%s cannot be gathered\n", plant->id.c_str());
2020-01-22 09:33:39 -07:00
return result ;
2020-01-15 04:40:43 -07:00
}
}
2011-10-06 19:53:58 -06:00
2012-03-10 04:55:42 -07:00
command_result df_getplants ( color_ostream & out , vector < string > & parameters )
2011-10-06 19:53:58 -06:00
{
2012-01-21 16:54:57 -07:00
string plantMatStr = " " ;
2020-01-15 04:40:43 -07:00
std : : vector < selectability > plantSelections ;
2020-01-16 04:57:09 -07:00
std : : vector < size_t > collectionCount ;
2012-01-21 16:54:57 -07:00
set < string > plantNames ;
2020-01-22 09:33:39 -07:00
bool deselect = false , exclude = false , treesonly = false , shrubsonly = false , all = false , verbose = false , farming = false ;
size_t maxCount = 999999 ;
2012-01-21 16:54:57 -07:00
int count = 0 ;
2020-01-15 04:40:43 -07:00
plantSelections . resize ( world - > raws . plants . all . size ( ) ) ;
collectionCount . resize ( world - > raws . plants . all . size ( ) ) ;
2020-01-16 04:57:09 -07:00
for ( size_t i = 0 ; i < plantSelections . size ( ) ; i + + )
2020-01-15 04:40:43 -07:00
{
plantSelections [ i ] = selectability : : Unselected ;
collectionCount [ i ] = 0 ;
}
2020-01-18 14:22:21 -07:00
2020-01-15 04:40:43 -07:00
bool anyPlantsSelected = false ;
2012-01-21 16:54:57 -07:00
for ( size_t i = 0 ; i < parameters . size ( ) ; i + + )
{
2020-01-22 09:33:39 -07:00
if ( parameters [ i ] = = " help " | | parameters [ i ] = = " ? " )
2012-01-21 16:54:57 -07:00
return CR_WRONG_USAGE ;
2020-01-22 09:33:39 -07:00
else if ( parameters [ i ] = = " -t " )
2012-01-21 16:54:57 -07:00
treesonly = true ;
2020-01-22 09:33:39 -07:00
else if ( parameters [ i ] = = " -s " )
2012-01-21 16:54:57 -07:00
shrubsonly = true ;
2020-01-22 09:33:39 -07:00
else if ( parameters [ i ] = = " -c " )
2012-01-21 16:54:57 -07:00
deselect = true ;
2020-01-22 09:33:39 -07:00
else if ( parameters [ i ] = = " -x " )
2012-01-21 16:54:57 -07:00
exclude = true ;
2020-01-22 09:33:39 -07:00
else if ( parameters [ i ] = = " -a " )
2012-02-22 14:31:34 -07:00
all = true ;
2020-01-22 09:33:39 -07:00
else if ( parameters [ i ] = = " -v " )
2020-01-15 04:40:43 -07:00
verbose = true ;
2020-01-22 09:33:39 -07:00
else if ( parameters [ i ] = = " -f " )
farming = true ;
else if ( parameters [ i ] = = " -n " )
{
if ( parameters . size ( ) > i + 1 )
{
maxCount = atoi ( parameters [ i + 1 ] . c_str ( ) ) ;
if ( maxCount > = 1 )
{
i + + ; // We've consumed the next parameter, so we need to progress the iterator.
}
else
{
out . printerr ( " -n requires a positive integer parameter! \n " ) ;
return CR_WRONG_USAGE ;
}
}
else
{
out . printerr ( " -n requires a positive integer parameter! \n " ) ;
return CR_WRONG_USAGE ;
}
}
2012-01-21 16:54:57 -07:00
else
plantNames . insert ( parameters [ i ] ) ;
}
if ( treesonly & & shrubsonly )
{
2012-03-10 04:55:42 -07:00
out . printerr ( " Cannot specify both -t and -s at the same time! \n " ) ;
2012-01-21 16:54:57 -07:00
return CR_WRONG_USAGE ;
}
2020-01-22 09:33:39 -07:00
if ( treesonly & & farming )
{
out . printerr ( " Cannot specify both -t and -f at the same time! \n " ) ;
return CR_WRONG_USAGE ;
}
2012-02-22 14:31:34 -07:00
if ( all & & exclude )
{
2012-03-10 04:55:42 -07:00
out . printerr ( " Cannot specify both -a and -x at the same time! \n " ) ;
2012-02-22 14:31:34 -07:00
return CR_WRONG_USAGE ;
}
if ( all & & plantNames . size ( ) )
{
2012-03-10 04:55:42 -07:00
out . printerr ( " Cannot specify -a along with plant IDs! \n " ) ;
2012-02-22 14:31:34 -07:00
return CR_WRONG_USAGE ;
}
2011-10-06 19:53:58 -06:00
2012-03-10 04:55:42 -07:00
CoreSuspender suspend ;
2012-01-07 22:31:23 -07:00
2012-01-31 09:55:38 -07:00
for ( size_t i = 0 ; i < world - > raws . plants . all . size ( ) ; i + + )
2012-01-21 16:54:57 -07:00
{
df : : plant_raw * plant = world - > raws . plants . all [ i ] ;
2012-02-22 14:31:34 -07:00
if ( all )
2020-01-15 04:40:43 -07:00
{
2020-01-22 09:33:39 -07:00
// plantSelections[i] = selectablePlant(out, plant, farming);
plantSelections [ i ] = selectablePlant ( plant , farming ) ;
2020-01-15 04:40:43 -07:00
}
else if ( plantNames . find ( plant - > id ) ! = plantNames . end ( ) )
2012-01-21 16:54:57 -07:00
{
plantNames . erase ( plant - > id ) ;
2020-01-22 09:33:39 -07:00
// plantSelections[i] = selectablePlant(out, plant, farming);
plantSelections [ i ] = selectablePlant ( plant , farming ) ;
2020-01-15 04:40:43 -07:00
switch ( plantSelections [ i ] )
{
case selectability : : Grass :
2020-01-18 14:22:21 -07:00
out . printerr ( " %s is a grass and cannot be gathered \n " , plant - > id . c_str ( ) ) ;
2020-01-15 04:40:43 -07:00
break ;
case selectability : : Nonselectable :
2020-01-22 09:33:39 -07:00
if ( farming )
{
out . printerr ( " %s does not have any parts that can be gathered for seeds for farming \n " , plant - > id . c_str ( ) ) ;
}
else
{
out . printerr ( " %s does not have any parts that can be gathered \n " , plant - > id . c_str ( ) ) ;
}
2020-01-15 04:40:43 -07:00
break ;
2020-01-18 14:22:21 -07:00
2020-01-15 04:40:43 -07:00
case selectability : : OutOfSeason :
out . printerr ( " %s is out of season, with nothing that can be gathered now \n " , plant - > id . c_str ( ) ) ;
break ;
2020-01-18 14:22:21 -07:00
2020-01-15 04:40:43 -07:00
case selectability : : Selectable :
break ;
case selectability : : Unselected :
break ; // We won't get to this option
}
2012-01-21 16:54:57 -07:00
}
}
if ( plantNames . size ( ) > 0 )
{
2012-03-10 04:55:42 -07:00
out . printerr ( " Invalid plant ID(s): " ) ;
2012-01-21 16:54:57 -07:00
for ( set < string > : : const_iterator it = plantNames . begin ( ) ; it ! = plantNames . end ( ) ; it + + )
2012-03-10 04:55:42 -07:00
out . printerr ( " %s " , it - > c_str ( ) ) ;
out . printerr ( " \n " ) ;
2012-01-21 16:54:57 -07:00
return CR_FAILURE ;
}
2011-10-06 19:53:58 -06:00
2020-01-16 04:57:09 -07:00
for ( size_t i = 0 ; i < plantSelections . size ( ) ; i + + )
2020-01-15 04:40:43 -07:00
{
if ( plantSelections [ i ] = = selectability : : OutOfSeason | |
plantSelections [ i ] = = selectability : : Selectable )
{
anyPlantsSelected = true ;
break ;
}
}
if ( ! anyPlantsSelected )
2012-01-21 16:54:57 -07:00
{
2012-03-10 04:55:42 -07:00
out . print ( " Valid plant IDs: \n " ) ;
2012-01-31 09:55:38 -07:00
for ( size_t i = 0 ; i < world - > raws . plants . all . size ( ) ; i + + )
2012-01-21 16:54:57 -07:00
{
df : : plant_raw * plant = world - > raws . plants . all [ i ] ;
2020-01-22 09:33:39 -07:00
// switch (selectablePlant(out, plant, farming))
switch ( selectablePlant ( plant , farming ) )
2020-01-15 04:40:43 -07:00
{
case selectability : : Grass :
case selectability : : Nonselectable :
2012-01-21 16:54:57 -07:00
continue ;
2020-01-15 04:40:43 -07:00
case selectability : : OutOfSeason :
{
2020-01-22 09:33:39 -07:00
if ( ! treesonly )
{
out . print ( " * (shrub) %s - %s is out of season \n " , plant - > id . c_str ( ) , plant - > name . c_str ( ) ) ;
}
2020-01-15 04:40:43 -07:00
break ;
}
case selectability : : Selectable :
{
2020-01-22 09:33:39 -07:00
if ( ( treesonly & & plant - > flags . is_set ( plant_raw_flags : : TREE ) ) | |
( shrubsonly & & ! plant - > flags . is_set ( plant_raw_flags : : TREE ) ) | |
( ! treesonly & & ! shrubsonly ) ) // 'farming' weeds out trees when determining selectability, so no need to test that explicitly
{
out . print ( " * (%s) %s - %s \n " , plant - > flags . is_set ( plant_raw_flags : : TREE ) ? " tree " : " shrub " , plant - > id . c_str ( ) , plant - > name . c_str ( ) ) ;
}
2020-01-15 04:40:43 -07:00
break ;
}
case selectability : : Unselected : // Should never get this alternative
break ;
}
2012-01-21 16:54:57 -07:00
}
return CR_OK ;
}
2011-10-06 19:53:58 -06:00
2012-01-21 16:54:57 -07:00
count = 0 ;
2014-08-06 08:31:42 -06:00
for ( size_t i = 0 ; i < world - > plants . all . size ( ) ; i + + )
2012-01-21 16:54:57 -07:00
{
2014-08-06 08:31:42 -06:00
const df : : plant * plant = world - > plants . all [ i ] ;
df : : map_block * cur = Maps : : getTileBlock ( plant - > pos ) ;
2012-01-21 16:54:57 -07:00
bool dirty = false ;
2014-08-06 08:31:42 -06:00
int x = plant - > pos . x % 16 ;
int y = plant - > pos . y % 16 ;
2020-01-15 04:40:43 -07:00
if ( plantSelections [ plant - > material ] = = selectability : : OutOfSeason | |
plantSelections [ plant - > material ] = = selectability : : Selectable )
2012-01-21 16:54:57 -07:00
{
2020-01-15 04:40:43 -07:00
if ( exclude | |
plantSelections [ plant - > material ] = = selectability : : OutOfSeason )
2012-01-21 16:54:57 -07:00
continue ;
2014-08-06 08:31:42 -06:00
}
else
{
if ( ! exclude )
2012-01-21 16:54:57 -07:00
continue ;
2014-08-06 08:31:42 -06:00
}
df : : tiletype_shape shape = tileShape ( cur - > tiletype [ x ] [ y ] ) ;
df : : tiletype_material material = tileMaterial ( cur - > tiletype [ x ] [ y ] ) ;
df : : tiletype_special special = tileSpecial ( cur - > tiletype [ x ] [ y ] ) ;
if ( plant - > flags . bits . is_shrub & & ( treesonly | | ! ( shape = = tiletype_shape : : SHRUB & & special ! = tiletype_special : : DEAD ) ) )
continue ;
if ( ! plant - > flags . bits . is_shrub & & ( shrubsonly | | ! ( material = = tiletype_material : : TREE ) ) )
continue ;
if ( cur - > designation [ x ] [ y ] . bits . hidden )
continue ;
2020-01-22 09:33:39 -07:00
if ( collectionCount [ plant - > material ] > = maxCount )
continue ;
2017-05-05 22:11:07 -06:00
if ( deselect & & Designations : : unmarkPlant ( plant ) )
2014-08-06 08:31:42 -06:00
{
2020-01-15 04:40:43 -07:00
collectionCount [ plant - > material ] + + ;
2014-08-06 08:31:42 -06:00
+ + count ;
}
2017-05-05 22:11:07 -06:00
if ( ! deselect & & Designations : : markPlant ( plant ) )
2014-08-06 08:31:42 -06:00
{
2020-01-16 05:59:31 -07:00
// out.print("Designated %s at (%i, %i, %i), %d\n", world->raws.plants.all[plant->material]->id.c_str(), plant->pos.x, plant->pos.y, plant->pos.z, (int)i);
2020-01-15 04:40:43 -07:00
collectionCount [ plant - > material ] + + ;
2014-08-06 08:31:42 -06:00
+ + count ;
2012-01-21 16:54:57 -07:00
}
}
if ( count )
2020-01-15 11:31:19 -07:00
{
2020-01-15 04:40:43 -07:00
if ( verbose )
{
2020-01-16 04:57:09 -07:00
for ( size_t i = 0 ; i < plantSelections . size ( ) ; i + + )
2020-01-15 04:40:43 -07:00
{
2020-01-15 11:31:19 -07:00
if ( collectionCount [ i ] > 0 )
2020-01-16 05:59:31 -07:00
out . print ( " Updated %d %s designations. \n " , ( int ) collectionCount [ i ] , world - > raws . plants . all [ i ] - > id . c_str ( ) ) ;
2020-01-15 04:40:43 -07:00
}
out . print ( " \n " ) ;
}
2020-01-15 11:31:19 -07:00
}
2020-01-16 05:59:31 -07:00
out . print ( " Updated %d plant designations. \n " , ( int ) count ) ;
2020-01-15 04:40:43 -07:00
2012-01-21 16:54:57 -07:00
return CR_OK ;
2011-10-06 19:53:58 -06:00
}
2012-01-07 22:31:23 -07:00
2012-03-10 04:55:42 -07:00
DFhackCExport command_result plugin_init ( color_ostream & out , vector < PluginCommand > & commands )
2012-01-07 22:31:23 -07:00
{
2012-01-28 05:03:56 -07:00
commands . push_back ( PluginCommand (
2015-11-09 20:37:45 -07:00
" getplants " , " Cut down trees or gather shrubs by ID " ,
2012-01-28 05:03:56 -07:00
df_getplants , false ,
" Specify the types of trees to cut down and/or shrubs to gather by their \n "
" plant IDs, separated by spaces. \n "
" Options: \n "
2020-01-16 04:57:09 -07:00
" -t - Tree: Select trees only (exclude shrubs) \n "
" -s - Shrub: Select shrubs only (exclude trees) \n "
2020-01-22 09:33:39 -07:00
" -f - Farming: Designate only shrubs that yield seeds for farming. Implies -s \n "
2020-01-16 04:57:09 -07:00
" -c - Clear: Clear designations instead of setting them \n "
2020-01-18 14:22:21 -07:00
" -x - eXcept: Apply selected action to all plants except those specified \n "
2020-01-22 09:33:39 -07:00
" -a - All: Select every type of plant (obeys -t/-s/-f) \n "
" -v - Verbose: List the number of (un)designations per plant \n "
" -n * - Number: Designate up to * (an integer number) plants of each species \n "
" Specifying both -t and -s or -f will have no effect. \n "
" If no plant IDs are specified, and the -a switch isn't given, all valid plant \n "
" IDs will be listed with -t, -s, and -f restricting the list to trees, shrubs, \n "
" and farmable shrubs, respectively. \n "
2012-01-28 05:03:56 -07:00
) ) ;
2012-01-21 16:54:57 -07:00
return CR_OK ;
2012-01-07 22:31:23 -07:00
}
2012-03-10 04:55:42 -07:00
DFhackCExport command_result plugin_shutdown ( color_ostream & out )
2012-01-07 22:31:23 -07:00
{
2012-01-21 16:54:57 -07:00
return CR_OK ;
2017-05-05 22:11:07 -06:00
}