]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/script/cpp_api/s_base.h
Add LuaEntity on_death callback (#6177)
[dragonfireclient.git] / src / script / cpp_api / s_base.h
index c27235255499334ef6c50ff132a8e21bdf39d3cd..28fefdd3796f587c4a0010e5bf42b006124a4b12 100644 (file)
@@ -22,14 +22,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include <iostream>
 #include <string>
+#include <thread>
+#include "util/basic_macros.h"
 
 extern "C" {
 #include <lua.h>
 }
 
 #include "irrlichttypes.h"
-#include "threads.h"
-#include "threading/mutex.h"
 #include "threading/mutex_auto_lock.h"
 #include "common/c_types.h"
 #include "common/c_internal.h"
@@ -54,7 +54,17 @@ extern "C" {
 #define setOriginFromTable(index) \
        setOriginFromTableRaw(index, __FUNCTION__)
 
+enum class ScriptingType: u8 {
+       Client,
+       Server,
+       MainMenu
+};
+
 class Server;
+#ifndef SERVER
+class Client;
+#endif
+class IGameDef;
 class Environment;
 class GUIEngine;
 class ServerActiveObject;
@@ -63,11 +73,16 @@ class ScriptApiBase {
 public:
        ScriptApiBase();
        virtual ~ScriptApiBase();
+       DISABLE_CLASS_COPY(ScriptApiBase);
 
        // These throw a ModError on failure
        void loadMod(const std::string &script_path, const std::string &mod_name);
        void loadScript(const std::string &script_path);
 
+#ifndef SERVER
+       void loadModFromMemory(const std::string &mod_name);
+#endif
+
        void runCallbacksRaw(int nargs,
                RunCallbacksMode mode, const char *fxn);
 
@@ -75,7 +90,13 @@ class ScriptApiBase {
        void addObjectReference(ServerActiveObject *cobj);
        void removeObjectReference(ServerActiveObject *cobj);
 
-       Server* getServer() { return m_server; }
+       IGameDef *getGameDef() { return m_gamedef; }
+       Server* getServer();
+       void setType(ScriptingType type) { m_type = type; }
+       ScriptingType getType() { return m_type; }
+#ifndef SERVER
+       Client* getClient();
+#endif
 
        std::string getOrigin() { return m_last_run_mod; }
        void setOriginDirect(const char *origin);
@@ -98,7 +119,7 @@ class ScriptApiBase {
        void scriptError(int result, const char *fxn);
        void stackDump(std::ostream &o);
 
-       void setServer(Server* server) { m_server = server; }
+       void setGameDef(IGameDef* gamedef) { m_gamedef = gamedef; }
 
        Environment* getEnv() { return m_environment; }
        void setEnv(Environment* env) { m_environment = env; }
@@ -107,24 +128,24 @@ class ScriptApiBase {
        void setGuiEngine(GUIEngine* guiengine) { m_guiengine = guiengine; }
 
        void objectrefGetOrCreate(lua_State *L, ServerActiveObject *cobj);
-       void objectrefGet(lua_State *L, u16 id);
 
-       RecursiveMutex  m_luastackmutex;
+       std::recursive_mutex m_luastackmutex;
        std::string     m_last_run_mod;
-       bool            m_secure;
+       bool            m_secure = false;
 #ifdef SCRIPTAPI_LOCK_DEBUG
        int             m_lock_recursion_count;
-       threadid_t      m_owning_thread;
+       std::thread::id m_owning_thread;
 #endif
 
 private:
        static int luaPanic(lua_State *L);
 
-       lua_State*      m_luastack;
+       lua_State      *m_luastack = nullptr;
 
-       Server*         m_server;
-       Environment*    m_environment;
-       GUIEngine*      m_guiengine;
+       IGameDef       *m_gamedef = nullptr;
+       Environment    *m_environment = nullptr;
+       GUIEngine      *m_guiengine = nullptr;
+       ScriptingType  m_type;
 };
 
 #endif /* S_BASE_H_ */