mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-13 11:57:09 +00:00
850102bbdc
Movies: Rewrote format to support all IO devices and console types Netplay: Now supports all IO devices and console types
148 lines
3.0 KiB
C++
148 lines
3.0 KiB
C++
#include "stdafx.h"
|
|
#include "LuaCallHelper.h"
|
|
|
|
LuaCallHelper::LuaCallHelper(lua_State *lua) : _lua(lua)
|
|
{
|
|
_stackSize = lua_gettop(lua);
|
|
}
|
|
|
|
void LuaCallHelper::ForceParamCount(int paramCount)
|
|
{
|
|
while(lua_gettop(_lua) < paramCount) {
|
|
lua_pushnil(_lua);
|
|
}
|
|
}
|
|
|
|
bool LuaCallHelper::CheckParamCount(int minParamCount)
|
|
{
|
|
if(minParamCount >= 0 && _stackSize < _paramCount && _stackSize >= minParamCount) {
|
|
return true;
|
|
}
|
|
if(_stackSize != _paramCount) {
|
|
string message = string("too ") + (_stackSize < _paramCount ? "little" : "many") + " parameters. expected " + std::to_string(_paramCount) + " got " + std::to_string(_stackSize);
|
|
luaL_error(_lua, message.c_str());
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
double LuaCallHelper::ReadDouble()
|
|
{
|
|
_paramCount++;
|
|
double value = 0;
|
|
if(lua_isnumber(_lua, -1)) {
|
|
value = lua_tonumber(_lua, -1);
|
|
}
|
|
lua_pop(_lua, 1);
|
|
return value;
|
|
}
|
|
|
|
bool LuaCallHelper::ReadBool(bool defaultValue)
|
|
{
|
|
_paramCount++;
|
|
bool value = defaultValue;
|
|
if(lua_isboolean(_lua, -1)) {
|
|
value = lua_toboolean(_lua, -1) != 0;
|
|
} else if(lua_isnumber(_lua, -1)) {
|
|
value = lua_tonumber(_lua, -1) != 0;
|
|
}
|
|
lua_pop(_lua, 1);
|
|
return value;
|
|
}
|
|
|
|
Nullable<bool> LuaCallHelper::ReadOptionalBool()
|
|
{
|
|
_paramCount++;
|
|
Nullable<bool> result;
|
|
if(lua_isboolean(_lua, -1)) {
|
|
result.HasValue = true;
|
|
result.Value = lua_toboolean(_lua, -1) != 0;
|
|
} else if(lua_isnumber(_lua, -1)) {
|
|
result.HasValue = true;
|
|
result.Value = lua_tonumber(_lua, -1) != 0;
|
|
}
|
|
lua_pop(_lua, 1);
|
|
return result;
|
|
}
|
|
|
|
Nullable<uint32_t> LuaCallHelper::ReadOptionalInteger()
|
|
{
|
|
_paramCount++;
|
|
Nullable<uint32_t> result;
|
|
if(lua_isinteger(_lua, -1)) {
|
|
result.HasValue = true;
|
|
result.Value = (uint32_t)lua_tointeger(_lua, -1);
|
|
} else if(lua_isnumber(_lua, -1)) {
|
|
result.HasValue = true;
|
|
result.Value = (uint32_t)lua_tonumber(_lua, -1);
|
|
}
|
|
lua_pop(_lua, 1);
|
|
return result;
|
|
}
|
|
|
|
uint32_t LuaCallHelper::ReadInteger(uint32_t defaultValue)
|
|
{
|
|
_paramCount++;
|
|
uint32_t value = defaultValue;
|
|
if(lua_isinteger(_lua, -1)) {
|
|
value = (uint32_t)lua_tointeger(_lua, -1);
|
|
} else if(lua_isnumber(_lua, -1)) {
|
|
value = (uint32_t)lua_tonumber(_lua, -1);
|
|
}
|
|
lua_pop(_lua, 1);
|
|
return value;
|
|
}
|
|
|
|
string LuaCallHelper::ReadString()
|
|
{
|
|
_paramCount++;
|
|
size_t len;
|
|
string str;
|
|
if(lua_isstring(_lua, -1)) {
|
|
const char* cstr = lua_tolstring(_lua, -1, &len);
|
|
str = string(cstr, len);
|
|
}
|
|
lua_pop(_lua, 1);
|
|
return str;
|
|
}
|
|
|
|
int LuaCallHelper::GetReference()
|
|
{
|
|
_paramCount++;
|
|
if(lua_isfunction(_lua, -1)) {
|
|
return luaL_ref(_lua, LUA_REGISTRYINDEX);
|
|
} else {
|
|
lua_pop(_lua, 1);
|
|
return LUA_NOREF;
|
|
}
|
|
}
|
|
|
|
void LuaCallHelper::Return(bool value)
|
|
{
|
|
lua_pushboolean(_lua, value);
|
|
_returnCount++;
|
|
}
|
|
|
|
void LuaCallHelper::Return(int value)
|
|
{
|
|
lua_pushinteger(_lua, value);
|
|
_returnCount++;
|
|
}
|
|
|
|
void LuaCallHelper::Return(uint32_t value)
|
|
{
|
|
lua_pushinteger(_lua, value);
|
|
_returnCount++;
|
|
}
|
|
|
|
void LuaCallHelper::Return(string value)
|
|
{
|
|
lua_pushlstring(_lua, value.c_str(), value.size());
|
|
_returnCount++;
|
|
}
|
|
|
|
int LuaCallHelper::ReturnCount()
|
|
{
|
|
return _returnCount;
|
|
}
|