LambdaHack-0.4.101.0: A game engine library for roguelike dungeon crawlers

Safe HaskellNone
LanguageHaskell2010

Game.LambdaHack.SampleImplementation.SampleMonadClient

Contents

Description

The main game action monad type implementation. Just as any other component of the library, this implementation can be substituted. This module should not be imported anywhere except in Action to expose the executor to any code using the library.

Synopsis

Documentation

executorCli :: CliImplementation resp req () -> SessionUI -> State -> StateClient -> ChanServer resp req -> IO () Source

Init the client, then run an action, with a given session, state and history, in the IO monad.

Internal operations

data CliImplementation resp req a Source

Client state transformation monad.

Instances

MonadClientWriteRequest req (CliImplementation resp req) 
MonadClientReadResponse resp (CliImplementation resp req) 
Monad (CliImplementation resp req) 
Functor (CliImplementation resp req) 
Applicative (CliImplementation resp req) 
MonadStateRead (CliImplementation resp req) 
MonadStateWrite (CliImplementation resp req) 
MonadAtomic (CliImplementation resp req)

The game-state semantics of atomic commands as computed on the client.

MonadClient (CliImplementation resp req) 
MonadClientUI (CliImplementation resp req)