-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsession.go
35 lines (29 loc) · 877 Bytes
/
session.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package ggpo
type Session interface {
SaveGameState(stateID int) int
LoadGameState(stateID int)
AdvanceFrame(flags int)
OnEvent(info *Event)
//SetBackend(backend Backend)
}
const DefaultChecksum = 0
type SessionCallbacks struct {
BeginGame beginGame
SaveGameState saveGameState
LoadGameState loadGameState
LogGameState logGameState
FreeBuffer freeBuffer
AdvanceFrame advanceFrame
OnEvent onEvent
}
type beginGame func(game string) bool
/*
type saveGameState func(len *int, checksum *int, frame int) ([]byte, bool)
type loadGameState func(buffer []byte, len int) bool
*/
type saveGameState func(stateID int) ([]byte, bool)
type loadGameState func(stateID int) bool
type logGameState func(fileName string, buffer []byte, len int) bool
type freeBuffer func(buffer []byte)
type advanceFrame func(flags int) bool
type onEvent func(info *Event) bool