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;
|
|
|
|
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "VersionInfo.h"
|
|
|
|
#include "MemAccess.h"
|
|
|
|
#include "Types.h"
|
|
|
|
#include "Core.h"
|
2010-04-07 04:49:37 -06:00
|
|
|
using namespace DFHack;
|
|
|
|
|
2012-01-24 11:02:12 -07:00
|
|
|
#include "modules/Vegetation.h"
|
|
|
|
#include "df/world.h"
|
|
|
|
|
|
|
|
using namespace DFHack;
|
|
|
|
using namespace DFHack::Simple;
|
|
|
|
using df::global::world;
|
|
|
|
|
|
|
|
bool Vegetation::isValid()
|
2011-03-18 01:53:59 -06:00
|
|
|
{
|
2012-01-26 19:29:59 -07:00
|
|
|
return (world != NULL);
|
2011-03-18 01:53:59 -06:00
|
|
|
}
|
|
|
|
|
2012-01-24 11:02:12 -07:00
|
|
|
uint32_t Vegetation::getCount()
|
2010-04-07 04:49:37 -06:00
|
|
|
{
|
2012-01-24 11:02:12 -07:00
|
|
|
return world->plants.all.size();
|
2010-04-07 04:49:37 -06:00
|
|
|
}
|
|
|
|
|
2012-01-26 22:27:57 -07:00
|
|
|
df::plant * Vegetation::getPlant(const int32_t index)
|
2010-04-07 04:49:37 -06:00
|
|
|
{
|
2012-01-24 11:02:12 -07:00
|
|
|
if (index < 0 || index >= getCount())
|
|
|
|
return NULL;
|
|
|
|
return world->plants.all[index];
|
2011-05-14 16:26:44 -06:00
|
|
|
}
|
2012-01-26 22:27:57 -07:00
|
|
|
|
2012-01-26 19:29:59 -07:00
|
|
|
bool Vegetation::copyPlant(const int32_t index, t_plant &out)
|
2010-04-07 04:49:37 -06:00
|
|
|
{
|
2012-01-24 11:02:12 -07:00
|
|
|
if (index < 0 || index >= getCount())
|
2012-01-26 19:29:59 -07:00
|
|
|
return false;
|
|
|
|
|
|
|
|
out.origin = world->plants.all[index];
|
|
|
|
|
|
|
|
out.name = out.origin->name;
|
|
|
|
out.flags = out.origin->flags;
|
|
|
|
out.material = out.origin->material;
|
|
|
|
out.pos = out.origin->pos;
|
|
|
|
out.grow_counter = out.origin->grow_counter;
|
|
|
|
out.temperature_1 = out.origin->temperature_1;
|
|
|
|
out.temperature_2 = out.origin->temperature_2;
|
|
|
|
out.is_burning = out.origin->is_burning;
|
|
|
|
out.hitpoints = out.origin->hitpoints;
|
|
|
|
out.update_order = out.origin->update_order;
|
|
|
|
//out.unk1 = out.origin->anon_1;
|
|
|
|
//out.unk2 = out.origin->anon_2;
|
|
|
|
//out.temperature_3 = out.origin->temperature_3;
|
|
|
|
//out.temperature_4 = out.origin->temperature_4;
|
|
|
|
//out.temperature_5 = out.origin->temperature_5;
|
|
|
|
return true;
|
2011-05-14 16:26:44 -06:00
|
|
|
}
|