本文整理汇总了C++中MOAIScopedLuaState::PrintErrors方法的典型用法代码示例。如果您正苦于以下问题:C++ MOAIScopedLuaState::PrintErrors方法的具体用法?C++ MOAIScopedLuaState::PrintErrors怎么用?C++ MOAIScopedLuaState::PrintErrors使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MOAIScopedLuaState
的用法示例。
在下文中一共展示了MOAIScopedLuaState::PrintErrors方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ReceiveEvaluate
//----------------------------------------------------------------//
void MOAIHarness::ReceiveEvaluate(lua_State *L, json_t* node)
{
// Get the evaluation.
json_t* np_eval = json_object_get(node, "Evaluation");
if (np_eval == NULL || json_typeof(np_eval) != JSON_STRING)
return;
// Get the current stack index so we know how many
// positions to clear afterward.
int top = lua_gettop(L);
// Load the string from the message
MOAIScopedLuaState state ( L );
int status = luaL_loadstring ( state, json_string_value(np_eval) );
if ( state.PrintErrors ( ZLLog::CONSOLE, status )) return;
// Call the string
state.DebugCall ( 0, 0 );
// Now unload all of the things we just put on the stack
// until the stack is the same size.
std::string indent = " ";
json_t* result = MOAIHarness::ConvertStackPartialToJSON(L, top + 1, lua_gettop(L));
lua_pop(L, lua_gettop(L) - top);
// Send the message back to the IDE.
MOAIHarness::SendResult(result);
}
示例2: SerializeFromFile
//----------------------------------------------------------------//
u32 MOAIDeserializer::SerializeFromFile ( cc8* filename ) {
this->Clear ();
int status;
MOAIScopedLuaState state = MOAILuaRuntime::Get ().State ();
// load the lua file
status = luaL_loadfile ( state, filename );
if ( state.PrintErrors ( ZLLog::CONSOLE, status )) return LOAD_ERROR;
// load self as the func param
this->PushLuaUserdata ( state );
// call the chunk
if ( state.DebugCall ( 1, 0 )) return LUA_ERROR;
// done!
return SUCCESS;
}