2010-04-02 19:52:46 -06:00
|
|
|
// Just show some position data
|
|
|
|
|
2009-11-02 05:53:39 -07:00
|
|
|
#include <iostream>
|
|
|
|
#include <climits>
|
|
|
|
#include <integers.h>
|
|
|
|
#include <vector>
|
2010-04-02 19:52:46 -06:00
|
|
|
#include <sstream>
|
2009-11-02 05:53:39 -07:00
|
|
|
#include <ctime>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include <DFTypes.h>
|
|
|
|
#include <DFHackAPI.h>
|
2010-04-02 19:52:46 -06:00
|
|
|
#include <DFProcess.h>
|
|
|
|
#include <DFMemInfo.h>
|
|
|
|
#include <DFVector.h>
|
2010-04-04 16:48:19 -06:00
|
|
|
#include <modules/Materials.h>
|
2009-11-02 05:53:39 -07:00
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
int main (int numargs, const char ** args)
|
|
|
|
{
|
|
|
|
uint32_t addr;
|
|
|
|
if (numargs == 2)
|
|
|
|
{
|
|
|
|
istringstream input (args[1],istringstream::in);
|
|
|
|
input >> std::hex >> addr;
|
|
|
|
}
|
2009-11-10 20:37:28 -07:00
|
|
|
DFHack::API DF("Memory.xml");
|
2010-03-26 06:01:46 -06:00
|
|
|
try
|
2009-11-02 05:53:39 -07:00
|
|
|
{
|
2010-03-26 06:01:46 -06:00
|
|
|
DF.Attach();
|
|
|
|
}
|
|
|
|
catch (exception& e)
|
|
|
|
{
|
|
|
|
cerr << e.what() << endl;
|
|
|
|
#ifndef LINUX_BUILD
|
|
|
|
cin.ignore();
|
|
|
|
#endif
|
2009-11-02 05:53:39 -07:00
|
|
|
return 1;
|
|
|
|
}
|
2010-03-26 06:01:46 -06:00
|
|
|
|
2010-04-02 19:52:46 -06:00
|
|
|
DFHack::Process* p = DF.getProcess();
|
|
|
|
DFHack::memory_info* mem = DF.getMemoryInfo();
|
2010-04-04 16:48:19 -06:00
|
|
|
DFHack::Materials *Materials = DF.getMaterials();
|
|
|
|
|
2010-04-04 02:10:00 -06:00
|
|
|
cout << "----==== Inorganic ====----" << endl;
|
|
|
|
vector<DFHack::t_matgloss> matgloss;
|
2010-04-04 16:48:19 -06:00
|
|
|
Materials->ReadInorganicMaterials (matgloss);
|
2010-04-09 19:49:37 -06:00
|
|
|
for(uint32_t i = 0; i < matgloss.size();i++)
|
2010-04-04 02:10:00 -06:00
|
|
|
{
|
2010-04-10 18:08:21 -06:00
|
|
|
cout << i << ": " << matgloss[i].id << endl;
|
2010-04-04 02:10:00 -06:00
|
|
|
}
|
2009-11-02 05:53:39 -07:00
|
|
|
|
2010-04-04 02:10:00 -06:00
|
|
|
cout << endl << "----==== Organic ====----" << endl;
|
|
|
|
vector<DFHack::t_matgloss> organic;
|
2010-04-04 16:48:19 -06:00
|
|
|
Materials->ReadOrganicMaterials (matgloss);
|
2010-04-09 19:49:37 -06:00
|
|
|
for(uint32_t i = 0; i < matgloss.size();i++)
|
2010-04-04 02:10:00 -06:00
|
|
|
{
|
2010-04-10 18:08:21 -06:00
|
|
|
cout << i << ": " << matgloss[i].id << endl;
|
2010-04-04 02:10:00 -06:00
|
|
|
}
|
|
|
|
cout << endl << "----==== Creature types ====----" << endl;
|
|
|
|
vector<DFHack::t_matgloss> creature;
|
2010-04-04 16:48:19 -06:00
|
|
|
Materials->ReadCreatureTypes (matgloss);
|
2010-04-09 19:49:37 -06:00
|
|
|
for(uint32_t i = 0; i < matgloss.size();i++)
|
2010-04-04 02:10:00 -06:00
|
|
|
{
|
2010-04-10 18:08:21 -06:00
|
|
|
cout << i << ": " << matgloss[i].id << endl;
|
2010-04-04 02:10:00 -06:00
|
|
|
}
|
2009-11-05 18:04:17 -07:00
|
|
|
#ifndef LINUX_BUILD
|
|
|
|
cout << "Done. Press any key to continue" << endl;
|
2009-11-02 05:53:39 -07:00
|
|
|
cin.ignore();
|
2009-11-05 18:04:17 -07:00
|
|
|
#endif
|
2009-11-02 05:53:39 -07:00
|
|
|
return 0;
|
2009-12-13 14:03:19 -07:00
|
|
|
}
|