2011-06-16 15:53:39 -06:00
|
|
|
/*
|
|
|
|
https://github.com/peterix/dfhack
|
|
|
|
Copyright (c) 2009-2011 Petr Mrázek (peterix@gmail.com)
|
|
|
|
|
|
|
|
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 09:54:30 -06:00
|
|
|
#ifndef DFHACK_API_H
|
2010-05-25 22:48:23 -06:00
|
|
|
#define DFHACK_API_H
|
|
|
|
|
2011-03-18 01:53:59 -06:00
|
|
|
/**
|
|
|
|
* \defgroup grp_context Context and Process management
|
|
|
|
* \defgroup grp_modules DFHack Module classes
|
|
|
|
* \defgroup grp_cwrap C Wrapper
|
|
|
|
*/
|
|
|
|
|
2011-04-10 05:12:28 -06:00
|
|
|
#pragma once
|
|
|
|
|
2010-06-24 23:11:26 -06:00
|
|
|
// Defines
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define DEPRECATED(func) func __attribute__ ((deprecated))
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#define DEPRECATED(func) __declspec(deprecated) func
|
|
|
|
#else
|
|
|
|
#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
|
|
|
|
#define DEPRECATED(func) func
|
|
|
|
#endif
|
|
|
|
|
2011-06-15 09:35:47 -06:00
|
|
|
// C99 integer types (used everywhere)
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-06-04 16:02:02 -06:00
|
|
|
// DFHack core classes and types
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Error.h"
|
|
|
|
#include "VersionInfo.h"
|
|
|
|
#include "MemAccess.h"
|
|
|
|
#include "Types.h"
|
2010-05-25 22:48:23 -06:00
|
|
|
|
2010-06-04 16:02:02 -06:00
|
|
|
// DFHack modules
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "modules/Buildings.h"
|
|
|
|
#include "modules/Engravings.h"
|
|
|
|
#include "modules/Materials.h"
|
|
|
|
#include "modules/Constructions.h"
|
|
|
|
#include "modules/Units.h"
|
|
|
|
#include "modules/Translation.h"
|
|
|
|
#include "modules/World.h"
|
|
|
|
#include "modules/Items.h"
|
|
|
|
#include "modules/Vegetation.h"
|
|
|
|
#include "modules/Maps.h"
|
|
|
|
#include "modules/Gui.h"
|
2010-05-25 22:48:23 -06:00
|
|
|
|
2010-06-05 16:56:09 -06:00
|
|
|
/*
|
|
|
|
* This is a header full of ugly, volatile things.
|
|
|
|
* Only for use of official DFHack tools!
|
|
|
|
*/
|
2010-06-04 16:02:02 -06:00
|
|
|
#ifdef DFHACK_WANT_MISCUTILS
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "MiscUtils.h"
|
2010-06-04 16:02:02 -06:00
|
|
|
#endif
|
2010-06-05 16:56:09 -06:00
|
|
|
|
|
|
|
// define this to get the static tiletype->properties mapping
|
2010-06-04 16:02:02 -06:00
|
|
|
#ifdef DFHACK_WANT_TILETYPES
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "TileTypes.h"
|
2010-06-04 16:02:02 -06:00
|
|
|
#endif
|
2010-06-05 16:56:09 -06:00
|
|
|
#endif
|