blob: 0e8145b02a9bfbae9009f98daf345d6c5f9532f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
module src/renderer
/*
The Renderer for the Chip8 emulator.
To support multiple backends, we define a Renderer interface.
Every backend must implement this interface.
*/
import bytearray
// region of runtime
interface Renderer {
def init(run: (ByteArray) => Unit at {io, global}): Unit
def clear(): Unit
def draw(x: Int, y: Int, color: String): Unit
def fill(color: String): Unit
def get(x: Int, y: Int): Bool
def update(f: () => Unit at {io, global}): Unit
def log(msg: String): Unit
def getKeyPressed(): Option[String]
def beep(): Unit
def stopBeep(): Unit
}
|