Mesen-X/Core/LuaCallHelper.h
Souryo 850102bbdc Input: Added support for ~20 new peripherals (Incomplete, more fixes/changes to come)
Movies: Rewrote format to support all IO devices and console types
Netplay: Now supports all IO devices and console types
2017-11-19 23:08:23 -05:00

41 lines
757 B
C++

#pragma once
#include "stdafx.h"
#include "../Lua/lua.hpp"
template<typename T>
struct Nullable
{
bool HasValue = false;
T Value = {};
};
class LuaCallHelper
{
private:
int _stackSize = 0;
int _paramCount = 0;
int _returnCount = 0;
lua_State* _lua;
public:
LuaCallHelper(lua_State* lua);
void ForceParamCount(int paramCount);
bool CheckParamCount(int minParamCount = -1);
double ReadDouble();
bool ReadBool(bool defaultValue = false);
uint32_t ReadInteger(uint32_t defaultValue = 0);
string ReadString();
int GetReference();
Nullable<bool> ReadOptionalBool();
Nullable<uint32_t> ReadOptionalInteger();
void Return(bool value);
void Return(int value);
void Return(uint32_t value);
void Return(string value);
int ReturnCount();
};