summaryrefslogtreecommitdiffstats
path: root/src/Game.hs
blob: 9aef422685cdaa2cafcb05ed3a27c824747358b4 (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
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
{-# LANGUAGE GeneralizedNewtypeDeriving #-}

module Game ( Tank(..)
            , Bullet(..)
            , GameState(..)
            , Game
            , runGame
            ) where

import Level
import Texture

import Control.Monad
import Control.Monad.State
import Data.Fixed
import qualified Data.Map as M


data Tank = Tank
          { tankX            :: !Micro
          , tankY            :: !Micro
          , tankDir          :: !Micro
          , tankAim          :: !Micro
          , tankSpeed        :: !Micro
          , tankTurnspeed    :: !Micro
          , tankMoving       :: !Bool
          , tankBulletSpeed   :: !Micro
          , tankBulletBounces :: !Int
          , tankBulletsLeft   :: !Int
          } deriving Show

data Bullet = Bullet
    { bulletX      :: !Micro
    , bulletY      :: !Micro
    , bulletDir    :: !Micro
    , bulletSpeed  :: !Micro
    , bulletBouncesLeft :: !Int
    , bulletTank   :: !Int
    } deriving Show

data GameState = GameState
    { level    :: !Level
    , tanks    :: ![Tank]
    , bullets   :: ![Bullet]
    , 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