1
0
Fork 0
cuberite-2a/src/Bindings/LuaChunkStay.h

69 lines
1.6 KiB
C
Raw Permalink Normal View History

2014-02-09 17:56:16 +00:00
// LuaChunkStay.h
// Declares the cLuaChunkStay class representing a cChunkStay binding for plugins, used by cWorld:ChunkStay() Lua API
2014-02-09 17:56:16 +00:00
#pragma once
#include "LuaState.h"
#include "../ChunkStay.h"
// fwd:
2014-09-26 15:26:03 +00:00
class cChunkMap;
2020-04-13 16:38:06 +00:00
class cLuaChunkStay:
public cChunkStay
2014-02-09 17:56:16 +00:00
{
2020-04-13 16:38:06 +00:00
using Super = cChunkStay;
2016-02-05 21:45:45 +00:00
2014-02-09 17:56:16 +00:00
public:
cLuaChunkStay();
2016-02-05 21:45:45 +00:00
virtual ~cLuaChunkStay() override { }
2014-02-09 17:56:16 +00:00
/** Adds chunks in the specified Lua table.
Can be called only once.
Returns true if any chunk added, false (plus log warning) if none. */
bool AddChunks(const cLuaState::cStackTable & a_ChunkCoords);
2016-02-05 21:45:45 +00:00
/** Enables the ChunkStay for the specified chunkmap, with the specified Lua callbacks. */
void Enable(cChunkMap & a_ChunkMap, cLuaState::cCallbackPtr a_OnChunkAvailable, cLuaState::cCallbackPtr a_OnAllChunksAvailable);
2016-02-05 21:45:45 +00:00
2014-02-09 17:56:16 +00:00
protected:
/** The Lua function to call in OnChunkAvailable. Only valid when enabled. */
cLuaState::cCallbackPtr m_OnChunkAvailable;
2016-02-05 21:45:45 +00:00
2014-02-09 17:56:16 +00:00
/** The Lua function to call in OnAllChunksAvailable. Only valid when enabled. */
cLuaState::cCallbackPtr m_OnAllChunksAvailable;
2016-02-05 21:45:45 +00:00
2014-02-09 17:56:16 +00:00
// cChunkStay overrides:
virtual void OnChunkAvailable(int a_ChunkX, int a_ChunkZ) override;
virtual bool OnAllChunksAvailable(void) override;
virtual void OnDisabled(void) override;
2016-02-05 21:45:45 +00:00
/** Adds a single chunk coord from the table at the top of the Lua stack.
Expects the top element to be a table, checks that it contains two numbers.
Uses those two numbers as chunk coords appended to m_Chunks.
If the coords are already present, gives a warning and ignores the pair.
The a_Index parameter is only for the error messages. */
void AddChunkCoord(cLuaState & a_LuaState, int a_Index);
} ;
2014-02-09 17:56:16 +00:00