114 lines
3.4 KiB
Haskell
114 lines
3.4 KiB
Haskell
module Main
|
|
( main
|
|
) where
|
|
import Loop
|
|
import Dodge.Data
|
|
import Dodge.LevelGen
|
|
import Dodge.Update
|
|
import Dodge.Event
|
|
import Dodge.Render
|
|
import Dodge.Config.KeyConfig
|
|
import Dodge.Config.Load
|
|
import Dodge.Config.Update
|
|
import Dodge.SoundLogic.LoadSound
|
|
import Picture
|
|
import Render
|
|
import Preload.Render
|
|
import Sound
|
|
import Preload
|
|
import Sound.Data
|
|
import Music
|
|
import Data.Preload
|
|
import Data.Preload.Render
|
|
|
|
import Control.Lens
|
|
import Control.Monad
|
|
import qualified Data.IntMap as IM
|
|
import Graphics.Rendering.OpenGL hiding (color, rotate, scale, translate)
|
|
import qualified SDL
|
|
import qualified SDL.Mixer as Mix
|
|
import Control.Parallel
|
|
import qualified Data.Map.Strict as M
|
|
|
|
main :: IO ()
|
|
main = do
|
|
-- load the config to get the window size and position
|
|
con <- loadDodgeConfig
|
|
let sizex = floor $ _windowX con
|
|
sizey = floor $ _windowY con
|
|
posx = _windowPosX con
|
|
posy = _windowPosY con
|
|
setupLoop
|
|
20
|
|
(sizex,sizey)
|
|
(Just (posx,posy))
|
|
theCleanup
|
|
(firstWorldLoad con)
|
|
theUpdateStep
|
|
(flip handleEvent)
|
|
|
|
theCleanup :: World -> IO ()
|
|
theCleanup w = SDL.cursorVisible $= True >> cleanUpPreload (_preloadData w)
|
|
|
|
firstWorldLoad :: Configuration -> IO World
|
|
firstWorldLoad theConfig = do
|
|
SDL.cursorVisible $= False
|
|
theKeyConfig <- loadKeyConfig
|
|
pdata <- doPreload >>= applyWorldConfig theConfig
|
|
w <- generateWorldFromSeed 0
|
|
return $ w & preloadData .~ pdata
|
|
& keyConfig .~ theKeyConfig
|
|
& config .~ theConfig
|
|
|
|
theUpdateStep :: World -> IO World
|
|
theUpdateStep = doSideEffects <=< updateRenderSplit
|
|
|
|
updateRenderSplit :: World -> IO World
|
|
updateRenderSplit w = do
|
|
let preData = _preloadData w
|
|
update w `par` void (doDrawing (_renderData preData) w)
|
|
return $ update w
|
|
|
|
playSoundUnlessRewinding :: World -> IO (M.Map SoundOrigin Sound)
|
|
playSoundUnlessRewinding w
|
|
| _rewinding w = return M.empty
|
|
| otherwise = playSoundAndUpdate (_soundData $ _preloadData w) (_playingSounds w) (_toPlaySounds w)
|
|
|
|
doSideEffects :: World -> IO World
|
|
doSideEffects w = do
|
|
let preData = _preloadData w
|
|
--newPlayingSounds <- playSoundAndUpdate (_soundData preData) (_playingSounds w) (_toPlaySounds w)
|
|
newPlayingSounds <- playSoundUnlessRewinding w
|
|
w' <- _sideEffects w w
|
|
endTicks <- SDL.ticks
|
|
let lastFrameTicks = _frameTimer preData
|
|
when (_debug_seconds_frame $ _config w) $ void $ renderFoldable
|
|
(_pictureShaders $ _renderData preData)
|
|
(setDepth (-1)
|
|
. translate (-0.5) (-0.8) . scale 0.0005 0.0005
|
|
. text $ "ms/frame " ++ show (endTicks - lastFrameTicks)
|
|
)
|
|
return $ w' & preloadData . frameTimer .~ endTicks
|
|
& playingSounds .~ newPlayingSounds
|
|
& toPlaySounds .~ M.empty
|
|
& sideEffects .~ return
|
|
& rewinding .~ False -- this is probably not the best place for this
|
|
|
|
doPreload :: IO PreloadData
|
|
doPreload = do
|
|
rData <- preloadRender
|
|
lChunks <- loadSounds
|
|
lMusic <- loadMusic
|
|
Mix.playMusic Mix.Forever (lMusic IM.! 0)
|
|
return PreloadData
|
|
{ _renderData = rData
|
|
, _soundData = SoundData {_loadedChunks = lChunks}
|
|
, _musicData = MusicData {_loadedMusic = lMusic}
|
|
, _frameTimer = 0
|
|
}
|
|
|
|
--checkForGlErrors :: IO ()
|
|
--checkForGlErrors = do
|
|
-- errs <- errors
|
|
-- unless (null errs) $ putStrLn $ "GLerror during doLoop: " ++ unwords (map show errs)
|