You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
#ifndef OPENMW_CELLAPI_HPP
|
|
#define OPENMW_CELLAPI_HPP
|
|
|
|
#include "../Types.hpp"
|
|
|
|
#define CELLAPI \
|
|
{"GetCellStateChangesSize", CellFunctions::GetCellStateChangesSize},\
|
|
\
|
|
{"GetCellStateType", CellFunctions::GetCellStateType},\
|
|
{"GetCellStateDescription", CellFunctions::GetCellStateDescription},\
|
|
\
|
|
{"GetCell", CellFunctions::GetCell},\
|
|
{"SetCell", CellFunctions::SetCell},\
|
|
{"SetExterior", CellFunctions::SetExterior},\
|
|
{"GetExteriorX", CellFunctions::GetExteriorX},\
|
|
{"GetExteriorY", CellFunctions::GetExteriorY},\
|
|
{"IsInExterior", CellFunctions::IsInExterior},\
|
|
\
|
|
{"SendCell", CellFunctions::SendCell}
|
|
|
|
|
|
class CellFunctions
|
|
{
|
|
public:
|
|
static unsigned int GetCellStateChangesSize(unsigned short pid) noexcept;
|
|
|
|
static unsigned int GetCellStateType(unsigned short pid, unsigned int i) noexcept;
|
|
static const char *GetCellStateDescription(unsigned short pid, unsigned int i) noexcept;
|
|
|
|
static const char *GetCell(unsigned short pid) noexcept;
|
|
static void SetCell(unsigned short pid, const char *name) noexcept;
|
|
static void SetExterior(unsigned short pid, int x, int y) noexcept;
|
|
static int GetExteriorX(unsigned short pid) noexcept;
|
|
static int GetExteriorY(unsigned short pid) noexcept;
|
|
static bool IsInExterior(unsigned short pid) noexcept;
|
|
|
|
static void SendCell(unsigned short pid) noexcept;
|
|
};
|
|
|
|
#endif //OPENMW_CELLAPI_HPP
|