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
} ;
//selectability selectablePlant(color_ostream &out, const df::plant_raw *plant)
selectability selectablePlant ( const df : : plant_raw * plant )
{
const DFHack : : MaterialInfo basic_mat = DFHack : : MaterialInfo ( plant - > material_defs . type_basic_mat , plant - > material_defs . idx_basic_mat ) ;
bool outOfSeason = false ;
if ( plant - > flags . is_set ( plant_raw_flags : : TREE ) )
{
// out.print("%s is a selectable tree\n", plant->id.c_str());
return selectability : : Selectable ;
}
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 ;
}
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());
return selectability : : Selectable ;
}
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());
return selectability : : Selectable ;
}
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());
return selectability : : Selectable ;
}
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
{
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());
return selectability : : Selectable ;
}
else
{
outOfSeason = true ;
}
}
}
/* 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.
{
const DFHack : : MaterialInfo seed_mat = DFHack : : MaterialInfo ( plant - > material_defs . type_seed , plant - > material_defs . idx_seed ) ;
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());
return selectability : : Nonselectable ;
}
}
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-15 04:40:43 -07:00
bool deselect = false , exclude = false , treesonly = false , shrubsonly = false , all = false , verbose = false ;
2011-10-06 19:53:58 -06:00
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 + + )
{
if ( parameters [ i ] = = " help " | | parameters [ i ] = = " ? " )
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 ;
2012-02-22 14:31:34 -07:00
else if ( parameters [ i ] = = " -a " )
all = true ;
2020-01-15 04:40:43 -07:00
else if ( parameters [ i ] = = " -v " )
verbose = true ;
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 ;
}
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
{
// plantSelections[i] = selectablePlant(out, plant);
plantSelections [ i ] = selectablePlant ( plant ) ;
}
else if ( plantNames . find ( plant - > id ) ! = plantNames . end ( ) )
2012-01-21 16:54:57 -07:00
{
plantNames . erase ( plant - > id ) ;
2020-01-15 04:40:43 -07:00
// plantSelections[i] = selectablePlant(out, plant);
plantSelections [ i ] = selectablePlant ( plant ) ;
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 :
out . printerr ( " %s does not have any parts that can be gathered \n " , plant - > id . c_str ( ) ) ;
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-15 04:40:43 -07:00
// switch (selectablePlant(out, plant))
switch ( selectablePlant ( plant ) )
{
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 :
{
out . print ( " * (shrub) %s - %s is out of season \n " , plant - > id . c_str ( ) , plant - > name . c_str ( ) ) ;
break ;
}
case selectability : : Selectable :
{
out . print ( " * (%s) %s - %s \n " , plant - > flags . is_set ( plant_raw_flags : : TREE ) ? " tree " : " shrub " , plant - > id . c_str ( ) , plant - > name . c_str ( ) ) ;
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 ;
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 "
" -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-16 04:57:09 -07:00
" -a - All: Select every type of plant (obeys -t/-s) \n "
2020-01-15 04:40:43 -07:00
" -v - Verbose: lists the number of (un)designations per plant \n "
2012-01-28 05:03:56 -07:00
" Specifying both -t and -s will have no effect. \n "
2014-08-06 08:31:42 -06:00
" If no plant IDs are specified, all valid plant IDs will be listed. \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
}