dfhack/tools/creaturedump.cpp

185 lines
4.9 KiB
C++

// Creature dump
#include <iostream>
#include <climits>
#include <integers.h>
#include <vector>
using namespace std;
#include <DFTypes.h>
#include <DFHackAPI.h>
2009-11-13 20:46:56 -07:00
#include <DFMemInfo.h>
template <typename T>
void print_bits ( T val, std::ostream& out )
{
T n_bits = sizeof ( val ) * CHAR_BIT;
for ( unsigned i = 0; i < n_bits; ++i ) {
out<< !!( val & 1 ) << " ";
val >>= 1;
}
}
int main (void)
{
vector<t_matgloss> creaturestypes;
2009-11-10 20:37:28 -07:00
DFHack::API DF("Memory.xml");
if(!DF.Attach())
{
cerr << "DF not found" << endl;
return 1;
}
2009-11-13 20:46:56 -07:00
DFHack::memory_info mem = DF.getMemoryInfo();
// get stone matgloss mapping
if(!DF.ReadCreatureMatgloss(creaturestypes))
{
cerr << "Can't get the creature types." << endl;
return 1;
}
2009-12-12 12:52:30 -07:00
map<string, vector<string> > names;
DF.InitReadNameTables(names);
uint32_t numCreatures = DF.InitReadCreatures();
for(uint32_t i = 0; i < numCreatures; i++)
{
2009-11-12 10:52:44 -07:00
t_creature temp;
DF.ReadCreature(i, temp);
2009-12-12 12:52:30 -07:00
cout << "address: " << temp.origin << " creature type: " << creaturestypes[temp.type].id << ", position: " << temp.x << "x " << temp.y << "y "<< temp.z << "z" << endl;
bool addendl = false;
if(temp.first_name[0])
{
cout << "first name: " << temp.first_name;
addendl = true;
}
if(temp.nick_name[0])
{
cout << ", nick name: " << temp.nick_name;
addendl = true;
}
2009-12-12 12:52:30 -07:00
string transName = DF.TranslateName(temp.last_name,names,creaturestypes[temp.type].id);
if(!transName.empty()){
cout << ", trans name: " << transName;
addendl=true;
}
//cout << ", generic name: " << DF.TranslateName(temp.last_name,names,"GENERIC");
/*
if(!temp.trans_name.empty()){
cout << ", trans name: " << temp.trans_name;
addendl =true;
}
if(!temp.generic_name.empty()){
cout << ", generic name: " << temp.generic_name;
addendl=true;
}
*/
if(addendl)
{
cout << endl;
addendl = false;
}
2009-11-13 20:46:56 -07:00
cout << "profession: " << mem.getProfession(temp.profession) << "(" << (int) temp.profession << ")";
if(temp.custom_profession[0])
{
cout << ", custom profession: " << temp.custom_profession;
}
2009-11-13 20:46:56 -07:00
if(temp.current_job.active)
{
2009-11-13 20:46:56 -07:00
cout << ", current job: " << mem.getJob(temp.current_job.jobId);
}
2009-11-13 20:46:56 -07:00
cout << endl;
cout << "happiness: " << temp.happiness << ", strength: " << temp.strength << ", agility: "
<< temp.agility << ", toughness: " << temp.toughness << ", money: " << temp.money << ", id: " << temp.id;
if(temp.squad_leader_id != -1){
cout << ", squad_leader_id: " << temp.squad_leader_id;
}
2009-11-13 20:46:56 -07:00
cout << ", sex: ";
if(temp.sex == 0){
2009-11-13 20:46:56 -07:00
cout << "Female";
}
else{
2009-11-13 20:46:56 -07:00
cout <<"Male";
}
cout << endl;
/*
//skills
for(unsigned int i = 0; i < temp.skills.size();i++){
if(i > 0){
cout << ", ";
}
cout << temp.skills[i].name << ": " << temp.skills[i].rating;
}
*/
2009-10-23 20:32:57 -06:00
/*
* FLAGS 1
*/
cout << "flags1: ";
2009-10-23 20:32:57 -06:00
print_bits(temp.flags1.whole, cout);
cout << endl;
if(temp.flags1.bits.dead)
{
cout << "dead ";
}
2009-10-29 08:06:05 -06:00
if(temp.flags1.bits.on_ground)
2009-10-23 20:32:57 -06:00
{
2009-10-29 08:06:05 -06:00
cout << "on the ground, ";
2009-10-23 20:32:57 -06:00
}
2009-10-29 08:06:05 -06:00
if(temp.flags1.bits.skeleton)
2009-10-23 20:32:57 -06:00
{
cout << "skeletal ";
}
if(temp.flags1.bits.zombie)
{
cout << "zombie ";
}
if(temp.flags1.bits.tame)
{
cout << "tame ";
}
if(temp.flags1.bits.royal_guard)
{
cout << "royal_guard ";
}
if(temp.flags1.bits.fortress_guard)
{
cout << "fortress_guard ";
}
/*
* FLAGS 2
*/
cout << endl << "flags2: ";
2009-10-23 20:32:57 -06:00
print_bits(temp.flags2.whole, cout);
cout << endl;
2009-10-29 08:06:05 -06:00
if(temp.flags2.bits.killed)
2009-10-23 20:32:57 -06:00
{
2009-10-29 08:06:05 -06:00
cout << "killed by kill function, ";
2009-10-23 20:32:57 -06:00
}
2009-10-29 08:06:05 -06:00
if(temp.flags2.bits.resident)
2009-10-23 20:32:57 -06:00
{
2009-11-13 20:46:56 -07:00
cout << "resident, ";
2009-10-23 20:32:57 -06:00
}
2009-10-29 08:06:05 -06:00
if(temp.flags2.bits.gutted)
2009-10-23 20:32:57 -06:00
{
2009-11-13 20:46:56 -07:00
cout << "gutted, ";
2009-10-23 20:32:57 -06:00
}
if(temp.flags2.bits.slaughter)
{
2009-11-13 20:46:56 -07:00
cout << "marked for slaughter, ";
2009-10-23 20:32:57 -06:00
}
if(temp.flags2.bits.underworld)
{
2009-11-13 20:46:56 -07:00
cout << "from the underworld, ";
2009-10-23 20:32:57 -06:00
}
cout << endl << endl;
}
DF.FinishReadCreatures();
DF.Detach();
#ifndef LINUX_BUILD
2009-10-30 03:01:14 -06:00
cout << "Done. Press any key to continue" << endl;
cin.ignore();
#endif
return 0;
}