2010-05-12 07:27:51 -06:00
|
|
|
/*
|
2011-06-16 15:53:39 -06:00
|
|
|
https://github.com/peterix/dfhack
|
2012-09-29 20:03:37 -06:00
|
|
|
Copyright (c) 2009-2012 Petr Mrázek (peterix@gmail.com)
|
2010-05-12 07:27:51 -06:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2011-06-16 15:53:39 -06:00
|
|
|
|
2010-05-26 04:24:45 -06:00
|
|
|
#include "Internal.h"
|
2011-04-10 02:19:15 -06:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <cstring>
|
|
|
|
using namespace std;
|
|
|
|
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "modules/World.h"
|
|
|
|
#include "MemAccess.h"
|
|
|
|
#include "VersionInfo.h"
|
|
|
|
#include "Types.h"
|
|
|
|
#include "Error.h"
|
2011-03-18 01:53:59 -06:00
|
|
|
#include "ModuleFactory.h"
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Core.h"
|
2010-05-12 07:27:51 -06:00
|
|
|
|
2012-10-11 07:34:34 -06:00
|
|
|
#include "modules/Maps.h"
|
|
|
|
|
2012-01-07 08:21:31 -07:00
|
|
|
#include "MiscUtils.h"
|
|
|
|
|
2013-11-07 01:27:53 -07:00
|
|
|
#include "VTableInterpose.h"
|
|
|
|
|
2012-01-07 08:21:31 -07:00
|
|
|
#include "DataDefs.h"
|
|
|
|
#include "df/world.h"
|
|
|
|
#include "df/historical_figure.h"
|
2012-10-11 07:34:34 -06:00
|
|
|
#include "df/map_block.h"
|
|
|
|
#include "df/block_square_event_world_constructionst.h"
|
2013-11-07 01:27:53 -07:00
|
|
|
#include "df/viewscreen_legendsst.h"
|
2012-01-07 08:21:31 -07:00
|
|
|
|
2010-05-12 07:27:51 -06:00
|
|
|
using namespace DFHack;
|
2012-10-11 07:34:34 -06:00
|
|
|
using namespace df::enums;
|
2010-05-12 07:27:51 -06:00
|
|
|
|
2012-01-24 20:51:17 -07:00
|
|
|
using df::global::world;
|
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
static int next_persistent_id = 0;
|
|
|
|
static std::multimap<std::string, int> persistent_index;
|
2012-04-01 06:43:40 -06:00
|
|
|
typedef std::pair<std::string, int> T_persistent_item;
|
|
|
|
|
2011-03-18 04:09:26 -06:00
|
|
|
bool World::ReadPauseState()
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
return DF_GLOBAL_VALUE(pause_state, false);
|
2011-03-18 04:09:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void World::SetPauseState(bool paused)
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
bool dummy;
|
|
|
|
DF_GLOBAL_VALUE(pause_state, dummy) = paused;
|
2011-03-18 04:09:26 -06:00
|
|
|
}
|
|
|
|
|
2010-05-12 07:27:51 -06:00
|
|
|
uint32_t World::ReadCurrentYear()
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
return DF_GLOBAL_VALUE(cur_year, 0);
|
2010-05-12 07:27:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t World::ReadCurrentTick()
|
|
|
|
{
|
2016-01-09 17:28:12 -07:00
|
|
|
// prevent this from returning anything less than 0,
|
|
|
|
// to avoid day/month calculations with 0xffffffff
|
|
|
|
return std::max(0, DF_GLOBAL_VALUE(cur_year_tick, 0));
|
2010-05-12 07:27:51 -06:00
|
|
|
}
|
|
|
|
|
2011-03-01 14:18:26 -07:00
|
|
|
bool World::ReadGameMode(t_gamemodes& rd)
|
2011-02-28 22:59:23 -07:00
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
if(df::global::gamemode && df::global::gametype)
|
2011-03-01 14:18:26 -07:00
|
|
|
{
|
2012-06-16 04:42:56 -06:00
|
|
|
rd.g_mode = (DFHack::GameMode)*df::global::gamemode;
|
|
|
|
rd.g_type = (DFHack::GameType)*df::global::gametype;
|
2011-03-01 14:18:26 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool World::WriteGameMode(const t_gamemodes & wr)
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
if(df::global::gamemode && df::global::gametype)
|
2011-03-01 14:18:26 -07:00
|
|
|
{
|
2012-06-16 04:42:56 -06:00
|
|
|
*df::global::gamemode = wr.g_mode;
|
|
|
|
*df::global::gametype = wr.g_type;
|
2011-03-01 14:18:26 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2011-02-28 22:59:23 -07:00
|
|
|
}
|
|
|
|
|
2011-03-18 04:09:26 -06:00
|
|
|
/*
|
|
|
|
FIXME: Japa said that he had to do this with the time stuff he got from here
|
|
|
|
Investigate.
|
|
|
|
|
|
|
|
currentYear = Wold->ReadCurrentYear();
|
|
|
|
currentTick = Wold->ReadCurrentTick();
|
|
|
|
currentMonth = (currentTick+9)/33600;
|
|
|
|
currentDay = ((currentTick+9)%33600)/1200;
|
|
|
|
currentHour = ((currentTick+9)-(((currentMonth*28)+currentDay)*1200))/50;
|
|
|
|
currentTickRel = (currentTick+9)-(((((currentMonth*28)+currentDay)*24)+currentHour)*50);
|
|
|
|
*/
|
|
|
|
|
2010-08-20 06:10:05 -06:00
|
|
|
// FIX'D according to this:
|
2010-06-05 16:56:09 -06:00
|
|
|
/*
|
|
|
|
World::ReadCurrentMonth and World::ReadCurrentDay
|
|
|
|
« Sent to: peterix on: June 04, 2010, 04:44:30 »
|
|
|
|
« You have forwarded or responded to this message. »
|
2011-03-19 23:20:23 -06:00
|
|
|
|
2010-06-05 16:56:09 -06:00
|
|
|
Shouldn't these be /28 and %28 instead of 24? There're 28 days in a DF month.
|
|
|
|
Using 28 and doing the calculation on the value stored at the memory location
|
|
|
|
specified by memory.xml gets me the current month/date.
|
|
|
|
*/
|
2010-05-12 07:27:51 -06:00
|
|
|
uint32_t World::ReadCurrentMonth()
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
return ReadCurrentTick() / 1200 / 28;
|
2010-05-12 07:27:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t World::ReadCurrentDay()
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
return ((ReadCurrentTick() / 1200) % 28) + 1;
|
2010-05-12 07:27:51 -06:00
|
|
|
}
|
2010-09-01 09:22:19 -06:00
|
|
|
|
|
|
|
uint8_t World::ReadCurrentWeather()
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
if (df::global::current_weather)
|
2012-05-23 11:51:03 -06:00
|
|
|
return (*df::global::current_weather)[2][2];
|
2010-09-01 09:22:19 -06:00
|
|
|
return 0;
|
|
|
|
}
|
2011-03-18 04:09:26 -06:00
|
|
|
|
2010-09-16 07:09:42 -06:00
|
|
|
void World::SetCurrentWeather(uint8_t weather)
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
if (df::global::current_weather)
|
2012-05-23 11:51:03 -06:00
|
|
|
memset(df::global::current_weather, weather, 25);
|
2010-09-16 07:09:42 -06:00
|
|
|
}
|
2011-07-16 17:00:50 -06:00
|
|
|
|
|
|
|
string World::ReadWorldFolder()
|
|
|
|
{
|
2012-03-14 00:56:30 -06:00
|
|
|
return world->cur_savegame.save_dir;
|
2011-07-16 17:00:50 -06:00
|
|
|
}
|
2012-01-07 08:21:31 -07:00
|
|
|
|
2015-03-09 18:08:21 -06:00
|
|
|
bool World::isFortressMode(df::game_type t)
|
|
|
|
{
|
|
|
|
if (t == -1 && df::global::gametype)
|
|
|
|
t = *df::global::gametype;
|
|
|
|
return (t == game_type::DWARF_MAIN || t == game_type::DWARF_RECLAIM ||
|
|
|
|
t == game_type::DWARF_UNRETIRE);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool World::isAdventureMode(df::game_type t)
|
|
|
|
{
|
|
|
|
if (t == -1 && df::global::gametype)
|
|
|
|
t = *df::global::gametype;
|
|
|
|
return (t == game_type::ADVENTURE_MAIN);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool World::isArena(df::game_type t)
|
|
|
|
{
|
|
|
|
if (t == -1 && df::global::gametype)
|
|
|
|
t = *df::global::gametype;
|
|
|
|
return (t == game_type::DWARF_ARENA || t == game_type::ADVENTURE_ARENA);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool World::isLegends(df::game_type t)
|
|
|
|
{
|
|
|
|
if (t == -1 && df::global::gametype)
|
|
|
|
t = *df::global::gametype;
|
|
|
|
return (t == game_type::VIEW_LEGENDS);
|
|
|
|
}
|
|
|
|
|
2012-01-07 08:21:31 -07:00
|
|
|
static PersistentDataItem dataFromHFig(df::historical_figure *hfig)
|
|
|
|
{
|
|
|
|
return PersistentDataItem(hfig->id, hfig->name.first_name, &hfig->name.nickname, hfig->name.words);
|
|
|
|
}
|
|
|
|
|
2013-11-07 01:27:53 -07:00
|
|
|
// Hide fake histfigs from legends xml export
|
|
|
|
static bool in_export_xml = false;
|
|
|
|
|
|
|
|
struct hide_fake_histfigs_hook : df::viewscreen_legendsst {
|
|
|
|
typedef df::viewscreen_legendsst interpose_base;
|
|
|
|
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, feed, (set<df::interface_key> *input))
|
|
|
|
{
|
|
|
|
if (input->count(interface_key::LEGENDS_EXPORT_XML))
|
|
|
|
{
|
|
|
|
auto &figs = df::historical_figure::get_vector();
|
|
|
|
|
|
|
|
auto it = figs.begin();
|
|
|
|
while (it != figs.end() && (*it)->id <= -100)
|
|
|
|
++it;
|
|
|
|
|
|
|
|
// Move our histfigs to a temporary vector
|
|
|
|
std::vector<df::historical_figure*> fakes(figs.begin(), it);
|
|
|
|
figs.erase(figs.begin(), it);
|
|
|
|
in_export_xml = true;
|
|
|
|
|
|
|
|
INTERPOSE_NEXT(feed)(input);
|
|
|
|
|
|
|
|
in_export_xml = false;
|
|
|
|
figs.insert(figs.begin(), fakes.begin(), fakes.end());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
INTERPOSE_NEXT(feed)(input);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE_PRIO(hide_fake_histfigs_hook, feed, -10000);
|
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
void World::ClearPersistentCache()
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
next_persistent_id = 0;
|
|
|
|
persistent_index.clear();
|
2013-11-07 01:27:53 -07:00
|
|
|
|
|
|
|
INTERPOSE_HOOK(hide_fake_histfigs_hook, feed).apply(Core::getInstance().isWorldLoaded());
|
2012-04-01 06:43:40 -06:00
|
|
|
}
|
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
static bool BuildPersistentCache()
|
2012-01-07 08:21:31 -07:00
|
|
|
{
|
2013-11-07 01:27:53 -07:00
|
|
|
if (in_export_xml)
|
|
|
|
return false;
|
2012-10-06 03:46:20 -06:00
|
|
|
if (next_persistent_id)
|
2012-04-01 06:43:40 -06:00
|
|
|
return true;
|
|
|
|
if (!Core::getInstance().isWorldLoaded())
|
|
|
|
return false;
|
|
|
|
|
2012-01-07 08:21:31 -07:00
|
|
|
std::vector<df::historical_figure*> &hfvec = df::historical_figure::get_vector();
|
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
// Determine the next entry id as min(-100, lowest_id-1)
|
2012-10-06 03:46:20 -06:00
|
|
|
next_persistent_id = -100;
|
2012-04-01 06:43:40 -06:00
|
|
|
|
|
|
|
if (hfvec.size() > 0 && hfvec[0]->id <= -100)
|
2012-10-06 03:46:20 -06:00
|
|
|
next_persistent_id = hfvec[0]->id-1;
|
2012-04-01 06:43:40 -06:00
|
|
|
|
|
|
|
// Add the entries to the lookup table
|
2012-10-06 03:46:20 -06:00
|
|
|
persistent_index.clear();
|
2012-04-01 06:43:40 -06:00
|
|
|
|
|
|
|
for (size_t i = 0; i < hfvec.size() && hfvec[i]->id <= -100; i++)
|
|
|
|
{
|
|
|
|
if (!hfvec[i]->name.has_name || hfvec[i]->name.first_name.empty())
|
|
|
|
continue;
|
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
persistent_index.insert(T_persistent_item(hfvec[i]->name.first_name, -hfvec[i]->id));
|
2012-04-01 06:43:40 -06:00
|
|
|
}
|
2012-04-05 02:32:10 -06:00
|
|
|
|
|
|
|
return true;
|
2012-04-01 06:43:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
PersistentDataItem World::AddPersistentData(const std::string &key)
|
|
|
|
{
|
|
|
|
if (!BuildPersistentCache() || key.empty())
|
|
|
|
return PersistentDataItem();
|
|
|
|
|
|
|
|
std::vector<df::historical_figure*> &hfvec = df::historical_figure::get_vector();
|
2012-01-07 08:21:31 -07:00
|
|
|
|
|
|
|
df::historical_figure *hfig = new df::historical_figure();
|
2012-11-16 07:45:51 -07:00
|
|
|
hfig->id = next_persistent_id;
|
2012-01-07 08:21:31 -07:00
|
|
|
hfig->name.has_name = true;
|
|
|
|
hfig->name.first_name = key;
|
2012-01-08 09:02:12 -07:00
|
|
|
memset(hfig->name.words, 0xFF, sizeof(hfig->name.words));
|
2012-01-07 08:21:31 -07:00
|
|
|
|
2012-11-16 07:45:51 -07:00
|
|
|
if (!hfvec.empty())
|
|
|
|
hfig->id = std::min(hfig->id, hfvec[0]->id-1);
|
|
|
|
next_persistent_id = hfig->id-1;
|
|
|
|
|
2012-01-07 08:21:31 -07:00
|
|
|
hfvec.insert(hfvec.begin(), hfig);
|
2012-04-01 06:43:40 -06:00
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
persistent_index.insert(T_persistent_item(key, -hfig->id));
|
2012-04-01 06:43:40 -06:00
|
|
|
|
2012-01-07 08:21:31 -07:00
|
|
|
return dataFromHFig(hfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
PersistentDataItem World::GetPersistentData(const std::string &key)
|
|
|
|
{
|
2012-04-01 06:43:40 -06:00
|
|
|
if (!BuildPersistentCache())
|
|
|
|
return PersistentDataItem();
|
2012-01-07 08:21:31 -07:00
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
auto it = persistent_index.find(key);
|
|
|
|
if (it != persistent_index.end())
|
2012-04-01 06:43:40 -06:00
|
|
|
return GetPersistentData(it->second);
|
2012-01-07 08:21:31 -07:00
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
return PersistentDataItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
PersistentDataItem World::GetPersistentData(int entry_id)
|
|
|
|
{
|
|
|
|
if (entry_id < 100)
|
|
|
|
return PersistentDataItem();
|
|
|
|
|
|
|
|
auto hfig = df::historical_figure::find(-entry_id);
|
|
|
|
if (hfig && hfig->name.has_name)
|
|
|
|
return dataFromHFig(hfig);
|
2012-01-07 08:21:31 -07:00
|
|
|
|
|
|
|
return PersistentDataItem();
|
|
|
|
}
|
|
|
|
|
2012-04-05 01:32:23 -06:00
|
|
|
PersistentDataItem World::GetPersistentData(const std::string &key, bool *added)
|
|
|
|
{
|
2012-09-05 11:27:42 -06:00
|
|
|
if (added) *added = false;
|
2012-04-05 01:32:23 -06:00
|
|
|
|
|
|
|
PersistentDataItem rv = GetPersistentData(key);
|
|
|
|
|
|
|
|
if (!rv.isValid())
|
|
|
|
{
|
2012-09-05 11:27:42 -06:00
|
|
|
if (added) *added = true;
|
2012-04-05 01:32:23 -06:00
|
|
|
rv = AddPersistentData(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
void World::GetPersistentData(std::vector<PersistentDataItem> *vec, const std::string &key, bool prefix)
|
2012-01-07 08:21:31 -07:00
|
|
|
{
|
2012-09-12 10:57:25 -06:00
|
|
|
vec->clear();
|
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
if (!BuildPersistentCache())
|
|
|
|
return;
|
2012-01-07 08:21:31 -07:00
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
auto eqrange = persistent_index.equal_range(key);
|
2012-04-01 06:43:40 -06:00
|
|
|
|
|
|
|
if (prefix)
|
|
|
|
{
|
|
|
|
if (key.empty())
|
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
eqrange.first = persistent_index.begin();
|
|
|
|
eqrange.second = persistent_index.end();
|
2012-04-01 06:43:40 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string bound = key;
|
|
|
|
if (bound[bound.size()-1] != '/')
|
|
|
|
bound += "/";
|
2012-10-06 03:46:20 -06:00
|
|
|
eqrange.first = persistent_index.lower_bound(bound);
|
2012-04-01 06:43:40 -06:00
|
|
|
|
|
|
|
bound[bound.size()-1]++;
|
2012-10-06 03:46:20 -06:00
|
|
|
eqrange.second = persistent_index.lower_bound(bound);
|
2012-04-01 06:43:40 -06:00
|
|
|
}
|
|
|
|
}
|
2012-01-07 08:21:31 -07:00
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
for (auto it = eqrange.first; it != eqrange.second; ++it)
|
|
|
|
{
|
|
|
|
auto hfig = df::historical_figure::find(-it->second);
|
|
|
|
if (hfig && hfig->name.has_name)
|
2012-01-07 08:21:31 -07:00
|
|
|
vec->push_back(dataFromHFig(hfig));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
bool World::DeletePersistentData(const PersistentDataItem &item)
|
2012-01-07 08:21:31 -07:00
|
|
|
{
|
2012-10-06 03:46:20 -06:00
|
|
|
int id = item.raw_id();
|
|
|
|
if (id > -100)
|
2012-04-01 06:43:40 -06:00
|
|
|
return false;
|
|
|
|
if (!BuildPersistentCache())
|
|
|
|
return false;
|
2012-01-07 08:21:31 -07:00
|
|
|
|
|
|
|
std::vector<df::historical_figure*> &hfvec = df::historical_figure::get_vector();
|
2012-04-01 06:43:40 -06:00
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
auto eqrange = persistent_index.equal_range(item.key());
|
2012-04-01 06:43:40 -06:00
|
|
|
|
2012-09-12 10:57:25 -06:00
|
|
|
for (auto it2 = eqrange.first; it2 != eqrange.second; )
|
2012-04-01 06:43:40 -06:00
|
|
|
{
|
2012-09-12 10:57:25 -06:00
|
|
|
auto it = it2; ++it2;
|
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
if (it->second != -id)
|
2012-04-01 06:43:40 -06:00
|
|
|
continue;
|
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
persistent_index.erase(it);
|
2012-04-01 06:43:40 -06:00
|
|
|
|
2012-10-06 03:46:20 -06:00
|
|
|
int idx = binsearch_index(hfvec, id);
|
2012-04-01 06:43:40 -06:00
|
|
|
|
|
|
|
if (idx >= 0) {
|
|
|
|
delete hfvec[idx];
|
|
|
|
hfvec.erase(hfvec.begin()+idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2012-01-07 08:21:31 -07:00
|
|
|
}
|
2012-04-01 06:43:40 -06:00
|
|
|
|
|
|
|
return false;
|
2012-01-07 08:21:31 -07:00
|
|
|
}
|
2012-10-11 07:34:34 -06:00
|
|
|
|
|
|
|
df::tile_bitmask *World::getPersistentTilemask(const PersistentDataItem &item, df::map_block *block, bool create)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
int id = item.raw_id();
|
|
|
|
if (id > -100)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < block->block_events.size(); i++)
|
|
|
|
{
|
|
|
|
auto ev = block->block_events[i];
|
|
|
|
if (ev->getType() != block_square_event_type::world_construction)
|
|
|
|
continue;
|
|
|
|
auto wcsev = strict_virtual_cast<df::block_square_event_world_constructionst>(ev);
|
|
|
|
if (!wcsev || wcsev->construction_id != id)
|
|
|
|
continue;
|
|
|
|
return &wcsev->tile_bitmask;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!create)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
auto ev = df::allocate<df::block_square_event_world_constructionst>();
|
|
|
|
if (!ev)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ev->construction_id = id;
|
|
|
|
ev->tile_bitmask.clear();
|
|
|
|
vector_insert_at(block->block_events, 0, (df::block_square_event*)ev);
|
|
|
|
|
|
|
|
return &ev->tile_bitmask;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool World::deletePersistentTilemask(const PersistentDataItem &item, df::map_block *block)
|
|
|
|
{
|
|
|
|
if (!block)
|
|
|
|
return false;
|
|
|
|
int id = item.raw_id();
|
|
|
|
if (id > -100)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
for (int i = block->block_events.size()-1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
auto ev = block->block_events[i];
|
|
|
|
if (ev->getType() != block_square_event_type::world_construction)
|
|
|
|
continue;
|
|
|
|
auto wcsev = strict_virtual_cast<df::block_square_event_world_constructionst>(ev);
|
|
|
|
if (!wcsev || wcsev->construction_id != id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
delete wcsev;
|
|
|
|
vector_erase_at(block->block_events, i);
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|