mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-26 09:41:34 +11:00
53 lines
1.7 KiB
C
53 lines
1.7 KiB
C
|
/* Copyright (c) 2013-2017 Jeffrey Pfau
|
||
|
*
|
||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||
|
#ifndef M_SCRIPTING_H
|
||
|
#define M_SCRIPTING_H
|
||
|
|
||
|
#include <mgba-util/common.h>
|
||
|
|
||
|
CXX_GUARD_START
|
||
|
|
||
|
#ifdef USE_DEBUGGERS
|
||
|
#include <mgba/debugger/debugger.h>
|
||
|
#endif
|
||
|
|
||
|
struct mScriptBridge;
|
||
|
struct VFile;
|
||
|
struct mScriptEngine {
|
||
|
const char* (*name)(struct mScriptEngine*);
|
||
|
|
||
|
bool (*init)(struct mScriptEngine*, struct mScriptBridge*);
|
||
|
void (*deinit)(struct mScriptEngine*);
|
||
|
bool (*isScript)(struct mScriptEngine*, const char* name, struct VFile* vf);
|
||
|
bool (*loadScript)(struct mScriptEngine*, const char* name, struct VFile* vf);
|
||
|
void (*run)(struct mScriptEngine*);
|
||
|
bool (*lookupSymbol)(struct mScriptEngine*, const char* name, int32_t* out);
|
||
|
|
||
|
#ifdef USE_DEBUGGERS
|
||
|
void (*debuggerEntered)(struct mScriptEngine*, enum mDebuggerEntryReason, struct mDebuggerEntryInfo*);
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
struct mScriptBridge* mScriptBridgeCreate(void);
|
||
|
void mScriptBridgeDestroy(struct mScriptBridge*);
|
||
|
|
||
|
void mScriptBridgeInstallEngine(struct mScriptBridge*, struct mScriptEngine*);
|
||
|
|
||
|
#ifdef USE_DEBUGGERS
|
||
|
void mScriptBridgeSetDebugger(struct mScriptBridge*, struct mDebugger*);
|
||
|
struct mDebugger* mScriptBridgeGetDebugger(struct mScriptBridge*);
|
||
|
void mScriptBridgeDebuggerEntered(struct mScriptBridge*, enum mDebuggerEntryReason, struct mDebuggerEntryInfo*);
|
||
|
#endif
|
||
|
|
||
|
void mScriptBridgeRun(struct mScriptBridge*);
|
||
|
bool mScriptBridgeLoadScript(struct mScriptBridge*, const char* name);
|
||
|
|
||
|
bool mScriptBridgeLookupSymbol(struct mScriptBridge*, const char* name, int32_t* out);
|
||
|
|
||
|
CXX_GUARD_END
|
||
|
|
||
|
#endif
|