2010-04-02 19:52:46 -06:00
|
|
|
/*
|
|
|
|
www.sourceforge.net/projects/dfhack
|
|
|
|
Copyright (c) 2009 Petr Mrázek (peterix), Kenneth Ferland (Impaler[WrG]), dorf
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2010-05-26 04:24:45 -06:00
|
|
|
#include "Internal.h"
|
|
|
|
#include "ContextShared.h"
|
2010-04-02 19:52:46 -06:00
|
|
|
|
2010-05-25 22:48:23 -06:00
|
|
|
#include "dfhack/DFMemInfo.h"
|
|
|
|
#include "dfhack/DFProcess.h"
|
|
|
|
#include "dfhack/DFVector.h"
|
|
|
|
#include "dfhack/DFError.h"
|
|
|
|
#include "dfhack/DFTypes.h"
|
2010-04-04 16:48:19 -06:00
|
|
|
|
2010-04-06 19:38:22 -06:00
|
|
|
// we connect to those
|
|
|
|
#include <shms.h>
|
|
|
|
#include <mod-core.h>
|
|
|
|
#include <mod-creature2010.h>
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack/modules/Materials.h"
|
|
|
|
#include "dfhack/modules/Creatures.h"
|
2010-04-06 19:38:22 -06:00
|
|
|
|
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
#define SHMCREATURESHDR ((Creatures2010::shm_creature_hdr *)d->d->shm_start)
|
|
|
|
#define SHMCMD(num) ((shm_cmd *)d->d->shm_start)[num]->pingpong
|
|
|
|
#define SHMHDR ((shm_core_hdr *)d->d->shm_start)
|
|
|
|
#define SHMDATA(type) ((type *)(d->d->shm_start + SHM_HEADER))
|
2010-04-02 19:52:46 -06:00
|
|
|
|
|
|
|
using namespace DFHack;
|
2010-04-04 04:29:56 -06:00
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
struct Creatures::Private
|
|
|
|
{
|
|
|
|
bool Inited;
|
|
|
|
bool Started;
|
|
|
|
Creatures2010::creature_offsets creatures;
|
|
|
|
uint32_t creature_module;
|
2010-04-16 05:28:07 -06:00
|
|
|
uint32_t dwarf_race_index_addr;
|
2010-04-19 06:36:21 -06:00
|
|
|
uint32_t dwarf_civ_id_addr;
|
2010-04-18 06:56:09 -06:00
|
|
|
DfVector <uint32_t> *p_cre;
|
2010-05-26 04:24:45 -06:00
|
|
|
DFContextShared *d;
|
2010-04-18 13:30:02 -06:00
|
|
|
Process *owner;
|
2010-04-04 16:48:19 -06:00
|
|
|
};
|
|
|
|
|
2010-05-26 04:24:45 -06:00
|
|
|
Creatures::Creatures(DFContextShared* _d)
|
2010-04-02 19:52:46 -06:00
|
|
|
{
|
2010-04-04 16:48:19 -06:00
|
|
|
d = new Private;
|
|
|
|
d->d = _d;
|
2010-04-18 13:30:02 -06:00
|
|
|
Process * p = d->owner = _d->p;
|
2010-04-04 16:48:19 -06:00
|
|
|
d->Inited = false;
|
|
|
|
d->Started = false;
|
|
|
|
d->d->InitReadNames(); // throws on error
|
2010-04-02 19:52:46 -06:00
|
|
|
try
|
|
|
|
{
|
2010-04-04 16:48:19 -06:00
|
|
|
memory_info * minfo = d->d->offset_descriptor;
|
|
|
|
Creatures2010::creature_offsets &creatures = d->creatures;
|
2010-04-08 18:08:46 -06:00
|
|
|
creatures.vector = minfo->getAddress ("creature_vector");
|
|
|
|
creatures.pos_offset = minfo->getOffset ("creature_position");
|
|
|
|
creatures.profession_offset = minfo->getOffset ("creature_profession");
|
|
|
|
creatures.custom_profession_offset = minfo->getOffset ("creature_custom_profession");
|
|
|
|
creatures.race_offset = minfo->getOffset ("creature_race");
|
2010-04-19 06:36:21 -06:00
|
|
|
creatures.civ_offset = minfo->getOffset ("creature_civ");
|
2010-04-08 18:08:46 -06:00
|
|
|
creatures.flags1_offset = minfo->getOffset ("creature_flags1");
|
|
|
|
creatures.flags2_offset = minfo->getOffset ("creature_flags2");
|
|
|
|
creatures.name_offset = minfo->getOffset ("creature_name");
|
|
|
|
creatures.sex_offset = minfo->getOffset ("creature_sex");
|
2010-05-05 06:08:18 -06:00
|
|
|
creatures.caste_offset = minfo->getOffset ("creature_caste");
|
2010-04-08 18:08:46 -06:00
|
|
|
creatures.id_offset = minfo->getOffset ("creature_id");
|
|
|
|
creatures.labors_offset = minfo->getOffset ("creature_labors");
|
|
|
|
creatures.happiness_offset = minfo->getOffset ("creature_happiness");
|
|
|
|
creatures.artifact_name_offset = minfo->getOffset("creature_artifact_name");
|
|
|
|
creatures.soul_vector_offset = minfo->getOffset("creature_soul_vector");
|
|
|
|
creatures.default_soul_offset = minfo->getOffset("creature_default_soul");
|
|
|
|
creatures.physical_offset = minfo->getOffset("creature_physical");
|
|
|
|
creatures.mood_offset = minfo->getOffset("creature_mood");
|
2010-04-26 06:12:07 -06:00
|
|
|
creatures.mood_skill_offset = minfo->getOffset("creature_mood_skill");
|
2010-04-12 10:19:53 -06:00
|
|
|
creatures.pickup_equipment_bit = minfo->getOffset("creature_pickup_equipment_bit");
|
2010-04-26 05:23:57 -06:00
|
|
|
creatures.current_job_offset = minfo->getOffset("creature_current_job");
|
2010-04-06 18:46:46 -06:00
|
|
|
// soul offsets
|
|
|
|
creatures.soul_skills_vector_offset = minfo->getOffset("soul_skills_vector");
|
2010-04-08 19:21:42 -06:00
|
|
|
creatures.soul_mental_offset = minfo->getOffset("soul_mental");
|
2010-04-11 16:48:25 -06:00
|
|
|
creatures.soul_traits_offset = minfo->getOffset("soul_traits");
|
2010-04-02 19:52:46 -06:00
|
|
|
|
2010-05-05 06:08:18 -06:00
|
|
|
// appearance
|
|
|
|
creatures.appearance_vector_offset = minfo->getOffset("creature_appearance_vector");
|
2010-05-12 06:41:43 -06:00
|
|
|
|
|
|
|
//birth
|
|
|
|
creatures.birth_year_offset = minfo->getOffset("creature_birth_year");
|
|
|
|
creatures.birth_time_offset = minfo->getOffset("creature_birth_time");
|
2010-05-05 06:08:18 -06:00
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
// name offsets for the creature module
|
2010-04-04 16:48:19 -06:00
|
|
|
creatures.name_firstname_offset = minfo->getOffset("name_firstname");
|
|
|
|
creatures.name_nickname_offset = minfo->getOffset("name_nickname");
|
|
|
|
creatures.name_words_offset = minfo->getOffset("name_words");
|
2010-04-16 05:28:07 -06:00
|
|
|
d->dwarf_race_index_addr = minfo->getAddress("dwarf_race_index");
|
2010-04-19 06:36:21 -06:00
|
|
|
d->dwarf_civ_id_addr = minfo->getAddress("dwarf_civ_id");
|
2010-05-23 19:07:13 -06:00
|
|
|
/*
|
2010-04-04 16:48:19 -06:00
|
|
|
// upload offsets to the SHM
|
2010-04-18 13:30:02 -06:00
|
|
|
if(p->getModuleIndex("Creatures2010",1,d->creature_module))
|
2010-04-02 19:52:46 -06:00
|
|
|
{
|
|
|
|
// supply the module with offsets so it can work with them
|
2010-04-04 16:48:19 -06:00
|
|
|
memcpy(SHMDATA(Creatures2010::creature_offsets),&creatures,sizeof(Creatures2010::creature_offsets));
|
2010-04-04 04:29:56 -06:00
|
|
|
const uint32_t cmd = Creatures2010::CREATURE_INIT + (d->creature_module << 16);
|
2010-04-18 13:30:02 -06:00
|
|
|
p->SetAndWait(cmd);
|
2010-04-02 19:52:46 -06:00
|
|
|
}
|
2010-05-23 19:07:13 -06:00
|
|
|
*/
|
2010-04-04 16:48:19 -06:00
|
|
|
d->Inited = true;
|
2010-04-02 19:52:46 -06:00
|
|
|
}
|
|
|
|
catch (Error::MissingMemoryDefinition&)
|
|
|
|
{
|
2010-04-04 16:48:19 -06:00
|
|
|
d->Inited = false;
|
2010-04-02 19:52:46 -06:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
Creatures::~Creatures()
|
2010-04-02 19:52:46 -06:00
|
|
|
{
|
2010-04-04 16:48:19 -06:00
|
|
|
if(d->Started)
|
|
|
|
Finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Creatures::Start( uint32_t &numcreatures )
|
|
|
|
{
|
2010-04-18 13:30:02 -06:00
|
|
|
d->p_cre = new DfVector <uint32_t> (d->owner, d->creatures.vector);
|
2010-04-04 16:48:19 -06:00
|
|
|
d->Started = true;
|
2010-04-18 06:56:09 -06:00
|
|
|
numcreatures = d->p_cre->size();
|
2010-04-04 16:48:19 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Creatures::Finish()
|
|
|
|
{
|
|
|
|
if(d->p_cre)
|
|
|
|
{
|
|
|
|
delete d->p_cre;
|
|
|
|
d->p_cre = 0;
|
|
|
|
}
|
|
|
|
d->Started = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Creatures::ReadCreature (const int32_t index, t_creature & furball)
|
|
|
|
{
|
|
|
|
if(!d->Started) return false;
|
|
|
|
// SHM fast path
|
2010-04-18 13:30:02 -06:00
|
|
|
Process * p = d->owner;
|
2010-05-23 19:07:13 -06:00
|
|
|
/*
|
2010-04-02 19:52:46 -06:00
|
|
|
if(d->creature_module)
|
|
|
|
{
|
|
|
|
SHMCREATURESHDR->index = index;
|
2010-04-04 04:29:56 -06:00
|
|
|
const uint32_t cmd = Creatures2010::CREATURE_AT_INDEX + (d->creature_module << 16);
|
2010-04-18 13:30:02 -06:00
|
|
|
p->SetAndWait(cmd);
|
2010-04-02 19:52:46 -06:00
|
|
|
memcpy(&furball,SHMDATA(t_creature),sizeof(t_creature));
|
|
|
|
return true;
|
|
|
|
}
|
2010-05-23 19:07:13 -06:00
|
|
|
*/
|
2010-04-04 16:48:19 -06:00
|
|
|
// non-SHM slow path
|
2010-04-26 05:23:57 -06:00
|
|
|
memory_info * minfo = d->d->offset_descriptor;
|
2010-04-04 16:48:19 -06:00
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
// read pointer from vector at position
|
2010-04-18 06:56:09 -06:00
|
|
|
uint32_t temp = d->p_cre->at (index);
|
2010-04-02 19:52:46 -06:00
|
|
|
furball.origin = temp;
|
2010-04-04 04:29:56 -06:00
|
|
|
Creatures2010::creature_offsets &offs = d->creatures;
|
2010-04-08 18:08:46 -06:00
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
//read creature from memory
|
2010-04-08 18:08:46 -06:00
|
|
|
|
|
|
|
// name
|
|
|
|
d->d->readName(furball.name,temp + offs.name_offset);
|
|
|
|
|
|
|
|
// basic stuff
|
2010-04-18 13:30:02 -06:00
|
|
|
p->readDWord (temp + offs.happiness_offset, furball.happiness);
|
|
|
|
p->readDWord (temp + offs.id_offset, furball.id);
|
|
|
|
p->read (temp + offs.pos_offset, 3 * sizeof (uint16_t), (uint8_t *) & (furball.x)); // xyz really
|
|
|
|
p->readDWord (temp + offs.race_offset, furball.race);
|
2010-04-19 06:36:21 -06:00
|
|
|
furball.civ = p->readDWord (temp + offs.civ_offset);
|
2010-04-18 13:30:02 -06:00
|
|
|
p->readByte (temp + offs.sex_offset, furball.sex);
|
2010-05-05 06:08:18 -06:00
|
|
|
p->readWord (temp + offs.caste_offset, furball.caste);
|
2010-04-18 13:30:02 -06:00
|
|
|
p->readDWord (temp + offs.flags1_offset, furball.flags1.whole);
|
|
|
|
p->readDWord (temp + offs.flags2_offset, furball.flags2.whole);
|
2010-04-08 18:08:46 -06:00
|
|
|
|
|
|
|
// physical attributes
|
2010-04-18 13:30:02 -06:00
|
|
|
p->read(temp + offs.physical_offset, sizeof(t_attrib) * 6, (uint8_t *)&furball.strength);
|
2010-04-08 18:08:46 -06:00
|
|
|
|
|
|
|
// mood stuff
|
2010-04-18 13:30:02 -06:00
|
|
|
furball.mood = (int16_t) p->readWord (temp + offs.mood_offset);
|
2010-04-26 06:12:07 -06:00
|
|
|
furball.mood_skill = p->readWord (temp + offs.mood_skill_offset);
|
2010-04-08 18:08:46 -06:00
|
|
|
d->d->readName(furball.artifact_name, temp + offs.artifact_name_offset);
|
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
// custom profession
|
2010-05-01 17:20:31 -06:00
|
|
|
p->readSTLString(temp + offs.custom_profession_offset, furball.custom_profession, sizeof(furball.custom_profession));
|
|
|
|
//fill_char_buf (furball.custom_profession, p->readSTLString (temp + offs.custom_profession_offset));
|
2010-04-02 19:52:46 -06:00
|
|
|
|
|
|
|
// labors
|
2010-04-18 13:30:02 -06:00
|
|
|
p->read (temp + offs.labors_offset, NUM_CREATURE_LABORS, furball.labors);
|
2010-04-06 19:38:22 -06:00
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
// profession
|
2010-04-18 13:30:02 -06:00
|
|
|
furball.profession = p->readByte (temp + offs.profession_offset);
|
2010-04-08 18:08:46 -06:00
|
|
|
|
2010-04-26 05:23:57 -06:00
|
|
|
furball.current_job.occupationPtr = p->readDWord (temp + offs.current_job_offset);
|
|
|
|
if(furball.current_job.occupationPtr)
|
|
|
|
{
|
|
|
|
furball.current_job.active = true;
|
|
|
|
furball.current_job.jobType = p->readByte (furball.current_job.occupationPtr + minfo->getOffset("job_type") );
|
|
|
|
furball.current_job.jobId = p->readDWord (furball.current_job.occupationPtr + minfo->getOffset("job_id") );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
furball.current_job.active = false;;
|
|
|
|
}
|
|
|
|
|
2010-05-12 06:41:43 -06:00
|
|
|
furball.birth_year = p->readDWord (temp + offs.birth_year_offset );
|
|
|
|
furball.birth_time = p->readDWord (temp + offs.birth_time_offset );
|
2010-04-26 05:23:57 -06:00
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
// current job HACK: the job object isn't cleanly represented here
|
2010-04-04 04:29:56 -06:00
|
|
|
/*
|
2010-04-18 13:30:02 -06:00
|
|
|
uint32_t jobIdAddr = p->readDWord (temp + offs.creature_current_job_offset);
|
2010-04-02 19:52:46 -06:00
|
|
|
|
|
|
|
if (jobIdAddr)
|
|
|
|
{
|
|
|
|
furball.current_job.active = true;
|
2010-04-18 13:30:02 -06:00
|
|
|
furball.current_job.jobId = p->readByte (jobIdAddr + offs.creature_current_job_id_offset);
|
2010-04-02 19:52:46 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
furball.current_job.active = false;
|
|
|
|
}
|
2010-04-08 18:08:46 -06:00
|
|
|
*/
|
2010-04-02 19:52:46 -06:00
|
|
|
|
2010-04-04 04:29:56 -06:00
|
|
|
/*
|
2010-04-18 13:30:02 -06:00
|
|
|
p->readDWord(temp + offs.creature_pregnancy_offset, furball.pregnancy_timer);
|
2010-04-04 04:29:56 -06:00
|
|
|
*/
|
2010-04-02 19:52:46 -06:00
|
|
|
|
2010-04-08 18:08:46 -06:00
|
|
|
/*
|
2010-04-06 18:46:46 -06:00
|
|
|
// enum soul pointer vector
|
2010-04-18 13:30:02 -06:00
|
|
|
DfVector <uint32_t> souls(p,temp + offs.creature_soul_vector_offset);
|
2010-04-08 18:08:46 -06:00
|
|
|
*/
|
2010-04-18 13:30:02 -06:00
|
|
|
uint32_t soul = p->readDWord(temp + offs.default_soul_offset);
|
2010-04-12 19:11:26 -06:00
|
|
|
furball.has_default_soul = false;
|
|
|
|
if(soul)
|
2010-04-06 18:46:46 -06:00
|
|
|
{
|
2010-04-12 19:11:26 -06:00
|
|
|
furball.has_default_soul = true;
|
|
|
|
// get first soul's skills
|
2010-04-18 13:30:02 -06:00
|
|
|
DfVector <uint32_t> skills(p, soul + offs.soul_skills_vector_offset);
|
2010-04-18 06:56:09 -06:00
|
|
|
furball.defaultSoul.numSkills = skills.size();
|
2010-04-12 19:11:26 -06:00
|
|
|
for (uint32_t i = 0; i < furball.defaultSoul.numSkills;i++)
|
|
|
|
{
|
2010-04-18 06:56:09 -06:00
|
|
|
uint32_t temp2 = skills[i];
|
2010-04-12 19:11:26 -06:00
|
|
|
// a byte: this gives us 256 skills maximum.
|
2010-04-18 13:30:02 -06:00
|
|
|
furball.defaultSoul.skills[i].id = p->readByte (temp2);
|
|
|
|
furball.defaultSoul.skills[i].rating = p->readByte (temp2 + 4);
|
|
|
|
furball.defaultSoul.skills[i].experience = p->readWord (temp2 + 8);
|
2010-04-12 19:11:26 -06:00
|
|
|
}
|
|
|
|
// mental attributes are part of the soul
|
2010-04-18 13:30:02 -06:00
|
|
|
p->read(soul + offs.soul_mental_offset, sizeof(t_attrib) * 13, (uint8_t *)&furball.defaultSoul.analytical_ability);
|
2010-04-12 19:11:26 -06:00
|
|
|
|
|
|
|
// traits as well
|
2010-04-18 13:30:02 -06:00
|
|
|
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
|
|
|
}
|
2010-05-05 06:08:18 -06:00
|
|
|
|
|
|
|
DfVector <uint32_t> app(p, temp + offs.appearance_vector_offset);
|
|
|
|
furball.nbcolors = app.size();
|
|
|
|
if(furball.nbcolors>MAX_COLORS)
|
|
|
|
furball.nbcolors = MAX_COLORS;
|
|
|
|
for(uint32_t i = 0; i < furball.nbcolors; i++)
|
|
|
|
{
|
|
|
|
furball.color[i] = app[i];
|
|
|
|
}
|
2010-04-08 18:08:46 -06:00
|
|
|
//likes
|
|
|
|
/*
|
2010-04-18 06:56:09 -06:00
|
|
|
DfVector <uint32_t> likes(d->p, temp + offs.creature_likes_offset);
|
2010-04-08 18:08:46 -06:00
|
|
|
furball.numLikes = likes.getSize();
|
|
|
|
for(uint32_t i = 0;i<furball.numLikes;i++)
|
|
|
|
{
|
|
|
|
uint32_t temp2 = *(uint32_t *) likes[i];
|
2010-04-18 13:30:02 -06:00
|
|
|
p->read(temp2,sizeof(t_like),(uint8_t *) &furball.likes[i]);
|
2010-04-08 18:08:46 -06:00
|
|
|
}*/
|
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
return true;
|
|
|
|
}
|
2010-04-04 16:48:19 -06:00
|
|
|
|
|
|
|
// returns index of creature actually read or -1 if no creature can be found
|
|
|
|
int32_t Creatures::ReadCreatureInBox (int32_t index, t_creature & furball,
|
|
|
|
const uint16_t x1, const uint16_t y1, const uint16_t z1,
|
|
|
|
const uint16_t x2, const uint16_t y2, const uint16_t z2)
|
|
|
|
{
|
2010-04-18 13:30:02 -06:00
|
|
|
if (!d->Started)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
Process *p = d->owner;
|
2010-05-23 19:07:13 -06:00
|
|
|
/*
|
2010-04-04 16:48:19 -06:00
|
|
|
if(d->creature_module)
|
|
|
|
{
|
|
|
|
// supply the module with offsets so it can work with them
|
|
|
|
SHMCREATURESHDR->index = index;
|
|
|
|
SHMCREATURESHDR->x = x1;
|
|
|
|
SHMCREATURESHDR->y = y1;
|
|
|
|
SHMCREATURESHDR->z = z1;
|
|
|
|
SHMCREATURESHDR->x2 = x2;
|
|
|
|
SHMCREATURESHDR->y2 = y2;
|
|
|
|
SHMCREATURESHDR->z2 = z2;
|
|
|
|
const uint32_t cmd = Creatures2010::CREATURE_FIND_IN_BOX + (d->creature_module << 16);
|
2010-04-18 13:30:02 -06:00
|
|
|
p->SetAndWait(cmd);
|
2010-04-04 16:48:19 -06:00
|
|
|
if(SHMCREATURESHDR->index != -1)
|
|
|
|
memcpy(&furball,SHMDATA(void),sizeof(t_creature));
|
|
|
|
return SHMCREATURESHDR->index;
|
|
|
|
}
|
2010-05-23 19:07:13 -06:00
|
|
|
else*/
|
2010-04-04 16:48:19 -06:00
|
|
|
{
|
|
|
|
uint16_t coords[3];
|
2010-04-18 06:56:09 -06:00
|
|
|
uint32_t size = d->p_cre->size();
|
2010-04-04 16:48:19 -06:00
|
|
|
while (uint32_t(index) < size)
|
|
|
|
{
|
|
|
|
// read pointer from vector at position
|
2010-04-18 06:56:09 -06:00
|
|
|
uint32_t temp = d->p_cre->at(index);
|
2010-04-18 13:30:02 -06:00
|
|
|
p->read (temp + d->creatures.pos_offset, 3 * sizeof (uint16_t), (uint8_t *) &coords);
|
2010-04-04 16:48:19 -06:00
|
|
|
if (coords[0] >= x1 && coords[0] < x2)
|
|
|
|
{
|
|
|
|
if (coords[1] >= y1 && coords[1] < y2)
|
|
|
|
{
|
|
|
|
if (coords[2] >= z1 && coords[2] < z2)
|
|
|
|
{
|
|
|
|
ReadCreature (index, furball);
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-06 19:38:22 -06:00
|
|
|
bool Creatures::WriteLabors(const uint32_t index, uint8_t labors[NUM_CREATURE_LABORS])
|
2010-04-02 19:52:46 -06:00
|
|
|
{
|
2010-06-14 17:59:18 -06:00
|
|
|
if(!d->Started) return false;
|
|
|
|
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)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
uint32_t temp = d->p_cre->at (index);
|
|
|
|
Process * p = d->owner;
|
|
|
|
p->writeDWord (temp + d->creatures.happiness_offset, happinessValue);
|
|
|
|
return true;
|
2010-04-02 19:52:46 -06:00
|
|
|
}
|
2010-04-06 19:38:22 -06:00
|
|
|
|
2010-06-15 10:28:05 -06:00
|
|
|
bool Creatures::WriteFlags(const uint32_t index,
|
|
|
|
const uint32_t flags1,
|
|
|
|
const uint32_t flags2)
|
|
|
|
{
|
|
|
|
if(!d->Started)
|
|
|
|
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, flags1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-04-16 05:28:07 -06:00
|
|
|
uint32_t Creatures::GetDwarfRaceIndex()
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-04-19 06:36:21 -06:00
|
|
|
int32_t Creatures::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)
|
2010-04-02 19:52:46 -06:00
|
|
|
{
|
|
|
|
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);
|
2010-04-02 19:52:46 -06:00
|
|
|
return true;
|
|
|
|
}
|
2010-04-19 06:36:21 -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) return false;
|
|
|
|
if(!furball->current_job.active) return false;
|
|
|
|
Process * p = d->owner;
|
|
|
|
memory_info * minfo = d->d->offset_descriptor;
|
|
|
|
|
|
|
|
DfVector <uint32_t> cmats(p, furball->current_job.occupationPtr + minfo->getOffset("job_materials_vector"));
|
|
|
|
mat.resize(cmats.size());
|
|
|
|
for(i=0;i<cmats.size();i++)
|
|
|
|
{
|
2010-04-29 08:59:30 -06:00
|
|
|
mat[i].itemType = p->readWord(cmats[i] + minfo->getOffset("job_material_maintype"));
|
2010-05-02 02:35:23 -06:00
|
|
|
mat[i].subType = p->readWord(cmats[i] + minfo->getOffset("job_material_sectype1"));
|
|
|
|
mat[i].subIndex = p->readWord(cmats[i] + minfo->getOffset("job_material_sectype2"));
|
2010-04-29 08:59:30 -06:00
|
|
|
mat[i].index = p->readDWord(cmats[i] + minfo->getOffset("job_material_sectype3"));
|
2010-04-26 07:39:42 -06:00
|
|
|
mat[i].flags = p->readDWord(cmats[i] + minfo->getOffset("job_material_flags"));
|
2010-04-26 05:23:57 -06:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|