mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-22 09:37:09 +00:00
132 lines
2.7 KiB
Go
132 lines
2.7 KiB
Go
// credit to https://github.com/fogleman/nes
|
|
package ui
|
|
|
|
import (
|
|
"image"
|
|
"github.com/giongto35/cloud-game/nes"
|
|
)
|
|
|
|
// List key pressed
|
|
const (
|
|
a1 = iota
|
|
b1
|
|
select1
|
|
start1
|
|
up1
|
|
down1
|
|
left1
|
|
right1
|
|
|
|
a2
|
|
b2
|
|
select2
|
|
start2
|
|
up2
|
|
down2
|
|
left2
|
|
right2
|
|
)
|
|
const NumKeys = 8
|
|
const SampleRate = 16000
|
|
const Channels = 1
|
|
const TimeFrame = 60
|
|
|
|
type GameView struct {
|
|
console *nes.Console
|
|
title string
|
|
hash string
|
|
|
|
// equivalent to the list key pressed const above
|
|
keyPressed [NumKeys * 2]bool
|
|
|
|
imageChannel chan *image.RGBA
|
|
audioChanel chan float32
|
|
inputChannel chan int
|
|
}
|
|
|
|
|
|
func NewGameView(console *nes.Console, title, hash string, imageChannel chan *image.RGBA, audioChanel chan float32, inputChannel chan int) *GameView {
|
|
gameview := &GameView{
|
|
console: console,
|
|
title: title,
|
|
hash: hash,
|
|
keyPressed: [NumKeys * 2]bool{false},
|
|
imageChannel: imageChannel,
|
|
audioChanel: audioChanel,
|
|
inputChannel: inputChannel,
|
|
}
|
|
|
|
go gameview.ListenToInputChannel()
|
|
return gameview
|
|
}
|
|
|
|
// ListenToInputChannel listen from input channel streamm, which is exposed to WebRTC session
|
|
func (view *GameView) ListenToInputChannel() {
|
|
for {
|
|
keysInBinary := <-view.inputChannel
|
|
for i := 0; i < NumKeys*2; i++ {
|
|
b := ((keysInBinary & 1) == 1)
|
|
view.keyPressed[i] = (view.keyPressed[i] && b) || b
|
|
keysInBinary = keysInBinary >> 1
|
|
}
|
|
}
|
|
}
|
|
|
|
// Enter enter the game view.
|
|
func (view *GameView) Enter() {
|
|
view.console.SetAudioSampleRate(SampleRate)
|
|
view.console.SetAudioChannel(view.audioChanel)
|
|
|
|
// load state
|
|
if err := view.console.LoadState(savePath(view.hash)); err == nil {
|
|
return
|
|
} else {
|
|
view.console.Reset()
|
|
}
|
|
//view.console.Reset()
|
|
|
|
// load sram
|
|
cartridge := view.console.Cartridge
|
|
if cartridge.Battery != 0 {
|
|
if sram, err := readSRAM(sramPath(view.hash)); err == nil {
|
|
cartridge.SRAM = sram
|
|
}
|
|
}
|
|
}
|
|
|
|
// Exit ...
|
|
func (view *GameView) Exit() {
|
|
view.console.SetAudioChannel(nil)
|
|
view.console.SetAudioSampleRate(0)
|
|
// save sram
|
|
cartridge := view.console.Cartridge
|
|
if cartridge.Battery != 0 {
|
|
writeSRAM(sramPath(view.hash), cartridge.SRAM)
|
|
}
|
|
}
|
|
|
|
// Update is called for every period of time, dt is the elapsed time from the last frame
|
|
func (view *GameView) Update(t, dt float64) {
|
|
if dt > 1 {
|
|
dt = 0
|
|
}
|
|
console := view.console
|
|
view.updateControllers()
|
|
console.StepSeconds(dt)
|
|
|
|
// fps to set frame
|
|
view.imageChannel <- console.Buffer()
|
|
}
|
|
|
|
func (view *GameView) updateControllers() {
|
|
// Divide keyPressed to player 1 and player 2
|
|
// First 8 keys are player 1
|
|
var player1Keys [8]bool
|
|
copy(player1Keys[:], view.keyPressed[:8])
|
|
|
|
var player2Keys [8]bool
|
|
copy(player2Keys[:], view.keyPressed[8:])
|
|
|
|
view.console.Controller1.SetButtons(player1Keys)
|
|
view.console.Controller2.SetButtons(player2Keys)
|
|
}
|