feature/menu #3

Merged
bdnugget merged 4 commits from feature/menu into master 2025-01-18 22:26:19 +00:00
3 changed files with 80 additions and 65 deletions
Showing only changes of commit d86cbe15a3 - Show all commits

View File

@ -17,6 +17,7 @@ type Game struct {
Music rl.Music Music rl.Music
Chat *Chat Chat *Chat
MenuOpen bool MenuOpen bool
QuitChan chan struct{} // Channel to signal shutdown
} }
func New() *Game { func New() *Game {
@ -38,6 +39,7 @@ func New() *Game {
Projection: rl.CameraPerspective, Projection: rl.CameraPerspective,
}, },
Chat: NewChat(), Chat: NewChat(),
QuitChan: make(chan struct{}),
} }
game.Player.UserData = game game.Player.UserData = game
game.Chat.userData = game game.Chat.userData = game
@ -259,6 +261,7 @@ func (g *Game) DrawMenu() {
case "Settings": case "Settings":
// TODO: Implement settings // TODO: Implement settings
case "Exit Game": case "Exit Game":
close(g.QuitChan) // Signal all goroutines to shut down
rl.CloseWindow() rl.CloseWindow()
} }
} }

View File

@ -52,7 +52,7 @@ func main() {
game.Player.Model = game.Models[modelIndex].Model game.Player.Model = game.Models[modelIndex].Model
game.Player.Texture = game.Models[modelIndex].Texture game.Player.Texture = game.Models[modelIndex].Texture
go network.HandleServerCommunication(conn, playerID, game.Player, game.OtherPlayers) go network.HandleServerCommunication(conn, playerID, game.Player, game.OtherPlayers, game.QuitChan)
rl.PlayMusicStream(game.Music) rl.PlayMusicStream(game.Music)
rl.SetMusicVolume(game.Music, 0.5) rl.SetMusicVolume(game.Music, 0.5)
@ -65,4 +65,7 @@ func main() {
game.Update(deltaTime) game.Update(deltaTime)
game.Render() game.Render()
} }
// Wait for clean shutdown
<-game.QuitChan
} }

View File

@ -56,15 +56,18 @@ func ConnectToServer() (net.Conn, int32, error) {
return conn, playerID, nil return conn, playerID, nil
} }
func HandleServerCommunication(conn net.Conn, playerID int32, player *types.Player, otherPlayers map[int32]*types.Player) { func HandleServerCommunication(conn net.Conn, playerID int32, player *types.Player, otherPlayers map[int32]*types.Player, quitChan <-chan struct{}) {
// Create a buffered reader for the connection
reader := bufio.NewReader(conn) reader := bufio.NewReader(conn)
actionTicker := time.NewTicker(types.ClientTickRate) actionTicker := time.NewTicker(types.ClientTickRate)
defer actionTicker.Stop() defer actionTicker.Stop()
go func() { go func() {
for range actionTicker.C { for {
select {
case <-quitChan:
return
case <-actionTicker.C:
player.Lock() player.Lock()
if len(player.ActionQueue) > 0 { if len(player.ActionQueue) > 0 {
actions := make([]*pb.Action, len(player.ActionQueue)) actions := make([]*pb.Action, len(player.ActionQueue))
@ -87,9 +90,14 @@ func HandleServerCommunication(conn net.Conn, playerID int32, player *types.Play
player.Unlock() player.Unlock()
} }
} }
}
}() }()
for { for {
select {
case <-quitChan:
return
default:
// Read message length (4 bytes) // Read message length (4 bytes)
lengthBuf := make([]byte, 4) lengthBuf := make([]byte, 4)
if _, err := io.ReadFull(reader, lengthBuf); err != nil { if _, err := io.ReadFull(reader, lengthBuf); err != nil {
@ -142,6 +150,7 @@ func HandleServerCommunication(conn net.Conn, playerID int32, player *types.Play
} }
} }
} }
}
// Helper function to write length-prefixed messages // Helper function to write length-prefixed messages
func writeMessage(conn net.Conn, msg proto.Message) error { func writeMessage(conn net.Conn, msg proto.Message) error {