summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_script.h
blob: 68b382921e672b4a19fa7874303b43136854001e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef _LUA_SCRIPT_H_
#define _LUA_SCRIPT_H_

class CMLuaScript
{
public:
	lua_State *L;

	enum Status
	{
		None,
		Loaded,
		Failed
	};

private:
	int id;
	char *moduleName;
	TCHAR *fileName;
	TCHAR filePath[MAX_PATH];
	Status status;

public:
	CMLuaScript(lua_State *L, const TCHAR *path);
	~CMLuaScript();

	static bool GetScriptEnviroment(lua_State *L, int n = 1);
	static CMLuaScript* GetScriptFromEnviroment(lua_State *L, int n = 1);
	static int GetScriptIdFromEnviroment(lua_State *L, int n = 1);

	const char* GetModuleName() const;

	const TCHAR* GetFilePath() const;
	const TCHAR* GetFileName() const;

	const Status GetStatus() const;

	bool Load();
	void Unload();
};

#endif //_LUA_SCRIPT_H_