dfhack/library/include/modules/Vermin.h

45 lines
973 B
C

#pragma once
/**
* \defgroup grp_vermin Wild vermin (ants, bees, etc)
*/
2011-12-31 04:48:42 -07:00
#include "Export.h"
#include "DataDefs.h"
#include "df/vermin.h"
namespace DFHack
{
namespace Vermin
{
/**
* Structure for holding a read DF vermin spawn point object
* \ingroup grp_vermin
*/
2012-01-07 22:59:52 -07:00
struct t_vermin
{
df::vermin * origin;
int16_t race;
2012-01-09 16:45:43 -07:00
int16_t caste;
uint16_t x;
uint16_t y;
uint16_t z;
uint32_t countdown;
2012-01-09 16:45:43 -07:00
bool visible:1;
bool is_colony:1; /// Is vermin object a colony?
};
2012-01-07 22:59:52 -07:00
static const uint16_t TYPE_WILD_COLONY = 0xFFFF;
/**
2012-01-07 22:59:52 -07:00
* Get number of vermin objects
*/
2012-01-07 22:59:52 -07:00
DFHACK_EXPORT uint32_t getNumVermin();
/**
* Read from vermin object
*/
DFHACK_EXPORT bool Read (const uint32_t index, t_vermin & point);
/**
* Write into vermin object
*/
DFHACK_EXPORT bool Write (const uint32_t index, t_vermin & point);
}// end DFHack::Vermin
}