|
|
@ -281,23 +281,79 @@ static void cancel_box_selection()
|
|
|
|
Gui::setDesignationCoords(-1, -1, -1);
|
|
|
|
Gui::setDesignationCoords(-1, -1, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool is_valid_building_site(df::coord &pos)
|
|
|
|
static bool is_valid_building_site(df::coord &pos, bool orthogonal_check)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
auto ttype = Maps::getTileType(pos);
|
|
|
|
auto ttype = Maps::getTileType(pos);
|
|
|
|
if (!ttype ||
|
|
|
|
|
|
|
|
*ttype == tiletype::Tree ||
|
|
|
|
if (!ttype)
|
|
|
|
tileMaterial(*ttype) == tiletype_material::CONSTRUCTION ||
|
|
|
|
return false;
|
|
|
|
tileMaterial(*ttype) == tiletype_material::AIR ||
|
|
|
|
|
|
|
|
tileMaterial(*ttype) == tiletype_material::CAMPFIRE ||
|
|
|
|
auto shape = tileShape(*ttype);
|
|
|
|
tileMaterial(*ttype) == tiletype_material::FIRE ||
|
|
|
|
auto shapeBasic = tileShapeBasic(shape);
|
|
|
|
tileMaterial(*ttype) == tiletype_material::MAGMA ||
|
|
|
|
|
|
|
|
tileMaterial(*ttype) == tiletype_material::DRIFTWOOD ||
|
|
|
|
if (shapeBasic == tiletype_shape_basic::Open)
|
|
|
|
tileMaterial(*ttype) == tiletype_material::POOL ||
|
|
|
|
{
|
|
|
|
tileMaterial(*ttype) == tiletype_material::BROOK ||
|
|
|
|
if (orthogonal_check)
|
|
|
|
tileMaterial(*ttype) == tiletype_material::RIVER
|
|
|
|
return false;
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
bool valid_orthogonal_tile_found = false;
|
|
|
|
|
|
|
|
df::coord orthagonal_pos;
|
|
|
|
|
|
|
|
orthagonal_pos.z = pos.z;
|
|
|
|
|
|
|
|
for (orthagonal_pos.x = pos.x-1; orthagonal_pos.x <= pos.x+1 && !valid_orthogonal_tile_found; orthagonal_pos.x++)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
for (orthagonal_pos.y = pos.y-1; orthagonal_pos.y <= pos.y+1; orthagonal_pos.y++)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (pos.x != orthagonal_pos.x && pos.y != orthagonal_pos.y)
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Maps::isValidTilePos(orthagonal_pos) && is_valid_building_site(orthagonal_pos, true))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
valid_orthogonal_tile_found = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!valid_orthogonal_tile_found)
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
auto material = tileMaterial(*ttype);
|
|
|
|
|
|
|
|
if (shape == tiletype_shape::RAMP)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (material == tiletype_material::CONSTRUCTION)
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (shapeBasic != tiletype_shape_basic::Floor)
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (shape == tiletype_shape::TREE)
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (material == tiletype_material::FIRE ||
|
|
|
|
|
|
|
|
material == tiletype_material::POOL ||
|
|
|
|
|
|
|
|
material == tiletype_material::BROOK ||
|
|
|
|
|
|
|
|
material == tiletype_material::RIVER ||
|
|
|
|
|
|
|
|
material == tiletype_material::MAGMA ||
|
|
|
|
|
|
|
|
material == tiletype_material::DRIFTWOOD ||
|
|
|
|
|
|
|
|
material == tiletype_material::CAMPFIRE
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auto designation = Maps::getTileDesignation(pos);
|
|
|
|
|
|
|
|
if (designation->bits.flow_size > 2)
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (orthogonal_check)
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
|
|
auto current = Buildings::findAtTile(pos);
|
|
|
|
auto current = Buildings::findAtTile(pos);
|
|
|
|
if (current)
|
|
|
|
if (current)
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
@ -466,7 +522,7 @@ struct jobutils_hook : public df::viewscreen_dwarfmodest
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
df::coord pos(xB, yB, box_second.z);
|
|
|
|
df::coord pos(xB, yB, box_second.z);
|
|
|
|
if (is_valid_building_site(pos))
|
|
|
|
if (is_valid_building_site(pos, false))
|
|
|
|
building_sites.push_back(pos);
|
|
|
|
building_sites.push_back(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -612,9 +668,11 @@ struct jobutils_hook : public df::viewscreen_dwarfmodest
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (input->count(interface_key::CUSTOM_B))
|
|
|
|
else if (input->count(interface_key::CUSTOM_B))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
reset_existing_selection();
|
|
|
|
box_select_enabled = !box_select_enabled;
|
|
|
|
box_select_enabled = !box_select_enabled;
|
|
|
|
if (!box_select_enabled)
|
|
|
|
if (!box_select_enabled)
|
|
|
|
cancel_box_selection();
|
|
|
|
cancel_box_selection();
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (input->count(interface_key::LEAVESCREEN))
|
|
|
|
else if (input->count(interface_key::LEAVESCREEN))
|
|
|
|