2021-05-16 15:16:21 -06:00
|
|
|
/*
|
|
|
|
* Simulates completion of dig designations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "DataFuncs.h"
|
|
|
|
#include "PluginManager.h"
|
|
|
|
#include "TileTypes.h"
|
2021-06-02 23:18:42 -06:00
|
|
|
#include "LuaTools.h"
|
2021-05-16 15:16:21 -06:00
|
|
|
|
2021-07-20 16:53:03 -06:00
|
|
|
#include "modules/Buildings.h"
|
2021-06-04 18:40:40 -06:00
|
|
|
#include "modules/Gui.h"
|
2021-06-02 23:18:42 -06:00
|
|
|
#include "modules/Maps.h"
|
2021-06-01 18:38:04 -06:00
|
|
|
#include "modules/MapCache.h"
|
2021-06-04 13:15:15 -06:00
|
|
|
#include "modules/Random.h"
|
2021-06-06 09:31:21 -06:00
|
|
|
#include "modules/Units.h"
|
2021-06-04 13:15:15 -06:00
|
|
|
#include "modules/World.h"
|
2021-05-16 15:16:21 -06:00
|
|
|
|
2021-06-04 13:15:15 -06:00
|
|
|
#include <df/historical_entity.h>
|
|
|
|
#include <df/map_block.h>
|
|
|
|
#include <df/reaction_product_itemst.h>
|
2021-05-16 15:16:21 -06:00
|
|
|
#include <df/tile_designation.h>
|
|
|
|
#include <df/tile_occupancy.h>
|
2021-06-04 13:15:15 -06:00
|
|
|
#include <df/ui.h>
|
|
|
|
#include <df/unit.h>
|
2021-06-12 11:56:15 -06:00
|
|
|
#include <df/vermin.h>
|
2021-05-16 15:16:21 -06:00
|
|
|
#include <df/world.h>
|
2021-06-04 13:15:15 -06:00
|
|
|
#include <df/world_site.h>
|
2021-05-16 15:16:21 -06:00
|
|
|
|
2021-06-02 14:31:15 -06:00
|
|
|
DFHACK_PLUGIN("dig-now");
|
2021-06-04 13:15:15 -06:00
|
|
|
REQUIRE_GLOBAL(ui);
|
2021-05-16 15:16:21 -06:00
|
|
|
REQUIRE_GLOBAL(world);
|
|
|
|
|
|
|
|
using namespace DFHack;
|
|
|
|
|
2021-06-05 18:26:23 -06:00
|
|
|
struct boulder_percent_options {
|
|
|
|
// percent chance ([0..100]) for creating a boulder for the given rock type
|
|
|
|
uint32_t layer;
|
|
|
|
uint32_t vein;
|
|
|
|
uint32_t small_cluster;
|
|
|
|
uint32_t deep;
|
|
|
|
|
|
|
|
// defaults from
|
|
|
|
// https://dwarffortresswiki.org/index.php/DF2014:Mining
|
|
|
|
boulder_percent_options() :
|
|
|
|
layer(25), vein(33), small_cluster(100), deep(100) { }
|
|
|
|
|
|
|
|
static struct_identity _identity;
|
|
|
|
};
|
|
|
|
static const struct_field_info boulder_percent_options_fields[] = {
|
|
|
|
{ struct_field_info::PRIMITIVE, "layer", offsetof(boulder_percent_options, layer), &df::identity_traits<uint32_t>::identity, 0, 0 },
|
|
|
|
{ struct_field_info::PRIMITIVE, "vein", offsetof(boulder_percent_options, vein), &df::identity_traits<uint32_t>::identity, 0, 0 },
|
|
|
|
{ struct_field_info::PRIMITIVE, "small_cluster", offsetof(boulder_percent_options, small_cluster), &df::identity_traits<uint32_t>::identity, 0, 0 },
|
|
|
|
{ struct_field_info::PRIMITIVE, "deep", offsetof(boulder_percent_options, deep), &df::identity_traits<uint32_t>::identity, 0, 0 },
|
|
|
|
{ struct_field_info::END }
|
|
|
|
};
|
|
|
|
struct_identity boulder_percent_options::_identity(sizeof(boulder_percent_options), &df::allocator_fn<boulder_percent_options>, NULL, "boulder_percents", NULL, boulder_percent_options_fields);
|
|
|
|
|
2021-06-04 13:15:15 -06:00
|
|
|
struct dig_now_options {
|
2021-06-05 18:26:23 -06:00
|
|
|
bool help; // whether to show the short help
|
|
|
|
|
2021-06-04 13:15:15 -06:00
|
|
|
DFCoord start; // upper-left coordinate, min z-level
|
|
|
|
DFCoord end; // lower-right coordinate, max z-level
|
|
|
|
|
2021-06-05 18:26:23 -06:00
|
|
|
boulder_percent_options boulder_percents;
|
2021-06-04 13:15:15 -06:00
|
|
|
|
2021-06-05 08:02:46 -06:00
|
|
|
// if set to the pos of a walkable tile (or somewhere above such a tile),
|
2021-06-05 18:26:23 -06:00
|
|
|
// will dump generated boulders at this position instead of at their dig
|
|
|
|
// locations
|
|
|
|
DFCoord dump_pos;
|
2021-06-04 13:15:15 -06:00
|
|
|
|
|
|
|
static DFCoord getMapSize() {
|
|
|
|
uint32_t endx, endy, endz;
|
|
|
|
Maps::getTileSize(endx, endy, endz);
|
2021-07-04 08:33:31 -06:00
|
|
|
return DFCoord(endx - 1, endy - 1, endz - 1);
|
2021-06-04 13:15:15 -06:00
|
|
|
}
|
|
|
|
|
2021-06-05 18:26:23 -06:00
|
|
|
dig_now_options() : help(false), start(0, 0, 0), end(getMapSize()) { }
|
|
|
|
|
|
|
|
static struct_identity _identity;
|
|
|
|
};
|
|
|
|
static const struct_field_info dig_now_options_fields[] = {
|
|
|
|
{ struct_field_info::PRIMITIVE, "help", offsetof(dig_now_options, help), &df::identity_traits<bool>::identity, 0, 0 },
|
|
|
|
{ struct_field_info::SUBSTRUCT, "start", offsetof(dig_now_options, start), &df::coord::_identity, 0, 0 },
|
|
|
|
{ struct_field_info::SUBSTRUCT, "end", offsetof(dig_now_options, end), &df::coord::_identity, 0, 0 },
|
|
|
|
{ struct_field_info::SUBSTRUCT, "boulder_percents", offsetof(dig_now_options, boulder_percents), &boulder_percent_options::_identity, 0, 0 },
|
|
|
|
{ struct_field_info::SUBSTRUCT, "dump_pos", offsetof(dig_now_options, dump_pos), &df::coord::_identity, 0, 0 },
|
|
|
|
{ struct_field_info::END }
|
2021-06-04 13:15:15 -06:00
|
|
|
};
|
2021-06-05 18:26:23 -06:00
|
|
|
struct_identity dig_now_options::_identity(sizeof(dig_now_options), &df::allocator_fn<dig_now_options>, NULL, "dig_now_options", NULL, dig_now_options_fields);
|
2021-06-04 13:15:15 -06:00
|
|
|
|
2021-06-05 08:02:46 -06:00
|
|
|
// propagate light, outside, and subterranean flags to open tiles below this one
|
2021-06-01 18:38:04 -06:00
|
|
|
static void propagate_vertical_flags(MapExtras::MapCache &map,
|
|
|
|
const DFCoord &pos) {
|
|
|
|
df::tile_designation td = map.designationAt(pos);
|
2021-05-16 15:16:21 -06:00
|
|
|
|
2021-06-02 23:18:42 -06:00
|
|
|
if (!map.ensureBlockAt(DFCoord(pos.x, pos.y, pos.z+1))) {
|
2021-05-16 15:16:21 -06:00
|
|
|
// only the sky above
|
|
|
|
td.bits.light = true;
|
|
|
|
td.bits.outside = true;
|
|
|
|
td.bits.subterranean = false;
|
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
int32_t zlevel = pos.z;
|
|
|
|
df::tiletype_shape shape =
|
|
|
|
tileShape(map.tiletypeAt(DFCoord(pos.x, pos.y, zlevel)));
|
2021-05-16 15:16:21 -06:00
|
|
|
while ((shape == df::tiletype_shape::EMPTY
|
|
|
|
|| shape == df::tiletype_shape::RAMP_TOP)
|
2021-06-01 18:38:04 -06:00
|
|
|
&& map.ensureBlockAt(DFCoord(pos.x, pos.y, --zlevel))) {
|
|
|
|
DFCoord pos_below(pos.x, pos.y, zlevel);
|
|
|
|
df::tile_designation td_below = map.designationAt(pos_below);
|
|
|
|
if (td_below.bits.light == td.bits.light
|
|
|
|
&& td_below.bits.outside == td.bits.outside
|
|
|
|
&& td_below.bits.subterranean == td.bits.subterranean)
|
2021-05-16 15:16:21 -06:00
|
|
|
break;
|
2021-06-01 18:38:04 -06:00
|
|
|
td_below.bits.light = td.bits.light;
|
|
|
|
td_below.bits.outside = td.bits.outside;
|
|
|
|
td_below.bits.subterranean = td.bits.subterranean;
|
|
|
|
map.setDesignationAt(pos_below, td_below);
|
|
|
|
shape = tileShape(map.tiletypeAt(pos_below));
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-01 12:58:32 -06:00
|
|
|
static bool can_dig_default(df::tiletype tt) {
|
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
return shape == df::tiletype_shape::WALL ||
|
|
|
|
shape == df::tiletype_shape::FORTIFICATION ||
|
|
|
|
shape == df::tiletype_shape::RAMP ||
|
|
|
|
shape == df::tiletype_shape::STAIR_UP ||
|
|
|
|
shape == df::tiletype_shape::STAIR_UPDOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool can_dig_channel(df::tiletype tt) {
|
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
return shape != df::tiletype_shape::EMPTY &&
|
|
|
|
shape != df::tiletype_shape::ENDLESS_PIT &&
|
|
|
|
shape != df::tiletype_shape::NONE &&
|
|
|
|
shape != df::tiletype_shape::RAMP_TOP &&
|
|
|
|
shape != df::tiletype_shape::TRUNK_BRANCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool can_dig_up_stair(df::tiletype tt) {
|
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
return shape == df::tiletype_shape::WALL ||
|
|
|
|
shape == df::tiletype_shape::FORTIFICATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool can_dig_down_stair(df::tiletype tt) {
|
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
return shape == df::tiletype_shape::BOULDER ||
|
|
|
|
shape == df::tiletype_shape::BROOK_BED ||
|
|
|
|
shape == df::tiletype_shape::BROOK_TOP ||
|
|
|
|
shape == df::tiletype_shape::FLOOR ||
|
|
|
|
shape == df::tiletype_shape::FORTIFICATION ||
|
|
|
|
shape == df::tiletype_shape::PEBBLES ||
|
|
|
|
shape == df::tiletype_shape::RAMP ||
|
|
|
|
shape == df::tiletype_shape::SAPLING ||
|
|
|
|
shape == df::tiletype_shape::SHRUB ||
|
|
|
|
shape == df::tiletype_shape::TWIG ||
|
|
|
|
shape == df::tiletype_shape::WALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool can_dig_up_down_stair(df::tiletype tt) {
|
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
return shape == df::tiletype_shape::WALL ||
|
|
|
|
shape == df::tiletype_shape::FORTIFICATION ||
|
|
|
|
shape == df::tiletype_shape::STAIR_UP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool can_dig_ramp(df::tiletype tt) {
|
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
return shape == df::tiletype_shape::WALL ||
|
|
|
|
shape == df::tiletype_shape::FORTIFICATION;
|
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
static void dig_type(MapExtras::MapCache &map, const DFCoord &pos,
|
|
|
|
df::tiletype tt) {
|
|
|
|
auto blk = map.BlockAtTile(pos);
|
|
|
|
if (!blk)
|
|
|
|
return;
|
|
|
|
|
|
|
|
map.setTiletypeAt(pos, tt);
|
|
|
|
|
2021-08-02 00:29:32 -06:00
|
|
|
// digging a tile should revert it to the layer soil/stone material
|
|
|
|
if (!blk->setStoneAt(pos, tt, map.layerMaterialAt(pos)))
|
|
|
|
blk->setSoilAt(pos, tt, map.layerMaterialAt(pos));
|
|
|
|
}
|
|
|
|
|
|
|
|
static df::tiletype get_target_type(df::tiletype tt, df::tiletype_shape shape) {
|
|
|
|
tt = findSimilarTileType(tt, shape);
|
2021-06-01 18:38:04 -06:00
|
|
|
|
|
|
|
// un-smooth dug tiles
|
|
|
|
tt = findTileType(tileShape(tt), tileMaterial(tt), tileVariant(tt),
|
|
|
|
df::tiletype_special::NORMAL, tileDirection(tt));
|
|
|
|
|
2021-08-02 00:29:32 -06:00
|
|
|
return findRandomVariant(tt);
|
2021-08-01 08:02:00 -06:00
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
static void dig_shape(MapExtras::MapCache &map, const DFCoord &pos,
|
|
|
|
df::tiletype tt, df::tiletype_shape shape) {
|
2021-08-01 08:02:00 -06:00
|
|
|
dig_type(map, pos, get_target_type(tt, shape));
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
static void remove_ramp_top(MapExtras::MapCache &map, const DFCoord &pos) {
|
|
|
|
if (!map.ensureBlockAt(pos))
|
2021-06-01 12:58:32 -06:00
|
|
|
return;
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
if (tileShape(map.tiletypeAt(pos)) == df::tiletype_shape::RAMP_TOP)
|
|
|
|
dig_type(map, pos, df::tiletype::OpenSpace);
|
2021-06-01 12:58:32 -06:00
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
static bool is_wall(MapExtras::MapCache &map, const DFCoord &pos) {
|
|
|
|
if (!map.ensureBlockAt(pos))
|
2021-06-01 12:58:32 -06:00
|
|
|
return false;
|
2021-06-01 18:38:04 -06:00
|
|
|
return tileShape(map.tiletypeAt(pos)) == df::tiletype_shape::WALL;
|
2021-06-01 12:58:32 -06:00
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
static void clean_ramp(MapExtras::MapCache &map, const DFCoord &pos) {
|
|
|
|
if (!map.ensureBlockAt(pos))
|
2021-06-01 12:58:32 -06:00
|
|
|
return;
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
df::tiletype tt = map.tiletypeAt(pos);
|
2021-06-01 12:58:32 -06:00
|
|
|
if (tileShape(tt) != df::tiletype_shape::RAMP)
|
|
|
|
return;
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
if (is_wall(map, DFCoord(pos.x-1, pos.y, pos.z)) ||
|
|
|
|
is_wall(map, DFCoord(pos.x+1, pos.y, pos.z)) ||
|
|
|
|
is_wall(map, DFCoord(pos.x, pos.y-1, pos.z)) ||
|
|
|
|
is_wall(map, DFCoord(pos.x, pos.y+1, pos.z)))
|
2021-06-01 12:58:32 -06:00
|
|
|
return;
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
remove_ramp_top(map, DFCoord(pos.x, pos.y, pos.z+1));
|
|
|
|
dig_shape(map,pos, tt, df::tiletype_shape::FLOOR);
|
2021-06-01 12:58:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// removes self and/or orthogonally adjacent ramps that are no longer adjacent
|
|
|
|
// to a wall
|
2021-06-01 18:38:04 -06:00
|
|
|
static void clean_ramps(MapExtras::MapCache &map, const DFCoord &pos) {
|
|
|
|
clean_ramp(map, pos);
|
|
|
|
clean_ramp(map, DFCoord(pos.x-1, pos.y, pos.z));
|
|
|
|
clean_ramp(map, DFCoord(pos.x+1, pos.y, pos.z));
|
|
|
|
clean_ramp(map, DFCoord(pos.x, pos.y-1, pos.z));
|
|
|
|
clean_ramp(map, DFCoord(pos.x, pos.y+1, pos.z));
|
2021-06-01 12:58:32 -06:00
|
|
|
}
|
|
|
|
|
2021-06-12 11:56:15 -06:00
|
|
|
// destroys any colonies located at pos
|
|
|
|
static void destroy_colony(const DFCoord &pos) {
|
|
|
|
auto same_pos = [&](df::vermin *colony){ return colony->pos == pos; };
|
|
|
|
|
|
|
|
auto &colonies = world->vermin.colonies;
|
|
|
|
auto found_colony = std::find_if(begin(colonies), end(colonies), same_pos);
|
|
|
|
if (found_colony == end(colonies))
|
|
|
|
return;
|
|
|
|
colonies.erase(found_colony);
|
|
|
|
|
|
|
|
auto &all_vermin = world->vermin.all;
|
|
|
|
all_vermin.erase(
|
|
|
|
std::find_if(begin(all_vermin), end(all_vermin), same_pos));
|
|
|
|
}
|
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
struct dug_tile_info {
|
|
|
|
DFCoord pos;
|
|
|
|
df::tiletype_material tmat;
|
|
|
|
df::item_type itype;
|
|
|
|
int32_t imat; // mat idx of boulder/gem potentially generated at this pos
|
|
|
|
|
|
|
|
dug_tile_info(MapExtras::MapCache &map, const DFCoord &pos) {
|
|
|
|
this->pos = pos;
|
|
|
|
|
|
|
|
df::tiletype tt = map.tiletypeAt(pos);
|
|
|
|
tmat = tileMaterial(tt);
|
|
|
|
|
|
|
|
switch (map.BlockAtTile(pos)->veinTypeAt(pos)) {
|
|
|
|
case df::inclusion_type::CLUSTER_ONE:
|
|
|
|
case df::inclusion_type::CLUSTER_SMALL:
|
|
|
|
itype = df::item_type::ROUGH;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
itype = df::item_type::BOULDER;
|
|
|
|
}
|
|
|
|
|
|
|
|
imat = -1;
|
|
|
|
if (tileShape(tt) == df::tiletype_shape::WALL
|
|
|
|
&& (tmat == df::tiletype_material::STONE
|
|
|
|
|| tmat == df::tiletype_material::MINERAL
|
|
|
|
|| tmat == df::tiletype_material::FEATURE))
|
|
|
|
imat = map.baseMaterialAt(pos).mat_index;
|
|
|
|
}
|
|
|
|
};
|
2021-06-04 13:15:15 -06:00
|
|
|
|
2021-06-19 00:28:38 -06:00
|
|
|
static bool is_diggable(MapExtras::MapCache &map, const DFCoord &pos,
|
|
|
|
df::tiletype tt) {
|
2021-06-12 12:16:00 -06:00
|
|
|
df::tiletype_material mat = tileMaterial(tt);
|
|
|
|
switch (mat) {
|
2021-06-19 00:28:38 -06:00
|
|
|
case df::tiletype_material::CONSTRUCTION:
|
|
|
|
case df::tiletype_material::POOL:
|
|
|
|
case df::tiletype_material::RIVER:
|
2021-06-12 12:16:00 -06:00
|
|
|
case df::tiletype_material::TREE:
|
|
|
|
case df::tiletype_material::ROOT:
|
2021-06-19 00:28:38 -06:00
|
|
|
case df::tiletype_material::LAVA_STONE:
|
|
|
|
case df::tiletype_material::MAGMA:
|
|
|
|
case df::tiletype_material::HFS:
|
|
|
|
case df::tiletype_material::UNDERWORLD_GATE:
|
2021-06-12 12:16:00 -06:00
|
|
|
return false;
|
2021-06-19 00:28:38 -06:00
|
|
|
default:
|
|
|
|
break;
|
2021-06-12 12:16:00 -06:00
|
|
|
}
|
2021-06-19 00:28:38 -06:00
|
|
|
|
|
|
|
if (mat == df::tiletype_material::FEATURE) {
|
|
|
|
// adamantine is the only is diggable feature
|
|
|
|
t_feature feature;
|
|
|
|
return map.BlockAtTile(pos)->GetLocalFeature(&feature)
|
|
|
|
&& feature.type == feature_type::deep_special_tube;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2021-06-12 12:16:00 -06:00
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
static bool dig_tile(color_ostream &out, MapExtras::MapCache &map,
|
2021-06-04 13:15:15 -06:00
|
|
|
const DFCoord &pos, df::tile_dig_designation designation,
|
2021-06-06 06:52:20 -06:00
|
|
|
std::vector<dug_tile_info> &dug_tiles) {
|
2021-06-01 18:38:04 -06:00
|
|
|
df::tiletype tt = map.tiletypeAt(pos);
|
2021-06-01 12:58:32 -06:00
|
|
|
|
2021-06-19 00:28:38 -06:00
|
|
|
if (!is_diggable(map, pos, tt))
|
2021-06-01 12:58:32 -06:00
|
|
|
return false;
|
|
|
|
|
2021-05-16 15:16:21 -06:00
|
|
|
df::tiletype target_type = df::tiletype::Void;
|
|
|
|
switch(designation) {
|
|
|
|
case df::tile_dig_designation::Default:
|
2021-06-01 12:58:32 -06:00
|
|
|
if (can_dig_default(tt)) {
|
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
df::tiletype_shape target_shape = df::tiletype_shape::FLOOR;
|
|
|
|
if (shape == df::tiletype_shape::STAIR_UPDOWN)
|
|
|
|
target_shape = df::tiletype_shape::STAIR_DOWN;
|
|
|
|
else if (shape == df::tiletype_shape::RAMP)
|
2021-06-01 18:38:04 -06:00
|
|
|
remove_ramp_top(map, DFCoord(pos.x, pos.y, pos.z+1));
|
2021-08-01 08:02:00 -06:00
|
|
|
target_type = get_target_type(tt, target_shape);
|
2021-06-01 12:58:32 -06:00
|
|
|
}
|
2021-05-16 15:16:21 -06:00
|
|
|
break;
|
|
|
|
case df::tile_dig_designation::Channel:
|
2021-06-27 15:54:41 -06:00
|
|
|
{
|
|
|
|
DFCoord pos_below(pos.x, pos.y, pos.z-1);
|
|
|
|
if (can_dig_channel(tt) && map.ensureBlockAt(pos_below)
|
|
|
|
&& is_diggable(map, pos_below, map.tiletypeAt(pos_below))) {
|
2021-06-01 12:58:32 -06:00
|
|
|
target_type = df::tiletype::OpenSpace;
|
2021-06-19 13:00:13 -06:00
|
|
|
DFCoord pos_above(pos.x, pos.y, pos.z+1);
|
|
|
|
if (map.ensureBlockAt(pos_above))
|
|
|
|
remove_ramp_top(map, pos_above);
|
2021-10-01 22:32:31 -06:00
|
|
|
df::tile_dig_designation td_below =
|
|
|
|
map.designationAt(pos_below).bits.dig;
|
2021-06-27 15:54:41 -06:00
|
|
|
if (dig_tile(out, map, pos_below,
|
|
|
|
df::tile_dig_designation::Ramp, dug_tiles)) {
|
2021-06-01 18:38:04 -06:00
|
|
|
clean_ramps(map, pos_below);
|
2021-10-01 22:32:31 -06:00
|
|
|
if (td_below == df::tile_dig_designation::Default)
|
|
|
|
dig_tile(out, map, pos_below, td_below, dug_tiles);
|
2021-06-01 18:38:04 -06:00
|
|
|
return true;
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
}
|
2021-06-27 15:54:41 -06:00
|
|
|
break;
|
|
|
|
}
|
2021-06-01 12:58:32 -06:00
|
|
|
case df::tile_dig_designation::UpStair:
|
|
|
|
if (can_dig_up_stair(tt))
|
2021-08-01 08:02:00 -06:00
|
|
|
target_type = get_target_type(tt, df::tiletype_shape::STAIR_UP);
|
2021-05-16 15:16:21 -06:00
|
|
|
break;
|
|
|
|
case df::tile_dig_designation::DownStair:
|
2021-06-01 12:58:32 -06:00
|
|
|
if (can_dig_down_stair(tt)) {
|
|
|
|
target_type =
|
2021-08-01 08:02:00 -06:00
|
|
|
get_target_type(tt, df::tiletype_shape::STAIR_DOWN);
|
2021-06-01 12:58:32 -06:00
|
|
|
|
|
|
|
}
|
2021-05-16 15:16:21 -06:00
|
|
|
break;
|
2021-06-01 12:58:32 -06:00
|
|
|
case df::tile_dig_designation::UpDownStair:
|
|
|
|
if (can_dig_up_down_stair(tt)) {
|
|
|
|
target_type =
|
2021-08-01 08:02:00 -06:00
|
|
|
get_target_type(tt, df::tiletype_shape::STAIR_UPDOWN);
|
2021-06-01 12:58:32 -06:00
|
|
|
}
|
2021-05-16 15:16:21 -06:00
|
|
|
break;
|
2021-06-01 12:58:32 -06:00
|
|
|
case df::tile_dig_designation::Ramp:
|
|
|
|
{
|
|
|
|
if (can_dig_ramp(tt)) {
|
2021-08-01 08:02:00 -06:00
|
|
|
target_type = get_target_type(tt, df::tiletype_shape::RAMP);
|
2021-06-01 18:38:04 -06:00
|
|
|
DFCoord pos_above(pos.x, pos.y, pos.z+1);
|
2021-06-27 15:54:41 -06:00
|
|
|
if (target_type != tt && map.ensureBlockAt(pos_above)
|
|
|
|
&& is_diggable(map, pos, map.tiletypeAt(pos_above))) {
|
2021-06-06 06:52:20 -06:00
|
|
|
// only capture the tile info of pos_above if we didn't get
|
|
|
|
// here via the Channel case above
|
|
|
|
if (dug_tiles.size() == 0)
|
|
|
|
dug_tiles.push_back(dug_tile_info(map, pos_above));
|
2021-06-12 11:56:15 -06:00
|
|
|
destroy_colony(pos_above);
|
2021-06-01 18:38:04 -06:00
|
|
|
// set tile type directly instead of calling dig_shape
|
2021-06-01 12:58:32 -06:00
|
|
|
// because we need to use *this* tile's material, not the
|
|
|
|
// material of the tile above
|
2021-06-01 18:38:04 -06:00
|
|
|
map.setTiletypeAt(pos_above,
|
2021-08-01 08:02:00 -06:00
|
|
|
get_target_type(tt, df::tiletype_shape::RAMP_TOP));
|
2021-06-06 06:52:20 -06:00
|
|
|
remove_ramp_top(map, DFCoord(pos.x, pos.y, pos.z+2));
|
2021-06-01 12:58:32 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-05-16 15:16:21 -06:00
|
|
|
case df::tile_dig_designation::No:
|
|
|
|
default:
|
|
|
|
out.printerr(
|
|
|
|
"unhandled dig designation for tile (%d, %d, %d): %d\n",
|
2021-06-01 18:38:04 -06:00
|
|
|
pos.x, pos.y, pos.z, designation);
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
|
2021-06-02 23:18:42 -06:00
|
|
|
// fail if unhandled or no change to tile
|
2021-06-01 12:58:32 -06:00
|
|
|
if (target_type == df::tiletype::Void || target_type == tt)
|
|
|
|
return false;
|
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
dug_tiles.push_back(dug_tile_info(map, pos));
|
2021-06-01 18:38:04 -06:00
|
|
|
dig_type(map, pos, target_type);
|
2021-05-16 15:16:21 -06:00
|
|
|
|
2021-06-02 23:18:42 -06:00
|
|
|
// let light filter down to newly exposed tiles
|
|
|
|
propagate_vertical_flags(map, pos);
|
2021-06-01 12:58:32 -06:00
|
|
|
|
|
|
|
return true;
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
|
2021-06-06 07:46:59 -06:00
|
|
|
static bool is_smooth_wall(MapExtras::MapCache &map, const DFCoord &pos) {
|
2021-06-27 22:58:16 -06:00
|
|
|
if (!map.ensureBlockAt(pos))
|
|
|
|
return false;
|
2021-06-06 07:46:59 -06:00
|
|
|
df::tiletype tt = map.tiletypeAt(pos);
|
|
|
|
return tileSpecial(tt) == df::tiletype_special::SMOOTH
|
|
|
|
&& tileShape(tt) == df::tiletype_shape::WALL;
|
|
|
|
}
|
|
|
|
|
2022-09-07 11:10:44 -06:00
|
|
|
static bool is_connector(MapExtras::MapCache &map, const DFCoord &pos) {
|
2021-07-20 16:53:03 -06:00
|
|
|
df::building *bld = Buildings::findAtTile(pos);
|
2022-09-07 11:10:44 -06:00
|
|
|
|
|
|
|
return bld &&
|
|
|
|
(bld->getType() == df::building_type::Door ||
|
|
|
|
bld->getType() == df::building_type::Floodgate);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_smooth_wall_or_connector(MapExtras::MapCache &map,
|
|
|
|
const DFCoord &pos) {
|
|
|
|
return is_smooth_wall(map, pos) || is_connector(map, pos);
|
2021-07-20 16:53:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// adds adjacent smooth walls and doors to the given tdir
|
2021-06-06 07:46:59 -06:00
|
|
|
static TileDirection get_adjacent_smooth_walls(MapExtras::MapCache &map,
|
|
|
|
const DFCoord &pos,
|
|
|
|
TileDirection tdir) {
|
2022-09-07 11:10:44 -06:00
|
|
|
if (is_smooth_wall_or_connector(map, DFCoord(pos.x, pos.y-1, pos.z)))
|
2021-06-06 07:46:59 -06:00
|
|
|
tdir.north = 1;
|
2022-09-07 11:10:44 -06:00
|
|
|
if (is_smooth_wall_or_connector(map, DFCoord(pos.x, pos.y+1, pos.z)))
|
2021-06-06 07:46:59 -06:00
|
|
|
tdir.south = 1;
|
2022-09-07 11:10:44 -06:00
|
|
|
if (is_smooth_wall_or_connector(map, DFCoord(pos.x-1, pos.y, pos.z)))
|
2021-06-06 07:46:59 -06:00
|
|
|
tdir.west = 1;
|
2022-09-07 11:10:44 -06:00
|
|
|
if (is_smooth_wall_or_connector(map, DFCoord(pos.x+1, pos.y, pos.z)))
|
2021-06-06 07:46:59 -06:00
|
|
|
tdir.east = 1;
|
|
|
|
return tdir;
|
|
|
|
}
|
|
|
|
|
2021-07-17 12:45:16 -06:00
|
|
|
// ensure we have at least two directions enabled (or 0) so we can find a
|
|
|
|
// matching tiletype. The game chooses to curve "end piece" walls into
|
|
|
|
// orthogonally adjacent hidden tiles, or uses a pillar if there are no such
|
|
|
|
// tiles. we take the easier, but not quite conformant, path here and always use
|
|
|
|
// a pillar for end pieces. If we want to become faithful to how the game does
|
|
|
|
// it, this code should be moved to the post-processing phase after hidden tiles
|
|
|
|
// have been revealed. We would also have to scan for wall ends that are no
|
|
|
|
// longer adjacent to hidden tiles and convert them to pillars when we dig two
|
|
|
|
// tiles away from such a wall end and reveal their adjacent hidden tile.
|
2021-06-06 07:46:59 -06:00
|
|
|
static TileDirection ensure_valid_tdir(TileDirection tdir) {
|
2021-07-17 12:45:16 -06:00
|
|
|
if (tdir.sum() < 2)
|
|
|
|
tdir.whole = 0;
|
2021-06-06 07:46:59 -06:00
|
|
|
return tdir;
|
|
|
|
}
|
|
|
|
|
2021-06-05 07:49:51 -06:00
|
|
|
// connects adjacent smooth walls to our new smooth wall
|
2021-06-27 22:58:16 -06:00
|
|
|
static TileDirection BLANK_TILE_DIRECTION;
|
2021-06-05 07:49:51 -06:00
|
|
|
static bool adjust_smooth_wall_dir(MapExtras::MapCache &map,
|
|
|
|
const DFCoord &pos,
|
2021-06-27 22:58:16 -06:00
|
|
|
TileDirection tdir = BLANK_TILE_DIRECTION) {
|
2021-06-06 07:46:59 -06:00
|
|
|
if (!is_smooth_wall(map, pos))
|
2022-09-07 11:10:44 -06:00
|
|
|
return is_connector(map, pos);
|
2021-06-05 07:49:51 -06:00
|
|
|
|
2021-06-06 07:46:59 -06:00
|
|
|
tdir = ensure_valid_tdir(get_adjacent_smooth_walls(map, pos, tdir));
|
2021-06-05 07:49:51 -06:00
|
|
|
|
2021-06-06 07:46:59 -06:00
|
|
|
df::tiletype tt = map.tiletypeAt(pos);
|
2021-06-05 07:49:51 -06:00
|
|
|
tt = findTileType(tileShape(tt), tileMaterial(tt), tileVariant(tt),
|
|
|
|
tileSpecial(tt), tdir);
|
|
|
|
if (tt == df::tiletype::Void)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
map.setTiletypeAt(pos, tt);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-06-27 22:58:16 -06:00
|
|
|
static void refresh_adjacent_smooth_walls(MapExtras::MapCache &map,
|
|
|
|
const DFCoord &pos) {
|
|
|
|
adjust_smooth_wall_dir(map, DFCoord(pos.x, pos.y-1, pos.z));
|
|
|
|
adjust_smooth_wall_dir(map, DFCoord(pos.x, pos.y+1, pos.z));
|
|
|
|
adjust_smooth_wall_dir(map, DFCoord(pos.x-1, pos.y, pos.z));
|
|
|
|
adjust_smooth_wall_dir(map, DFCoord(pos.x+1, pos.y, pos.z));
|
|
|
|
}
|
|
|
|
|
2021-06-05 07:49:51 -06:00
|
|
|
// assumes that if the game let you designate a tile for smoothing, it must be
|
|
|
|
// valid to do so.
|
2021-06-01 18:38:04 -06:00
|
|
|
static bool smooth_tile(color_ostream &out, MapExtras::MapCache &map,
|
2021-06-04 18:40:40 -06:00
|
|
|
const DFCoord &pos) {
|
2021-06-05 07:49:51 -06:00
|
|
|
df::tiletype tt = map.tiletypeAt(pos);
|
|
|
|
|
2022-03-12 14:11:07 -07:00
|
|
|
df::tiletype_shape shape = tileShape(tt);
|
|
|
|
df::tiletype_variant variant = tileVariant(tt);
|
|
|
|
df::tiletype_special special = df::tiletype_special::SMOOTH;
|
|
|
|
|
2021-06-05 07:49:51 -06:00
|
|
|
TileDirection tdir;
|
2022-03-12 14:11:07 -07:00
|
|
|
if (is_smooth_wall(map, pos)) {
|
|
|
|
// engraving is filtered out at a higher level, so this is a
|
|
|
|
// fortification designation
|
|
|
|
shape = tiletype_shape::FORTIFICATION;
|
|
|
|
variant = df::tiletype_variant::NONE;
|
|
|
|
special = df::tiletype_special::NONE;
|
|
|
|
}
|
|
|
|
else if (shape == df::tiletype_shape::WALL) {
|
2021-06-05 07:49:51 -06:00
|
|
|
if (adjust_smooth_wall_dir(map, DFCoord(pos.x, pos.y-1, pos.z),
|
2021-06-06 07:46:59 -06:00
|
|
|
TileDirection(0, 1, 0, 0)))
|
|
|
|
tdir.north = 1;
|
2021-06-05 07:49:51 -06:00
|
|
|
if (adjust_smooth_wall_dir(map, DFCoord(pos.x, pos.y+1, pos.z),
|
2021-06-06 07:46:59 -06:00
|
|
|
TileDirection(1, 0, 0, 0)))
|
|
|
|
tdir.south = 1;
|
2021-06-05 07:49:51 -06:00
|
|
|
if (adjust_smooth_wall_dir(map, DFCoord(pos.x-1, pos.y, pos.z),
|
2021-06-06 07:46:59 -06:00
|
|
|
TileDirection(0, 0, 0, 1)))
|
|
|
|
tdir.west = 1;
|
2021-06-05 07:49:51 -06:00
|
|
|
if (adjust_smooth_wall_dir(map, DFCoord(pos.x+1, pos.y, pos.z),
|
2021-06-06 07:46:59 -06:00
|
|
|
TileDirection(0, 0, 1, 0)))
|
|
|
|
tdir.east = 1;
|
|
|
|
tdir = ensure_valid_tdir(tdir);
|
2021-06-05 07:49:51 -06:00
|
|
|
}
|
|
|
|
|
2022-03-12 14:11:07 -07:00
|
|
|
tt = findTileType(shape, tileMaterial(tt), variant, special, tdir);
|
2021-06-05 07:49:51 -06:00
|
|
|
if (tt == df::tiletype::Void)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
map.setTiletypeAt(pos, tt);
|
|
|
|
return true;
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
|
2021-06-05 07:49:51 -06:00
|
|
|
// assumes that if the game let you designate a tile for track carving, it must
|
|
|
|
// be valid to do so.
|
2021-06-04 22:42:49 -06:00
|
|
|
static bool carve_tile(MapExtras::MapCache &map,
|
2021-06-01 18:38:04 -06:00
|
|
|
const DFCoord &pos, df::tile_occupancy &to) {
|
2021-06-04 22:42:49 -06:00
|
|
|
df::tiletype tt = map.tiletypeAt(pos);
|
|
|
|
TileDirection tdir = tileDirection(tt);
|
|
|
|
|
|
|
|
if (to.bits.carve_track_north)
|
|
|
|
tdir.north = 1;
|
|
|
|
if (to.bits.carve_track_east)
|
|
|
|
tdir.east = 1;
|
|
|
|
if (to.bits.carve_track_south)
|
|
|
|
tdir.south = 1;
|
|
|
|
if (to.bits.carve_track_west)
|
|
|
|
tdir.west = 1;
|
|
|
|
|
|
|
|
tt = findTileType(tileShape(tt), tileMaterial(tt), tileVariant(tt),
|
|
|
|
df::tiletype_special::TRACK, tdir);
|
|
|
|
if (tt == df::tiletype::Void)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
map.setTiletypeAt(pos, tt);
|
|
|
|
return true;
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
static bool produces_item(const boulder_percent_options &options,
|
|
|
|
MapExtras::MapCache &map, Random::MersenneRNG &rng,
|
|
|
|
const dug_tile_info &info) {
|
2021-06-04 13:15:15 -06:00
|
|
|
uint32_t probability;
|
2021-06-06 06:52:20 -06:00
|
|
|
if (info.tmat == df::tiletype_material::FEATURE)
|
2021-06-05 18:26:23 -06:00
|
|
|
probability = options.deep;
|
2021-06-06 06:52:20 -06:00
|
|
|
else {
|
|
|
|
switch (map.BlockAtTile(info.pos)->veinTypeAt(info.pos)) {
|
|
|
|
case df::inclusion_type::CLUSTER:
|
|
|
|
case df::inclusion_type::VEIN:
|
|
|
|
probability = options.vein;
|
|
|
|
break;
|
|
|
|
case df::inclusion_type::CLUSTER_ONE:
|
|
|
|
case df::inclusion_type::CLUSTER_SMALL:
|
|
|
|
probability = options.small_cluster;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
probability = options.layer;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-06-05 18:26:23 -06:00
|
|
|
|
2021-06-04 13:15:15 -06:00
|
|
|
return rng.random(100) < probability;
|
|
|
|
}
|
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
typedef std::map<std::pair<df::item_type, int32_t>, std::vector<DFCoord>>
|
|
|
|
item_coords_t;
|
|
|
|
|
2021-06-02 23:43:23 -06:00
|
|
|
static void do_dig(color_ostream &out, std::vector<DFCoord> &dug_coords,
|
2021-06-06 06:52:20 -06:00
|
|
|
item_coords_t &item_coords, const dig_now_options &options) {
|
2021-06-01 18:38:04 -06:00
|
|
|
MapExtras::MapCache map;
|
2021-06-04 13:15:15 -06:00
|
|
|
Random::MersenneRNG rng;
|
|
|
|
|
|
|
|
rng.init();
|
2021-06-01 18:38:04 -06:00
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
// go down levels instead of up so stacked ramps behave as expected
|
|
|
|
for (int16_t z = options.end.z; z >= options.start.z; --z) {
|
|
|
|
for (int16_t y = options.start.y; y <= options.end.y; ++y) {
|
|
|
|
for (int16_t x = options.start.x; x <= options.end.x; ++x) {
|
2021-05-16 15:16:21 -06:00
|
|
|
// this will return NULL if the map block hasn't been allocated
|
|
|
|
// yet, but that means there aren't any designations anyway.
|
|
|
|
if (!Maps::getTileBlock(x, y, z))
|
|
|
|
continue;
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
DFCoord pos(x, y, z);
|
|
|
|
df::tile_designation td = map.designationAt(pos);
|
|
|
|
df::tile_occupancy to = map.occupancyAt(pos);
|
2021-06-27 13:15:21 -06:00
|
|
|
if (td.bits.dig != df::tile_dig_designation::No &&
|
|
|
|
!to.bits.dig_marked) {
|
2021-06-06 06:52:20 -06:00
|
|
|
std::vector<dug_tile_info> dug_tiles;
|
|
|
|
if (dig_tile(out, map, pos, td.bits.dig, dug_tiles)) {
|
|
|
|
for (auto info : dug_tiles) {
|
2021-10-01 12:21:55 -06:00
|
|
|
td = map.designationAt(info.pos);
|
|
|
|
td.bits.dig = df::tile_dig_designation::No;
|
|
|
|
map.setDesignationAt(info.pos, td);
|
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
dug_coords.push_back(info.pos);
|
2021-06-27 22:58:16 -06:00
|
|
|
refresh_adjacent_smooth_walls(map, info.pos);
|
2021-06-06 06:52:20 -06:00
|
|
|
if (info.imat < 0)
|
2021-06-04 13:15:15 -06:00
|
|
|
continue;
|
2021-06-06 06:52:20 -06:00
|
|
|
if (produces_item(options.boulder_percents,
|
|
|
|
map, rng, info)) {
|
|
|
|
auto k = std::make_pair(info.itype, info.imat);
|
|
|
|
item_coords[k].push_back(info.pos);
|
2021-06-04 13:15:15 -06:00
|
|
|
}
|
|
|
|
}
|
2021-06-01 18:38:04 -06:00
|
|
|
}
|
2021-06-04 18:40:40 -06:00
|
|
|
} else if (td.bits.smooth == 1) {
|
|
|
|
if (smooth_tile(out, map, pos)) {
|
2021-06-01 18:38:04 -06:00
|
|
|
to = map.occupancyAt(pos);
|
|
|
|
td.bits.smooth = 0;
|
|
|
|
map.setDesignationAt(pos, td);
|
|
|
|
}
|
2021-05-16 15:16:21 -06:00
|
|
|
} else if (to.bits.carve_track_north == 1
|
2021-06-01 18:38:04 -06:00
|
|
|
|| to.bits.carve_track_east == 1
|
|
|
|
|| to.bits.carve_track_south == 1
|
|
|
|
|| to.bits.carve_track_west == 1) {
|
2021-06-04 22:42:49 -06:00
|
|
|
if (carve_tile(map, pos, to)) {
|
2021-06-01 18:38:04 -06:00
|
|
|
to = map.occupancyAt(pos);
|
|
|
|
to.bits.carve_track_north = 0;
|
|
|
|
to.bits.carve_track_east = 0;
|
|
|
|
to.bits.carve_track_south = 0;
|
|
|
|
to.bits.carve_track_west = 0;
|
|
|
|
map.setOccupancyAt(pos, to);
|
|
|
|
}
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-01 18:38:04 -06:00
|
|
|
map.WriteAll();
|
2021-06-02 23:43:23 -06:00
|
|
|
}
|
|
|
|
|
2021-06-05 08:02:46 -06:00
|
|
|
// if pos is empty space, teleport to a floor somewhere below
|
|
|
|
// if we fall out of the world (e.g. empty space or walls all the way down),
|
|
|
|
// returned position will be invalid
|
2021-06-04 13:15:15 -06:00
|
|
|
static DFCoord simulate_fall(const DFCoord &pos) {
|
|
|
|
DFCoord resting_pos(pos);
|
|
|
|
|
2021-06-04 18:40:40 -06:00
|
|
|
while (Maps::ensureTileBlock(resting_pos)) {
|
2021-06-04 13:15:15 -06:00
|
|
|
df::tiletype tt = *Maps::getTileType(resting_pos);
|
|
|
|
df::tiletype_shape_basic basic_shape = tileShapeBasic(tileShape(tt));
|
|
|
|
if (isWalkable(tt) && basic_shape != df::tiletype_shape_basic::Open)
|
|
|
|
break;
|
|
|
|
--resting_pos.z;
|
|
|
|
}
|
|
|
|
|
|
|
|
return resting_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void create_boulders(color_ostream &out,
|
2021-06-06 06:52:20 -06:00
|
|
|
const item_coords_t &item_coords,
|
2021-06-04 13:15:15 -06:00
|
|
|
const dig_now_options &options) {
|
|
|
|
df::unit *unit = world->units.active[0];
|
|
|
|
df::historical_entity *civ = df::historical_entity::find(unit->civ_id);
|
|
|
|
df::world_site *site = World::isFortressMode() ?
|
|
|
|
df::world_site::find(ui->site_id) : NULL;
|
|
|
|
|
|
|
|
std::vector<df::reaction_reagent *> in_reag;
|
|
|
|
std::vector<df::item *> in_items;
|
|
|
|
|
2021-06-04 18:40:40 -06:00
|
|
|
DFCoord dump_pos;
|
2021-06-05 18:26:23 -06:00
|
|
|
if (Maps::isValidTilePos(options.dump_pos)) {
|
|
|
|
dump_pos = simulate_fall(options.dump_pos);
|
2021-06-06 09:31:21 -06:00
|
|
|
if (!Maps::ensureTileBlock(dump_pos))
|
2021-06-05 18:26:23 -06:00
|
|
|
out.printerr("Invalid dump tile coordinates! Ensure the --dump"
|
|
|
|
" option specifies an open, non-wall tile.");
|
2021-06-04 18:40:40 -06:00
|
|
|
}
|
2021-06-04 13:15:15 -06:00
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
for (auto entry : item_coords) {
|
2021-06-04 13:15:15 -06:00
|
|
|
df::reaction_product_itemst *prod =
|
|
|
|
df::allocate<df::reaction_product_itemst>();
|
|
|
|
const std::vector<DFCoord> &coords = entry.second;
|
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
prod->item_type = entry.first.first;
|
2021-06-04 13:15:15 -06:00
|
|
|
prod->item_subtype = -1;
|
|
|
|
prod->mat_type = 0;
|
2021-06-06 06:52:20 -06:00
|
|
|
prod->mat_index = entry.first.second;
|
2021-06-04 13:15:15 -06:00
|
|
|
prod->probability = 100;
|
|
|
|
prod->product_dimension = 1;
|
|
|
|
|
|
|
|
std::vector<df::reaction_product*> out_products;
|
|
|
|
std::vector<df::item *> out_items;
|
|
|
|
|
2021-06-27 13:46:02 -06:00
|
|
|
size_t remaining_items = coords.size();
|
|
|
|
while (remaining_items > 0) {
|
|
|
|
int16_t batch_size = min(remaining_items,
|
|
|
|
static_cast<size_t>(INT16_MAX));
|
|
|
|
prod->count = batch_size;
|
|
|
|
remaining_items -= batch_size;
|
|
|
|
prod->produce(unit, &out_products, &out_items, &in_reag, &in_items,
|
|
|
|
1, job_skill::NONE, 0, civ, site, NULL);
|
|
|
|
}
|
2021-06-04 13:15:15 -06:00
|
|
|
|
|
|
|
size_t num_items = out_items.size();
|
|
|
|
if (num_items != coords.size()) {
|
2021-06-27 13:46:02 -06:00
|
|
|
MaterialInfo material;
|
|
|
|
material.decode(prod->mat_type, prod->mat_index);
|
|
|
|
out.printerr("unexpected number of %s %s produced: expected %zd,"
|
|
|
|
" got %zd.\n",
|
|
|
|
material.toString().c_str(),
|
|
|
|
ENUM_KEY_STR(item_type, prod->item_type).c_str(),
|
|
|
|
coords.size(), num_items);
|
2021-06-04 13:15:15 -06:00
|
|
|
num_items = min(num_items, entry.second.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < num_items; ++i) {
|
2021-06-04 18:40:40 -06:00
|
|
|
DFCoord pos = Maps::isValidTilePos(dump_pos) ?
|
|
|
|
dump_pos : simulate_fall(coords[i]);
|
2021-06-06 09:31:21 -06:00
|
|
|
if (!Maps::ensureTileBlock(pos)) {
|
2021-06-04 18:40:40 -06:00
|
|
|
out.printerr(
|
|
|
|
"unable to place boulder generated at (%d, %d, %d)\n",
|
|
|
|
coords[i].x, coords[i].y, coords[i].z);
|
2021-06-04 13:15:15 -06:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
out_items[i]->moveToGround(pos.x, pos.y, pos.z);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(prod);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-04 18:40:40 -06:00
|
|
|
static void flood_unhide(color_ostream &out, const DFCoord &pos) {
|
|
|
|
auto L = Lua::Core::State;
|
|
|
|
Lua::StackUnwinder top(L);
|
|
|
|
|
|
|
|
if (!lua_checkstack(L, 2)
|
|
|
|
|| !Lua::PushModulePublic(out, L, "plugins.reveal", "unhideFlood"))
|
2021-06-04 13:15:15 -06:00
|
|
|
return;
|
|
|
|
|
2021-06-04 18:40:40 -06:00
|
|
|
Lua::Push(L, pos);
|
|
|
|
Lua::SafeCall(out, L, 1, 0);
|
|
|
|
}
|
|
|
|
|
2021-06-28 14:04:58 -06:00
|
|
|
static bool needs_unhide(const DFCoord &pos) {
|
|
|
|
return !Maps::ensureTileBlock(pos)
|
|
|
|
|| Maps::getTileDesignation(pos)->bits.hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool needs_flood_unhide(const DFCoord &pos) {
|
|
|
|
return needs_unhide(pos)
|
|
|
|
|| needs_unhide(DFCoord(pos.x-1, pos.y-1, pos.z))
|
|
|
|
|| needs_unhide(DFCoord(pos.x, pos.y-1, pos.z))
|
|
|
|
|| needs_unhide(DFCoord(pos.x+1, pos.y-1, pos.z))
|
|
|
|
|| needs_unhide(DFCoord(pos.x-1, pos.y, pos.z))
|
|
|
|
|| needs_unhide(DFCoord(pos.x+1, pos.y, pos.z))
|
|
|
|
|| needs_unhide(DFCoord(pos.x-1, pos.y+1, pos.z))
|
|
|
|
|| needs_unhide(DFCoord(pos.x, pos.y+1, pos.z))
|
|
|
|
|| needs_unhide(DFCoord(pos.x+1, pos.y+1, pos.z));
|
|
|
|
}
|
|
|
|
|
2021-06-06 09:31:21 -06:00
|
|
|
static void post_process_dug_tiles(color_ostream &out,
|
2021-06-04 18:40:40 -06:00
|
|
|
const std::vector<DFCoord> &dug_coords) {
|
2021-06-06 09:31:21 -06:00
|
|
|
for (DFCoord pos : dug_coords) {
|
2021-06-28 14:04:58 -06:00
|
|
|
if (needs_flood_unhide(pos)) {
|
|
|
|
// set current tile to hidden to allow flood_unhide to work on tiles
|
|
|
|
// that were already visible but that reveal hidden tiles when dug.
|
|
|
|
Maps::getTileDesignation(pos)->bits.hidden = true;
|
2021-06-04 18:40:40 -06:00
|
|
|
flood_unhide(out, pos);
|
2021-06-28 14:04:58 -06:00
|
|
|
}
|
2021-06-06 09:31:21 -06:00
|
|
|
|
|
|
|
df::tile_occupancy &to = *Maps::getTileOccupancy(pos);
|
2021-06-19 14:51:13 -06:00
|
|
|
if (to.bits.unit || to.bits.item) {
|
2021-06-06 09:31:21 -06:00
|
|
|
DFCoord resting_pos = simulate_fall(pos);
|
|
|
|
if (resting_pos == pos)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!Maps::ensureTileBlock(resting_pos)) {
|
|
|
|
out.printerr("No valid tile beneath (%d, %d, %d); can't move"
|
|
|
|
" units and items to floor",
|
|
|
|
pos.x, pos.y, pos.z);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (to.bits.unit) {
|
|
|
|
std::vector<df::unit*> units;
|
|
|
|
Units::getUnitsInBox(units, pos.x, pos.y, pos.z,
|
|
|
|
pos.x, pos.y, pos.z);
|
|
|
|
for (auto unit : units)
|
|
|
|
Units::teleport(unit, resting_pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (to.bits.item) {
|
|
|
|
for (auto item : world->items.other.IN_PLAY) {
|
2021-06-19 14:52:07 -06:00
|
|
|
if (item->pos == pos && item->flags.bits.on_ground)
|
2021-06-06 09:31:21 -06:00
|
|
|
item->moveToGround(
|
|
|
|
resting_pos.x, resting_pos.y, resting_pos.z);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-12 12:46:48 -06:00
|
|
|
// refresh block metadata and flows
|
|
|
|
Maps::enableBlockUpdates(Maps::getTileBlock(pos), true, true);
|
2021-06-06 09:31:21 -06:00
|
|
|
}
|
2021-06-04 13:15:15 -06:00
|
|
|
}
|
|
|
|
|
2021-06-05 18:26:23 -06:00
|
|
|
static bool get_options(color_ostream &out,
|
|
|
|
dig_now_options &opts,
|
|
|
|
const std::vector<std::string> ¶meters) {
|
|
|
|
auto L = Lua::Core::State;
|
|
|
|
Lua::StackUnwinder top(L);
|
|
|
|
|
|
|
|
if (!lua_checkstack(L, parameters.size() + 2) ||
|
|
|
|
!Lua::PushModulePublic(
|
|
|
|
out, L, "plugins.dig-now", "parse_commandline")) {
|
|
|
|
out.printerr("Failed to load dig-now Lua code\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Lua::Push(L, &opts);
|
|
|
|
|
|
|
|
for (const std::string ¶m : parameters)
|
|
|
|
Lua::Push(L, param);
|
|
|
|
|
|
|
|
if (!Lua::SafeCall(out, L, parameters.size() + 1, 0))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-06-27 19:00:26 -06:00
|
|
|
bool dig_now_impl(color_ostream &out, const dig_now_options &options) {
|
2021-06-02 23:43:23 -06:00
|
|
|
if (!Maps::IsValid()) {
|
|
|
|
out.printerr("Map is not available!\n");
|
2021-06-27 19:00:26 -06:00
|
|
|
return false;
|
2021-06-02 23:43:23 -06:00
|
|
|
}
|
|
|
|
|
2021-06-05 08:02:46 -06:00
|
|
|
// required for boulder generation
|
2021-06-04 13:15:15 -06:00
|
|
|
if (world->units.active.size() == 0) {
|
|
|
|
out.printerr("At least one unit must be alive!\n");
|
2021-06-27 19:00:26 -06:00
|
|
|
return false;
|
2021-06-04 13:15:15 -06:00
|
|
|
}
|
2021-06-02 23:43:23 -06:00
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
// track which positions were modified and where to produce items
|
2021-06-04 13:15:15 -06:00
|
|
|
std::vector<DFCoord> dug_coords;
|
2021-06-06 06:52:20 -06:00
|
|
|
item_coords_t item_coords;
|
2021-06-01 18:38:04 -06:00
|
|
|
|
2021-06-06 06:52:20 -06:00
|
|
|
do_dig(out, dug_coords, item_coords, options);
|
|
|
|
create_boulders(out, item_coords, options);
|
2021-06-27 19:00:26 -06:00
|
|
|
post_process_dug_tiles(out, dug_coords);
|
2021-06-02 23:18:42 -06:00
|
|
|
|
2021-06-02 23:43:23 -06:00
|
|
|
// force the game to recompute its walkability cache
|
2021-05-16 15:16:21 -06:00
|
|
|
world->reindex_pathfinding = true;
|
|
|
|
|
2021-06-27 19:00:26 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
command_result dig_now(color_ostream &out, std::vector<std::string> ¶ms) {
|
|
|
|
CoreSuspender suspend;
|
|
|
|
|
|
|
|
dig_now_options options;
|
|
|
|
if (!get_options(out, options, params) || options.help)
|
2022-07-22 18:46:33 -06:00
|
|
|
return CR_WRONG_USAGE;
|
2021-06-27 19:00:26 -06:00
|
|
|
|
|
|
|
return dig_now_impl(out, options) ? CR_OK : CR_FAILURE;
|
2021-05-16 15:16:21 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_init(color_ostream &,
|
|
|
|
std::vector<PluginCommand> &commands) {
|
2022-07-22 18:46:33 -06:00
|
|
|
commands.push_back(
|
|
|
|
PluginCommand(
|
|
|
|
"dig-now",
|
|
|
|
"Instantly complete dig designations.",
|
|
|
|
dig_now));
|
2021-05-16 15:16:21 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_shutdown(color_ostream &) {
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2021-06-27 19:00:26 -06:00
|
|
|
|
2021-06-27 20:31:05 -06:00
|
|
|
// Lua API
|
2021-06-27 19:00:26 -06:00
|
|
|
|
2021-06-27 20:31:05 -06:00
|
|
|
// runs dig-now for the specified tile coordinate. default options apply.
|
|
|
|
static int dig_now_tile(lua_State *L)
|
2021-06-27 19:00:26 -06:00
|
|
|
{
|
2021-06-27 20:31:05 -06:00
|
|
|
DFCoord pos;
|
|
|
|
if (lua_gettop(L) <= 1)
|
|
|
|
Lua::CheckDFAssign(L, &pos, 1);
|
|
|
|
else
|
|
|
|
pos = DFCoord(luaL_checkint(L, 1), luaL_checkint(L, 2),
|
|
|
|
luaL_checkint(L, 3));
|
|
|
|
|
|
|
|
color_ostream *out = Lua::GetOutput(L);
|
|
|
|
if (!out)
|
|
|
|
out = &Core::getInstance().getConsole();
|
|
|
|
|
2021-06-27 19:00:26 -06:00
|
|
|
dig_now_options options;
|
|
|
|
options.start = pos;
|
|
|
|
options.end = pos;
|
2021-06-27 20:31:05 -06:00
|
|
|
lua_pushboolean(L, dig_now_impl(*out, options));
|
|
|
|
|
|
|
|
return 1;
|
2021-06-27 19:00:26 -06:00
|
|
|
}
|
2021-06-27 20:31:05 -06:00
|
|
|
|
2021-07-10 15:51:21 -06:00
|
|
|
static int link_adjacent_smooth_walls(lua_State *L)
|
|
|
|
{
|
|
|
|
DFCoord pos;
|
|
|
|
if (lua_gettop(L) <= 1)
|
|
|
|
Lua::CheckDFAssign(L, &pos, 1);
|
|
|
|
else
|
|
|
|
pos = DFCoord(luaL_checkint(L, 1), luaL_checkint(L, 2),
|
|
|
|
luaL_checkint(L, 3));
|
|
|
|
|
|
|
|
MapExtras::MapCache map;
|
|
|
|
adjust_smooth_wall_dir(map, pos);
|
|
|
|
refresh_adjacent_smooth_walls(map, pos);
|
|
|
|
map.WriteAll();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-27 20:31:05 -06:00
|
|
|
DFHACK_PLUGIN_LUA_COMMANDS {
|
|
|
|
DFHACK_LUA_COMMAND(dig_now_tile),
|
2021-07-10 15:51:21 -06:00
|
|
|
DFHACK_LUA_COMMAND(link_adjacent_smooth_walls),
|
2021-06-27 20:31:05 -06:00
|
|
|
DFHACK_LUA_END
|
|
|
|
};
|