2009-09-13 18:02:46 -06:00
|
|
|
// This is a reveal program. It reveals the map.
|
|
|
|
|
|
|
|
#include <iostream>
|
2009-10-21 20:14:16 -06:00
|
|
|
#include <integers.h>
|
2009-09-13 18:02:46 -06:00
|
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include <DFTypes.h>
|
|
|
|
#include <DFHackAPI.h>
|
2010-04-04 16:48:19 -06:00
|
|
|
#include <modules/Maps.h>
|
2009-09-13 18:02:46 -06:00
|
|
|
|
|
|
|
int main (void)
|
|
|
|
{
|
|
|
|
uint32_t x_max,y_max,z_max;
|
2010-03-25 14:37:09 -06:00
|
|
|
DFHack::designations40d designations;
|
2009-09-13 18:02:46 -06:00
|
|
|
|
2009-11-10 20:37:28 -07:00
|
|
|
DFHack::API DF("Memory.xml");
|
2010-03-26 06:01:46 -06:00
|
|
|
try
|
2009-09-13 18:02:46 -06: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-09-13 18:02:46 -06:00
|
|
|
return 1;
|
|
|
|
}
|
2010-03-26 06:01:46 -06:00
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
DFHack::Maps *Maps =DF.getMaps();
|
2010-03-26 06:01:46 -06:00
|
|
|
// init the map
|
2010-04-04 16:48:19 -06:00
|
|
|
if(!Maps->Start())
|
2010-03-26 06:01:46 -06:00
|
|
|
{
|
|
|
|
cerr << "Can't init map." << endl;
|
|
|
|
#ifndef LINUX_BUILD
|
|
|
|
cin.ignore();
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
Maps->getSize(x_max,y_max,z_max);
|
2009-09-13 18:02:46 -06:00
|
|
|
|
|
|
|
// walk the map
|
|
|
|
for(uint32_t x = 0; x< x_max;x++)
|
|
|
|
{
|
|
|
|
for(uint32_t y = 0; y< y_max;y++)
|
|
|
|
{
|
|
|
|
for(uint32_t z = 0; z< z_max;z++)
|
|
|
|
{
|
2010-04-04 16:48:19 -06:00
|
|
|
if(Maps->isValidBlock(x,y,z))
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
|
|
|
// read block designations
|
2010-04-04 16:48:19 -06:00
|
|
|
Maps->ReadDesignations(x,y,z, &designations);
|
2009-09-13 18:02:46 -06:00
|
|
|
// change the hidden flag to 0
|
2010-03-25 14:37:09 -06:00
|
|
|
for (uint32_t i = 0; i < 16;i++) for (uint32_t j = 0; j < 16;j++)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2010-03-25 14:37:09 -06:00
|
|
|
designations[i][j].bits.hidden = 0;
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
|
|
|
// write the designations back
|
2010-04-04 16:48:19 -06:00
|
|
|
Maps->WriteDesignations(x,y,z, &designations);
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-31 12:18:59 -06:00
|
|
|
DF.Detach();
|
2009-11-05 18:04:17 -07:00
|
|
|
#ifndef LINUX_BUILD
|
2009-10-30 03:01:14 -06:00
|
|
|
cout << "Done. Press any key to continue" << endl;
|
|
|
|
cin.ignore();
|
2009-11-05 18:04:17 -07:00
|
|
|
#endif
|
2009-09-13 18:02:46 -06:00
|
|
|
return 0;
|
2009-12-13 14:03:19 -07:00
|
|
|
}
|