/* https://github.com/peterix/dfhack Copyright (c) 2009-2012 Petr Mrázek (peterix@gmail.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "Internal.h" #include #include #include using namespace std; #include "Core.h" #include "MemAccess.h" #include "TileTypes.h" #include "Types.h" #include "VersionInfo.h" #include "modules/Buildings.h" #include "modules/Constructions.h" #include "modules/Maps.h" #include "df/building_constructionst.h" #include "df/building_type.h" #include "df/job_item.h" #include "df/map_block.h" #include "df/world.h" using namespace DFHack; using namespace df::enums; using df::global::world; df::construction * Constructions::findAtTile(df::coord pos) { int index = binsearch_index(world->constructions, pos); if (index == -1) { return NULL; } return world->constructions[index]; } bool Constructions::insert(df::construction * constr) { bool toInsert; insert_into_vector(world->constructions, &df::construction::pos, constr, &toInsert); return toInsert; } bool Constructions::designateNew(df::coord pos, df::construction_type type, df::item_type item, int mat_index) { auto ttype = Maps::getTileType(pos); if (!ttype || tileMaterial(*ttype) == tiletype_material::CONSTRUCTION) return false; auto current = Buildings::findAtTile(pos); if (current) { auto cons = strict_virtual_cast(current); if (!cons) return false; cons->type = type; return true; } auto newinst = Buildings::allocInstance(pos, building_type::Construction); if (!newinst) return false; auto newcons = strict_virtual_cast(newinst); newcons->type = type; df::job_item *filter = new df::job_item(); filter->item_type = item; filter->mat_index = mat_index; filter->flags2.bits.building_material = true; if (mat_index < 0) filter->flags2.bits.non_economic = true; std::vector filters; filters.push_back(filter); if (!Buildings::constructWithFilters(newinst, filters)) { delete newinst; return false; } return true; } bool Constructions::designateRemove(df::coord pos, bool *immediate) { using df::global::process_dig; if (immediate) *immediate = false; if (auto current = Buildings::findAtTile(pos)) { auto cons = strict_virtual_cast(current); if (!cons) return false; if (Buildings::deconstruct(cons)) { if (immediate) *immediate = true; } return true; } auto block = Maps::getTileBlock(pos); if (!block) return false; auto ttype = block->tiletype[pos.x&15][pos.y&15]; if (tileMaterial(ttype) == tiletype_material::CONSTRUCTION) { auto &dsgn = block->designation[pos.x&15][pos.y&15]; dsgn.bits.dig = tile_dig_designation::Default; block->flags.bits.designated = true; if (process_dig) *process_dig = true; return true; } return false; }