mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-03 15:12:17 +00:00
81 lines
1.8 KiB
C++
81 lines
1.8 KiB
C++
#include "stdafx.h"
|
|
#include "ScriptHost.h"
|
|
#include "ScriptingContext.h"
|
|
|
|
#ifndef LIBRETRO
|
|
#include "LuaScriptingContext.h"
|
|
#endif
|
|
|
|
ScriptHost::ScriptHost(int scriptId)
|
|
{
|
|
_scriptId = scriptId;
|
|
}
|
|
|
|
int ScriptHost::GetScriptId()
|
|
{
|
|
return _scriptId;
|
|
}
|
|
|
|
const char* ScriptHost::GetLog()
|
|
{
|
|
shared_ptr<ScriptingContext> context = _context;
|
|
return context ? context->GetLog() : "";
|
|
}
|
|
|
|
bool ScriptHost::LoadScript(string scriptName, string scriptContent, Debugger* debugger)
|
|
{
|
|
#ifndef LIBRETRO
|
|
_context.reset(new LuaScriptingContext());
|
|
if(!_context->LoadScript(scriptName, scriptContent, debugger)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
void ScriptHost::ProcessCpuOperation(uint16_t addr, uint8_t &value, MemoryOperationType type)
|
|
{
|
|
if(_context) {
|
|
switch(type) {
|
|
case MemoryOperationType::Read: _context->CallMemoryCallback(addr, value, CallbackType::CpuRead); break;
|
|
case MemoryOperationType::Write: _context->CallMemoryCallback(addr, value, CallbackType::CpuWrite); break;
|
|
case MemoryOperationType::ExecOpCode: _context->CallMemoryCallback(addr, value, CallbackType::CpuExec); break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void ScriptHost::ProcessPpuOperation(uint16_t addr, uint8_t &value, MemoryOperationType type)
|
|
{
|
|
if(_context) {
|
|
switch(type) {
|
|
case MemoryOperationType::Read: _context->CallMemoryCallback(addr, value, CallbackType::PpuRead); break;
|
|
case MemoryOperationType::Write: _context->CallMemoryCallback(addr, value, CallbackType::PpuWrite); break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void ScriptHost::ProcessEvent(EventType eventType)
|
|
{
|
|
if(_context) {
|
|
_context->CallEventCallback(eventType);
|
|
}
|
|
}
|
|
|
|
bool ScriptHost::ProcessSavestate()
|
|
{
|
|
if(_context) {
|
|
return _context->ProcessSavestate();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool ScriptHost::CheckStateLoadedFlag()
|
|
{
|
|
if(_context) {
|
|
return _context->CheckStateLoadedFlag();
|
|
}
|
|
return false;
|
|
}
|