project64/Source/Project64/UserInterface/Debugger/ScriptSystem.h

127 lines
3.1 KiB
C
Raw Normal View History

2017-08-18 05:08:22 +00:00
/****************************************************************************
* *
* Project64 - A Nintendo 64 emulator. *
* http://www.pj64-emu.com/ *
* Copyright (C) 2012 Project64. All rights reserved. *
* *
* License: *
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
* *
****************************************************************************/
#pragma once
#include <stdafx.h>
#include <3rdParty/duktape/duktape.h>
#include "ScriptInstance.h"
class CScriptHook;
class CScriptSystem
{
public:
2017-09-13 10:36:03 +00:00
CScriptSystem(CDebuggerUI* debugger);
~CScriptSystem();
// Run a script in its own context/thread
void RunScript(char* path);
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
// Kill a script context/thread by its path
void StopScript(char* path);
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
const char* APIScript();
2017-08-18 05:08:22 +00:00
private:
2017-09-13 10:36:03 +00:00
typedef struct {
const char* hookId;
CScriptHook* cbList;
} HOOKENTRY;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
typedef struct {
char* path;
CScriptInstance* scriptInstance;
} INSTANCE_ENTRY;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
CDebuggerUI* m_Debugger;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
char* m_APIScript;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
vector<HOOKENTRY> m_Hooks;
vector<INSTANCE_ENTRY> m_RunningInstances;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
vector<char*> m_LogData;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
CScriptHook* m_HookCPUExec;
CScriptHook* m_HookCPURead;
CScriptHook* m_HookCPUWrite;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
CScriptHook* m_HookFrameDrawn;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
void RegisterHook(const char* hookId, CScriptHook* cbList); // associate string id with callback list
void UnregisterHooks();
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
HDC m_ScreenDC;
2017-08-18 05:08:22 +00:00
2017-09-13 10:36:03 +00:00
int m_NextCallbackId;
2017-08-18 05:08:22 +00:00
public:
2017-09-13 10:36:03 +00:00
// Returns true if any of the script hooks have callbacks for scriptInstance
void SetScreenDC(HDC hdc)
{
m_ScreenDC = hdc;
}
HDC GetScreenDC()
{
return m_ScreenDC;
}
inline vector<char*>* LogData()
{
return &m_LogData;
}
inline void LogText(const char* text)
{
char* newStr = (char*)malloc(strlen(text));
strcpy(newStr, text);
m_LogData.push_back(newStr);
m_Debugger->Debug_RefreshScriptsWindow();
}
bool HasCallbacksForInstance(CScriptInstance* scriptInstance);
// Remove all hooked callbacks for an instance
void ClearCallbacksForInstance(CScriptInstance* scriptInstance);
void RemoveCallbackById(int callbackId);
CScriptHook* GetHook(const char* hookId);
int GetNextCallbackId();
void DeleteStoppedInstances();
INSTANCE_STATE GetInstanceState(char* scriptName);
CScriptInstance* GetInstance(char* scriptName);
CScriptHook* HookCPUExec()
{
return m_HookCPUExec;
}
CScriptHook* HookCPURead()
{
return m_HookCPURead;
}
CScriptHook* HookCPUWrite()
{
return m_HookCPUWrite;
}
CScriptHook* HookFrameDrawn()
{
return m_HookFrameDrawn;
}
2017-08-18 05:08:22 +00:00
};