2010-04-07 04:49:37 -06:00
|
|
|
/*
|
|
|
|
www.sourceforge.net/projects/dfhack
|
|
|
|
Copyright (c) 2009 Petr Mrázek (peterix), Kenneth Ferland (Impaler[WrG]), dorf
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
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-05-26 04:24:45 -06:00
|
|
|
#include "ContextShared.h"
|
2010-05-26 00:42:09 -06:00
|
|
|
|
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"
|
2010-04-07 04:49:37 -06:00
|
|
|
using namespace DFHack;
|
|
|
|
|
2011-03-18 01:53:59 -06:00
|
|
|
Module* DFHack::createVegetation(DFContextShared * d)
|
|
|
|
{
|
|
|
|
return new Vegetation(d);
|
|
|
|
}
|
|
|
|
|
2010-04-07 04:49:37 -06:00
|
|
|
struct Vegetation::Private
|
|
|
|
{
|
|
|
|
uint32_t vegetation_vector;
|
|
|
|
uint32_t tree_desc_offset;
|
|
|
|
// translation
|
2010-04-18 06:56:09 -06:00
|
|
|
DfVector <uint32_t> * p_veg;
|
2010-08-20 06:10:05 -06:00
|
|
|
|
2010-05-26 04:24:45 -06:00
|
|
|
DFContextShared *d;
|
2010-04-18 13:30:02 -06:00
|
|
|
Process * owner;
|
2010-04-07 04:49:37 -06:00
|
|
|
bool Inited;
|
|
|
|
bool Started;
|
|
|
|
};
|
|
|
|
|
2010-05-26 04:24:45 -06:00
|
|
|
Vegetation::Vegetation(DFContextShared * d_)
|
2010-04-07 04:49:37 -06:00
|
|
|
{
|
|
|
|
d = new Private;
|
2010-04-18 13:30:02 -06:00
|
|
|
d->owner = d_->p;
|
2010-04-07 04:49:37 -06:00
|
|
|
d->d = d_;
|
|
|
|
d->Inited = d->Started = false;
|
2010-08-29 16:08:17 -06:00
|
|
|
OffsetGroup * OG_Veg = d->d->offset_descriptor->getGroup("Vegetation");
|
|
|
|
d->vegetation_vector = OG_Veg->getAddress ("vector");
|
|
|
|
d->tree_desc_offset = OG_Veg->getOffset ("tree_desc_offset");
|
2010-04-07 04:49:37 -06:00
|
|
|
d->Inited = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vegetation::~Vegetation()
|
|
|
|
{
|
|
|
|
if(d->Started)
|
|
|
|
Finish();
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Vegetation::Start(uint32_t & numplants)
|
|
|
|
{
|
2010-08-29 16:08:17 -06:00
|
|
|
if(!d->Inited)
|
|
|
|
return false;
|
2011-06-12 17:14:10 -06:00
|
|
|
d->p_veg = new DfVector <uint32_t> (d->vegetation_vector);
|
2010-04-18 06:56:09 -06:00
|
|
|
numplants = d->p_veg->size();
|
2010-04-07 04:49:37 -06:00
|
|
|
d->Started = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-14 16:26:44 -06:00
|
|
|
bool Vegetation::Read (const uint32_t index, dfh_plant & shrubbery)
|
2010-04-07 04:49:37 -06:00
|
|
|
{
|
|
|
|
if(!d->Started)
|
|
|
|
return false;
|
|
|
|
// read pointer from vector at position
|
2010-04-18 06:56:09 -06:00
|
|
|
uint32_t temp = d->p_veg->at (index);
|
2010-04-07 04:49:37 -06:00
|
|
|
// read from memory
|
2011-05-14 16:26:44 -06:00
|
|
|
d->d->readName(shrubbery.name,temp);
|
|
|
|
d->owner->read (temp + d->tree_desc_offset, sizeof (t_plant), (uint8_t *) &shrubbery.sdata);
|
2010-04-07 04:49:37 -06:00
|
|
|
shrubbery.address = temp;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-05-14 16:26:44 -06:00
|
|
|
bool Vegetation::Write (dfh_plant & shrubbery)
|
|
|
|
{
|
|
|
|
if(!d->Started)
|
|
|
|
return false;
|
|
|
|
d->owner->write (shrubbery.address + d->tree_desc_offset, sizeof (t_plant), (uint8_t *) &shrubbery.sdata);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-07 04:49:37 -06:00
|
|
|
bool Vegetation::Finish()
|
|
|
|
{
|
|
|
|
if(d->p_veg)
|
|
|
|
{
|
|
|
|
delete d->p_veg;
|
|
|
|
d->p_veg = 0;
|
|
|
|
}
|
|
|
|
d->Started = false;
|
|
|
|
return true;
|
2010-05-01 18:38:18 -06:00
|
|
|
}
|
|
|
|
|