pituicat/src/Main.hs

130 lines
3.6 KiB
Haskell
Raw Normal View History

2020-09-23 23:26:47 +00:00
{-# LANGUAGE OverloadedStrings #-}
2020-08-30 15:36:32 +00:00
module Main where
2020-09-23 23:26:47 +00:00
import Affection
2020-12-06 07:14:50 +00:00
import SDL (($=), get)
2020-09-23 23:26:47 +00:00
import qualified SDL
2020-12-06 07:14:50 +00:00
import qualified SDL.Raw.Video as SDL (glSetAttribute)
import qualified SDL.Raw.Enum as SDL
2020-09-23 23:26:47 +00:00
2020-10-28 10:48:58 +00:00
import qualified Graphics.Rendering.OpenGL as GL
2020-12-06 07:14:50 +00:00
import Control.Monad (when, void)
2020-09-23 23:26:47 +00:00
import Control.Concurrent.STM
import qualified Data.Map.Strict as M
2020-12-06 07:14:50 +00:00
import Data.String (fromString)
2020-09-23 23:26:47 +00:00
import Linear
-- internal imports
2020-12-14 02:12:33 +00:00
import StateMachine()
2020-09-23 23:26:47 +00:00
import Types
2020-10-28 10:48:58 +00:00
import Classes
import Scenes.Test
2020-09-23 23:26:47 +00:00
instance Affectionate GameData where
preLoop = preLoad
2020-10-16 23:53:25 +00:00
handleEvents = handle
update = Main.update
draw = Main.draw
2020-09-23 23:26:47 +00:00
loadState = Main.init
cleanUp _ = return ()
hasNextStep = liftIO . atomically . readTVar . gameRunning
2020-08-30 15:36:32 +00:00
main :: IO ()
2020-09-23 23:26:47 +00:00
main = do
let config = AffectionConfig
{ initComponents = All
, windowTitle = "Pituicat"
, windowConfigs =
[ ( 0
, SDL.defaultWindow
{ SDL.windowInitialSize = V2 800 600
, SDL.windowResizable = True
, SDL.windowGraphicsContext = SDL.OpenGLContext SDL.defaultOpenGL
2021-01-03 09:14:36 +00:00
{ SDL.glProfile = SDL.Core SDL.Normal 4 0
2020-09-23 23:26:47 +00:00
}
}
, SDL.Windowed
)
]
} :: AffectionConfig GameData
withAffection config
preLoad :: GameData -> Affection ()
2021-01-11 11:01:07 +00:00
preLoad gd = do
void $ generalSubscribe
((\(SubKeyboard t) -> t) $ subKeyboard $ gameSubsystems gd)
(\(MsgKeyboardEvent when win motion False keysym) -> do
translator <- liftIO $ atomically $ readTVar (gameActionTranslation gd)
case
((SDL.keysymScancode keysym, SDL.keysymModifier keysym) `M.lookup`
translator)
of
Just action ->
partEmit
(subTranslator $ gameSubsystems gd)
(TranslatorMessage action when motion)
Nothing ->
return ()
)
2020-10-16 23:53:25 +00:00
handle :: GameData -> [SDL.EventPayload] -> Affection ()
handle gd evs = do
state <- liftIO (atomically $ readTVar $ gameState gd)
smEvent state gd evs
update :: GameData -> Double -> Affection ()
update gd dt = do
2020-12-06 07:14:50 +00:00
liftIO ((logIO Verbose) =<< (atomically $
(("Progress: " <>) . snd) <$> (readTMVar $ gameStateLoadProgress gd)))
state <- liftIO $ atomically $ readTVar $ gameState gd
2020-12-06 07:14:50 +00:00
isStagePresent <- liftIO $ atomically $ fmap not $ isEmptyTMVar $ gameScene gd
if isStagePresent
2020-10-28 10:48:58 +00:00
then do
2020-12-06 07:14:50 +00:00
liftIO $ logIO Verbose "Stage is present"
2020-10-28 10:48:58 +00:00
(Stage sceneContainer) <- liftIO $ atomically $ readTMVar $ gameScene gd
sceneLoaded <- isSceneLoaded sceneContainer
2020-12-06 07:14:50 +00:00
if not sceneLoaded
then do
liftIO $ logIO Verbose "Loading scene"
smLoad state gd
else
smUpdate state gd dt
else
2020-12-06 07:14:50 +00:00
liftIO $ logIO Error "No Stage to play on"
2020-10-16 23:53:25 +00:00
draw :: GameData -> Affection ()
draw gd = do
state <- liftIO (atomically $ readTVar $ gameState gd)
2020-12-06 07:14:50 +00:00
liftIO $ logIO Verbose (fromString $ "now drawing: " <> show state)
2020-12-14 02:12:33 +00:00
GL.clearColor $= GL.Color4 0 0 0 1
2020-10-16 23:53:25 +00:00
smDraw state gd
2020-12-06 07:14:50 +00:00
err <- SDL.get GL.errors
when (not $ null err) (liftIO $ logIO Error ("loop errors: " <> fromString (show err)))
2020-10-16 23:53:25 +00:00
2020-09-23 23:26:47 +00:00
init :: IO GameData
2020-12-06 07:14:50 +00:00
init = do
GL.blend $= GL.Enabled
GL.blendFunc $= (GL.SrcAlpha, GL.OneMinusSrcAlpha)
void $ SDL.glSetAttribute SDL.SDL_GL_SHARE_WITH_CURRENT_CONTEXT 1
GameData
<$> (newTMVarIO =<< (Stage <$> (initScene :: IO Test)))
<*> newTVarIO Loading
<*> newTMVarIO (0, "Ohai!")
<*> (Subsystems
<$> (SubWindow <$> newTVarIO [])
<*> (SubMouse <$> newTVarIO [])
<*> (SubKeyboard <$> newTVarIO [])
<*> (SubTranslator <$> newTVarIO [])
)
<*> newTVarIO (M.fromList [])
<*> newTVarIO True
<*> newTVarIO Nothing
<*> newTVarIO Nothing