dfhack/tools/examples/hotkeynotedump.cpp

67 lines
1.6 KiB
C++

// Hotkey and Note Dump
2010-02-18 10:06:32 -07:00
// Or Hot Keynote Dump? :P
#include <iostream>
#include <climits>
#include <vector>
using namespace std;
2010-05-25 22:48:23 -06:00
#include <DFHack.h>
int main (void)
{
2010-05-23 15:06:10 -06:00
DFHack::ContextManager DFMgr("Memory.xml");
DFHack::Context * DF;
try
{
2010-05-23 15:06:10 -06:00
DF = DFMgr.getSingleContext();
DF->Attach();
}
catch (exception& e)
{
cerr << e.what() << endl;
#ifndef LINUX_BUILD
cin.ignore();
#endif
return 1;
}
2010-05-23 15:06:10 -06:00
DFHack::memory_info * mem = DF->getMemoryInfo();
DFHack::Position * Pos = DF->getPosition();
// get stone matgloss mapping
2010-04-10 18:32:50 -06:00
/*
2010-02-18 10:06:32 -07:00
uint32_t numNotes;
if(!DF.InitReadNotes(numNotes))
{
cerr << "Can't get notes" << endl;
return 1;
}
2010-04-10 18:32:50 -06:00
*/
/*
2010-02-18 10:06:32 -07:00
cout << "Notes" << endl;
for(uint32_t i = 0; i < numNotes; i++)
{
2010-02-18 10:06:32 -07:00
DFHack::t_note temp;
DF.ReadNote(i,temp);
cout << "x: " << temp.x << "\ty: " << temp.y << "\tz: " << temp.z <<
"\tsymbol: " << temp.symbol << "\tfg: " << temp.foreground << "\tbg: " << temp.background <<
"\ttext: " << temp.name << endl;
}
2010-04-10 18:32:50 -06:00
*/
2010-02-18 10:06:32 -07:00
cout << "Hotkeys" << endl;
DFHack::t_hotkey hotkeys[NUM_HOTKEYS];
2010-04-10 18:32:50 -06:00
Pos->ReadHotkeys(hotkeys);
2010-02-18 10:06:32 -07:00
for(uint32_t i =0;i< NUM_HOTKEYS;i++)
{
cout << "x: " << hotkeys[i].x << "\ty: " << hotkeys[i].y << "\tz: " << hotkeys[i].z <<
"\ttext: " << hotkeys[i].name << endl;
}
2010-04-10 18:32:50 -06:00
//DF.FinishReadNotes();
2010-05-23 15:06:10 -06:00
DF->Detach();
#ifndef LINUX_BUILD
cout << "Done. Press any key to continue" << endl;
cin.ignore();
#endif
return 0;
2010-05-01 18:38:18 -06:00
}