2010-04-02 19:52:46 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: Only include from API modules
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef APIPRIVATE_H_INCLUDED
|
|
|
|
#define APIPRIVATE_H_INCLUDED
|
|
|
|
|
|
|
|
namespace DFHack
|
|
|
|
{
|
2010-06-24 23:11:26 -06:00
|
|
|
class Module;
|
|
|
|
|
|
|
|
class Creatures;
|
|
|
|
class Maps;
|
|
|
|
class Position;
|
2010-04-04 16:48:19 -06:00
|
|
|
class Gui;
|
2010-05-12 07:27:51 -06:00
|
|
|
class World;
|
2010-06-24 23:11:26 -06:00
|
|
|
class Materials;
|
2010-05-12 07:27:51 -06:00
|
|
|
class Items;
|
2010-04-06 17:17:03 -06:00
|
|
|
class Translation;
|
2010-06-24 23:11:26 -06:00
|
|
|
class Vegetation;
|
2010-04-09 06:44:00 -06:00
|
|
|
class Buildings;
|
2010-06-24 23:11:26 -06:00
|
|
|
class Constructions;
|
|
|
|
class WindowIO;
|
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
class ProcessEnumerator;
|
|
|
|
class Process;
|
2010-08-20 06:10:05 -06:00
|
|
|
class VersionInfo;
|
2010-04-04 16:48:19 -06:00
|
|
|
struct t_name;
|
2010-05-26 04:24:45 -06:00
|
|
|
class DFContextShared
|
2010-04-04 16:48:19 -06:00
|
|
|
{
|
|
|
|
public:
|
2010-05-26 04:24:45 -06:00
|
|
|
DFContextShared();
|
|
|
|
~DFContextShared();
|
2010-06-24 23:11:26 -06:00
|
|
|
|
2010-04-04 21:29:46 -06:00
|
|
|
// names, used by a few other modules.
|
2010-04-04 16:48:19 -06:00
|
|
|
void readName(t_name & name, uint32_t address);
|
|
|
|
// get the name offsets
|
|
|
|
bool InitReadNames();
|
|
|
|
uint32_t name_firstname_offset;
|
|
|
|
uint32_t name_nickname_offset;
|
|
|
|
uint32_t name_words_offset;
|
2010-04-04 21:29:46 -06:00
|
|
|
bool namesInited;
|
2010-06-24 23:11:26 -06:00
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
ProcessEnumerator* pm;
|
|
|
|
Process* p;
|
|
|
|
char * shm_start;
|
2010-08-20 06:10:05 -06:00
|
|
|
VersionInfo* offset_descriptor;
|
2010-04-04 16:48:19 -06:00
|
|
|
string xml;
|
|
|
|
|
2010-06-24 23:11:26 -06:00
|
|
|
// Modules
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
Creatures * pCreatures;
|
|
|
|
Maps * pMaps;
|
|
|
|
Position * pPosition;
|
|
|
|
Gui * pGui;
|
|
|
|
World * pWorld;
|
|
|
|
Materials * pMaterials;
|
|
|
|
Items * pItems;
|
|
|
|
Translation * pTranslation;
|
|
|
|
Vegetation * pVegetation;
|
|
|
|
Buildings * pBuildings;
|
|
|
|
Constructions * pConstructions;
|
|
|
|
WindowIO * pWindowIO;
|
|
|
|
} s_mods;
|
|
|
|
std::vector <Module *> allModules;
|
2010-04-04 16:48:19 -06:00
|
|
|
/*
|
|
|
|
uint32_t item_material_offset;
|
|
|
|
|
|
|
|
uint32_t note_foreground_offset;
|
|
|
|
uint32_t note_background_offset;
|
|
|
|
uint32_t note_name_offset;
|
|
|
|
uint32_t note_xyz_offset;
|
|
|
|
|
|
|
|
uint32_t settlement_name_offset;
|
|
|
|
uint32_t settlement_world_xy_offset;
|
|
|
|
uint32_t settlement_local_xy_offset;
|
2010-06-24 23:11:26 -06:00
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
uint32_t dwarf_lang_table_offset;
|
|
|
|
|
|
|
|
DfVector *p_effect;
|
|
|
|
DfVector *p_itm;
|
|
|
|
DfVector *p_notes;
|
|
|
|
DfVector *p_settlements;
|
|
|
|
DfVector *p_current_settlement;
|
|
|
|
*/
|
|
|
|
};
|
2010-04-02 19:52:46 -06:00
|
|
|
}
|
2010-05-01 18:38:18 -06:00
|
|
|
#endif
|
|
|
|
|