Most of the following documentation is automatically generated from version 0.11-8735-5d7b87562.

Top-level objects

By default, the following objects are available at the top level. When a game is loaded, the additional emu object is also available, and is an instance of CoreAdapter.

C

A table containing the exported constants

callbacks

Singleton instance of CallbackManager

canvas

Singleton instance of CanvasContext

console

Singleton instance of Console

image

Methods for creating Image and Painter instances

Functions

load(path : string): Image

Load an image from a path. Currently, only PNG format is supported

new(width : u32height : u32): Image

Create a new image with the given dimensions

newPainter(image : Image): Painter

Create a new painter from an existing image

input

Singleton instance of InputContext

storage

Singleton instance of StorageContext

system

Information about the system the script is running under

Members

branch : string

The current git branch of this build of the program, if known

commit : string

The current git commit hash of this build of the program, if known

program : string

The name of the program. Generally this will be “mGBA”, but forks may change it to differentiate

revision : s32

The current git revision number of this build of the program, or -1 if unknown

version : string

The current version of this build of the program

util

Basic utility library

Functions

expandBitmask(mask : u64): list

Expand a bitmask into a list of bit indices

makeBitmask(bits : list): u64

Compile a list of bit indices into a bitmask

Classes

Core

An instance of an emulator core.

Methods

addKey(key : s32)

Add a single key to the currently active key list

addKeys(keys : u32)

Add a bitmask of keys to the currently active key list

autoloadSave(): bool

Load the save data associated with the currently loaded ROM file

checksum(type : s32 = 0): string

Get the checksum of the loaded ROM

clearKey(key : s32)

Remove a single key from the currently active key list

clearKeys(keys : u32)

Remove a bitmask of keys from the currently active key list

currentFrame(): u32

Get the number of the current frame

frameCycles(): s32

Get the number of cycles per frame

frequency(): s32

Get the number of cycles per second

getGameCode(): string

Get internal product code for the game from the ROM header, if available

getGameTitle(): string

Get internal title of the game from the ROM header

getKey(key : s32): s32

Get the active state of a given key

getKeys(): u32

Get the currently active keys as a bitmask

loadFile(path : string): bool

Load a ROM file into the current state of this core

loadSaveFile(path : stringtemporary : bool): bool

Load save data from the given path. If the temporary flag is set, the given save data will not be written back to disk

loadStateBuffer(buffer : stringflags : s32 = 29): bool

Load state from a buffer. See C.SAVESTATE for possible values for flags

loadStateFile(path : stringflags : s32 = 29): bool

Load state from the given path. See C.SAVESTATE for possible values for flags

loadStateSlot(slot : s32flags : s32 = 29): bool

Load state from the slot number. See C.SAVESTATE for possible values for flags

platform(): s32

Get which platform is being emulated. See C.PLATFORM for possible values

read16(address : u32): u32

Read a 16-bit value from the given bus address

read32(address : u32): u32

Read a 32-bit value from the given bus address

read8(address : u32): u32

Read an 8-bit value from the given bus address

readRange(address : u32length : u32): string

Read byte range from the given offset

readRegister(regName : string): wrapper

Read the value of the register with the given name

reset()

Reset the emulation. This does not invoke the reset callback

romSize(): s64

Get the size of the loaded ROM

runFrame()

Run until the next frame

saveStateBuffer(flags : s32 = 31): string

Save state and return as a buffer. See C.SAVESTATE for possible values for flags

saveStateFile(path : stringflags : s32 = 31): bool

Save state to the given path. See C.SAVESTATE for possible values for flags

saveStateSlot(slot : s32flags : s32 = 31): bool

Save state to the slot number. See C.SAVESTATE for possible values for flags

screenshot(filename : string = nil)

Save a screenshot to a file

screenshotToImage(): Image

Get a screenshot in an Image

setKeys(keys : u32)

Set the currently active key list

step()

Run a single instruction

write16(address : u32value : u16)

Write a 16-bit value from the given bus address

write32(address : u32value : u32)

Write a 32-bit value from the given bus address

write8(address : u32value : u8)

Write an 8-bit value from the given bus address

writeRegister(regName : stringvalue : s32)

Write the value of the register with the given name

Image

A single, static image.

Methods

drawImage(image : Imagex : u32y : u32alpha : f32 = 1)

Draw another image onto this image with alpha blending as needed, optionally specifying a coefficient for adjusting the opacity

drawImageOpaque(image : Imagex : u32y : u32)

Draw another image onto this image without any alpha blending, overwriting what was already there

getPixel(x : u32y : u32): u32

Get the ARGB value of the pixel at a given coordinate

save(path : stringformat : string = PNG): bool

Save the image to a file. Currently, only PNG format is supported

setPixel(x : u32y : u32color : u32)

Set the ARGB value of the pixel at a given coordinate

Members

height : readonly u32

The height of the image, in pixels

width : readonly u32

The width of the image, in pixels

Painter

A stateful object useful for performing drawing operations on an Image.

Methods

drawCircle(x : s32y : s32diameter : s32)

Draw a circle with the specified diameter with the given origin at the top-left corner of the bounding box

drawLine(x1 : s32y1 : s32x2 : s32y2 : s32)

Draw a line with the specified endpoints

drawMask(mask : Imagex : s32y : s32)

Draw a mask image with each color channel multiplied by the current fill color. This can be useful for displaying graphics with dynamic colors. By making a grayscale template image on a transparent background in advance, a script can set the fill color to a desired target color and use this function to draw it into a destination image.

drawRectangle(x : s32y : s32width : s32height : s32)

Draw a rectangle with the specified dimensions

setBlend(enable : bool)

Set whether or not alpha blending should be enabled when drawing

setFill(enable : bool)

Set whether or not the fill color should be applied when drawing

setFillColor(color : u32)

Set the fill color to be used when drawing

setStrokeColor(color : u32)

Set the stroke color to be used when drawing

setStrokeWidth(width : u32)

Set the stroke width to be used when drawing, or 0 to disable

CallbackManager

A global singleton object callbacks used for managing callbacks. The following callbacks are defined:

  • alarm: An in-game alarm went off
  • crashed: The emulation crashed
  • frame: The emulation finished a frame
  • keysRead: The emulation is about to read the key input
  • reset: The emulation has been reset
  • rumble: The state of the rumble motor was changed. This callback is passed a single argument that specifies if it was turned on (true) or off (false)
  • savedataUpdated: The emulation has just finished modifying save data
  • sleep: The emulation has used the sleep feature to enter a low-power mode
  • shutdown: The emulation has been powered off
  • start: The emulation has started
  • stop: The emulation has voluntarily shut down

Methods

add(callback : stringfunction : wrapper): u32

Add a callback of the named type. The returned id can be used to remove it later

oneshot(callback : stringfunction : wrapper): u32

Add a one-shot callback of the named type that will be automatically removed after called. The returned id can be used to remove it early

remove(cbid : u32)

Remove a callback with the previously retuned id

CanvasContext

A canvas that can be used for drawing images on or around the screen.

Methods

height(): u32

Get the height of the canvas

newLayer(width : s32height : s32): CanvasLayer

Create a new layer of a given size. If multiple layers overlap, the most recently created one takes priority.

screenHeight(): s32

Get the height of the emulated screen

screenWidth(): s32

Get the width of the emulated screen

update()

Update all layers marked as having pending changes

width(): u32

Get the width of the canvas

CanvasLayer

An individual layer of a drawable canvas.

Methods

setPosition(x : s32y : s32)

Set the position of the layer in the canvas

update()

Mark the contents of the layer as needed to be repainted

Members

image : Image

The image that has the pixel contents of the image

x : readonly s32

The current x (horizontal) position of this layer

y : readonly s32

The current y (vertical) position of this layer

Console

A global singleton object console that can be used for presenting textual information to the user via a console.

Methods

createBuffer(name : string = nil): TextBuffer

Create a text buffer that can be used to display custom information

error(msg : string)

Print an error to the console

log(msg : string)

Print a log to the console

warn(msg : string)

Print a warning to the console

CoreAdapter

A wrapper around a Core object that exposes more functionality. It can be implicity cast to a Core object, and exposes the same methods. Please see the documentation on Core for details on those methods.

Methods

clearBreakpoint(cbid : s64): bool

Clear a breakpoint or watchpoint for a given id returned by a previous call

currentCycle(): u64

Get the current execution cycle

reset()

Reset the emulation. As opposed to Core.reset, this version calls the reset callback

setBreakpoint(callback : wrapperaddress : u32segment : s32 = -1): s64

Set a breakpoint at a given address

setRangeWatchpoint(callback : wrapperminAddress : u32maxAddress : u32type : s32segment : s32 = -1): s64

Set a watchpoint in a given range of a given type. Note that the range is exclusive on the end, as though you’ve added the size, i.e. a 4-byte watch would specify the maximum as the minimum address + 4

setRotationCallbacks(cbTable : table): table

Sets the table of functions to be called when the game requests rotation data, for either a gyroscope or accelerometer. The following functions are supported, and if any isn’t set then then default implementation for that function is called instead:

  • sample: Update (“sample”) the values returned by the other functions. The values returned shouldn’t change until the next time this is called
  • readTiltX: Return a value between -1.0 and +1.0 representing the X (left/right axis) direction of the linear acceleration vector, as for an accelerometer.
  • readTiltY: Return a value between -1.0 and +1.0 representing the Y (up/down axis) direction of the linear acceleration vector, as for an accelerometer.
  • readGyroZ: Return a value between -1.0 and +1.0 representing the roll (front/back axis) value of the rotational acceleration vector, as for an gyroscope.

Optionally, you can also set a value context on the table that will be passed to the callbacks. This table is copied by value, so changes made to the table after being passed to this function will not be seen unless the function is called again. Therefore, the recommended usage of the context field is as an index or key into a separate table. Use cases may vary. If this function is called more than once, the previous value of the table is returned.

setSolarSensorCallback(callback : wrapper)

Set a callback that will be used to get the current value of the solar sensors between 0 (darkest) and 255 (brightest). Note that the full range of values is not used by games, and the exact range depends on the calibration done by the game itself.

setWatchpoint(callback : wrapperaddress : u32type : s32segment : s32 = -1): s64

Set a watchpoint at a given address of a given type

Members

memory : table

A table containing a platform-specific set of MemoryDomain objects

Event

The base class for all event types. Different events have their own subclasses.

Members

seq : u64

Sequence number of this event. This value increases monotinically.

type : s32

The type of this event. See C.EV_TYPE for a list of possible types.

Gamepad

Members

axes : list

An indexed list of the current values of each axis

buttons : list

An indexed list of the current values of each button

hats : list

An indexed list of the current values of POV hat

internalName : string

The internal name of this gamepad, generally unique to the specific type of gamepad

visibleName : string

The human-readable name of this gamepad

GamepadButtonEvent

Inherits from Event

A gamepad button event.

Members

button : u16

Which button this event pertains to. There is currently no guaranteed button mapping, and it might change between different controllers.

pad : u8

Which gamepad this event pertains to. Currently, this will always be 0.

state : u8

The state of the button, represented by a C.INPUT_STATE value

GamepadHatEvent

Inherits from Event

A gamepad POV hat event.

Members

direction : u8

The current direction of the hat. See C.INPUT_DIR for possible values.

hat : u8

Which hat this event pertains to. For most gamepads this will be 0.

pad : u8

Which gamepad this event pertains to. Currently, this will always be 0.

InputContext

Methods

activeKeys(): list

Get a list of the currently active keys. The values are Unicode codepoints or special key values from C.KEY, not strings, so make sure to convert as needed

isKeyActive(key : string): bool(key : u32): bool

Check if a given keyboard key is currently held. The input can be either the printable character for a key, the numerical Unicode codepoint, or a special value from C.KEY

Members

activeGamepad : Gamepad

The currently active gamepad, if any

seq : u64

Sequence number of the next event to be emitted

KeyEvent

Inherits from Event

A keyboard key event.

Members

key : s32

The relevant key for this event. For most printable characters, this will be the Unicode codepoint of the character. Some special values are present as C.KEY as well.

modifiers : s16

A bitmask of current modifiers, represented by ORed C.KMOD values

state : u8

The state of the key, represented by a C.INPUT_STATE value

MemoryDomain

An object used for access directly to a memory domain, e.g. the cartridge, instead of through a whole address space, as with the functions directly on Core.

Methods

base(): u32

Get the address of the base of this memory domain

bound(): u32

Get the address of the end bound of this memory domain. Note that this address is not in the domain itself, and is the address of the first byte past it

name(): string

Get a short, human-readable name for this memory domain

read16(address : u32): u32

Read a 16-bit value from the given offset

read32(address : u32): u32

Read a 32-bit value from the given offset

read8(address : u32): u32

Read an 8-bit value from the given offset

readRange(address : u32length : u32): string

Read byte range from the given offset

size(): u32

Get the size of this memory domain in bytes

write16(address : u32value : u16)

Write a 16-bit value from the given offset

write32(address : u32value : u32)

Write a 32-bit value from the given offset

write8(address : u32value : u8)

Write an 8-bit value from the given offset

MouseButtonEvent

Inherits from Event

A mouse button event.

Members

button : u8

Which mouse button this event pertains to. Symbolic names for primary (usually left), secondary (usually right), and middle are in C.MOUSE_BUTTON, and further buttons are numeric starting from 3.

mouse : u8

Which mouse this event pertains to. Currently, this will always be 0.

state : u8

The state of the button, represented by a C.INPUT_STATE value

MouseMoveEvent

Inherits from Event

A mouse movement event.

Members

mouse : u8

Which mouse this event pertains to. Currently, this will always be 0.

x : s32

The x coordinate of the mouse in the context of game screen pixels. This can be out of bounds of the game screen depending on the size of the window in question.

y : s32

The y coordinate of the mouse in the context of game screen pixels. This can be out of bounds of the game screen depending on the size of the window in question.

Painter

StorageBucket

A single ‘bucket’ of stored data, appropriate for a single script to store its data. Fields can be set directly on the bucket objct, e.g. if you want to store a value called foo on a bucket named bucket, you can directly assign to it as bucket.foo = value, and retrieve it in the same way later. Primitive types (numbers, strings, lists and tables) can be stored in buckets, but complex data types (e.g. a bucket itself) cannot. Data stored in a bucket is periodically flushed to disk and persists between sessions.

Methods

enableAutoFlush(enable : bool)

Enable or disable the automatic flushing of this bucket. This is good for ensuring buckets don’t get flushed in an inconsistent state. It will also disable flushing to disk when the emulator is shut down, so make sure to either manually flush the bucket or re-enable automatic flushing whenever you’re done updating it if you do disable it prior.

flush(): bool

Flush the bucket to disk manually

reload(): bool

Reload the state of the bucket from disk

StorageContext

Methods

flushAll()

Flush all buckets to disk manually

getBucket(key : string): StorageBucket

Get a bucket with the given name. Names can contain letters, numbers, underscores and periods. If a given bucket doesn’t exist, it is created.

TextBuffer

An object that can be used to present texual data to the user. It is displayed monospaced, and text can be edited after sending by moving the cursor or clearing the buffer.

Methods

advance(adv : s32)

Advance the cursor a number of columns

clear()

Clear the buffer

cols(): u32

Get number of columns in the buffer

getX(): u32

Get the current x position of the cursor

getY(): u32

Get the current y position of the cursor

moveCursor(x : u32y : u32)

Set the position of the cursor

print(text : string)

Print a string to the buffer

rows(): u32

Get number of rows in the buffer

setName(name : string)

Set the user-visible name of this buffer

setSize(cols : u32rows : u32)

Set the number of rows and columns

Lua-specific features

These objects and classes are designed to be used exclusively with the Lua bindings to provide a more natural interface for the language.

Top-level objects

script

Information about the currently loaded script

Members
dir : string

The path to the directory containing the script

path : string

The path of the current script file

socket

A basic TCP socket library

Functions
bind(address : stringport : u16): lua::socket

Create and bind a new socket to a specific interface and port. Use nil for address to bind to all interfaces

connect(address : stringport : u16): lua::socket

Create and return a new TCP socket with a connection to the specified address and port.

Caution: This is a blocking call. The emulator will not respond until the connection either succeeds or fails

tcp(): lua::socket

Create a new TCP socket, for use with either lua::socket.bind or lua::socket.connect later

Members
ERRORS : table

Error strings corresponding to the C.SOCKERR error codes, indexed both by name and by value

Classes

socket

An instance of a TCP socket. Most of these functions will return two values if an error occurs; the first value is nil and the second value is an error string from socket.ERRORS

Methods
accept(): lua::socket

Creates a new socket for an incoming connection from a listening server socket

add(event : stringcallback : function): s64

Add a callback for a named event. The returned id can be used to remove it later. Events get checked once per frame but can be checked manually using lua::socket.poll. The following callbacks are defined:

  • received: New data has been received and can be read
  • error: An error has occurred on the socket
bind(address : stringport : u16): s32

Bind the socket to a specific interface and port. Use nil for address to bind to all interfaces

connect(address : stringport : u16): s32

Opens a TCP connection to the specified address and port.

Caution: This is a blocking call. The emulator will not respond until the connection either succeeds or fails

hasdata(): bool

Check if a socket has data ready to receive, and return true if so

listen(backlog : s32 = 1): s32

Begins listening for incoming connections. The socket must have first been bound with the lua::socket.bind function

poll()

Manually check for events on this socket and dispatch associated callbacks

receive(maxBytes : s64): string

Read up to maxBytes bytes from the socket and return them. If the socket has been disconnected or an error occurs, it will return nil, error instead

remove(cbid : s64)

Remove a callback with the previously returned id

send(data : stringi : s64 = 0j : s64 = 0): s32

Writes a string to the socket. If i and j are provided, they have the same semantics as the parameters to string.sub to write a substring. Returns the last index written

Constants

CHECKSUM

CRC32 0
MD5 1
SHA1 2

EV_TYPE

NONE 0
KEY 1
MOUSE_BUTTON 2
MOUSE_MOVE 3
MOUSE_WHEEL 4
GAMEPAD_BUTTON 5
TRIGGER 7

GBA_KEY

A 0
B 1
SELECT 2
START 3
RIGHT 4
LEFT 5
UP 6
DOWN 7
R 8
L 9

GB_KEY

A 0
B 1
SELECT 2
START 3
RIGHT 4
LEFT 5
UP 6
DOWN 7

INPUT_DIR

NONE 0
NORTH 1
UP 1
EAST 2
RIGHT 2
NORTHEAST 3
DOWN 4
SOUTH 4
SOUTHEAST 6
LEFT 8
WEST 8
NORTHWEST 9
SOUTHWEST 12

INPUT_STATE

UP 0
DOWN 1
HELD 2

KEY

NONE 0
BACKSPACE 8
TAB 9
ENTER 10
ESCAPE 27
DELETE 127
F1 8388609
F2 8388610
F3 8388611
F4 8388612
F5 8388613
F6 8388614
F7 8388615
F8 8388616
F9 8388617
F10 8388618
F11 8388619
F12 8388620
F13 8388621
F14 8388622
F15 8388623
F16 8388624
F17 8388625
F18 8388626
F19 8388627
F20 8388628
F21 8388629
F22 8388630
F23 8388631
F24 8388632
UP 8388640
RIGHT 8388641
DOWN 8388642
LEFT 8388643
PAGE_UP 8388644
PAGE_DOWN 8388645
HOME 8388646
END 8388647
INSERT 8388648
BREAK 8388649
CLEAR 8388650
PRINT_SCREEN 8388651
SYSRQ 8388652
MENU 8388653
HELP 8388654
LSHIFT 8388656
RSHIFT 8388657
SHIFT 8388658
LCONTROL 8388659
RCONTROL 8388660
CONTROL 8388661
LALT 8388662
RALT 8388663
ALT 8388664
LSUPER 8388665
RSUPER 8388666
SUPER 8388667
CAPS_LOCK 8388668
NUM_LOCK 8388669
SCROLL_LOCK 8388670
KP_0 8388672
KP_1 8388673
KP_2 8388674
KP_3 8388675
KP_4 8388676
KP_5 8388677
KP_6 8388678
KP_7 8388679
KP_8 8388680
KP_9 8388681
KP_PLUS 8388682
KP_MINUS 8388683
KP_MULTIPLY 8388684
KP_DIVIDE 8388685
KP_COMMA 8388686
KP_POINT 8388687
KP_ENTER 8388688

KMOD

NONE 0
LSHIFT 1
RSHIFT 2
SHIFT 3
LCONTROL 4
RCONTROL 8
CONTROL 12
LALT 16
RALT 32
ALT 48
LSUPER 64
RSUPER 128
SUPER 192
CAPS_LOCK 256
NUM_LOCK 512
SCROLL_LOCK 1024

MOUSE_BUTTON

PRIMARY 0
SECONDARY 1
MIDDLE 2

PLATFORM

NONE -1
GBA 0
GB 1

SAVESTATE

SCREENSHOT 1
SAVEDATA 2
CHEATS 4
RTC 8
METADATA 16
ALL 31

SOCKERR

UNKNOWN_ERROR -1
OK 0
AGAIN 1
ADDRESS_IN_USE 2
CONNECTION_REFUSED 3
DENIED 4
FAILED 5
NETWORK_UNREACHABLE 6
NOT_FOUND 7
NO_DATA 8
OUT_OF_MEMORY 9
TIMEOUT 10
UNSUPPORTED 11

WATCHPOINT_TYPE

WRITE 1
READ 2
RW 3
WRITE_CHANGE 5

Memory domains

GBA

Key Name Base
bios BIOS 0x00000000
wram EWRAM 0x02000000
iwram IWRAM 0x03000000
io MMIO 0x04000000
palette Palette 0x05000000
vram VRAM 0x06000000
oam OAM 0x07000000
cart0 ROM 0x08000000
cart1 ROM WS1 0x0a000000
cart2 ROM WS2 0x0c000000

GB

Key Name Base
cart0 ROM Bank $0000
vram VRAM $8000
sram SRAM $a000
wram WRAM $c000
oam OAM $fe00
io MMIO $ff00
hram HRAM $ff80

Registers

GBA

Name WidthAlias
r0 4
r1 4
r2 4
r3 4
r4 4
r5 4
r6 4
r7 4
r8 4
r9 4
r10 4
r11 4
r12 4ip
sp 4r13
lr 4r14
pc 4r15
cpsr 4

GB

Name Width
b 1
c 1
d 1
e 1
h 1
l 1
a 1
f 1
bc 2
de 2
hl 2
af 2
pc 2
sp 2