2012-01-27 08:47:14 -07:00
|
|
|
/*
|
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.
|
|
|
|
*/
|
|
|
|
|
2011-04-10 05:12:28 -06:00
|
|
|
#pragma once
|
2010-04-09 16:24:41 -06:00
|
|
|
#ifndef CL_MOD_CONSTRUCTIONS
|
|
|
|
#define CL_MOD_CONSTRUCTIONS
|
|
|
|
/*
|
2012-01-24 15:11:48 -07:00
|
|
|
* DF constructions
|
|
|
|
*/
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Export.h"
|
2012-01-24 15:11:48 -07:00
|
|
|
#include "DataDefs.h"
|
|
|
|
#include "df/construction.h"
|
2011-03-18 01:53:59 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \defgroup grp_constructions Construction module parts
|
|
|
|
* @ingroup grp_modules
|
|
|
|
*/
|
2010-04-09 16:24:41 -06:00
|
|
|
namespace DFHack
|
|
|
|
{
|
2012-01-24 15:11:48 -07:00
|
|
|
namespace Constructions
|
|
|
|
{
|
2012-01-26 19:29:59 -07:00
|
|
|
// "Simplified" copy of construction
|
|
|
|
struct t_construction {
|
|
|
|
df::coord pos;
|
|
|
|
df::item_type item_type;
|
2012-02-07 14:37:21 -07:00
|
|
|
int16_t item_subtype;
|
2012-01-26 19:29:59 -07:00
|
|
|
int16_t mat_type;
|
|
|
|
int32_t mat_index;
|
|
|
|
df::construction_flags flags;
|
|
|
|
int16_t original_tile;
|
|
|
|
// Pointer to original object, in case you want to modify it
|
|
|
|
df::construction *origin;
|
|
|
|
};
|
|
|
|
|
2012-01-24 15:11:48 -07:00
|
|
|
DFHACK_EXPORT bool isValid();
|
|
|
|
DFHACK_EXPORT uint32_t getCount();
|
2012-01-26 19:29:59 -07:00
|
|
|
DFHACK_EXPORT bool copyConstruction (const int32_t index, t_construction &out);
|
2012-01-26 22:27:57 -07:00
|
|
|
DFHACK_EXPORT df::construction * getConstruction (const int32_t index);
|
2012-01-24 15:11:48 -07:00
|
|
|
}
|
|
|
|
}
|
2010-04-09 16:24:41 -06:00
|
|
|
#endif
|