blob: 96c588c54b2acd231ec51cc7af175ea5f8db44aa (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// ---------------------------------------------------------------------------
// FILE NAME : LuaScript.h
// ---------------------------------------------------------------------------
// DESCRIPTION :
//
// Scripting base class
//
// ---------------------------------------------------------------------------
// VERSION : 1.00
// DATE : 1-Sep-2005
// AUTHOR : Richard Shephard
// ---------------------------------------------------------------------------
// LIBRARY INCLUDE FILES
#ifndef __LUA_SCRIPT_BASE_H__
#define __LUA_SCRIPT_BASE_H__
#include "luainc.h"
#include "luavirtualmachine.h"
class CLuaScript
{
public:
CLuaScript (CLuaVirtualMachine& vm);
virtual ~CLuaScript (void);
// Compile script into Virtual Machine
bool CompileFile (const char *strFilename);
bool CompileBuffer (unsigned char *pbBuffer, size_t szLen);
// Register function with Lua
int RegisterFunction (const char *strFuncName);
// Selects a Lua Script function to call
bool SelectScriptFunction (const char *strFuncName);
void AddParam (int iInt);
void AddParam (float fFloat);
void AddParam (char *string);
// Runs the loaded script
bool Go (int nReturns = 0);
// Checks on Virtual Machine script
bool ScriptHasFunction (const char *strScriptName);
// Method indexing check
int methods (void) { return m_nMethods; }
// When the script calls a class method, this is called
virtual int ScriptCalling (CLuaVirtualMachine& vm, int iFunctionNumber) = 0;
// When the script function has returns
virtual void HandleReturns (CLuaVirtualMachine& vm, const char *strFunc) = 0;
CLuaVirtualMachine& vm (void) { return m_vm; }
protected:
int m_nMethods;
CLuaVirtualMachine& m_vm;
int m_iThisRef;
int m_nArgs;
const char *m_strFunctionName;
};
#endif // __LUA_SCRIPT_BASE_H__
|