blob: 9097bca38b57e5d41bf9eda34d4f1356928d64b5 (
plain)
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
|
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module Game ( GameState(..)
, Game
, runGame
) where
import Level
import Tank
import Texture
import Control.Monad
import Control.Monad.State
import qualified Data.Map as M
data GameState = GameState
{ level :: !Level
, tanks :: ![Tank]
, textures :: !(M.Map Texture TextureObject)
} deriving (Show)
newtype Game a = Game (StateT GameState IO a)
deriving (Monad, MonadIO, MonadState GameState)
runGame :: GameState -> Game a -> IO (a, GameState)
runGame st (Game a) = runStateT a st
|