diff --git a/EgtGeneral.rc b/EgtGeneral.rc index afc9a1e..9f72dfe 100644 Binary files a/EgtGeneral.rc and b/EgtGeneral.rc differ diff --git a/LuaManager.cpp b/LuaManager.cpp index a1ba4cb..1781511 100644 --- a/LuaManager.cpp +++ b/LuaManager.cpp @@ -169,7 +169,7 @@ LuaMgr::EvalExpr( const string& sExpr, double& dVal) return true ; } else { - m_sLastError = "Error infinite or not a number" ; + m_sLastError = "EvalExpr(number): Error infinite or not a number" ; // lo scrivo nel log LOG_ERROR( GetEGnLogger(), m_sLastError.c_str()) return false ; @@ -179,7 +179,7 @@ LuaMgr::EvalExpr( const string& sExpr, double& dVal) else { // recupero il messaggio di errore const char* szErr = lua_tostring( m_pL, -1) ; - m_sLastError = ( szErr != nullptr) ? szErr : "Error not a number" ; + m_sLastError = string( "EvalExpr(number): ") + (( szErr != nullptr) ? szErr : "Error not a number") ; lua_pop( m_pL, 1) ; // lo scrivo nel log LOG_ERROR( GetEGnLogger(), m_sLastError.c_str()) @@ -199,7 +199,7 @@ LuaMgr::EvalExpr( const string& sExpr, string& sVal) // valuto l'espressione int nErr = luaL_loadstring( m_pL, sEval.c_str()) ; if ( nErr == LUA_OK) - lua_pcall( m_pL, 0, 1, 0) ; + nErr = lua_pcall( m_pL, 0, 1, 0) ; // senza errori if ( nErr == LUA_OK && lua_type( m_pL, -1) == LUA_TSTRING) { sVal = lua_tostring( m_pL, -1) ; @@ -211,7 +211,7 @@ LuaMgr::EvalExpr( const string& sExpr, string& sVal) else { // recupero il messaggio di errore const char* szErr = lua_tostring( m_pL, -1) ; - m_sLastError = ( szErr != nullptr) ? szErr : "Error not a string" ; + m_sLastError = string( "EvalExpr(string): ") + (( szErr != nullptr) ? szErr : "Error not a string") ; lua_pop( m_pL, 1) ; // lo scrivo nel log LOG_ERROR( GetEGnLogger(), m_sLastError.c_str()) @@ -229,7 +229,7 @@ LuaMgr::ExecLine( const string& sLine) // eseguo la linea int nErr = luaL_loadstring( m_pL, sLine.c_str()) ; if ( nErr == LUA_OK) - lua_pcall( m_pL, 0, LUA_MULTRET, 0) ; + nErr = lua_pcall( m_pL, 0, LUA_MULTRET, 0) ; // senza errori if ( nErr == LUA_OK) { m_sLastError.clear() ; @@ -239,7 +239,7 @@ LuaMgr::ExecLine( const string& sLine) else { // recupero il messaggio di errore const char* szErr = lua_tostring( m_pL, -1) ; - m_sLastError = ( szErr != nullptr) ? szErr : "Error unknown" ; + m_sLastError = string( "ExecLine: ") + (( szErr != nullptr) ? szErr : "Error unknown") ; lua_pop( m_pL, 1) ; // lo scrivo nel log LOG_ERROR( GetEGnLogger(), m_sLastError.c_str()) @@ -257,7 +257,7 @@ LuaMgr::ExecFile( const string& sFile) // eseguo la linea int nErr = luaL_loadfile( m_pL, sFile.c_str()) ; if ( nErr == LUA_OK) - lua_pcall( m_pL, 0, LUA_MULTRET, 0) ; + nErr = lua_pcall( m_pL, 0, LUA_MULTRET, 0) ; // senza errori if ( nErr == LUA_OK) { m_sLastError.clear() ; @@ -267,7 +267,7 @@ LuaMgr::ExecFile( const string& sFile) else { // recupero il messaggio di errore const char* szErr = lua_tostring( m_pL, -1) ; - m_sLastError = ( szErr != nullptr) ? szErr : "Error unknown" ; + m_sLastError = (( szErr != nullptr) ? szErr : "Error unknown") ; lua_pop( m_pL, 1) ; // lo scrivo nel log LOG_ERROR( GetEGnLogger(), m_sLastError.c_str()) @@ -307,4 +307,4 @@ void LuaMgr::LogError( const string& sErr) const { LOG_ERROR( GetEGnLogger(), sErr.c_str()) -} \ No newline at end of file +}