1
0
Fork 0

Added functionality so one plugin can call functions on another plugin :D

Fixed Core plugin file addresses in the VS2008 project

git-svn-id: http://mc-server.googlecode.com/svn/trunk@945 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth 2012-10-10 21:50:46 +00:00
parent ae5975e674
commit e69b0e4001
2 changed files with 123 additions and 30 deletions

View File

@ -2075,123 +2075,131 @@
Name="Core"
>
<File
RelativePath="..\Plugins\Core\ban.lua"
RelativePath="..\MCServer\Plugins\Core\ban.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\coords.lua"
RelativePath="..\MCServer\Plugins\Core\coords.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\gamemode.lua"
RelativePath="..\MCServer\Plugins\Core\gamemode.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\gotoworld.lua"
RelativePath="..\MCServer\Plugins\Core\gotoworld.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\help.lua"
RelativePath="..\MCServer\Plugins\Core\help.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\item.lua"
RelativePath="..\MCServer\Plugins\Core\item.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\kick.lua"
RelativePath="..\MCServer\Plugins\Core\kick.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\main.lua"
RelativePath="..\MCServer\Plugins\Core\main.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\motd.lua"
RelativePath="..\MCServer\Plugins\Core\motd.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\onblockdig.lua"
RelativePath="..\MCServer\Plugins\Core\onblockdig.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\onblockplace.lua"
RelativePath="..\MCServer\Plugins\Core\onblockplace.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\oncraftingnorecipe.lua"
RelativePath="..\MCServer\Plugins\Core\oncraftingnorecipe.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\onkilled.lua"
RelativePath="..\MCServer\Plugins\Core\onkilled.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\onlogin.lua"
RelativePath="..\MCServer\Plugins\Core\onlogin.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\onplayerjoin.lua"
RelativePath="..\MCServer\Plugins\Core\onplayerjoin.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\playerlist.lua"
RelativePath="..\MCServer\Plugins\Core\playerlist.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\pluginlist.lua"
RelativePath="..\MCServer\Plugins\Core\pluginlist.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\regeneratechunk.lua"
RelativePath="..\MCServer\Plugins\Core\regeneratechunk.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\reload.lua"
RelativePath="..\MCServer\Plugins\Core\reload.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\spawn.lua"
RelativePath="..\MCServer\Plugins\Core\spawn.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\stop.lua"
RelativePath="..\MCServer\Plugins\Core\stop.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\teleport.lua"
RelativePath="..\MCServer\Plugins\Core\teleport.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\time.lua"
RelativePath="..\MCServer\Plugins\Core\time.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\top.lua"
RelativePath="..\MCServer\Plugins\Core\top.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\unban.lua"
RelativePath="..\MCServer\Plugins\Core\unban.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\viewdistance.lua"
RelativePath="..\MCServer\Plugins\Core\viewdistance.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\web_manageplugins.lua"
RelativePath="..\MCServer\Plugins\Core\web_chat.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\web_permissions.lua"
RelativePath="..\MCServer\Plugins\Core\web_manageplugins.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\web_playerlist.lua"
RelativePath="..\MCServer\Plugins\Core\web_permissions.lua"
>
</File>
<File
RelativePath="..\Plugins\Core\web_whitelist.lua"
RelativePath="..\MCServer\Plugins\Core\web_playerlist.lua"
>
</File>
<File
RelativePath="..\MCServer\Plugins\Core\web_serversettings.lua"
>
</File>
<File
RelativePath="..\MCServer\Plugins\Core\web_whitelist.lua"
>
</File>
</Filter>

View File

@ -709,6 +709,90 @@ static int tolua_cPlugin_NewLua_AddTab(lua_State* tolua_S)
// Perhaps use this as well for copying tables https://github.com/keplerproject/rings/pull/1
static int copy_lua_values(lua_State * a_Source, lua_State * a_Destination, int i, int top)
{
for(; i <= top; ++i )
{
int t = lua_type(a_Source, i);
switch (t) {
case LUA_TSTRING: /* strings */
{
const char * s = lua_tostring(a_Source, i);
LOGD("%i push string: %s", i, s);
tolua_pushstring(a_Destination, s);
}
break;
case LUA_TBOOLEAN: /* booleans */
{
int b = tolua_toboolean(a_Source, i, false);
LOGD("%i push bool: %i", i, b);
tolua_pushboolean(a_Destination, b );
}
break;
case LUA_TNUMBER: /* numbers */
{
lua_Number d = tolua_tonumber(a_Source, i, 0);
LOGD("%i push number: %0.2f", i, d);
tolua_pushnumber(a_Destination, d );
}
break;
default: /* other values */
LOGERROR("Unsupported value: '%s'. Can only use numbers and strings!", lua_typename(a_Source, t));
return 0;
}
}
return 1;
}
static int tolua_cPlugin_Call(lua_State* tolua_S)
{
cPlugin_NewLua * self = (cPlugin_NewLua *) tolua_tousertype(tolua_S, 1, 0);
lua_State* targetState = self->GetLuaState();
int targetTop = lua_gettop(targetState);
int top = lua_gettop(tolua_S);
LOGD("total in stack: %i", top );
std::string funcName = tolua_tostring(tolua_S, 2, "");
LOGD("Func name: %s", funcName.c_str() );
lua_getglobal(targetState, funcName.c_str());
if(!lua_isfunction(targetState,-1))
{
LOGWARN("Error could not find function '%s' in plugin '%s'", funcName.c_str(), self->GetName().c_str() );
lua_pop(targetState,1);
return 0;
}
if( copy_lua_values(tolua_S, targetState, 3, top) == 0 ) // Start at 3 because 1 and 2 are the plugin and function name respectively
{
// something went wrong, exit
return 0;
}
int s = lua_pcall(targetState, top-2, LUA_MULTRET, 0);
if( report_errors( targetState, s ) )
{
LOGWARN("Error while calling function '%s' in plugin '%s'", funcName.c_str(), self->GetName().c_str() );
return 0;
}
int nresults = lua_gettop(targetState) - targetTop;
LOGD("num results: %i", nresults);
int ttop = lua_gettop(targetState);
if( copy_lua_values(targetState, tolua_S, 2, ttop) == 0 ) // Start at 2 and I have no idea why xD
{
// something went wrong, exit
return 0;
}
return nresults;
}
static int tolua_md5(lua_State* tolua_S)
{
@ -816,6 +900,7 @@ void ManualBindings::Bind( lua_State* tolua_S )
tolua_beginmodule(tolua_S, "cPlugin");
tolua_function(tolua_S, "GetCommands", tolua_cPlugin_GetCommands);
tolua_function(tolua_S, "BindCommand", tolua_cPlugin_BindCommand);
tolua_function(tolua_S, "Call", tolua_cPlugin_Call);
tolua_endmodule(tolua_S);
tolua_beginmodule(tolua_S, "cPluginManager");