2011-04-02 16:15:47 -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)
|
2011-04-02 16:15:47 -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
|
|
|
|
2011-04-02 16:15:47 -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"
|
2012-01-03 17:45:11 -07:00
|
|
|
#include "MemAccess.h"
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Types.h"
|
|
|
|
#include "modules/Engravings.h"
|
2011-04-02 16:15:47 -06:00
|
|
|
#include "ModuleFactory.h"
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Core.h"
|
2011-04-02 16:15:47 -06:00
|
|
|
|
|
|
|
using namespace DFHack;
|
|
|
|
|
|
|
|
struct Engravings::Private
|
|
|
|
{
|
|
|
|
uint32_t engraving_vector;
|
2012-01-03 17:45:11 -07:00
|
|
|
vector <t_engraving *> * p_engr;
|
2011-04-02 16:15:47 -06:00
|
|
|
|
|
|
|
Process * owner;
|
|
|
|
bool Inited;
|
|
|
|
bool Started;
|
|
|
|
};
|
|
|
|
|
2011-06-17 07:02:43 -06:00
|
|
|
Module* DFHack::createEngravings()
|
2011-04-02 16:15:47 -06:00
|
|
|
{
|
2011-06-17 07:02:43 -06:00
|
|
|
return new Engravings();
|
2011-04-02 16:15:47 -06:00
|
|
|
}
|
|
|
|
|
2011-06-17 07:02:43 -06:00
|
|
|
Engravings::Engravings()
|
2011-04-02 16:15:47 -06:00
|
|
|
{
|
2011-06-17 07:02:43 -06:00
|
|
|
Core & c = Core::getInstance();
|
2011-04-02 16:15:47 -06:00
|
|
|
d = new Private;
|
2011-06-17 07:02:43 -06:00
|
|
|
d->owner = c.p;
|
2011-04-02 16:15:47 -06:00
|
|
|
d->Inited = d->Started = false;
|
2012-01-03 17:45:11 -07:00
|
|
|
d->p_engr = (decltype(d->p_engr)) c.vinfo->getGroup("Engravings")->getAddress ("vector");
|
2011-04-02 16:15:47 -06:00
|
|
|
d->Inited = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Engravings::~Engravings()
|
|
|
|
{
|
|
|
|
if(d->Started)
|
|
|
|
Finish();
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Engravings::Start(uint32_t & numengravings)
|
|
|
|
{
|
2012-01-03 17:45:11 -07:00
|
|
|
if(!d->Inited)
|
|
|
|
return false;
|
2011-04-02 16:15:47 -06:00
|
|
|
numengravings = d->p_engr->size();
|
|
|
|
d->Started = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Engravings::Read (const uint32_t index, dfh_engraving & engraving)
|
|
|
|
{
|
|
|
|
if(!d->Started) return false;
|
|
|
|
|
|
|
|
// read pointer from vector at position
|
2012-01-03 17:45:11 -07:00
|
|
|
engraving.s = *d->p_engr->at (index);
|
2011-04-02 16:15:47 -06:00
|
|
|
|
|
|
|
// transform
|
2012-01-03 17:45:11 -07:00
|
|
|
engraving.origin = d->p_engr->at (index);
|
2011-04-02 16:15:47 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Engravings::Write (const dfh_engraving & engraving)
|
|
|
|
{
|
|
|
|
if(!d->Started) return false;
|
|
|
|
//write engraving to memory
|
|
|
|
d->owner->write (engraving.origin, sizeof (t_engraving), (uint8_t *) &(engraving.s));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Engravings::Finish()
|
|
|
|
{
|
|
|
|
d->Started = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|