wizard-wipeout/src-client/Client/Game.hs

44 lines
814 B
Haskell
Raw Normal View History

2023-12-20 07:12:22 +00:00
module Client.Game where
import Control.Monad.Loops
import Control.Monad.RWS
2024-04-19 18:18:49 +00:00
import Data.IORef (readIORef)
2024-04-17 17:44:47 +00:00
2024-01-20 09:49:57 +00:00
import Graphics.Vty
2023-12-20 07:12:22 +00:00
-- internal imports
import Client.Communication
2023-12-23 10:39:34 +00:00
import Client.Graphics
2023-12-20 07:12:22 +00:00
import Client.Types
import Library.Types
2024-04-17 17:44:47 +00:00
runGame
2024-04-19 18:18:49 +00:00
:: Game ()
runGame = do
2023-12-20 08:04:50 +00:00
sock <- asks rcSocket
queue <- asks rcQueue
2023-12-23 10:38:57 +00:00
clientId <- asks rcClientUUID
2024-03-29 22:01:41 +00:00
st <- get
2024-04-17 17:44:47 +00:00
-- recvThread <- liftIO $ forkIO $ forever $ receiveMessage sock queue st
2024-04-19 18:18:49 +00:00
liftIO $ sendMessage (ClientMessage clientId ClientReady) sock
2023-12-20 07:12:22 +00:00
whileM_
2024-04-19 18:18:49 +00:00
(liftIO (not <$> readIORef (scStopper st)))
2023-12-20 07:12:22 +00:00
(do
2024-04-17 17:44:47 +00:00
liftIO $ receiveMessage sock queue st
2023-12-20 08:04:50 +00:00
handleMessages
2024-01-23 10:13:52 +00:00
-- draw
2023-12-20 07:12:22 +00:00
)
2024-04-17 17:44:47 +00:00
-- liftIO $ killThread recvThread
2024-01-20 09:49:57 +00:00
handleEvent
:: Maybe Event
-> Game ()
handleEvent Nothing =
pure ()
handleEvent (Just event) =
pure ()