forked from gophergala2016/gophette
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
309 lines (266 loc) · 7.06 KB
/
main.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
// +build !windows sdl2
package main
import (
"bytes"
"encoding/binary"
"fmt"
"github.com/gonutz/blob"
"github.com/gonutz/payload"
"github.com/veandco/go-sdl2/sdl"
"github.com/veandco/go-sdl2/sdl_image"
"github.com/veandco/go-sdl2/sdl_mixer"
"runtime"
"time"
"unsafe"
)
func init() {
runtime.LockOSThread()
}
func main() {
sdl.SetHint(sdl.HINT_RENDER_VSYNC, "1")
check(sdl.Init(sdl.INIT_EVERYTHING))
defer sdl.Quit()
check(mix.Init(mix.INIT_OGG))
defer mix.Quit()
check(mix.OpenAudio(44100, mix.DEFAULT_FORMAT, 1, 512))
defer mix.CloseAudio()
if img.Init(img.INIT_PNG)&img.INIT_PNG == 0 {
panic("error init png")
}
defer img.Quit()
window, renderer, err := sdl.CreateWindowAndRenderer(
640, 480,
sdl.WINDOW_RESIZABLE,
)
check(err)
defer renderer.Destroy()
defer window.Destroy()
window.SetTitle("Gophette's Adventures")
window.SetSize(800, 600)
sdl.ShowCursor(0)
window.SetFullscreen(sdl.WINDOW_FULLSCREEN_DESKTOP)
fullscreen := true
camera := newWindowCamera(window.GetSize())
assetLoader := newSDLAssetLoader(camera, renderer)
defer assetLoader.close()
// charIndex selects which character is being controlled by the user, for
// the final game this must be 0 but for creating the "AI" for Barney, set
// this to 1 and delete the recorded inputs so they are not applied
// additionally to the user controls
var charIndex int
const recordingAI = false // NOTE switch for development mode
if !recordingAI {
charIndex = 0
} else {
charIndex = 1
recordedInputs = recordedInputs[:0]
recordingInput = true
}
game := NewGame(
assetLoader,
&sdlGraphics{renderer, camera},
camera,
charIndex,
)
musicData, found := assetLoader.resources.GetByID("music")
if found {
musicRWOps := sdl.RWFromMem(unsafe.Pointer(&musicData[0]), len(musicData))
music, err := mix.LoadMUS_RW(musicRWOps, 0)
if err != nil {
fmt.Println("error loading music:", err)
} else {
defer music.Free()
music.FadeIn(-1, 500)
}
}
frameTime := time.Second / 65
lastUpdate := time.Now().Add(-frameTime)
for game.Running() {
for e := sdl.PollEvent(); e != nil; e = sdl.PollEvent() {
switch event := e.(type) {
case *sdl.KeyDownEvent:
if event.Repeat == 0 {
switch event.Keysym.Sym {
case sdl.K_LEFT:
game.HandleInput(InputEvent{GoLeft, true, charIndex})
case sdl.K_RIGHT:
game.HandleInput(InputEvent{GoRight, true, charIndex})
case sdl.K_UP, sdl.K_SPACE, sdl.K_LCTRL:
game.HandleInput(InputEvent{Jump, true, charIndex})
case sdl.K_ESCAPE:
game.HandleInput(InputEvent{QuitGame, true, charIndex})
}
}
case *sdl.KeyUpEvent:
switch event.Keysym.Sym {
case sdl.K_LEFT:
game.HandleInput(InputEvent{GoLeft, false, charIndex})
case sdl.K_RIGHT:
game.HandleInput(InputEvent{GoRight, false, charIndex})
case sdl.K_UP, sdl.K_SPACE, sdl.K_LCTRL:
game.HandleInput(InputEvent{Jump, false, charIndex})
case sdl.K_F11:
if fullscreen {
window.SetFullscreen(0)
} else {
window.SetFullscreen(sdl.WINDOW_FULLSCREEN_DESKTOP)
}
fullscreen = !fullscreen
case sdl.K_ESCAPE:
game.HandleInput(InputEvent{QuitGame, false, charIndex})
}
case *sdl.WindowEvent:
if event.Event == sdl.WINDOWEVENT_SIZE_CHANGED {
width, height := int(event.Data1), int(event.Data2)
camera.setWindowSize(width, height)
}
case *sdl.QuitEvent:
game.HandleInput(InputEvent{QuitGame, true, charIndex})
}
}
now := time.Now()
dt := now.Sub(lastUpdate)
if dt > frameTime {
game.Update()
lastUpdate = now
}
check(renderer.SetDrawColor(0, 95, 83, 255))
check(renderer.Clear())
game.Render()
renderer.Present()
}
}
func check(err error) {
if err != nil {
panic(err)
}
}
type textureImage struct {
renderer *sdl.Renderer
camera *windowCamera
texture *sdl.Texture
source sdl.Rect
}
func (img *textureImage) DrawAt(x, y int) {
dx, dy := img.camera.offset()
dest := sdl.Rect{int32(x + dx), int32(y + dy), img.source.W, img.source.H}
check(img.renderer.Copy(img.texture, &img.source, &dest))
}
func (img *textureImage) Size() (int, int) {
return int(img.source.W), int(img.source.H)
}
type wavSound struct {
chunk *mix.Chunk
}
func (s *wavSound) PlayOnce() {
s.chunk.Play(-1, 0)
}
func (s *wavSound) Length() time.Duration {
return time.Millisecond * time.Duration(s.chunk.LengthInMs())
}
type sdlAssetLoader struct {
resources *blob.Blob
camera *windowCamera
renderer *sdl.Renderer
textureAtlas *sdl.Texture
images map[string]*textureImage
sounds map[string]*wavSound
}
func (l *sdlAssetLoader) loadResources() error {
resourceData, err := payload.Read()
if err != nil {
return err
}
l.resources, err = blob.Read(bytes.NewBuffer(resourceData))
if err != nil {
return err
}
// load the texture atlas
atlas, found := l.resources.GetByID("atlas")
if !found {
panic("texture atlas not found in resources")
}
rwOps := sdl.RWFromMem(unsafe.Pointer(&atlas[0]), len(atlas))
surface, err := img.Load_RW(rwOps, false)
check(err)
defer surface.Free()
texture, err := l.renderer.CreateTextureFromSurface(surface)
check(err)
l.textureAtlas = texture
return err
}
func newSDLAssetLoader(cam *windowCamera, renderer *sdl.Renderer) *sdlAssetLoader {
l := &sdlAssetLoader{
camera: cam,
renderer: renderer,
images: make(map[string]*textureImage),
sounds: make(map[string]*wavSound),
}
check(l.loadResources())
return l
}
func (l *sdlAssetLoader) LoadImage(id string) Image {
if img, ok := l.images[id]; ok {
return img
}
data, _ := l.resources.GetByID(id)
if data == nil {
panic("unknown image resource: " + id)
}
// the loaded data is a binary rectangle that describes the location in
// the texture atlas for the given image ID
var bounds rect
check(binary.Read(bytes.NewReader(data), binary.LittleEndian, &bounds))
image := &textureImage{
l.renderer,
l.camera,
l.textureAtlas,
sdl.Rect{bounds.X, bounds.Y, bounds.W, bounds.H},
}
l.images[id] = image
return image
}
func (l *sdlAssetLoader) LoadSound(id string) Sound {
if sound, ok := l.sounds[id]; ok {
return sound
}
data, _ := l.resources.GetByID(id)
if data == nil {
panic("unknown sound resource: " + id)
}
rwOps := sdl.RWFromMem(unsafe.Pointer(&data[0]), len(data))
chunk, err := mix.LoadWAV_RW(rwOps, false)
check(err)
sound := &wavSound{chunk}
l.sounds[id] = sound
return sound
}
func (l *sdlAssetLoader) LoadRectangle(id string) Rectangle {
data, found := l.resources.GetByID(id)
if !found {
panic("unknown rectangle resource: " + id)
}
reader := bytes.NewReader(data)
var r rect
check(binary.Read(reader, binary.LittleEndian, &r))
return Rectangle{int(r.X), int(r.Y), int(r.W), int(r.H)}
}
type rect struct {
X, Y, W, H int32
}
func (l *sdlAssetLoader) close() {
for _, image := range l.images {
image.texture.Destroy()
}
for _, sound := range l.sounds {
sound.chunk.Free()
}
}
type sdlGraphics struct {
renderer *sdl.Renderer
camera *windowCamera
}
func (graphics *sdlGraphics) ClearScreen(r, g, b uint8) {
check(graphics.renderer.SetDrawColor(r, g, b, 255))
graphics.renderer.Clear()
}