summaryrefslogtreecommitdiffstats
path: root/source/cPlugin_NewLua.cpp
blob: f81f2e95e0d28a60f7c621c4e9d9e8ff999420e6 (plain) (blame)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#define LUA_USE_POSIX
#include "cPlugin_NewLua.h"
#include "cMCLogger.h"

extern "C"
{
#include "lualib.h"
}

#include "tolua++.h"
#include "Bindings.h"
#include "ManualBindings.h"

#ifdef _WIN32
#include "wdirent.h"
#else
#include <dirent.h>
#endif

extern bool report_errors(lua_State* lua, int status);

cPlugin_NewLua::cPlugin_NewLua( const char* a_PluginName )
	: m_LuaState( 0 )
{
	m_Directory = a_PluginName;
}

cPlugin_NewLua::~cPlugin_NewLua()
{
	if( m_LuaState )
	{
		lua_close( m_LuaState );
		m_LuaState = 0;
	}
}

bool cPlugin_NewLua::Initialize()
{
	if( !m_LuaState ) 
	{	
		m_LuaState = lua_open();
		luaL_openlibs( m_LuaState );
		tolua_AllToLua_open(m_LuaState);
		ManualBindings::Bind( m_LuaState );
	}

	std::string PluginPath = std::string("Plugins/") + m_Directory + "/";

	// Load all files for this plugin, and execute them
	DIR* dp;
	struct dirent *entry;
	if(dp = opendir( PluginPath.c_str() ))
	{
		while(entry = readdir(dp))
		{
			std::string FileName = entry->d_name;
			if( FileName.find(".lua") != std::string::npos )
			{
				std::string Path = PluginPath + FileName;
				int s = luaL_loadfile(m_LuaState, Path.c_str() );
				if( report_errors( m_LuaState, s ) )
				{
					LOGERROR("Can't load plugin %s because of an error in file %s", m_Directory.c_str(), Path.c_str() );
					lua_close( m_LuaState );
					m_LuaState = 0;
					return false;
				}

				s = lua_pcall(m_LuaState, 0, LUA_MULTRET, 0);
				if( report_errors( m_LuaState, s ) )
				{
					LOGERROR("Error in plugin %s in file %s", m_Directory.c_str(), Path.c_str() );
					lua_close( m_LuaState );
					m_LuaState = 0;
					return false;
				}
			}
		}
	}


	// Call intialize function
	lua_getglobal(m_LuaState, "Initialize");
	if(!lua_isfunction(m_LuaState,-1))
	{
		LOGWARN("Error in plugin %s: Could not find function Initialize()", m_Directory.c_str() );
		lua_pop(m_LuaState,1);
		lua_close( m_LuaState );
		m_LuaState = 0;
		return false;
	}

	tolua_pushusertype(m_LuaState, this, "cPlugin_NewLua");

	// do the call (1 arguments, 1 result)
	int s = lua_pcall(m_LuaState, 1, 1, 0);
	if( report_errors( m_LuaState, s ) ) 
	{
		LOGWARN("Error in plugin %s calling function Initialize()", m_Directory.c_str() );
		lua_close( m_LuaState );
		m_LuaState = 0;
		return false;
	}

	if( !lua_isboolean( m_LuaState, -1 ) )
	{
		LOGWARN("Error in plugin %s Initialize() must return a boolean value!", m_Directory.c_str() );
		lua_close( m_LuaState );
		m_LuaState = 0;
		return false;
	}

	bool bSuccess = (tolua_toboolean( m_LuaState, -1, 0) > 0);
	return bSuccess;
}

void cPlugin_NewLua::Tick(float a_Dt)
{
	lua_getglobal(m_LuaState, "Tick");
	if(!lua_isfunction(m_LuaState,-1))
	{
		LOGWARN("Error in plugin %s: Could not find function Tick()", m_Directory.c_str() );
		lua_pop(m_LuaState,1);
		return;
	}

	tolua_pushnumber( m_LuaState, a_Dt );

	// do the call (1 arguments, 0 result)/
	int s = lua_pcall(m_LuaState, 1, 0, 0);
	if( report_errors( m_LuaState, s ) )
	{
		LOGWARN("Error in plugin %s calling function Tick()", m_Directory.c_str() );
	}
}