2013-10-03 06:50:00 -06:00
|
|
|
/*
|
|
|
|
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 <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include "ColorText.h"
|
2016-08-13 19:44:01 -06:00
|
|
|
#include "Core.h"
|
|
|
|
#include "DataDefs.h"
|
2013-10-03 06:50:00 -06:00
|
|
|
#include "Error.h"
|
|
|
|
#include "MemAccess.h"
|
|
|
|
#include "MiscUtils.h"
|
2016-08-13 19:44:01 -06:00
|
|
|
#include "ModuleFactory.h"
|
|
|
|
#include "VersionInfo.h"
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
#include "modules/Buildings.h"
|
2016-08-13 19:44:01 -06:00
|
|
|
#include "modules/MapCache.h"
|
|
|
|
#include "modules/Maps.h"
|
2018-06-18 06:53:13 -06:00
|
|
|
#include "modules/Job.h"
|
2013-10-05 10:07:21 -06:00
|
|
|
#include "modules/Materials.h"
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
#include "df/block_burrow.h"
|
|
|
|
#include "df/block_burrow_link.h"
|
2018-01-21 17:27:16 -07:00
|
|
|
#include "df/block_square_event_designation_priorityst.h"
|
2016-08-13 19:44:01 -06:00
|
|
|
#include "df/block_square_event_frozen_liquidst.h"
|
2018-01-21 17:27:16 -07:00
|
|
|
#include "df/block_square_event_grassst.h"
|
2016-08-13 19:44:01 -06:00
|
|
|
#include "df/building_type.h"
|
|
|
|
#include "df/builtin_mats.h"
|
|
|
|
#include "df/burrow.h"
|
|
|
|
#include "df/feature_init.h"
|
2013-10-03 06:50:00 -06:00
|
|
|
#include "df/flow_info.h"
|
2018-06-18 06:53:13 -06:00
|
|
|
#include "df/job.h"
|
2013-10-03 06:50:00 -06:00
|
|
|
#include "df/plant.h"
|
2014-07-20 05:11:20 -06:00
|
|
|
#include "df/plant_tree_info.h"
|
|
|
|
#include "df/plant_tree_tile.h"
|
2016-08-13 19:44:01 -06:00
|
|
|
#include "df/region_map_entry.h"
|
|
|
|
#include "df/world.h"
|
|
|
|
#include "df/world_data.h"
|
|
|
|
#include "df/world_data.h"
|
|
|
|
#include "df/world_geo_biome.h"
|
|
|
|
#include "df/world_geo_layer.h"
|
|
|
|
#include "df/world_region_details.h"
|
|
|
|
#include "df/world_underground_region.h"
|
|
|
|
#include "df/z_level_flags.h"
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
using namespace DFHack;
|
2013-10-03 07:54:28 -06:00
|
|
|
using namespace MapExtras;
|
2013-10-03 06:50:00 -06:00
|
|
|
using namespace df::enums;
|
|
|
|
using df::global::world;
|
|
|
|
|
|
|
|
extern bool GetLocalFeature(t_feature &feature, df::coord2d rgn_pos, int32_t index);
|
|
|
|
|
2020-02-15 00:22:58 -07:00
|
|
|
constexpr unsigned MapExtras::BiomeInfo::MAX_LAYERS;
|
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
const BiomeInfo MapCache::biome_stub = {
|
|
|
|
df::coord2d(),
|
|
|
|
-1, -1, -1, -1,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
{ -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1 }
|
|
|
|
};
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
#define COPY(a,b) memcpy(&a,&b,sizeof(a))
|
|
|
|
|
2018-06-18 06:53:13 -06:00
|
|
|
MapExtras::Block::Block(MapCache *parent, DFCoord _bcoord) :
|
|
|
|
parent(parent),
|
|
|
|
designated_tiles{}
|
2013-10-03 06:50:00 -06:00
|
|
|
{
|
|
|
|
dirty_designations = false;
|
|
|
|
dirty_tiles = false;
|
2013-10-04 07:04:42 -06:00
|
|
|
dirty_veins = false;
|
2013-10-03 06:50:00 -06:00
|
|
|
dirty_temperatures = false;
|
|
|
|
dirty_occupancies = false;
|
|
|
|
valid = false;
|
|
|
|
bcoord = _bcoord;
|
|
|
|
block = Maps::getBlock(bcoord);
|
|
|
|
tags = NULL;
|
|
|
|
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::Block::init()
|
|
|
|
{
|
|
|
|
item_counts = NULL;
|
|
|
|
tiles = NULL;
|
|
|
|
basemats = NULL;
|
|
|
|
|
|
|
|
if(block)
|
|
|
|
{
|
|
|
|
COPY(designation, block->designation);
|
|
|
|
COPY(occupancy, block->occupancy);
|
|
|
|
|
|
|
|
COPY(temp1, block->temperature_1);
|
|
|
|
COPY(temp2, block->temperature_2);
|
|
|
|
|
|
|
|
valid = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memset(designation,0,sizeof(designation));
|
|
|
|
memset(occupancy,0,sizeof(occupancy));
|
|
|
|
memset(temp1,0,sizeof(temp1));
|
|
|
|
memset(temp2,0,sizeof(temp2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::Allocate()
|
|
|
|
{
|
|
|
|
if (block)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
block = Maps::ensureTileBlock(bcoord.x*16, bcoord.y*16, bcoord.z);
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
delete[] item_counts;
|
|
|
|
delete tiles;
|
|
|
|
delete basemats;
|
|
|
|
init();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
MapExtras::Block::~Block()
|
|
|
|
{
|
|
|
|
delete[] item_counts;
|
|
|
|
delete[] tags;
|
|
|
|
delete tiles;
|
|
|
|
delete basemats;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::Block::init_tags()
|
|
|
|
{
|
|
|
|
if (!tags)
|
|
|
|
tags = new T_tags[16];
|
|
|
|
memset(tags,0,sizeof(T_tags)*16);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::Block::init_tiles(bool basemat)
|
|
|
|
{
|
|
|
|
if (!tiles)
|
|
|
|
{
|
|
|
|
tiles = new TileInfo();
|
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
dirty_tiles = false;
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
if (block)
|
|
|
|
ParseTiles(tiles);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (basemat && !basemats)
|
|
|
|
{
|
|
|
|
basemats = new BasematInfo();
|
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
dirty_veins = false;
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
if (block)
|
|
|
|
ParseBasemats(tiles, basemats);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MapExtras::Block::TileInfo::TileInfo()
|
|
|
|
{
|
|
|
|
dirty_raw.clear();
|
|
|
|
memset(raw_tiles,0,sizeof(raw_tiles));
|
2013-10-05 10:07:21 -06:00
|
|
|
ice_info = NULL;
|
2013-10-03 06:50:00 -06:00
|
|
|
con_info = NULL;
|
|
|
|
memset(base_tiles,0,sizeof(base_tiles));
|
|
|
|
}
|
|
|
|
|
|
|
|
MapExtras::Block::TileInfo::~TileInfo()
|
|
|
|
{
|
2013-10-05 10:07:21 -06:00
|
|
|
delete ice_info;
|
2013-10-03 06:50:00 -06:00
|
|
|
delete con_info;
|
|
|
|
}
|
|
|
|
|
2013-10-05 10:07:21 -06:00
|
|
|
void MapExtras::Block::TileInfo::init_iceinfo()
|
|
|
|
{
|
|
|
|
if (ice_info)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ice_info = new IceInfo();
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
void MapExtras::Block::TileInfo::init_coninfo()
|
|
|
|
{
|
|
|
|
if (con_info)
|
|
|
|
return;
|
|
|
|
|
|
|
|
con_info = new ConInfo();
|
|
|
|
con_info->constructed.clear();
|
|
|
|
COPY(con_info->tiles, base_tiles);
|
|
|
|
memset(con_info->mat_type, -1, sizeof(con_info->mat_type));
|
|
|
|
memset(con_info->mat_index, -1, sizeof(con_info->mat_index));
|
|
|
|
}
|
|
|
|
|
|
|
|
MapExtras::Block::BasematInfo::BasematInfo()
|
|
|
|
{
|
2013-10-04 07:04:42 -06:00
|
|
|
vein_dirty.clear();
|
2013-10-03 06:50:00 -06:00
|
|
|
memset(mat_type,0,sizeof(mat_type));
|
|
|
|
memset(mat_index,-1,sizeof(mat_index));
|
2013-10-04 07:04:42 -06:00
|
|
|
memset(veinmat,-1,sizeof(veinmat));
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
|
2013-10-11 09:23:32 -06:00
|
|
|
bool MapExtras::Block::setFlagAt(df::coord2d p, df::tile_designation::Mask mask, bool set)
|
|
|
|
{
|
|
|
|
if(!valid) return false;
|
2018-06-18 06:49:27 -06:00
|
|
|
auto &val = index_tile(designation,p);
|
2013-10-11 09:23:32 -06:00
|
|
|
bool cur = (val.whole & mask) != 0;
|
|
|
|
if (cur != set)
|
|
|
|
{
|
|
|
|
dirty_designations = true;
|
|
|
|
val.whole = (set ? val.whole | mask : val.whole & ~mask);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::setFlagAt(df::coord2d p, df::tile_occupancy::Mask mask, bool set)
|
|
|
|
{
|
|
|
|
if(!valid) return false;
|
2018-06-18 06:49:27 -06:00
|
|
|
auto &val = index_tile(occupancy,p);
|
2013-10-11 09:23:32 -06:00
|
|
|
bool cur = (val.whole & mask) != 0;
|
|
|
|
if (cur != set)
|
|
|
|
{
|
|
|
|
dirty_occupancies = true;
|
|
|
|
val.whole = (set ? val.whole | mask : val.whole & ~mask);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
bool MapExtras::Block::setTiletypeAt(df::coord2d pos, df::tiletype tt, bool force)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!basemats)
|
|
|
|
init_tiles(true);
|
|
|
|
|
|
|
|
pos = pos & 15;
|
|
|
|
|
|
|
|
dirty_tiles = true;
|
|
|
|
tiles->raw_tiles[pos.x][pos.y] = tt;
|
|
|
|
tiles->dirty_raw.setassignment(pos, true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-21 17:27:16 -07:00
|
|
|
static df::block_square_event_designation_priorityst *getPriorityEvent(df::map_block *block, bool write)
|
|
|
|
{
|
|
|
|
vector<df::block_square_event_designation_priorityst*> events;
|
|
|
|
Maps::SortBlockEvents(block, 0, 0, 0, 0, 0, 0, 0, &events);
|
|
|
|
if (events.empty())
|
|
|
|
{
|
|
|
|
if (!write)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
auto event = df::allocate<df::block_square_event_designation_priorityst>();
|
|
|
|
block->block_events.push_back((df::block_square_event*)event);
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
return events[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t MapExtras::Block::priorityAt(df::coord2d pos)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (auto event = getPriorityEvent(block, false))
|
|
|
|
return event->priority[pos.x % 16][pos.y % 16];
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::setPriorityAt(df::coord2d pos, int32_t priority)
|
|
|
|
{
|
|
|
|
if (!block || priority < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto event = getPriorityEvent(block, true);
|
|
|
|
event->priority[pos.x % 16][pos.y % 16] = priority;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
bool MapExtras::Block::setVeinMaterialAt(df::coord2d pos, int16_t mat, df::inclusion_type type)
|
|
|
|
{
|
|
|
|
using namespace df::enums::tiletype_material;
|
|
|
|
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!basemats)
|
|
|
|
init_tiles(true);
|
|
|
|
|
|
|
|
pos = pos & 15;
|
|
|
|
auto &cur_mat = basemats->veinmat[pos.x][pos.y];
|
|
|
|
auto &cur_type = basemats->veintype[pos.x][pos.y];
|
|
|
|
|
2013-10-05 10:07:21 -06:00
|
|
|
if (cur_mat == mat && (mat < 0 || cur_type == type))
|
2013-10-04 07:04:42 -06:00
|
|
|
return true;
|
|
|
|
|
|
|
|
if (mat >= 0)
|
|
|
|
{
|
|
|
|
// Cannot allocate veins?
|
|
|
|
if (!df::block_square_event_mineralst::_identity.can_instantiate())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Bad material?
|
2013-10-05 10:07:21 -06:00
|
|
|
if (!isStoneInorganic(mat))
|
2013-10-04 07:04:42 -06:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
dirty_veins = true;
|
|
|
|
cur_mat = mat;
|
|
|
|
cur_type = (uint8_t)type;
|
|
|
|
basemats->vein_dirty.setassignment(pos, true);
|
|
|
|
|
|
|
|
if (tileMaterial(tiles->base_tiles[pos.x][pos.y]) == MINERAL)
|
2013-10-05 10:07:21 -06:00
|
|
|
basemats->set_base_mat(tiles, pos, 0, mat);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::setStoneAt(df::coord2d pos, df::tiletype tile, int16_t mat, df::inclusion_type type, bool force_vein, bool kill_veins)
|
|
|
|
{
|
|
|
|
using namespace df::enums::tiletype_material;
|
|
|
|
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!isStoneInorganic(mat) || !isCoreMaterial(tile))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!basemats)
|
|
|
|
init_tiles(true);
|
|
|
|
|
|
|
|
// Check if anything needs to be done
|
|
|
|
pos = pos & 15;
|
|
|
|
auto &cur_tile = tiles->base_tiles[pos.x][pos.y];
|
|
|
|
auto &cur_mattype = basemats->mat_type[pos.x][pos.y];
|
|
|
|
auto &cur_matidx = basemats->mat_index[pos.x][pos.y];
|
|
|
|
|
|
|
|
if (!force_vein && cur_tile == tile && cur_mattype == 0 && cur_matidx == mat)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
bool vein = false;
|
|
|
|
|
|
|
|
if (force_vein && type != inclusion_type::CLUSTER)
|
|
|
|
vein = true;
|
|
|
|
else if (mat == lavaStoneAt(pos))
|
|
|
|
tile = matchTileMaterial(tile, LAVA_STONE);
|
|
|
|
else if (mat == layerMaterialAt(pos))
|
|
|
|
tile = matchTileMaterial(tile, STONE);
|
|
|
|
else
|
|
|
|
vein = true;
|
|
|
|
|
|
|
|
if (vein)
|
|
|
|
tile = matchTileMaterial(tile, MINERAL);
|
|
|
|
|
|
|
|
if (tile == tiletype::Void)
|
|
|
|
return false;
|
|
|
|
if ((vein || kill_veins) && !setVeinMaterialAt(pos, vein ? mat : -1, type))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (cur_tile != tile)
|
|
|
|
{
|
|
|
|
dirty_tiles = true;
|
|
|
|
tiles->set_base_tile(pos, tile);
|
|
|
|
}
|
|
|
|
|
|
|
|
basemats->set_base_mat(tiles, pos, 0, mat);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::setSoilAt(df::coord2d pos, df::tiletype tile, bool kill_veins)
|
|
|
|
{
|
|
|
|
using namespace df::enums::tiletype_material;
|
|
|
|
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!isCoreMaterial(tile))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!basemats)
|
|
|
|
init_tiles(true);
|
|
|
|
|
|
|
|
pos = pos & 15;
|
|
|
|
auto &cur_tile = tiles->base_tiles[pos.x][pos.y];
|
|
|
|
|
|
|
|
tile = matchTileMaterial(tile, SOIL);
|
|
|
|
if (tile == tiletype::Void)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (kill_veins && !setVeinMaterialAt(pos, -1))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (cur_tile != tile)
|
|
|
|
{
|
|
|
|
dirty_tiles = true;
|
|
|
|
tiles->set_base_tile(pos, tile);
|
|
|
|
}
|
|
|
|
|
|
|
|
int mat = layerMaterialAt(pos);
|
|
|
|
if (BlockInfo::getGroundType(mat) == BlockInfo::G_STONE)
|
|
|
|
mat = biomeInfoAt(pos).default_soil;
|
|
|
|
|
|
|
|
basemats->set_base_mat(tiles, pos, 0, mat);
|
2013-10-04 07:04:42 -06:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
void MapExtras::Block::ParseTiles(TileInfo *tiles)
|
|
|
|
{
|
|
|
|
tiletypes40d icetiles;
|
|
|
|
BlockInfo::SquashFrozenLiquids(block, icetiles);
|
|
|
|
|
|
|
|
COPY(tiles->raw_tiles, block->tiletype);
|
|
|
|
|
|
|
|
for (int x = 0; x < 16; x++)
|
|
|
|
{
|
|
|
|
for (int y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
using namespace df::enums::tiletype_material;
|
|
|
|
|
|
|
|
df::tiletype tt = tiles->raw_tiles[x][y];
|
|
|
|
df::coord coord = block->map_pos + df::coord(x,y,0);
|
2013-10-06 04:18:19 -06:00
|
|
|
bool had_ice = false;
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
// Frozen liquid comes topmost
|
|
|
|
if (tileMaterial(tt) == FROZEN_LIQUID)
|
|
|
|
{
|
2013-10-06 04:18:19 -06:00
|
|
|
had_ice = true;
|
2013-10-05 10:07:21 -06:00
|
|
|
tiles->init_iceinfo();
|
|
|
|
|
|
|
|
tiles->ice_info->frozen.setassignment(x,y,true);
|
2013-10-03 06:50:00 -06:00
|
|
|
if (icetiles[x][y] != tiletype::Void)
|
|
|
|
{
|
|
|
|
tt = icetiles[x][y];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The next layer may be construction
|
|
|
|
bool is_con = false;
|
|
|
|
|
|
|
|
if (tileMaterial(tt) == CONSTRUCTION)
|
|
|
|
{
|
|
|
|
df::construction *con = df::construction::find(coord);
|
|
|
|
if (con)
|
|
|
|
{
|
|
|
|
if (!tiles->con_info)
|
|
|
|
tiles->init_coninfo();
|
|
|
|
|
|
|
|
is_con = true;
|
|
|
|
tiles->con_info->constructed.setassignment(x,y,true);
|
|
|
|
tiles->con_info->tiles[x][y] = tt;
|
|
|
|
tiles->con_info->mat_type[x][y] = con->mat_type;
|
|
|
|
tiles->con_info->mat_index[x][y] = con->mat_index;
|
|
|
|
|
|
|
|
tt = con->original_tile;
|
2013-10-06 04:18:19 -06:00
|
|
|
|
|
|
|
// Ice under construction is buggy:
|
|
|
|
// http://www.bay12games.com/dwarves/mantisbt/view.php?id=6330
|
|
|
|
// Therefore we just pretend it wasn't there (if it isn't too late),
|
|
|
|
// and overwrite it if/when we write the base layer.
|
|
|
|
if (!had_ice && tileMaterial(tt) == FROZEN_LIQUID)
|
|
|
|
{
|
|
|
|
if (icetiles[x][y] != tiletype::Void)
|
|
|
|
tt = icetiles[x][y];
|
|
|
|
}
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, base material
|
|
|
|
tiles->base_tiles[x][y] = tt;
|
|
|
|
|
|
|
|
// Copy base info back to construction layer
|
|
|
|
if (tiles->con_info && !is_con)
|
|
|
|
tiles->con_info->tiles[x][y] = tt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-05 10:07:21 -06:00
|
|
|
void MapExtras::Block::TileInfo::set_base_tile(df::coord2d pos, df::tiletype tile)
|
|
|
|
{
|
|
|
|
base_tiles[pos.x][pos.y] = tile;
|
|
|
|
|
|
|
|
if (con_info)
|
|
|
|
{
|
|
|
|
if (con_info->constructed.getassignment(pos))
|
|
|
|
{
|
|
|
|
con_info->dirty.setassignment(pos, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
con_info->tiles[pos.x][pos.y] = tile;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ice_info && ice_info->frozen.getassignment(pos))
|
|
|
|
{
|
|
|
|
ice_info->dirty.setassignment(pos, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dirty_raw.setassignment(pos, true);
|
|
|
|
raw_tiles[pos.x][pos.y] = tile;
|
|
|
|
}
|
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
void MapExtras::Block::WriteTiles(TileInfo *tiles)
|
|
|
|
{
|
2013-10-05 10:07:21 -06:00
|
|
|
if (tiles->con_info)
|
2013-10-04 07:04:42 -06:00
|
|
|
{
|
|
|
|
for (int y = 0; y < 16; y++)
|
2013-10-05 10:07:21 -06:00
|
|
|
{
|
|
|
|
if (!tiles->con_info->dirty[y])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (int x = 0; x < 16; x++)
|
|
|
|
{
|
|
|
|
if (!tiles->con_info->dirty.getassignment(x,y))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
df::coord coord = block->map_pos + df::coord(x,y,0);
|
|
|
|
df::construction *con = df::construction::find(coord);
|
|
|
|
if (con)
|
|
|
|
con->original_tile = tiles->base_tiles[x][y];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tiles->con_info->dirty.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tiles->ice_info && tiles->ice_info->dirty.has_assignments())
|
|
|
|
{
|
|
|
|
df::tiletype (*newtiles)[16] = (tiles->con_info ? tiles->con_info->tiles : tiles->base_tiles);
|
|
|
|
|
|
|
|
for (int i = block->block_events.size()-1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
auto event = block->block_events[i];
|
|
|
|
auto ice = strict_virtual_cast<df::block_square_event_frozen_liquidst>(event);
|
|
|
|
if (!ice)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (int y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
if (!tiles->ice_info->dirty[y])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (int x = 0; x < 16; x++)
|
|
|
|
{
|
|
|
|
if (!tiles->ice_info->dirty.getassignment(x,y))
|
|
|
|
continue;
|
|
|
|
if (ice->tiles[x][y] == tiletype::Void)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ice->tiles[x][y] = newtiles[x][y];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tiles->ice_info->dirty.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
if (!tiles->dirty_raw[y])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (int x = 0; x < 16; x++)
|
2013-10-04 07:04:42 -06:00
|
|
|
{
|
|
|
|
if (tiles->dirty_raw.getassignment(x,y))
|
|
|
|
block->tiletype[x][y] = tiles->raw_tiles[x][y];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
void MapExtras::Block::ParseBasemats(TileInfo *tiles, BasematInfo *bmats)
|
|
|
|
{
|
|
|
|
BlockInfo info;
|
|
|
|
|
|
|
|
info.prepare(this);
|
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
COPY(bmats->veinmat, info.veinmats);
|
|
|
|
COPY(bmats->veintype, info.veintype);
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
for (int x = 0; x < 16; x++)
|
|
|
|
{
|
|
|
|
for (int y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
using namespace df::enums::tiletype_material;
|
|
|
|
|
|
|
|
auto tt = tiles->base_tiles[x][y];
|
|
|
|
auto mat = info.getBaseMaterial(tt, df::coord2d(x,y));
|
|
|
|
|
2013-10-05 10:07:21 -06:00
|
|
|
bmats->set_base_mat(tiles, df::coord2d(x,y), mat.mat_type, mat.mat_index);
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-05 10:07:21 -06:00
|
|
|
void MapExtras::Block::BasematInfo::set_base_mat(TileInfo *tiles, df::coord2d pos, int16_t type, int16_t idx)
|
|
|
|
{
|
|
|
|
mat_type[pos.x][pos.y] = type;
|
|
|
|
mat_index[pos.x][pos.y] = idx;
|
|
|
|
|
|
|
|
// Copy base info back to construction layer
|
|
|
|
if (tiles->con_info && !tiles->con_info->constructed.getassignment(pos))
|
|
|
|
{
|
|
|
|
tiles->con_info->mat_type[pos.x][pos.y] = type;
|
|
|
|
tiles->con_info->mat_index[pos.x][pos.y] = idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
void MapExtras::Block::WriteVeins(TileInfo *tiles, BasematInfo *bmats)
|
|
|
|
{
|
|
|
|
// Classify modified tiles into distinct buckets
|
|
|
|
typedef std::pair<int, df::inclusion_type> t_vein_key;
|
|
|
|
std::map<t_vein_key, df::tile_bitmask> added;
|
|
|
|
std::set<t_vein_key> discovered;
|
|
|
|
|
|
|
|
for (int y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
if (!bmats->vein_dirty[y])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (int x = 0; x < 16; x++)
|
|
|
|
{
|
|
|
|
using namespace df::enums::tiletype_material;
|
|
|
|
|
|
|
|
if (!bmats->vein_dirty.getassignment(x,y))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int matidx = bmats->veinmat[x][y];
|
|
|
|
if (matidx >= 0)
|
|
|
|
{
|
|
|
|
t_vein_key key(matidx, (df::inclusion_type)bmats->veintype[x][y]);
|
|
|
|
|
|
|
|
added[key].setassignment(x,y,true);
|
|
|
|
if (!designation[x][y].bits.hidden)
|
|
|
|
discovered.insert(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adjust existing veins
|
|
|
|
for (int i = block->block_events.size()-1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
auto event = block->block_events[i];
|
|
|
|
auto vein = strict_virtual_cast<df::block_square_event_mineralst>(event);
|
|
|
|
if (!vein)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// First clear all dirty tiles
|
|
|
|
vein->tile_bitmask -= bmats->vein_dirty;
|
|
|
|
|
|
|
|
// Then add new if there are any matching ones
|
|
|
|
t_vein_key key(vein->inorganic_mat, BlockInfo::getVeinType(vein->flags));
|
|
|
|
|
|
|
|
if (added.count(key))
|
|
|
|
{
|
|
|
|
vein->tile_bitmask |= added[key];
|
|
|
|
if (discovered.count(key))
|
|
|
|
vein->flags.bits.discovered = true;
|
|
|
|
|
|
|
|
added.erase(key);
|
|
|
|
discovered.erase(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete if became empty
|
|
|
|
if (!vein->tile_bitmask.has_assignments())
|
|
|
|
{
|
|
|
|
vector_erase_at(block->block_events, i);
|
|
|
|
delete vein;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally add new vein objects if there are new unmatched
|
|
|
|
for (auto it = added.begin(); it != added.end(); ++it)
|
|
|
|
{
|
|
|
|
auto vein = df::allocate<df::block_square_event_mineralst>();
|
|
|
|
if (!vein)
|
|
|
|
break;
|
|
|
|
|
|
|
|
block->block_events.push_back(vein);
|
|
|
|
|
|
|
|
vein->inorganic_mat = it->first.first;
|
|
|
|
vein->tile_bitmask = it->second;
|
|
|
|
vein->flags.bits.discovered = discovered.count(it->first)>0;
|
|
|
|
BlockInfo::setVeinType(vein->flags, it->first.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
bmats->vein_dirty.clear();
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
bool MapExtras::Block::isDirty()
|
|
|
|
{
|
2013-10-04 07:04:42 -06:00
|
|
|
return valid && (
|
|
|
|
dirty_designations ||
|
|
|
|
dirty_tiles ||
|
|
|
|
dirty_veins ||
|
|
|
|
dirty_temperatures ||
|
|
|
|
dirty_occupancies
|
|
|
|
);
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::Write ()
|
|
|
|
{
|
|
|
|
if(!valid) return false;
|
|
|
|
|
|
|
|
if(dirty_designations)
|
|
|
|
{
|
|
|
|
COPY(block->designation, designation);
|
|
|
|
block->flags.bits.designated = true;
|
2018-06-22 06:56:39 -06:00
|
|
|
block->dsgn_check_cooldown = 0;
|
2013-10-03 06:50:00 -06:00
|
|
|
dirty_designations = false;
|
|
|
|
}
|
2013-10-04 07:04:42 -06:00
|
|
|
if(dirty_tiles || dirty_veins)
|
2013-10-03 06:50:00 -06:00
|
|
|
{
|
2013-10-04 07:04:42 -06:00
|
|
|
if (tiles && dirty_tiles)
|
|
|
|
WriteTiles(tiles);
|
|
|
|
if (basemats && dirty_veins)
|
|
|
|
WriteVeins(tiles, basemats);
|
2013-10-03 06:50:00 -06:00
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
dirty_tiles = dirty_veins = false;
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
delete tiles; tiles = NULL;
|
|
|
|
delete basemats; basemats = NULL;
|
|
|
|
}
|
|
|
|
if(dirty_temperatures)
|
|
|
|
{
|
|
|
|
COPY(block->temperature_1, temp1);
|
|
|
|
COPY(block->temperature_2, temp2);
|
|
|
|
dirty_temperatures = false;
|
|
|
|
}
|
|
|
|
if(dirty_occupancies)
|
|
|
|
{
|
|
|
|
COPY(block->occupancy, occupancy);
|
|
|
|
dirty_occupancies = false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::BlockInfo::prepare(Block *mblock)
|
|
|
|
{
|
|
|
|
this->mblock = mblock;
|
|
|
|
|
|
|
|
block = mblock->getRaw();
|
|
|
|
parent = mblock->getParent();
|
2014-07-23 08:27:47 -06:00
|
|
|
column = Maps::getBlockColumn((block->map_pos.x / 48) * 3, (block->map_pos.y / 48) * 3);
|
2013-10-03 06:50:00 -06:00
|
|
|
|
2014-07-23 08:27:47 -06:00
|
|
|
SquashVeins(block, veinmats, veintype);
|
2013-10-03 06:50:00 -06:00
|
|
|
SquashGrass(block, grass);
|
|
|
|
|
2014-07-20 05:11:20 -06:00
|
|
|
for (size_t i = 0; i < column->plants.size(); i++)
|
2013-10-03 06:50:00 -06:00
|
|
|
{
|
2014-07-20 05:11:20 -06:00
|
|
|
auto pp = column->plants[i];
|
|
|
|
// A plant without tree_info is single tile
|
|
|
|
// TODO: verify that x any y lie inside the block.
|
2014-07-23 08:27:47 -06:00
|
|
|
if (!pp->tree_info)
|
2014-07-20 05:11:20 -06:00
|
|
|
{
|
2014-07-23 08:27:47 -06:00
|
|
|
if (pp->pos.z == block->map_pos.z)
|
2014-07-20 05:11:20 -06:00
|
|
|
plants[pp->pos] = pp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// tree_info contains vertical slices of the tree. This ensures there's a slice for our Z-level.
|
|
|
|
df::plant_tree_info * info = pp->tree_info;
|
2014-07-23 08:27:47 -06:00
|
|
|
if (!((pp->pos.z - info->roots_depth <= block->map_pos.z) && ((pp->pos.z + info->body_height) > block->map_pos.z)))
|
2014-07-20 05:11:20 -06:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Parse through a single horizontal slice of the tree.
|
2014-07-23 08:27:47 -06:00
|
|
|
for (int xx = 0; xx < info->dim_x; xx++)
|
|
|
|
for (int yy = 0; yy < info->dim_y; yy++)
|
|
|
|
{
|
|
|
|
// Any non-zero value here other than blocked means there's some sort of branch here.
|
|
|
|
// If the block is at or above the plant's base level, we use the body array
|
|
|
|
// otherwise we use the roots.
|
|
|
|
// TODO: verify that the tree bounds intersect the block.
|
|
|
|
df::plant_tree_tile tile;
|
|
|
|
int z_diff = block->map_pos.z - pp->pos.z;
|
|
|
|
if (z_diff >= 0)
|
|
|
|
tile = info->body[z_diff][xx + (yy*info->dim_x)];
|
2014-08-02 05:39:59 -06:00
|
|
|
else
|
|
|
|
tile = info->roots[-1 - z_diff][xx + (yy*info->dim_x)];
|
2014-07-23 08:27:47 -06:00
|
|
|
if (tile.whole && !(tile.bits.blocked))
|
2014-07-20 05:11:20 -06:00
|
|
|
{
|
2014-07-23 08:27:47 -06:00
|
|
|
df::coord pos = pp->pos;
|
|
|
|
pos.x = pos.x - (info->dim_x / 2) + xx;
|
|
|
|
pos.y = pos.y - (info->dim_y / 2) + yy;
|
|
|
|
pos.z = block->map_pos.z;
|
|
|
|
plants[pos] = pp;
|
2014-07-20 05:11:20 -06:00
|
|
|
}
|
2014-07-23 08:27:47 -06:00
|
|
|
}
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
global_feature = Maps::getGlobalInitFeature(block->global_feature);
|
|
|
|
local_feature = Maps::getLocalInitFeature(block->region_pos, block->local_feature);
|
|
|
|
}
|
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
BlockInfo::GroundType MapExtras::BlockInfo::getGroundType(int material)
|
|
|
|
{
|
|
|
|
auto raw = df::inorganic_raw::find(material);
|
|
|
|
if (!raw)
|
|
|
|
return G_UNKNOWN;
|
|
|
|
|
|
|
|
if (raw->flags.is_set(inorganic_flags::SOIL_ANY))
|
|
|
|
return G_SOIL;
|
|
|
|
|
|
|
|
return G_STONE;
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
t_matpair MapExtras::BlockInfo::getBaseMaterial(df::tiletype tt, df::coord2d pos)
|
|
|
|
{
|
|
|
|
using namespace df::enums::tiletype_material;
|
|
|
|
|
|
|
|
t_matpair rv(0,-1);
|
|
|
|
int x = pos.x, y = pos.y;
|
|
|
|
|
|
|
|
switch (tileMaterial(tt)) {
|
|
|
|
case NONE:
|
|
|
|
case AIR:
|
|
|
|
rv.mat_type = -1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DRIFTWOOD:
|
|
|
|
case SOIL:
|
|
|
|
{
|
2013-10-03 07:54:28 -06:00
|
|
|
auto &biome = mblock->biomeInfoAt(pos);
|
|
|
|
rv.mat_index = biome.layer_stone[mblock->layerIndexAt(pos)];
|
2013-10-03 06:50:00 -06:00
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
if (getGroundType(rv.mat_index) == G_STONE)
|
2013-10-03 06:50:00 -06:00
|
|
|
{
|
2013-10-03 07:54:28 -06:00
|
|
|
int idx = biome.default_soil;
|
2013-10-03 06:50:00 -06:00
|
|
|
if (idx >= 0)
|
|
|
|
rv.mat_index = idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case STONE:
|
|
|
|
{
|
2013-10-03 07:54:28 -06:00
|
|
|
auto &biome = mblock->biomeInfoAt(pos);
|
|
|
|
rv.mat_index = biome.layer_stone[mblock->layerIndexAt(pos)];
|
2013-10-03 06:50:00 -06:00
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
if (getGroundType(rv.mat_index) == G_SOIL)
|
2013-10-03 06:50:00 -06:00
|
|
|
{
|
2013-10-03 07:54:28 -06:00
|
|
|
int idx = biome.default_stone;
|
2013-10-03 06:50:00 -06:00
|
|
|
if (idx >= 0)
|
|
|
|
rv.mat_index = idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MINERAL:
|
|
|
|
rv.mat_index = veinmats[x][y];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LAVA_STONE:
|
2013-10-03 07:54:28 -06:00
|
|
|
rv.mat_index = mblock->biomeInfoAt(pos).lava_stone;
|
2013-10-03 06:50:00 -06:00
|
|
|
break;
|
|
|
|
|
2014-07-23 08:27:47 -06:00
|
|
|
case MUSHROOM:
|
2014-07-20 05:11:20 -06:00
|
|
|
case ROOT:
|
|
|
|
case TREE:
|
2013-10-03 06:50:00 -06:00
|
|
|
case PLANT:
|
|
|
|
rv.mat_type = MaterialInfo::PLANT_BASE;
|
|
|
|
if (auto plant = plants[block->map_pos + df::coord(x,y,0)])
|
|
|
|
{
|
|
|
|
if (auto raw = df::plant_raw::find(plant->material))
|
|
|
|
{
|
|
|
|
rv.mat_type = raw->material_defs.type_basic_mat;
|
|
|
|
rv.mat_index = raw->material_defs.idx_basic_mat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GRASS_LIGHT:
|
|
|
|
case GRASS_DARK:
|
|
|
|
case GRASS_DRY:
|
|
|
|
case GRASS_DEAD:
|
|
|
|
rv.mat_type = MaterialInfo::PLANT_BASE;
|
|
|
|
if (auto raw = df::plant_raw::find(grass[x][y]))
|
|
|
|
{
|
|
|
|
rv.mat_type = raw->material_defs.type_basic_mat;
|
|
|
|
rv.mat_index = raw->material_defs.idx_basic_mat;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FEATURE:
|
|
|
|
{
|
|
|
|
auto dsgn = block->designation[x][y];
|
|
|
|
|
|
|
|
if (dsgn.bits.feature_local && local_feature)
|
|
|
|
local_feature->getMaterial(&rv.mat_type, &rv.mat_index);
|
|
|
|
else if (dsgn.bits.feature_global && global_feature)
|
|
|
|
global_feature->getMaterial(&rv.mat_type, &rv.mat_index);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case CONSTRUCTION: // just a fallback
|
|
|
|
case MAGMA:
|
|
|
|
case HFS:
|
2018-04-05 15:50:04 -06:00
|
|
|
case UNDERWORLD_GATE:
|
2013-10-03 06:50:00 -06:00
|
|
|
// use generic 'rock'
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FROZEN_LIQUID:
|
|
|
|
rv.mat_type = builtin_mats::WATER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case POOL:
|
|
|
|
case BROOK:
|
|
|
|
case RIVER:
|
2013-10-03 07:54:28 -06:00
|
|
|
rv.mat_index = mblock->layerMaterialAt(pos);
|
2013-10-03 06:50:00 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ASHES:
|
|
|
|
case FIRE:
|
|
|
|
case CAMPFIRE:
|
|
|
|
rv.mat_type = builtin_mats::ASH;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2013-10-04 07:04:42 -06:00
|
|
|
df::inclusion_type MapExtras::BlockInfo::getVeinType(DFVeinFlags &flags)
|
|
|
|
{
|
|
|
|
using namespace df::enums::inclusion_type;
|
|
|
|
|
|
|
|
if (flags.bits.cluster_small)
|
|
|
|
return CLUSTER_SMALL;
|
|
|
|
if (flags.bits.cluster_one)
|
|
|
|
return CLUSTER_ONE;
|
|
|
|
if (flags.bits.vein)
|
|
|
|
return VEIN;
|
|
|
|
if (flags.bits.cluster)
|
|
|
|
return CLUSTER;
|
|
|
|
|
|
|
|
return df::inclusion_type(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::BlockInfo::setVeinType(DFVeinFlags &info, df::inclusion_type type)
|
|
|
|
{
|
|
|
|
using namespace df::enums::inclusion_type;
|
|
|
|
|
|
|
|
info.bits.cluster = info.bits.vein = info.bits.cluster_small = info.bits.cluster_one = false;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case VEIN: info.bits.vein = true; break;
|
|
|
|
case CLUSTER: info.bits.cluster = true; break;
|
|
|
|
case CLUSTER_SMALL: info.bits.cluster_small = true; break;
|
|
|
|
case CLUSTER_ONE: info.bits.cluster_one = true; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::BlockInfo::SquashVeins(df::map_block *mb, t_blockmaterials & materials, t_veintype &veintype)
|
2013-10-03 06:50:00 -06:00
|
|
|
{
|
|
|
|
std::vector <df::block_square_event_mineralst *> veins;
|
|
|
|
Maps::SortBlockEvents(mb,&veins);
|
|
|
|
memset(materials,-1,sizeof(materials));
|
2013-10-04 07:04:42 -06:00
|
|
|
memset(veintype, 0, sizeof(t_veintype));
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
for (uint32_t x = 0;x<16;x++) for (uint32_t y = 0; y< 16;y++)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < veins.size(); i++)
|
|
|
|
{
|
|
|
|
if (veins[i]->getassignment(x,y))
|
2013-10-04 07:04:42 -06:00
|
|
|
{
|
2013-10-03 06:50:00 -06:00
|
|
|
materials[x][y] = veins[i]->inorganic_mat;
|
2013-10-04 07:04:42 -06:00
|
|
|
veintype[x][y] = (uint8_t)getVeinType(veins[i]->flags);
|
|
|
|
}
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::BlockInfo::SquashFrozenLiquids(df::map_block *mb, tiletypes40d & frozen)
|
|
|
|
{
|
|
|
|
std::vector <df::block_square_event_frozen_liquidst *> ices;
|
|
|
|
Maps::SortBlockEvents(mb,NULL,&ices);
|
|
|
|
memset(frozen,0,sizeof(frozen));
|
|
|
|
for (uint32_t x = 0; x < 16; x++) for (uint32_t y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < ices.size(); i++)
|
|
|
|
{
|
|
|
|
df::tiletype tt2 = ices[i]->tiles[x][y];
|
|
|
|
if (tt2 != tiletype::Void)
|
|
|
|
{
|
|
|
|
frozen[x][y] = tt2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::BlockInfo::SquashRocks (df::map_block *mb, t_blockmaterials & materials,
|
|
|
|
std::vector< std::vector <int16_t> > * layerassign)
|
|
|
|
{
|
|
|
|
// get the layer materials
|
|
|
|
for (uint32_t x = 0; x < 16; x++) for (uint32_t y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
materials[x][y] = -1;
|
|
|
|
uint8_t test = mb->designation[x][y].bits.biome;
|
|
|
|
if (test >= 9)
|
|
|
|
continue;
|
|
|
|
uint8_t idx = mb->region_offset[test];
|
|
|
|
if (idx < layerassign->size())
|
|
|
|
materials[x][y] = layerassign->at(idx)[mb->designation[x][y].bits.geolayer_index];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::BlockInfo::SquashGrass(df::map_block *mb, t_blockmaterials &materials)
|
|
|
|
{
|
|
|
|
std::vector<df::block_square_event_grassst*> grasses;
|
|
|
|
Maps::SortBlockEvents(mb, NULL, NULL, NULL, &grasses);
|
|
|
|
memset(materials,-1,sizeof(materials));
|
|
|
|
for (uint32_t x = 0; x < 16; x++) for (uint32_t y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
int amount = 0;
|
|
|
|
for (size_t i = 0; i < grasses.size(); i++)
|
|
|
|
{
|
|
|
|
if (grasses[i]->amount[x][y] >= amount)
|
|
|
|
{
|
|
|
|
amount = grasses[i]->amount[x][y];
|
|
|
|
materials[x][y] = grasses[i]->plant_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int MapExtras::Block::biomeIndexAt(df::coord2d p)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return -1;
|
|
|
|
|
2018-06-18 06:49:27 -06:00
|
|
|
auto des = index_tile(designation,p);
|
2013-10-03 06:50:00 -06:00
|
|
|
uint8_t idx = des.bits.biome;
|
|
|
|
if (idx >= 9)
|
|
|
|
return -1;
|
|
|
|
idx = block->region_offset[idx];
|
2013-10-03 07:54:28 -06:00
|
|
|
if (idx >= parent->biomes.size())
|
2013-10-03 06:50:00 -06:00
|
|
|
return -1;
|
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
const BiomeInfo &Block::biomeInfoAt(df::coord2d p)
|
|
|
|
{
|
|
|
|
return parent->getBiomeByIndex(biomeIndexAt(p));
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
df::coord2d MapExtras::Block::biomeRegionAt(df::coord2d p)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return df::coord2d(-30000,-30000);
|
|
|
|
|
|
|
|
int idx = biomeIndexAt(p);
|
|
|
|
if (idx < 0)
|
|
|
|
return block->region_pos;
|
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
return parent->biomes[idx].pos;
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::GetGlobalFeature(t_feature *out)
|
|
|
|
{
|
|
|
|
out->type = (df::feature_type)-1;
|
|
|
|
if (!valid || block->global_feature < 0)
|
|
|
|
return false;
|
|
|
|
return Maps::GetGlobalFeature(*out, block->global_feature);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::GetLocalFeature(t_feature *out)
|
|
|
|
{
|
|
|
|
out->type = (df::feature_type)-1;
|
|
|
|
if (!valid || block->local_feature < 0)
|
|
|
|
return false;
|
|
|
|
return ::GetLocalFeature(*out, block->region_pos, block->local_feature);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::Block::init_item_counts()
|
|
|
|
{
|
|
|
|
if (item_counts) return;
|
|
|
|
|
|
|
|
item_counts = new T_item_counts[16];
|
|
|
|
memset(item_counts, 0, sizeof(T_item_counts)*16);
|
|
|
|
|
|
|
|
if (!block) return;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < block->items.size(); i++)
|
|
|
|
{
|
|
|
|
auto it = df::item::find(block->items[i]);
|
|
|
|
if (!it || !it->flags.bits.on_ground)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
df::coord tidx = it->pos - block->map_pos;
|
|
|
|
if (!is_valid_tile_coord(tidx) || tidx.z != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
item_counts[tidx.x][tidx.y]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::addItemOnGround(df::item *item)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
init_item_counts();
|
|
|
|
|
|
|
|
bool inserted;
|
|
|
|
insert_into_vector(block->items, item->id, &inserted);
|
|
|
|
|
|
|
|
if (inserted)
|
|
|
|
{
|
2018-06-18 06:49:27 -06:00
|
|
|
int &count = index_tile(item_counts,item->pos);
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
if (count++ == 0)
|
|
|
|
{
|
2018-06-18 06:49:27 -06:00
|
|
|
index_tile(occupancy,item->pos).bits.item = true;
|
|
|
|
index_tile(block->occupancy,item->pos).bits.item = true;
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return inserted;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapExtras::Block::removeItemOnGround(df::item *item)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
init_item_counts();
|
|
|
|
|
|
|
|
int idx = binsearch_index(block->items, item->id);
|
|
|
|
if (idx < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
vector_erase_at(block->items, idx);
|
|
|
|
|
2018-06-18 06:49:27 -06:00
|
|
|
int &count = index_tile(item_counts,item->pos);
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
if (--count == 0)
|
|
|
|
{
|
2018-06-18 06:49:27 -06:00
|
|
|
index_tile(occupancy,item->pos).bits.item = false;
|
2013-10-03 06:50:00 -06:00
|
|
|
|
2018-06-18 06:49:27 -06:00
|
|
|
auto &occ = index_tile(block->occupancy,item->pos);
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
occ.bits.item = false;
|
|
|
|
|
|
|
|
// Clear the 'site blocked' flag in the building, if any.
|
|
|
|
// Otherwise the job would be re-suspended without actually checking items.
|
|
|
|
if (occ.bits.building == tile_building_occ::Planned)
|
|
|
|
{
|
|
|
|
if (auto bld = Buildings::findAtTile(item->pos))
|
|
|
|
{
|
|
|
|
// TODO: maybe recheck other tiles like the game does.
|
|
|
|
bld->flags.bits.site_blocked = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
MapExtras::MapCache::MapCache()
|
|
|
|
{
|
|
|
|
valid = 0;
|
|
|
|
Maps::getSize(x_bmax, y_bmax, z_max);
|
|
|
|
x_tmax = x_bmax*16; y_tmax = y_bmax*16;
|
2013-10-03 07:54:28 -06:00
|
|
|
std::vector<df::coord2d> geoidx;
|
|
|
|
std::vector<std::vector<int16_t> > layer_mats;
|
2013-10-03 06:50:00 -06:00
|
|
|
validgeo = Maps::ReadGeology(&layer_mats, &geoidx);
|
|
|
|
valid = true;
|
|
|
|
|
|
|
|
if (auto data = df::global::world->world_data)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < data->region_details.size(); i++)
|
|
|
|
{
|
|
|
|
auto info = data->region_details[i];
|
|
|
|
region_details[info->pos] = info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
biomes.resize(layer_mats.size());
|
2013-10-03 06:50:00 -06:00
|
|
|
|
|
|
|
for (size_t i = 0; i < layer_mats.size(); i++)
|
|
|
|
{
|
2013-10-03 07:54:28 -06:00
|
|
|
biomes[i].pos = geoidx[i];
|
|
|
|
biomes[i].biome = Maps::getRegionBiome(geoidx[i]);
|
|
|
|
biomes[i].details = region_details[geoidx[i]];
|
|
|
|
|
|
|
|
biomes[i].geo_index = biomes[i].biome ? biomes[i].biome->geo_index : -1;
|
|
|
|
biomes[i].geobiome = df::world_geo_biome::find(biomes[i].geo_index);
|
|
|
|
|
|
|
|
biomes[i].lava_stone = -1;
|
|
|
|
biomes[i].default_soil = -1;
|
|
|
|
biomes[i].default_stone = -1;
|
2013-10-03 06:50:00 -06:00
|
|
|
|
2013-10-03 07:54:28 -06:00
|
|
|
if (biomes[i].details)
|
|
|
|
biomes[i].lava_stone = biomes[i].details->lava_stone;
|
|
|
|
|
|
|
|
memset(biomes[i].layer_stone, -1, sizeof(biomes[i].layer_stone));
|
|
|
|
|
2014-01-25 01:21:56 -07:00
|
|
|
for (size_t j = 0; j < std::min<size_t>(BiomeInfo::MAX_LAYERS,layer_mats[i].size()); j++)
|
2013-10-03 06:50:00 -06:00
|
|
|
{
|
2013-10-03 07:54:28 -06:00
|
|
|
biomes[i].layer_stone[j] = layer_mats[i][j];
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
auto raw = df::inorganic_raw::find(layer_mats[i][j]);
|
|
|
|
if (!raw)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
bool is_soil = raw->flags.is_set(inorganic_flags::SOIL_ANY);
|
|
|
|
if (is_soil)
|
2013-10-03 07:54:28 -06:00
|
|
|
biomes[i].default_soil = layer_mats[i][j];
|
|
|
|
else if (biomes[i].default_stone == -1)
|
|
|
|
biomes[i].default_stone = layer_mats[i][j];
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
2013-10-04 07:04:42 -06:00
|
|
|
|
|
|
|
while (layer_mats[i].size() < 16)
|
|
|
|
layer_mats[i].push_back(-1);
|
2013-10-03 06:50:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 06:53:13 -06:00
|
|
|
bool MapExtras::MapCache::WriteAll()
|
|
|
|
{
|
|
|
|
auto world = df::global::world;
|
|
|
|
df::job_list_link* job_link = world->jobs.list.next;
|
|
|
|
df::job_list_link* next = nullptr;
|
|
|
|
for (;job_link;job_link = next) {
|
|
|
|
next = job_link->next;
|
|
|
|
df::job* job = job_link->item;
|
|
|
|
df::coord pos = job->pos;
|
|
|
|
df::coord blockpos(pos.x>>4,pos.y>>4,pos.z);
|
|
|
|
auto iter = blocks.find(blockpos);
|
|
|
|
if (iter == blocks.end())
|
|
|
|
continue;
|
|
|
|
df::coord2d bpos(pos.x - (blockpos.x<<4),pos.y - (blockpos.y<<4));
|
|
|
|
auto block = iter->second;
|
|
|
|
if (!block->designated_tiles.test(bpos.x+bpos.y*16))
|
|
|
|
continue;
|
2018-06-18 10:50:35 -06:00
|
|
|
bool is_designed = ENUM_ATTR(job_type,is_designation,job->job_type);
|
|
|
|
if (!is_designed)
|
|
|
|
continue;
|
2018-06-18 06:53:13 -06:00
|
|
|
// Remove designation job. DF will create a new one in the next tick
|
|
|
|
// processing.
|
|
|
|
Job::removeJob(job);
|
|
|
|
}
|
|
|
|
std::map<DFCoord, Block *>::iterator p;
|
|
|
|
for(p = blocks.begin(); p != blocks.end(); p++)
|
|
|
|
{
|
|
|
|
p->second->Write();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-03 06:50:00 -06:00
|
|
|
MapExtras::Block *MapExtras::MapCache::BlockAt(DFCoord blockcoord)
|
|
|
|
{
|
|
|
|
if(!valid)
|
|
|
|
return 0;
|
|
|
|
std::map <DFCoord, Block*>::iterator iter = blocks.find(blockcoord);
|
|
|
|
if(iter != blocks.end())
|
|
|
|
{
|
|
|
|
return (*iter).second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(unsigned(blockcoord.x) < x_bmax &&
|
|
|
|
unsigned(blockcoord.y) < y_bmax &&
|
|
|
|
unsigned(blockcoord.z) < z_max)
|
|
|
|
{
|
|
|
|
Block * nblo = new Block(this, blockcoord);
|
|
|
|
blocks[blockcoord] = nblo;
|
|
|
|
return nblo;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::MapCache::discardBlock(Block *block)
|
|
|
|
{
|
|
|
|
blocks.erase(block->bcoord);
|
|
|
|
delete block;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapExtras::MapCache::resetTags()
|
|
|
|
{
|
|
|
|
for (auto it = blocks.begin(); it != blocks.end(); ++it)
|
|
|
|
{
|
|
|
|
delete[] it->second->tags;
|
|
|
|
it->second->tags = NULL;
|
|
|
|
}
|
|
|
|
}
|