2011-04-30 15:58:29 -06:00
|
|
|
// Produces a list of materials available on the map.
|
|
|
|
// Options:
|
|
|
|
// -a : show unrevealed tiles
|
|
|
|
// -p : don't show plants
|
|
|
|
// -s : don't show slade
|
|
|
|
// -t : don't show demon temple
|
2009-09-13 18:02:46 -06:00
|
|
|
|
2011-05-02 15:32:32 -06:00
|
|
|
//#include <cstdlib>
|
2009-09-13 18:02:46 -06:00
|
|
|
#include <iostream>
|
2011-05-01 21:03:48 -06:00
|
|
|
#include <iomanip>
|
2009-09-13 18:02:46 -06:00
|
|
|
#include <map>
|
2011-05-01 21:03:48 -06:00
|
|
|
#include <algorithm>
|
2011-04-30 15:58:29 -06:00
|
|
|
#include <vector>
|
2009-09-13 18:02:46 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
using namespace std;
|
2010-05-25 22:48:23 -06:00
|
|
|
#include <DFHack.h>
|
2011-04-30 15:58:29 -06:00
|
|
|
#include <dfhack/extra/MapExtras.h>
|
2011-05-01 21:03:48 -06:00
|
|
|
#include <xgetopt.h>
|
2011-05-17 00:36:38 -06:00
|
|
|
#include <dfhack/extra/termutil.h>
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
typedef std::map<int16_t, unsigned int> MatMap;
|
2011-05-01 21:03:48 -06:00
|
|
|
typedef std::vector< pair<int16_t, unsigned int> > MatSorter;
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
typedef std::vector<DFHack::t_feature> FeatureList;
|
|
|
|
typedef std::vector<DFHack::t_feature*> FeatureListPointer;
|
|
|
|
typedef std::map<DFHack::DFCoord, FeatureListPointer> FeatureMap;
|
2011-05-14 16:26:44 -06:00
|
|
|
typedef std::vector<DFHack::dfh_plant> PlantList;
|
2009-09-13 18:02:46 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
bool parseOptions(int argc, char **argv, bool &showHidden, bool &showPlants,
|
|
|
|
bool &showSlade, bool &showTemple)
|
2010-06-20 16:31:43 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
char c;
|
2011-05-01 21:10:13 -06:00
|
|
|
xgetopt opt(argc, argv, "apst");
|
2011-05-02 16:10:56 -06:00
|
|
|
opt.opterr = 0;
|
2011-05-01 21:03:48 -06:00
|
|
|
while ((c = opt()) != -1)
|
2010-06-20 16:31:43 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'a':
|
|
|
|
showHidden = true;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
showPlants = false;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
showSlade = false;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
showTemple = false;
|
|
|
|
break;
|
|
|
|
case '?':
|
2011-05-02 15:32:32 -06:00
|
|
|
switch (opt.optopt)
|
2011-04-30 15:58:29 -06:00
|
|
|
{
|
|
|
|
// For when we take arguments
|
|
|
|
default:
|
2011-05-02 15:32:32 -06:00
|
|
|
if (isprint(opt.optopt))
|
|
|
|
std::cerr << "Unknown option -" << opt.optopt << "!"
|
2011-04-30 15:58:29 -06:00
|
|
|
<< std::endl;
|
|
|
|
else
|
2011-05-02 15:32:32 -06:00
|
|
|
std::cerr << "Unknown option character " << (int) opt.optopt << "!"
|
2011-04-30 15:58:29 -06:00
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// Um.....
|
|
|
|
return false;
|
|
|
|
}
|
2010-06-20 16:31:43 -06:00
|
|
|
}
|
2011-05-07 19:21:34 -06:00
|
|
|
return true;
|
2011-04-30 15:58:29 -06:00
|
|
|
}
|
2010-06-20 16:31:43 -06:00
|
|
|
|
2011-05-01 21:03:48 -06:00
|
|
|
template<template <typename> class P = std::greater >
|
|
|
|
struct compare_pair_second
|
|
|
|
{
|
|
|
|
template<class T1, class T2>
|
|
|
|
bool operator()(const std::pair<T1, T2>& left, const std::pair<T1, T2>& right)
|
|
|
|
{
|
|
|
|
return P<T2>()(left.second, right.second);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
void printMats(MatMap &mat, std::vector<DFHack::t_matgloss> &materials)
|
2010-06-20 16:31:43 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
unsigned int total = 0;
|
2011-05-01 21:03:48 -06:00
|
|
|
MatSorter sorting_vector;
|
2011-04-30 15:58:29 -06:00
|
|
|
for (MatMap::const_iterator it = mat.begin(); it != mat.end(); ++it)
|
2011-05-01 21:03:48 -06:00
|
|
|
{
|
|
|
|
sorting_vector.push_back(*it);
|
|
|
|
}
|
|
|
|
std::sort(sorting_vector.begin(), sorting_vector.end(), compare_pair_second<>());
|
|
|
|
for (MatSorter::const_iterator it = sorting_vector.begin(); it != sorting_vector.end(); ++it)
|
2010-06-20 16:31:43 -06:00
|
|
|
{
|
2011-05-24 21:13:24 -06:00
|
|
|
if(it->first >= materials.size())
|
|
|
|
{
|
|
|
|
cerr << "Bad index: " << it->first << " out of " << materials.size() << endl;
|
|
|
|
continue;
|
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
DFHack::t_matgloss mat = materials[it->first];
|
2011-05-01 21:03:48 -06:00
|
|
|
std::cout << std::setw(25) << mat.id << " : " << it->second << std::endl;
|
2011-04-30 15:58:29 -06:00
|
|
|
total += it->second;
|
2010-06-20 16:31:43 -06:00
|
|
|
}
|
2011-05-01 21:03:48 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cout << ">>> TOTAL = " << total << std::endl << std::endl;
|
|
|
|
}
|
2010-06-20 16:31:43 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
int main(int argc, char *argv[])
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-05-14 21:19:51 -06:00
|
|
|
bool temporary_terminal = TemporaryTerminal();
|
2011-04-30 15:58:29 -06:00
|
|
|
bool showHidden = false;
|
|
|
|
bool showPlants = true;
|
|
|
|
bool showSlade = true;
|
|
|
|
bool showTemple = true;
|
|
|
|
|
|
|
|
if (!parseOptions(argc, argv, showHidden, showPlants, showSlade, showTemple))
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
return -1;
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
2011-04-17 07:51:52 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
uint32_t x_max = 0, y_max = 0, z_max = 0;
|
|
|
|
DFHack::ContextManager manager("Memory.xml");
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
DFHack::Context *context = manager.getSingleContext();
|
|
|
|
if (!context->Attach())
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cerr << "Unable to attach to DF!" << std::endl;
|
2011-05-14 21:19:51 -06:00
|
|
|
if(temporary_terminal)
|
|
|
|
std::cin.ignore();
|
2009-09-13 18:02:46 -06:00
|
|
|
return 1;
|
|
|
|
}
|
2010-04-04 16:48:19 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
DFHack::Maps *maps = context->getMaps();
|
|
|
|
if (!maps->Start())
|
2010-03-26 06:01:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cerr << "Cannot get map info!" << std::endl;
|
|
|
|
context->Detach();
|
2011-05-14 21:19:51 -06:00
|
|
|
if(temporary_terminal)
|
|
|
|
std::cin.ignore();
|
2011-05-01 03:11:42 -06:00
|
|
|
return 1;
|
2010-03-26 06:01:46 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
maps->getSize(x_max, y_max, z_max);
|
|
|
|
MapExtras::MapCache map(maps);
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
DFHack::Materials *mats = context->getMaterials();
|
|
|
|
if (!mats->ReadInorganicMaterials())
|
2010-04-23 17:15:15 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cerr << "Unable to read inorganic material definitons!" << std::endl;
|
|
|
|
context->Detach();
|
2011-05-14 21:19:51 -06:00
|
|
|
if(temporary_terminal)
|
|
|
|
std::cin.ignore();
|
2011-05-01 03:11:42 -06:00
|
|
|
return 1;
|
2010-04-23 17:15:15 -06:00
|
|
|
}
|
2011-05-01 03:11:42 -06:00
|
|
|
if (showPlants && !mats->ReadOrganicMaterials())
|
2011-04-30 15:58:29 -06:00
|
|
|
{
|
2011-05-01 03:11:42 -06:00
|
|
|
std::cerr << "Unable to read organic material definitons; plants won't be listed!" << std::endl;
|
|
|
|
showPlants = false;
|
2011-04-30 15:58:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
FeatureList globalFeatures;
|
|
|
|
FeatureMap localFeatures;
|
|
|
|
DFHack::t_feature *blockFeatureGlobal = 0;
|
|
|
|
DFHack::t_feature *blockFeatureLocal = 0;
|
2010-04-23 17:15:15 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
bool hasAquifer = false;
|
|
|
|
bool hasDemonTemple = false;
|
|
|
|
bool hasLair = false;
|
|
|
|
MatMap baseMats;
|
|
|
|
MatMap layerMats;
|
|
|
|
MatMap veinMats;
|
|
|
|
MatMap plantMats;
|
2011-05-01 21:03:48 -06:00
|
|
|
MatMap treeMats;
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
if (!(showSlade && maps->ReadGlobalFeatures(globalFeatures)))
|
2010-04-23 17:15:15 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cerr << "Unable to read global features; slade won't be listed!" << std::endl;
|
2010-05-22 05:20:58 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
if (!maps->ReadLocalFeatures(localFeatures))
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-05-01 03:11:42 -06:00
|
|
|
std::cerr << "Unable to read local features; adamantine "
|
|
|
|
<< (showTemple ? "and demon temples " : "")
|
2011-04-30 15:58:29 -06:00
|
|
|
<< "won't be listed!" << std::endl;
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
uint32_t vegCount = 0;
|
|
|
|
DFHack::Vegetation *veg = context->getVegetation();
|
|
|
|
if (showPlants && !veg->Start(vegCount))
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cerr << "Unable to read vegetation; plants won't be listed!" << std::endl;
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
for(uint32_t z = 0; z < z_max; z++)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
for(uint32_t b_y = 0; b_y < y_max; b_y++)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
for(uint32_t b_x = 0; b_x < x_max; b_x++)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
// Get the map block
|
|
|
|
DFHack::DFCoord blockCoord(b_x, b_y);
|
|
|
|
MapExtras::Block *b = map.BlockAt(DFHack::DFCoord(b_x, b_y, z));
|
|
|
|
if (!b || !b->valid)
|
|
|
|
{
|
2009-09-13 18:02:46 -06:00
|
|
|
continue;
|
2011-04-30 15:58:29 -06:00
|
|
|
}
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
{ // Find features
|
|
|
|
uint16_t index = b->raw.global_feature;
|
|
|
|
if (index != -1 && index < globalFeatures.size())
|
|
|
|
{
|
|
|
|
blockFeatureGlobal = &globalFeatures[index];
|
|
|
|
}
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
index = b->raw.local_feature;
|
|
|
|
FeatureMap::const_iterator it = localFeatures.find(blockCoord);
|
|
|
|
if (it != localFeatures.end())
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
FeatureListPointer features = it->second;
|
|
|
|
|
|
|
|
if (index != -1 && index < features.size())
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
blockFeatureLocal = features[index];
|
2011-04-17 07:51:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-17 03:37:36 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
// Iterate over all the tiles in the block
|
|
|
|
for(uint32_t y = 0; y < 16; y++)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
for(uint32_t x = 0; x < 16; x++)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
DFHack::DFCoord coord(x, y);
|
|
|
|
DFHack::t_designation des = b->DesignationAt(coord);
|
|
|
|
DFHack::t_occupancy occ = b->OccupancyAt(coord);
|
|
|
|
|
|
|
|
// Skip hidden tiles
|
|
|
|
if (!showHidden && des.bits.hidden)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-19 17:28:47 -06:00
|
|
|
continue;
|
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
// Check for aquifer
|
|
|
|
if (des.bits.water_table)
|
2011-04-19 17:28:47 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
hasAquifer = true;
|
2011-04-19 17:28:47 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
// Check for lairs
|
|
|
|
if (occ.bits.monster_lair)
|
2011-04-19 17:28:47 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
hasLair = true;
|
2011-04-17 07:51:52 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
uint16_t type = b->TileTypeAt(coord);
|
|
|
|
const DFHack::TileRow *info = DFHack::getTileRow(type);
|
|
|
|
|
|
|
|
if (!info)
|
|
|
|
{
|
|
|
|
std::cerr << "Bad type: " << type << std::endl;
|
2011-04-17 07:51:52 -06:00
|
|
|
continue;
|
2011-04-30 15:58:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// We only care about these types
|
|
|
|
switch (info->shape)
|
|
|
|
{
|
|
|
|
case DFHack::WALL:
|
|
|
|
case DFHack::PILLAR:
|
|
|
|
case DFHack::FORTIFICATION:
|
|
|
|
break;
|
|
|
|
default:
|
2011-04-19 17:28:47 -06:00
|
|
|
continue;
|
2011-04-30 15:58:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Count the material type
|
|
|
|
baseMats[info->material]++;
|
|
|
|
|
|
|
|
// Find the type of the tile
|
|
|
|
switch (info->material)
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
case DFHack::SOIL:
|
|
|
|
case DFHack::STONE:
|
|
|
|
layerMats[b->baseMaterialAt(coord)]++;
|
|
|
|
break;
|
|
|
|
case DFHack::VEIN:
|
|
|
|
veinMats[b->veinMaterialAt(coord)]++;
|
|
|
|
break;
|
|
|
|
case DFHack::FEATSTONE:
|
2011-05-04 17:24:20 -06:00
|
|
|
if (blockFeatureLocal && des.bits.feature_local)
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
if (blockFeatureLocal->type == DFHack::feature_Adamantine_Tube
|
|
|
|
&& blockFeatureLocal->main_material == 0) // stone
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
veinMats[blockFeatureLocal->sub_material]++;
|
2011-04-17 07:51:52 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
else if (showTemple
|
|
|
|
&& blockFeatureLocal->type == DFHack::feature_Hell_Temple)
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
hasDemonTemple = true;
|
2011-04-17 07:51:52 -06:00
|
|
|
}
|
|
|
|
}
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-05-04 17:24:20 -06:00
|
|
|
if (showSlade && blockFeatureGlobal && des.bits.feature_global
|
2011-04-30 15:58:29 -06:00
|
|
|
&& blockFeatureGlobal->type == DFHack::feature_Underworld
|
|
|
|
&& blockFeatureGlobal->main_material == 0) // stone
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
layerMats[blockFeatureGlobal->sub_material]++;
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
break;
|
|
|
|
case DFHack::OBSIDIAN:
|
|
|
|
// TODO ?
|
|
|
|
break;
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
// Check plants this way, as the other way wasn't getting them all
|
|
|
|
// and we can check visibility more easily here
|
|
|
|
if (showPlants)
|
2010-04-23 17:15:15 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
PlantList plants;
|
|
|
|
if (maps->ReadVegetation(b_x, b_y, z, &plants))
|
2010-04-23 17:15:15 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
for (PlantList::const_iterator it = plants.begin(); it != plants.end(); it++)
|
2011-03-10 19:09:45 -07:00
|
|
|
{
|
2011-05-14 16:26:44 -06:00
|
|
|
const DFHack::t_plant & plant = (*it).sdata;
|
2011-04-30 15:58:29 -06:00
|
|
|
DFHack::DFCoord loc(plant.x, plant.y);
|
|
|
|
loc = loc % 16;
|
|
|
|
if (showHidden || !b->DesignationAt(loc).bits.hidden)
|
2010-04-23 17:15:15 -06:00
|
|
|
{
|
2011-05-01 21:03:48 -06:00
|
|
|
if(plant.is_shrub)
|
2011-05-14 16:26:44 -06:00
|
|
|
plantMats[plant.material]++;
|
2011-05-01 21:03:48 -06:00
|
|
|
else
|
2011-05-14 16:26:44 -06:00
|
|
|
treeMats[plant.material]++;
|
2010-04-23 17:15:15 -06:00
|
|
|
}
|
2011-03-10 19:09:45 -07:00
|
|
|
}
|
2010-04-23 17:15:15 -06:00
|
|
|
}
|
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
// Block end
|
|
|
|
} // block x
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
// Clean uneeded memory
|
|
|
|
map.trash();
|
|
|
|
} // block y
|
|
|
|
} // z
|
2010-11-10 18:32:33 -07:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
MatMap::const_iterator it;
|
2011-04-17 07:51:52 -06:00
|
|
|
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cout << "Base materials:" << std::endl;
|
|
|
|
for (it = baseMats.begin(); it != baseMats.end(); ++it)
|
2010-03-31 09:31:49 -06:00
|
|
|
{
|
2011-05-01 21:10:13 -06:00
|
|
|
std::cout << std::setw(25) << DFHack::TileMaterialString[it->first] << " : " << it->second << std::endl;
|
2010-03-31 09:31:49 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
std::cout << std::endl << "Layer materials:" << std::endl;
|
|
|
|
printMats(layerMats, mats->inorganic);
|
|
|
|
|
|
|
|
std::cout << "Vein materials:" << std::endl;
|
|
|
|
printMats(veinMats, mats->inorganic);
|
|
|
|
|
|
|
|
if (showPlants)
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-05-01 21:03:48 -06:00
|
|
|
std::cout << "Shrubs:" << std::endl;
|
2011-04-30 15:58:29 -06:00
|
|
|
printMats(plantMats, mats->organic);
|
2011-05-01 21:03:48 -06:00
|
|
|
std::cout << "Wood in trees:" << std::endl;
|
|
|
|
printMats(treeMats, mats->organic);
|
2011-04-17 07:51:52 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
if (hasAquifer)
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cout << "Has aquifer" << std::endl;
|
2011-04-17 07:51:52 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
if (hasDemonTemple)
|
2011-04-17 07:51:52 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cout << "Has demon temple" << std::endl;
|
2011-04-17 07:51:52 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
if (hasLair)
|
2009-09-13 18:02:46 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
std::cout << "Has lair" << std::endl;
|
2009-09-13 18:02:46 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
if (showPlants)
|
2010-06-20 16:31:43 -06:00
|
|
|
{
|
2011-04-30 15:58:29 -06:00
|
|
|
veg->Finish();
|
2010-06-20 16:31:43 -06:00
|
|
|
}
|
2011-04-30 15:58:29 -06:00
|
|
|
mats->Finish();
|
|
|
|
maps->Finish();
|
|
|
|
context->Detach();
|
2011-05-14 21:19:51 -06:00
|
|
|
if(temporary_terminal)
|
|
|
|
{
|
|
|
|
std::cout << " Press any key to finish.";
|
|
|
|
std::cin.ignore();
|
|
|
|
}
|
2011-05-01 03:11:42 -06:00
|
|
|
std::cout << std::endl;
|
2009-09-13 18:02:46 -06:00
|
|
|
return 0;
|
2009-12-13 14:03:19 -07:00
|
|
|
}
|