LambdaHack-0.2.8: A roguelike game engine in early and active development

Safe HaskellNone

Game.LambdaHack.Server.Action

Contents

Description

Game action monads and basic building blocks for human and computer player actions. Has no access to the the main action type. Does not export the liftIO operation nor a few other implementation details.

Synopsis

Action monads

updateConn :: (MonadAtomic m, MonadConnServer m) => (FactionId -> ChanFrontend -> ChanServer CmdClientUI -> IO ()) -> (FactionId -> ChanServer CmdClientAI -> IO ()) -> m ()Source

Update connections to the new definition of factions. Connect to clients in old or newly spawned threads that read and write directly to the channels.

speedupCOps :: Bool -> COps -> COpsSource

Compute and insert auxiliary optimized components into game content, to be used in time-critical sections of the code.

Communication

Assorted primitives

saveGameBkp :: MonadServer m => m ()Source

Save a backup of the save game file, in case of crashes.

See saveGameBkp.

dumpCfg :: MonadServer m => FilePath -> m ()Source

Dumps the current game rules configuration to a file.

mkConfigRules :: MonadServer m => Ops RuleKind -> m (Config, StdGen, StdGen)Source

Create a server config file. Warning: when it's used, the game state may still be undefined, hence the content ops are given as an argument.

restoreScore :: MonadServer m => Config -> m ScoreTableSource

Read the high scores table. Return the empty table if no file. Warning: when it's used, the game state may still be undefined, hence the config is given as an argument.

rndToAction :: MonadServer m => Rnd a -> m aSource

Invoke pseudo-random computation with the generator kept in the state.

resetFidPerception :: MonadServer m => FactionId -> LevelId -> m ()Source

Update the cached perception for the selected level, for a faction. The assumption is the level, and only the level, has changed since the previous perception calculation.