2010-04-07 04:49:37 -06:00
|
|
|
/*
|
2011-06-16 15:53:39 -06:00
|
|
|
https://github.com/peterix/dfhack
|
|
|
|
Copyright (c) 2009-2011 Petr Mrázek (peterix@gmail.com)
|
2010-04-07 04:49:37 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any
|
|
|
|
damages arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any
|
|
|
|
purpose, including commercial applications, and to alter it and
|
|
|
|
redistribute it freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must
|
|
|
|
not claim that you wrote the original software. If you use this
|
|
|
|
software in a product, an acknowledgment in the product documentation
|
|
|
|
would be appreciated but is not required.
|
|
|
|
|
|
|
|
2. Altered source versions must be plainly marked as such, and
|
|
|
|
must not be misrepresented as being the original software.
|
|
|
|
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
|
|
distribution.
|
|
|
|
*/
|
|
|
|
|
2011-06-16 15:53:39 -06:00
|
|
|
|
2010-05-26 04:24:45 -06:00
|
|
|
#include "Internal.h"
|
2011-04-10 02:19:15 -06:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
using namespace std;
|
|
|
|
|
2010-08-20 06:10:05 -06:00
|
|
|
#include "dfhack/VersionInfo.h"
|
2011-06-12 15:17:40 -06:00
|
|
|
#include "dfhack/Process.h"
|
|
|
|
#include "dfhack/Vector.h"
|
|
|
|
#include "dfhack/Types.h"
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack/modules/Vegetation.h"
|
|
|
|
#include "dfhack/modules/Translation.h"
|
2011-03-18 01:53:59 -06:00
|
|
|
#include "ModuleFactory.h"
|
2011-06-17 07:02:43 -06:00
|
|
|
#include <dfhack/Core.h>
|
2010-04-07 04:49:37 -06:00
|
|
|
using namespace DFHack;
|
|
|
|
|
2011-06-17 07:02:43 -06:00
|
|
|
Module* DFHack::createVegetation()
|
2011-03-18 01:53:59 -06:00
|
|
|
{
|
2011-06-17 07:02:43 -06:00
|
|
|
return new Vegetation();
|
2011-03-18 01:53:59 -06:00
|
|
|
}
|
|
|
|
|
2011-06-17 07:02:43 -06:00
|
|
|
Vegetation::Vegetation()
|
2010-04-07 04:49:37 -06:00
|
|
|
{
|
2011-06-17 07:02:43 -06:00
|
|
|
Core & c = Core::getInstance();
|
2011-06-13 13:11:02 -06:00
|
|
|
try
|
|
|
|
{
|
2011-06-17 07:02:43 -06:00
|
|
|
OffsetGroup * OG_Veg = c.vinfo->getGroup("Vegetation");
|
2011-06-13 13:11:02 -06:00
|
|
|
all_plants = (vector<df_plant *> *) OG_Veg->getAddress ("vector");
|
|
|
|
}
|
|
|
|
catch(exception &)
|
|
|
|
{
|
|
|
|
all_plants = 0;
|
|
|
|
}
|
2010-04-07 04:49:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
Vegetation::~Vegetation()
|
|
|
|
{
|
2011-05-14 16:26:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|