31 lines
731 B
C++
31 lines
731 B
C++
#include "Internal.h"
|
|
#include "DataDefs.h"
|
|
#include "MiscUtils.h"
|
|
#include "VersionInfo.h"
|
|
|
|
#include "df/world.h"
|
|
#include "df/world_data.h"
|
|
#include "df/ui.h"
|
|
|
|
#include "DataIdentity.h"
|
|
|
|
namespace {
|
|
template<class T>
|
|
inline T &_toref(T &r) { return r; }
|
|
template<class T>
|
|
inline T &_toref(T *&p) { return *p; }
|
|
}
|
|
|
|
#define INIT_GLOBAL_FUNCTION_PREFIX \
|
|
DFHack::VersionInfo *global_table_ = DFHack::Core::getInstance().vinfo; \
|
|
void * tmp_;
|
|
|
|
#define INIT_GLOBAL_FUNCTION_ITEM(type,name) \
|
|
if (global_table_->getAddress(#name,tmp_)) name = (type*)tmp_;
|
|
|
|
#define TID(type) (&identity_traits< type >::identity)
|
|
|
|
// Instantiate all the static objects
|
|
#include "df/static.inc"
|
|
#include "df/static.enums.inc"
|