/* Copyright (c) 2013-2015 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 INTERFACE_H #define INTERFACE_H #include "util/common.h" #include "core/interface.h" enum GBALogLevel { GBA_LOG_FATAL = 0x01, GBA_LOG_ERROR = 0x02, GBA_LOG_WARN = 0x04, GBA_LOG_INFO = 0x08, GBA_LOG_DEBUG = 0x10, GBA_LOG_STUB = 0x20, GBA_LOG_GAME_ERROR = 0x100, GBA_LOG_STATUS = 0x400, GBA_LOG_SIO = 0x800, GBA_LOG_ALL = 0xF3F, }; enum GBASIOMode { SIO_NORMAL_8 = 0, SIO_NORMAL_32 = 1, SIO_MULTI = 2, SIO_UART = 3, SIO_GPIO = 8, SIO_JOYBUS = 12 }; struct GBA; struct GBAAudio; struct GBASIO; struct GBAThread; struct GBAVideoRenderer; typedef void (*GBALogHandler)(struct GBAThread*, enum GBALogLevel, const char* format, va_list args); extern const int GBA_LUX_LEVELS[10]; struct GBALuminanceSource { void (*sample)(struct GBALuminanceSource*); uint8_t (*readLuminance)(struct GBALuminanceSource*); }; struct GBASIODriver { struct GBASIO* p; bool (*init)(struct GBASIODriver* driver); void (*deinit)(struct GBASIODriver* driver); bool (*load)(struct GBASIODriver* driver); bool (*unload)(struct GBASIODriver* driver); uint16_t (*writeRegister)(struct GBASIODriver* driver, uint32_t address, uint16_t value); int32_t (*processEvents)(struct GBASIODriver* driver, int32_t cycles); }; #endif