2009-11-02 05:53:39 -07:00
|
|
|
// Attach test
|
|
|
|
// attachtest - 100x attach/detach, 100x reads, 100x writes
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <climits>
|
|
|
|
#include <integers.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <ctime>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include <DFTypes.h>
|
|
|
|
#include <DFHackAPI.h>
|
|
|
|
|
|
|
|
int main (void)
|
|
|
|
{
|
2009-11-10 20:37:28 -07:00
|
|
|
DFHack::API DF("Memory.xml");
|
2009-11-02 05:53:39 -07:00
|
|
|
if(!DF.Attach())
|
|
|
|
{
|
|
|
|
cerr << "DF not found" << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
vector <t_matgloss> Plants;
|
|
|
|
DF.ReadPlantMatgloss(Plants);
|
|
|
|
|
|
|
|
vector <t_matgloss> Metals;
|
|
|
|
DF.ReadMetalMatgloss(Metals);
|
|
|
|
|
|
|
|
vector <t_matgloss> Stones;
|
|
|
|
DF.ReadStoneMatgloss(Stones);
|
|
|
|
|
|
|
|
vector <t_matgloss> CreatureTypes;
|
|
|
|
DF.ReadCreatureMatgloss(CreatureTypes);
|
|
|
|
|
|
|
|
cout << "Plant: " << Plants[0].id << endl;
|
|
|
|
cout << "Metal: " << Metals[0].id << endl;
|
|
|
|
cout << "Stone: " << Stones[0].id << endl;
|
|
|
|
cout << "Creature: " << CreatureTypes[0].id << endl;
|
|
|
|
|
|
|
|
DF.Detach();
|
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;
|
|
|
|
}
|