2009-10-04 07:08:20 -06:00
|
|
|
/*
|
2011-06-16 15:53:39 -06:00
|
|
|
https://github.com/peterix/dfhack
|
2012-09-29 20:03:37 -06:00
|
|
|
Copyright (c) 2009-2012 Petr Mrázek (peterix@gmail.com)
|
2009-10-04 07:08:20 -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-10 05:12:28 -06:00
|
|
|
#pragma once
|
|
|
|
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Pragma.h"
|
|
|
|
#include "Export.h"
|
2009-11-13 20:46:56 -07:00
|
|
|
|
2012-05-03 01:47:04 -06:00
|
|
|
#include "DataDefs.h"
|
|
|
|
#include "df/general_ref.h"
|
|
|
|
#include "df/specific_ref.h"
|
|
|
|
|
2009-12-12 17:47:58 -07:00
|
|
|
namespace DFHack
|
|
|
|
{
|
2011-07-30 08:47:49 -06:00
|
|
|
struct t_matglossPair
|
|
|
|
{
|
|
|
|
int16_t type;
|
|
|
|
int32_t index;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <int SIZE>
|
|
|
|
struct junk_fill
|
|
|
|
{
|
|
|
|
uint8_t data[SIZE];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct t_name
|
|
|
|
{
|
|
|
|
char first_name[128];
|
|
|
|
char nickname[128];
|
|
|
|
int32_t words[7];
|
|
|
|
uint16_t parts_of_speech[7];
|
|
|
|
uint32_t language;
|
|
|
|
bool has_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct t_attrib
|
|
|
|
{
|
|
|
|
uint32_t level;
|
|
|
|
uint32_t field_4; // offset from beginning, purpose unknown
|
|
|
|
uint32_t field_8;
|
|
|
|
uint32_t field_C;
|
|
|
|
uint32_t leveldiff;
|
|
|
|
uint32_t field_14;
|
|
|
|
uint32_t field_18;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct t_level
|
|
|
|
{
|
|
|
|
uint32_t level;
|
|
|
|
std::string name;
|
|
|
|
uint32_t xpNxtLvl;
|
|
|
|
};
|
2012-05-03 01:47:04 -06:00
|
|
|
|
2012-05-05 11:07:18 -06:00
|
|
|
DFHACK_EXPORT int getdir(std::string dir, std::vector<std::string> &files);
|
|
|
|
DFHACK_EXPORT bool hasEnding (std::string const &fullString, std::string const &ending);
|
|
|
|
|
2012-05-03 01:47:04 -06:00
|
|
|
DFHACK_EXPORT df::general_ref *findRef(std::vector<df::general_ref*> &vec, df::general_ref_type type);
|
|
|
|
DFHACK_EXPORT bool removeRef(std::vector<df::general_ref*> &vec, df::general_ref_type type, int id);
|
|
|
|
|
|
|
|
DFHACK_EXPORT df::specific_ref *findRef(std::vector<df::specific_ref*> &vec, df::specific_ref_type type);
|
|
|
|
DFHACK_EXPORT bool removeRef(std::vector<df::specific_ref*> &vec, df::specific_ref_type type, void *ptr);
|
2011-07-30 08:47:49 -06:00
|
|
|
}// namespace DFHack
|