2018-06-08 23:17:03 +00:00
|
|
|
module Load where
|
|
|
|
|
|
|
|
import Affection as A
|
|
|
|
|
2018-06-15 13:39:08 +00:00
|
|
|
import qualified SDL
|
2018-06-16 17:34:17 +00:00
|
|
|
import Graphics.Rendering.OpenGL.GL.FlushFinish (finish)
|
2018-06-15 13:39:08 +00:00
|
|
|
|
2018-06-08 23:17:03 +00:00
|
|
|
import Control.Concurrent (forkIO)
|
|
|
|
import Control.Concurrent.MVar
|
|
|
|
import Control.Monad (when)
|
|
|
|
|
|
|
|
import qualified Data.Map as M
|
2018-07-19 02:51:07 +00:00
|
|
|
import qualified Data.Text as T
|
2018-06-08 23:17:03 +00:00
|
|
|
import Data.Ecstasy
|
|
|
|
import Data.Maybe
|
|
|
|
|
|
|
|
import System.Exit (exitFailure)
|
|
|
|
|
|
|
|
import NanoVG hiding (V2(..))
|
|
|
|
|
|
|
|
-- internal imports
|
|
|
|
|
2018-10-08 21:36:52 +00:00
|
|
|
import Menu
|
2018-06-08 23:17:03 +00:00
|
|
|
import Types
|
2018-06-28 19:07:58 +00:00
|
|
|
import MainGame.WorldMap
|
2018-06-08 23:17:03 +00:00
|
|
|
import Util
|
|
|
|
|
|
|
|
loadLoad :: Affection UserData ()
|
|
|
|
loadLoad = do
|
2018-07-06 15:17:12 +00:00
|
|
|
ad <- A.get
|
2018-06-08 23:17:03 +00:00
|
|
|
ud <- getAffection
|
2018-07-19 02:51:07 +00:00
|
|
|
progress <- liftIO $ newMVar (0, "Starting up")
|
2018-09-02 08:44:33 +00:00
|
|
|
future <- liftIO newEmptyMVar
|
2018-06-15 13:39:08 +00:00
|
|
|
_ <- liftIO $ createFont (nano ud) "bedstead"
|
|
|
|
(FileName "assets/font/Bedstead-Semicondensed.ttf")
|
|
|
|
_ <- liftIO $ forkIO $
|
|
|
|
loadFork
|
|
|
|
(worldState ud)
|
2018-07-03 14:19:27 +00:00
|
|
|
(fromJust $ window ud)
|
|
|
|
(fromJust $ threadContext ud)
|
2018-06-15 13:39:08 +00:00
|
|
|
(nano ud)
|
|
|
|
future
|
|
|
|
progress
|
2018-07-06 15:17:12 +00:00
|
|
|
SDL.glMakeCurrent (fromJust $ window ud) (glContext ad)
|
2018-06-08 23:17:03 +00:00
|
|
|
putAffection ud
|
|
|
|
{ stateMVar = future
|
|
|
|
, stateProgress = progress
|
|
|
|
, state = Load
|
2018-06-15 13:39:08 +00:00
|
|
|
, assetFonts = M.fromList
|
|
|
|
[ (FontBedstead, "bedstead")
|
|
|
|
]
|
2018-06-08 23:17:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
loadFork
|
2018-08-10 06:58:26 +00:00
|
|
|
:: SystemState Entity (AffectionState (AffectionData UserData) IO)
|
2018-07-03 14:19:27 +00:00
|
|
|
-> SDL.Window
|
|
|
|
-> SDL.GLContext
|
2018-06-08 23:17:03 +00:00
|
|
|
-> Context
|
2018-08-10 06:58:26 +00:00
|
|
|
-> MVar
|
|
|
|
( SystemState Entity (AffectionState (AffectionData UserData) IO)
|
|
|
|
, StateData
|
|
|
|
)
|
2018-07-19 02:51:07 +00:00
|
|
|
-> MVar (Float, T.Text)
|
2018-06-08 23:17:03 +00:00
|
|
|
-> IO ()
|
2018-07-03 14:19:27 +00:00
|
|
|
loadFork ws win glc nvg future progress = do
|
2018-08-12 04:28:31 +00:00
|
|
|
let stateSteps = 37
|
2018-06-08 23:17:03 +00:00
|
|
|
increment = 1 / stateSteps
|
2018-06-15 13:39:08 +00:00
|
|
|
SDL.glMakeCurrent win glc
|
2018-10-08 21:36:52 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading icon \"conntroller_blue\""
|
|
|
|
)))
|
|
|
|
mcontrblue <- createImage nvg (FileName "assets/icons/controller_blue.png") 0
|
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading icon \"conntroller_green\""
|
|
|
|
)))
|
|
|
|
mcontrgreen <- createImage nvg (FileName "assets/icons/controller_green.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_asc\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwallasc <- createImage nvg (FileName "assets/walls/wall_asc.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_desc\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwalldesc <- createImage nvg (FileName "assets/walls/wall_desc.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_corner_n\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwallcornern <- createImage nvg (FileName "assets/walls/wall_corner_n.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_corner_e\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwallcornere <- createImage nvg (FileName "assets/walls/wall_corner_e.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_corner_s\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwallcorners <- createImage nvg (FileName "assets/walls/wall_corner_s.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_corner_w\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwallcornerw <- createImage nvg (FileName "assets/walls/wall_corner_w.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_t_ne\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwalltne <- createImage nvg (FileName "assets/walls/wall_t_ne.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_t_se\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwalltse <- createImage nvg (FileName "assets/walls/wall_t_se.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_t_sw\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwalltsw <- createImage nvg (FileName "assets/walls/wall_t_sw.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_t_nw\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwalltnw <- createImage nvg (FileName "assets/walls/wall_t_nw.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"wall_cross\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mwallcross <- createImage nvg (FileName "assets/walls/wall_cross.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"box1\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
mmiscbox1 <- createImage nvg (FileName "assets/misc/box1.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"table1\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtable1 <- createImage nvg (FileName "assets/table/table1.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"table2\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtable2 <- createImage nvg (FileName "assets/table/table2.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"table3\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtable3 <- createImage nvg (FileName "assets/table/table3.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
2018-07-30 19:10:42 +00:00
|
|
|
, "Loading asset \"table4\""
|
2018-07-19 02:51:07 +00:00
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtable4 <- createImage nvg (FileName "assets/table/table4.png") 0
|
2018-07-30 19:10:42 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"tableC1\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtablec1 <- createImage nvg (FileName "assets/table/tablec1.png") 0
|
2018-07-30 19:10:42 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"tableC2\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtablec2 <- createImage nvg (FileName "assets/table/tablec2.png") 0
|
2018-07-30 19:10:42 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"tableC3\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtablec3 <- createImage nvg (FileName "assets/table/tablec3.png") 0
|
2018-07-30 19:10:42 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"tableC4\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtablec4 <- createImage nvg (FileName "assets/table/tablec4.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"tableCorner\""
|
|
|
|
)))
|
2018-07-31 11:30:17 +00:00
|
|
|
mtableC <- createImage nvg (FileName "assets/table/tableCorner.png") 0
|
2018-07-30 13:34:45 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"flipchart\""
|
|
|
|
)))
|
|
|
|
mmiscFlipchart <- createImage nvg (FileName "assets/misc/flipchart.png") 0
|
2018-07-31 11:30:17 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"plant1\""
|
|
|
|
)))
|
|
|
|
mmiscPlant1 <- createImage nvg (FileName "assets/misc/plant1.png") 0
|
2018-07-31 20:59:25 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading asset \"plant2\""
|
|
|
|
)))
|
|
|
|
mmiscPlant2 <- createImage nvg (FileName "assets/misc/plant2.png") 0
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
2018-08-07 12:04:49 +00:00
|
|
|
, "Loading asset \"watercooler\""
|
2018-07-19 02:51:07 +00:00
|
|
|
)))
|
2018-08-07 12:04:49 +00:00
|
|
|
mmiscWatercooler <- createImage nvg (FileName "assets/misc/watercooler.png") 0
|
2018-10-08 21:36:52 +00:00
|
|
|
let micons =
|
|
|
|
[ mcontrblue, mcontrgreen
|
|
|
|
]
|
|
|
|
when (any isNothing micons) $ do
|
|
|
|
liftIO $logIO Error "Failed to load icon assets"
|
|
|
|
exitFailure
|
2018-08-07 12:04:49 +00:00
|
|
|
let mimgs =
|
|
|
|
[ mwallasc, mwalldesc
|
|
|
|
, mwallcornern, mwallcornere, mwallcorners, mwallcornerw
|
|
|
|
, mwalltne, mwalltse, mwalltsw, mwalltnw, mwallcross
|
|
|
|
, mmiscbox1
|
|
|
|
, mtable1, mtable2, mtable3, mtable4, mtableC
|
|
|
|
, mtablec1, mtablec2, mtablec3, mtablec4
|
|
|
|
, mmiscFlipchart
|
|
|
|
, mmiscPlant1, mmiscPlant2
|
|
|
|
, mmiscWatercooler
|
2018-06-08 23:17:03 +00:00
|
|
|
]
|
|
|
|
when (any isNothing mimgs) $ do
|
|
|
|
liftIO $logIO Error "Failed to load image assets"
|
|
|
|
exitFailure
|
2018-08-07 12:04:49 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"intruder: standing\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
-- playerImgs <- loadPlayerSprite "assets/intruder.png" 64 74 nvg
|
|
|
|
-- (zipWith (\a b -> (a, [b])) [0..] $ [ImgIntrE .. ImgIntrN] ++ [ImgIntrNE])
|
2018-07-21 04:43:26 +00:00
|
|
|
let imgs = zipWith (\a b -> (a, fromJust b))
|
|
|
|
[ ImgWallAsc
|
2018-08-07 12:04:49 +00:00
|
|
|
.. ImgMiscWatercooler
|
2018-07-21 04:43:26 +00:00
|
|
|
]
|
|
|
|
mimgs
|
2018-10-08 21:36:52 +00:00
|
|
|
icons = zipWith (\a b -> (a, fromJust b))
|
|
|
|
[ IconContrBlue
|
|
|
|
.. IconContrGreen
|
|
|
|
]
|
|
|
|
micons
|
2018-06-08 23:17:03 +00:00
|
|
|
directions = [E .. N] ++ [NE]
|
2018-06-16 17:34:17 +00:00
|
|
|
standIds var = map (AnimId var "standing") directions
|
|
|
|
walkIds var = map (AnimId var "walking") directions
|
2018-06-08 23:17:03 +00:00
|
|
|
standConfigs = map
|
2018-07-21 04:43:26 +00:00
|
|
|
(\i -> AnimationConfig (0, i * 74) (64, 74) (64, 0) 1 0 APLoop)
|
|
|
|
[0 .. length (standIds "intruder") - 1]
|
2018-06-08 23:17:03 +00:00
|
|
|
walkConfigs = map
|
2018-07-21 04:43:26 +00:00
|
|
|
(\i -> AnimationConfig (64, i * 74) (64, 74) (64, 0) 6 1.5 APLoop)
|
|
|
|
[0 .. length (walkIds "intruder") - 1]
|
2018-06-08 23:17:03 +00:00
|
|
|
playerStanding <- loadAnimationSprites "assets/intruder.png" nvg
|
2018-07-21 04:43:26 +00:00
|
|
|
(zip (standIds "intruder") standConfigs)
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"intruder: walking\""
|
|
|
|
)))
|
2018-06-08 23:17:03 +00:00
|
|
|
playerWalking <- loadAnimationSprites "assets/intruder.png" nvg
|
2018-07-21 04:43:26 +00:00
|
|
|
(zip (walkIds "intruder") walkConfigs)
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"jdoem: standing\""
|
|
|
|
)))
|
2018-06-16 17:34:17 +00:00
|
|
|
jdoemStanding <- loadAnimationSprites "assets/jdoem.png" nvg
|
2018-07-21 04:43:26 +00:00
|
|
|
(zip (standIds "jdoem") standConfigs)
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"jdoem: walking\""
|
|
|
|
)))
|
2018-06-16 17:34:17 +00:00
|
|
|
jdoemWalking <- loadAnimationSprites "assets/jdoem.png" nvg
|
2018-07-21 04:43:26 +00:00
|
|
|
(zip (walkIds "jdoem") walkConfigs)
|
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"copier: stand\""
|
|
|
|
)))
|
|
|
|
copierStand <- loadAnimationSprites "assets/misc/copier.png" nvg $ zip
|
|
|
|
(map (\name -> AnimId "copier" name N) ["closed", "open"])
|
|
|
|
(map
|
|
|
|
(\i -> AnimationConfig (0, i * 74) (64, 74) (0, 0) 1 0 APLoop)
|
|
|
|
[0, 1]
|
|
|
|
)
|
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"copier: copy\""
|
|
|
|
)))
|
2018-07-30 12:34:46 +00:00
|
|
|
copierCopy <- loadAnimationSprites "assets/misc/copier.png" nvg
|
2018-07-21 04:43:26 +00:00
|
|
|
[ ( AnimId "copier" "copy" N
|
2018-07-22 20:30:17 +00:00
|
|
|
, AnimationConfig (64, 0) (64, 74) (64, 0) 4 1 APLoop
|
2018-07-21 04:43:26 +00:00
|
|
|
)
|
|
|
|
]
|
2018-07-30 12:34:46 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"computer: off\""
|
|
|
|
)))
|
|
|
|
computerOff <- loadAnimationSprites "assets/misc/tableCornerComputer.png" nvg
|
|
|
|
[ ( AnimId "computer" "off" N
|
|
|
|
, AnimationConfig (0, 0) (64, 74) (64, 0) 2 2 APLoop
|
|
|
|
)
|
|
|
|
]
|
2018-08-12 04:28:31 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"computer: on\""
|
|
|
|
)))
|
|
|
|
computerOn <- loadAnimationSprites "assets/misc/tableCornerComputer.png" nvg
|
|
|
|
[ ( AnimId "computer" "on" N
|
|
|
|
, AnimationConfig (128, 0) (64, 74) (0, 0) 1 0 APLoop
|
|
|
|
)
|
|
|
|
]
|
2018-08-11 09:51:20 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"computer: hack\""
|
|
|
|
)))
|
|
|
|
computerHack <- loadAnimationSprites "assets/misc/tableCornerComputer.png" nvg
|
|
|
|
[ ( AnimId "computer" "hack" N
|
|
|
|
, AnimationConfig (0, 74) (64, 74) (64, 0) 4 2 APLoop
|
|
|
|
)
|
|
|
|
]
|
2018-07-31 20:59:25 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"toilet: free\""
|
|
|
|
)))
|
|
|
|
toiletFree <- loadAnimationSprites "assets/misc/toilet.png" nvg
|
|
|
|
[ ( AnimId "toilet" "free" N
|
|
|
|
, AnimationConfig (0, 0) (64, 74) (0, 0) 1 0 APLoop
|
|
|
|
)
|
|
|
|
]
|
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Loading Animation \"toilet: occupied\""
|
|
|
|
)))
|
|
|
|
toiletOccupied <- loadAnimationSprites "assets/misc/toilet.png" nvg
|
|
|
|
[ ( AnimId "toilet" "occupied" N
|
|
|
|
, AnimationConfig (64, 0) (64, 74) (0, 0) 1 0 APLoop
|
|
|
|
)
|
|
|
|
]
|
2018-07-19 02:51:07 +00:00
|
|
|
modifyMVar_ progress (return . (\(p, _) ->
|
|
|
|
( p + increment
|
|
|
|
, "Handing over"
|
|
|
|
)))
|
2018-06-16 17:34:17 +00:00
|
|
|
finish
|
2018-06-08 23:17:03 +00:00
|
|
|
putMVar future
|
|
|
|
( ws
|
|
|
|
, LoadData
|
|
|
|
{ loadAssetImages = M.fromList imgs
|
|
|
|
, loadAssetAnims = M.fromList
|
2018-07-21 04:43:26 +00:00
|
|
|
( playerStanding ++
|
|
|
|
playerWalking ++
|
|
|
|
jdoemStanding ++
|
|
|
|
jdoemWalking ++
|
|
|
|
copierStand ++
|
2018-07-30 12:34:46 +00:00
|
|
|
copierCopy ++
|
2018-07-31 20:59:25 +00:00
|
|
|
computerOff ++
|
2018-08-12 04:28:31 +00:00
|
|
|
computerOn ++
|
2018-08-11 09:51:20 +00:00
|
|
|
computerHack ++
|
2018-07-31 20:59:25 +00:00
|
|
|
toiletFree ++
|
|
|
|
toiletOccupied
|
2018-07-21 04:43:26 +00:00
|
|
|
)
|
2018-10-08 21:36:52 +00:00
|
|
|
, loadAssetIcons = M.fromList icons
|
2018-06-08 23:17:03 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
drawLoad :: Affection UserData ()
|
|
|
|
drawLoad = do
|
|
|
|
ud <- getAffection
|
|
|
|
progress <- liftIO $ readMVar (stateProgress ud)
|
2018-06-15 13:39:08 +00:00
|
|
|
liftIO $ do
|
|
|
|
logIO A.Verbose ("LoadProgress: " ++ show progress)
|
|
|
|
drawLoadScreen ud progress
|
2018-06-08 23:17:03 +00:00
|
|
|
|
|
|
|
updateLoad :: Double -> Affection UserData ()
|
|
|
|
updateLoad _ = do
|
|
|
|
ud <- getAffection
|
|
|
|
mwsld <- liftIO $ tryTakeMVar (stateMVar ud)
|
|
|
|
case mwsld of
|
|
|
|
Just (_, ld) -> do
|
|
|
|
liftIO $ logIO A.Debug "loaded assets, entering menu"
|
|
|
|
putAffection ud
|
|
|
|
{ assetImages = loadAssetImages ld
|
|
|
|
, assetAnimations = loadAssetAnims ld
|
2018-10-08 21:36:52 +00:00
|
|
|
, assetIcons = loadAssetIcons ld
|
|
|
|
-- , state = Main WorldMap
|
|
|
|
, state = Menu
|
2018-06-08 23:17:03 +00:00
|
|
|
, stateData = None
|
|
|
|
}
|
2018-10-08 21:36:52 +00:00
|
|
|
-- loadMap
|
|
|
|
loadMenu
|
2018-07-03 14:19:27 +00:00
|
|
|
Nothing ->
|
2018-06-08 23:17:03 +00:00
|
|
|
return ()
|