dfhack/library/modules/Units.cpp

620 lines
17 KiB
C++

/*
https://github.com/peterix/dfhack
Copyright (c) 2009-2011 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 <stddef.h>
#include <string>
#include <vector>
#include <map>
#include <cstring>
2011-09-18 05:49:10 -06:00
#include <algorithm>
using namespace std;
#include "dfhack/VersionInfo.h"
#include "dfhack/Process.h"
#include "dfhack/Vector.h"
#include "dfhack/Error.h"
#include "dfhack/Types.h"
2010-04-04 16:48:19 -06:00
// we connect to those
2010-05-26 00:42:09 -06:00
#include "dfhack/modules/Materials.h"
2011-12-02 02:56:40 -07:00
#include "dfhack/modules/Units.h"
#include "dfhack/modules/Translation.h"
#include "ModuleFactory.h"
#include <dfhack/Core.h>
using namespace DFHack;
2010-04-04 04:29:56 -06:00
2011-12-02 02:56:40 -07:00
struct Units::Private
2010-04-04 16:48:19 -06:00
{
bool Inited;
bool Started;
2010-04-16 05:28:07 -06:00
uint32_t dwarf_race_index_addr;
uint32_t dwarf_civ_id_addr;
bool IdMapReady;
std::map<int32_t, int32_t> IdMap;
2010-04-18 13:30:02 -06:00
Process *owner;
Translation * trans;
2010-04-04 16:48:19 -06:00
};
2011-12-02 02:56:40 -07:00
Module* DFHack::createUnits()
{
2011-12-02 02:56:40 -07:00
return new Units();
}
2011-12-02 02:56:40 -07:00
Units::Units()
{
Core & c = Core::getInstance();
2010-04-04 16:48:19 -06:00
d = new Private;
d->owner = c.p;
VersionInfo * minfo = c.vinfo;
2010-04-04 16:48:19 -06:00
d->Inited = false;
d->Started = false;
d->IdMapReady = false;
d->trans = c.getTranslation();
d->trans->InitReadNames(); // FIXME: throws on error
2010-09-02 18:15:09 -06:00
OffsetGroup *OG_Creatures = minfo->getGroup("Creatures");
creatures = 0;
try
{
2011-12-02 02:56:40 -07:00
creatures = (vector <df_unit *> *) OG_Creatures->getAddress ("vector");
2010-09-02 18:15:09 -06:00
d->dwarf_race_index_addr = OG_Creatures->getAddress("current_race");
d->dwarf_civ_id_addr = OG_Creatures->getAddress("current_civ");
}
2010-09-02 18:15:09 -06:00
catch(Error::All&){};
d->Inited = true;
}
2011-12-02 02:56:40 -07:00
Units::~Units()
{
2010-04-04 16:48:19 -06:00
if(d->Started)
Finish();
}
2011-12-02 02:56:40 -07:00
bool Units::Start( uint32_t &numcreatures )
2010-04-04 16:48:19 -06:00
{
2011-09-18 05:49:10 -06:00
if(creatures)
2011-02-17 18:51:17 -07:00
{
d->Started = true;
2011-09-18 05:49:10 -06:00
numcreatures = creatures->size();
d->IdMap.clear();
d->IdMapReady = false;
2011-02-17 18:51:17 -07:00
return true;
}
return false;
2010-04-04 16:48:19 -06:00
}
2011-12-02 02:56:40 -07:00
bool Units::Finish()
2010-04-04 16:48:19 -06:00
{
d->Started = false;
return true;
}
2011-12-02 02:56:40 -07:00
df_unit * Units::GetCreature (const int32_t index)
2010-04-04 16:48:19 -06:00
{
2011-11-14 01:24:36 -07:00
if(!d->Started) return NULL;
2010-06-17 17:17:46 -06:00
// read pointer from vector at position
2011-09-18 05:49:10 -06:00
if(index > creatures->size())
2011-11-14 01:24:36 -07:00
return 0;
2011-09-18 05:49:10 -06:00
return creatures->at(index);
}
2010-06-17 17:17:46 -06:00
2011-09-18 05:49:10 -06:00
// returns index of creature actually read or -1 if no creature can be found
2011-12-02 02:56:40 -07:00
int32_t Units::GetCreatureInBox (int32_t index, df_unit ** furball,
2011-09-18 05:49:10 -06:00
const uint16_t x1, const uint16_t y1, const uint16_t z1,
const uint16_t x2, const uint16_t y2, const uint16_t z2)
{
if (!d->Started)
return -1;
Process *p = d->owner;
uint16_t coords[3];
uint32_t size = creatures->size();
while (uint32_t(index) < size)
2010-04-26 05:23:57 -06:00
{
2011-09-18 05:49:10 -06:00
// read pointer from vector at position
2011-12-02 02:56:40 -07:00
df_unit * temp = creatures->at(index);
2011-09-18 05:49:10 -06:00
if (temp->x >= x1 && temp->x < x2)
{
2011-09-18 05:49:10 -06:00
if (temp->y >= y1 && temp->y < y2)
{
if (temp->z >= z1 && temp->z < z2)
{
*furball = temp;
return index;
}
}
}
2011-09-18 05:49:10 -06:00
index++;
}
2011-11-14 01:24:36 -07:00
*furball = NULL;
2011-09-18 05:49:10 -06:00
return -1;
}
2011-12-02 02:56:40 -07:00
void Units::CopyCreature(df_unit * source, t_unit & furball)
2011-09-18 05:49:10 -06:00
{
if(!d->Started) return;
// read pointer from vector at position
furball.origin = source;
//read creature from memory
// name
d->trans->readName(furball.name,&source->name);
// basic stuff
furball.id = source->id;
furball.x = source->x;
furball.y = source->y;
furball.z = source->z;
furball.race = source->race;
furball.civ = source->civ;
furball.sex = source->sex;
furball.caste = source->caste;
furball.flags1.whole = source->flags1.whole;
furball.flags2.whole = source->flags2.whole;
furball.flags3.whole = source->flags3.whole;
// custom profession
furball.custom_profession = source->custom_profession;
// profession
furball.profession = source->profession;
// happiness
furball.happiness = source->happiness;
// physical attributes
memcpy(&furball.strength, source->physical, sizeof(source->physical));
// mood stuff
furball.mood = source->mood;
furball.mood_skill = source->unk_2f8; // FIXME: really? More like currently used skill anyway.
d->trans->readName(furball.artifact_name, &source->artifact_name);
// labors
memcpy(&furball.labors, &source->labors, sizeof(furball.labors));
furball.birth_year = source->birth_year;
furball.birth_time = source->birth_time;
furball.pregnancy_timer = source->pregnancy_timer;
// appearance
furball.nbcolors = source->appearance.size();
if(furball.nbcolors>MAX_COLORS)
furball.nbcolors = MAX_COLORS;
for(uint32_t i = 0; i < furball.nbcolors; i++)
{
furball.color[i] = source->appearance[i];
}
2011-09-18 05:49:10 -06:00
//likes. FIXME: where do they fit in now? The soul?
/*
DfVector <uint32_t> likes(d->p, temp + offs.creature_likes_offset);
furball.numLikes = likes.getSize();
for(uint32_t i = 0;i<furball.numLikes;i++)
{
uint32_t temp2 = *(uint32_t *) likes[i];
p->read(temp2,sizeof(t_like),(uint8_t *) &furball.likes[i]);
}
*/
/*
if(d->Ft_soul)
{
uint32_t soul = p->readDWord(addr_cr + offs.default_soul_offset);
furball.has_default_soul = false;
if(soul)
{
furball.has_default_soul = true;
// get first soul's skills
DfVector <uint32_t> skills(soul + offs.soul_skills_vector_offset);
furball.defaultSoul.numSkills = skills.size();
for (uint32_t i = 0; i < furball.defaultSoul.numSkills;i++)
{
uint32_t temp2 = skills[i];
// a byte: this gives us 256 skills maximum.
furball.defaultSoul.skills[i].id = p->readByte (temp2);
furball.defaultSoul.skills[i].rating =
p->readByte (temp2 + offsetof(t_skill, rating));
furball.defaultSoul.skills[i].experience =
p->readWord (temp2 + offsetof(t_skill, experience));
}
2010-06-15 17:55:12 -06:00
// mental attributes are part of the soul
p->read(soul + offs.soul_mental_offset,
sizeof(t_attrib) * NUM_CREATURE_MENTAL_ATTRIBUTES,
(uint8_t *)&furball.defaultSoul.analytical_ability);
2010-06-15 17:55:12 -06:00
// traits as well
p->read(soul + offs.soul_traits_offset,
sizeof (uint16_t) * NUM_CREATURE_TRAITS,
(uint8_t *) &furball.defaultSoul.traits);
}
2010-04-06 18:46:46 -06:00
}
2011-09-18 05:49:10 -06:00
*/
/*
furball.current_job.occupationPtr = p->readDWord (addr_cr + offs.current_job_offset);
if(furball.current_job.occupationPtr)
2010-05-05 06:08:18 -06:00
{
2011-09-18 05:49:10 -06:00
furball.current_job.active = true;
furball.current_job.jobType = p->readByte (furball.current_job.occupationPtr + offs.job_type_offset );
furball.current_job.jobId = p->readWord (furball.current_job.occupationPtr + offs.job_id_offset);
2010-05-05 06:08:18 -06:00
}
else
{
furball.current_job.active = false;
}
2011-09-18 05:49:10 -06:00
*/
// no jobs for now...
2010-04-04 16:48:19 -06:00
{
2011-09-18 05:49:10 -06:00
furball.current_job.active = false;
2010-04-04 16:48:19 -06:00
}
}
2011-12-02 02:56:40 -07:00
int32_t Units::FindIndexById(int32_t creature_id)
{
2011-09-18 05:49:10 -06:00
if (!d->Started)
return -1;
if (!d->IdMapReady)
{
d->IdMap.clear();
2011-09-18 05:49:10 -06:00
uint32_t size = creatures->size();
for (uint32_t index = 0; index < size; index++)
{
2011-12-02 02:56:40 -07:00
df_unit * temp = creatures->at(index);
2011-09-18 05:49:10 -06:00
int32_t id = temp->id;
d->IdMap[id] = index;
}
}
std::map<int32_t,int32_t>::iterator it;
it = d->IdMap.find(creature_id);
if(it == d->IdMap.end())
return -1;
else
return it->second;
}
2011-09-18 05:49:10 -06:00
/*
bool Creatures::WriteLabors(const uint32_t index, uint8_t labors[NUM_CREATURE_LABORS])
{
if(!d->Started || !d->Ft_advanced) return false;
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->write(temp + d->creatures.labors_offset, NUM_CREATURE_LABORS, labors);
uint32_t pickup_equip;
p->readDWord(temp + d->creatures.pickup_equipment_bit, pickup_equip);
pickup_equip |= 1u;
p->writeDWord(temp + d->creatures.pickup_equipment_bit, pickup_equip);
return true;
}
bool Creatures::WriteHappiness(const uint32_t index, const uint32_t happinessValue)
{
if(!d->Started || !d->Ft_advanced) return false;
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeDWord (temp + d->creatures.happiness_offset, happinessValue);
return true;
}
2010-06-15 10:28:05 -06:00
bool Creatures::WriteFlags(const uint32_t index,
2010-06-17 17:17:46 -06:00
const uint32_t flags1,
const uint32_t flags2)
2010-06-15 10:28:05 -06:00
{
if(!d->Started || !d->Ft_basic) return false;
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeDWord (temp + d->creatures.flags1_offset, flags1);
2010-06-19 13:09:16 -06:00
p->writeDWord (temp + d->creatures.flags2_offset, flags2);
2010-06-17 17:17:46 -06:00
return true;
2010-06-15 10:28:05 -06:00
}
bool Creatures::WriteFlags(const uint32_t index,
const uint32_t flags1,
const uint32_t flags2,
const uint32_t flags3)
{
if(!d->Started || !d->Ft_basic) return false;
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeDWord (temp + d->creatures.flags1_offset, flags1);
p->writeDWord (temp + d->creatures.flags2_offset, flags2);
p->writeDWord (temp + d->creatures.flags3_offset, flags3);
return true;
}
2010-06-15 17:19:19 -06:00
bool Creatures::WriteSkills(const uint32_t index, const t_soul &soul)
2010-06-15 15:23:24 -06:00
{
if(!d->Started || !d->Ft_soul) return false;
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
uint32_t souloff = p->readDWord(temp + d->creatures.default_soul_offset);
if(!souloff)
{
return false;
}
DfVector<uint32_t> skills(souloff + d->creatures.soul_skills_vector_offset);
2010-06-15 15:23:24 -06:00
2010-06-17 17:17:46 -06:00
for (uint32_t i=0; i<soul.numSkills; i++)
2010-06-15 15:23:24 -06:00
{
uint32_t temp2 = skills[i];
2010-06-17 17:17:46 -06:00
p->writeByte(temp2 + offsetof(t_skill, rating), soul.skills[i].rating);
p->writeWord(temp2 + offsetof(t_skill, experience), soul.skills[i].experience);
2010-06-15 15:23:24 -06:00
}
2010-06-17 17:17:46 -06:00
return true;
2010-06-15 15:23:24 -06:00
}
2010-06-15 17:19:19 -06:00
bool Creatures::WriteAttributes(const uint32_t index, const t_creature &creature)
{
if(!d->Started || !d->Ft_advanced || !d->Ft_soul) return false;
2010-06-15 17:19:19 -06:00
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
uint32_t souloff = p->readDWord(temp + d->creatures.default_soul_offset);
2010-06-15 17:19:19 -06:00
2010-06-17 17:17:46 -06:00
if(!souloff)
{
return false;
}
2010-06-15 17:19:19 -06:00
2010-06-17 17:17:46 -06:00
// physical attributes
p->write(temp + d->creatures.physical_offset,
sizeof(t_attrib) * NUM_CREATURE_PHYSICAL_ATTRIBUTES,
(uint8_t *)&creature.strength);
2010-06-15 17:19:19 -06:00
2010-06-17 17:17:46 -06:00
// mental attributes are part of the soul
p->write(souloff + d->creatures.soul_mental_offset,
sizeof(t_attrib) * NUM_CREATURE_MENTAL_ATTRIBUTES,
(uint8_t *)&creature.defaultSoul.analytical_ability);
2010-06-15 17:19:19 -06:00
2010-06-17 17:17:46 -06:00
return true;
2010-06-15 17:19:19 -06:00
}
bool Creatures::WriteSex(const uint32_t index, const uint8_t sex)
{
if(!d->Started || !d->Ft_basic ) return false;
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeByte (temp + d->creatures.sex_offset, sex);
2010-11-17 12:50:50 -07:00
return true;
}
bool Creatures::WriteTraits(const uint32_t index, const t_soul &soul)
{
if(!d->Started || !d->Ft_soul) return false;
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
uint32_t souloff = p->readDWord(temp + d->creatures.default_soul_offset);
2010-06-17 17:17:46 -06:00
if(!souloff)
{
return false;
}
2010-06-17 17:17:46 -06:00
p->write(souloff + d->creatures.soul_traits_offset,
sizeof (uint16_t) * NUM_CREATURE_TRAITS,
(uint8_t *) &soul.traits);
2010-06-17 17:17:46 -06:00
return true;
}
bool Creatures::WriteMood(const uint32_t index, const uint16_t mood)
{
if(!d->Started || !d->Ft_advanced) return false;
2010-06-17 17:17:46 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeWord(temp + d->creatures.mood_offset, mood);
return true;
}
2010-06-22 10:21:09 -06:00
bool Creatures::WriteMoodSkill(const uint32_t index, const uint16_t moodSkill)
{
if(!d->Started || !d->Ft_advanced) return false;
2010-06-22 10:21:09 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeWord(temp + d->creatures.mood_skill_offset, moodSkill);
return true;
2010-08-09 12:28:35 -06:00
}
bool Creatures::WriteJob(const t_creature * furball, std::vector<t_material> const& mat)
{
if(!d->Inited || !d->Ft_job_materials) return false;
2010-08-09 12:28:35 -06:00
if(!furball->current_job.active) return false;
unsigned int i;
2010-08-09 12:28:35 -06:00
Process * p = d->owner;
Private::t_offsets & off = d->creatures;
DfVector <uint32_t> cmats(furball->current_job.occupationPtr + off.job_materials_vector);
2010-08-09 12:28:35 -06:00
for(i=0;i<cmats.size();i++)
{
p->writeWord(cmats[i] + off.job_material_itemtype_o, mat[i].itemType);
p->writeWord(cmats[i] + off.job_material_subtype_o, mat[i].subType);
p->writeWord(cmats[i] + off.job_material_subindex_o, mat[i].subIndex);
p->writeDWord(cmats[i] + off.job_material_index_o, mat[i].index);
p->writeDWord(cmats[i] + off.job_material_flags_o, mat[i].flags);
2010-08-09 12:28:35 -06:00
}
return true;
2010-06-22 10:21:09 -06:00
}
2010-06-22 11:27:27 -06:00
bool Creatures::WritePos(const uint32_t index, const t_creature &creature)
{
if(!d->Started) return false;
2010-06-22 11:27:27 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->write (temp + d->creatures.pos_offset, 3 * sizeof (uint16_t), (uint8_t *) & (creature.x));
return true;
2010-06-22 11:27:27 -06:00
}
2010-06-22 20:32:33 -06:00
bool Creatures::WriteCiv(const uint32_t index, const int32_t civ)
{
if(!d->Started) return false;
2010-06-22 20:32:33 -06:00
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeDWord(temp + d->creatures.civ_offset, civ);
return true;
}
bool Creatures::WritePregnancy(const uint32_t index, const uint32_t pregTimer)
{
if(!d->Started) return false;
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeDWord(temp + d->creatures.pregnancy_offset, pregTimer);
return true;
}
2011-09-18 05:49:10 -06:00
*/
2011-12-02 02:56:40 -07:00
uint32_t Units::GetDwarfRaceIndex()
2010-04-16 05:28:07 -06:00
{
if(!d->Inited) return 0;
2010-04-18 13:30:02 -06:00
Process * p = d->owner;
return p->readDWord(d->dwarf_race_index_addr);
2010-04-16 05:28:07 -06:00
}
2011-12-02 02:56:40 -07:00
int32_t Units::GetDwarfCivId()
{
if(!d->Inited) return -1;
Process * p = d->owner;
return p->readDWord(d->dwarf_civ_id_addr);
}
2010-04-04 04:29:56 -06:00
/*
2010-04-18 13:30:02 -06:00
bool Creatures::getCurrentCursorCreature(uint32_t & creature_index)
{
if(!d->cursorWindowInited) return false;
2010-04-18 13:30:02 -06:00
Process * p = d->owner;
creature_index = p->readDWord(d->current_cursor_creature_offset);
return true;
}
*/
2011-09-18 05:49:10 -06:00
/*
2010-04-26 05:23:57 -06:00
bool Creatures::ReadJob(const t_creature * furball, vector<t_material> & mat)
{
unsigned int i;
if(!d->Inited || !d->Ft_job_materials) return false;
2010-04-26 05:23:57 -06:00
if(!furball->current_job.active) return false;
Process * p = d->owner;
Private::t_offsets & off = d->creatures;
DfVector <uint32_t> cmats(furball->current_job.occupationPtr + off.job_materials_vector);
2010-04-26 05:23:57 -06:00
mat.resize(cmats.size());
for(i=0;i<cmats.size();i++)
{
mat[i].itemType = p->readWord(cmats[i] + off.job_material_itemtype_o);
mat[i].subType = p->readWord(cmats[i] + off.job_material_subtype_o);
mat[i].subIndex = p->readWord(cmats[i] + off.job_material_subindex_o);
mat[i].index = p->readDWord(cmats[i] + off.job_material_index_o);
mat[i].flags = p->readDWord(cmats[i] + off.job_material_flags_o);
2010-04-26 05:23:57 -06:00
}
return true;
}
2011-09-18 05:49:10 -06:00
*/
2011-12-02 02:56:40 -07:00
bool Units::ReadInventoryByIdx(const uint32_t index, std::vector<df_item *> & item)
2010-08-17 07:21:54 -06:00
{
2011-09-18 05:49:10 -06:00
if(!d->Started) return false;
if(index >= creatures->size()) return false;
2011-12-02 02:56:40 -07:00
df_unit * temp = creatures->at(index);
2011-09-18 05:49:10 -06:00
return this->ReadInventoryByPtr(temp, item);
2010-08-17 07:21:54 -06:00
}
2011-12-02 02:56:40 -07:00
bool Units::ReadInventoryByPtr(const df_unit * temp, std::vector<df_item *> & items)
2010-08-17 07:21:54 -06:00
{
2011-09-18 05:49:10 -06:00
if(!d->Started) return false;
items = temp->inventory;
2010-08-17 07:21:54 -06:00
return true;
}
2011-12-02 02:56:40 -07:00
bool Units::ReadOwnedItemsByIdx(const uint32_t index, std::vector<int32_t> & item)
{
2011-09-18 05:49:10 -06:00
if(!d->Started ) return false;
if(index >= creatures->size()) return false;
2011-12-02 02:56:40 -07:00
df_unit * temp = creatures->at(index);
2011-09-18 05:49:10 -06:00
return this->ReadOwnedItemsByPtr(temp, item);
}
2011-12-02 02:56:40 -07:00
bool Units::ReadOwnedItemsByPtr(const df_unit * temp, std::vector<int32_t> & items)
{
unsigned int i;
2011-09-18 05:49:10 -06:00
if(!d->Started) return false;
items = temp->owned_items;
return true;
}
2011-12-02 02:56:40 -07:00
bool Units::RemoveOwnedItemByIdx(const uint32_t index, int32_t id)
{
2011-09-18 05:49:10 -06:00
if(!d->Started)
{
2011-09-18 05:49:10 -06:00
cerr << "!d->Started FAIL" << endl;
return false;
}
2011-12-02 02:56:40 -07:00
df_unit * temp = creatures->at (index);
2011-09-18 05:49:10 -06:00
return this->RemoveOwnedItemByPtr(temp, id);
}
2011-12-02 02:56:40 -07:00
bool Units::RemoveOwnedItemByPtr(df_unit * temp, int32_t id)
{
2011-09-18 05:49:10 -06:00
if(!d->Started) return false;
Process * p = d->owner;
2011-09-18 05:49:10 -06:00
vector <int32_t> & vec = temp->owned_items;
vec.erase(std::remove(vec.begin(), vec.end(), id), vec.end());
/*
DfVector <int32_t> citem(temp + d->creatures.owned_items_offset);
for (unsigned i = 0; i < citem.size(); i++) {
if (citem[i] != id)
continue;
if (!citem.remove(i--))
return false;
}
2011-09-18 05:49:10 -06:00
*/
return true;
}
2011-12-02 02:56:40 -07:00
void Units::CopyNameTo(df_unit * creature, df_name * target)
{
2011-09-18 05:49:10 -06:00
d->trans->copyName(&creature->name, target);
}