LambdaHack-0.10.2.0: A game engine library for tactical squad ASCII roguelike dungeon crawlers
Safe HaskellNone
LanguageHaskell2010

Game.LambdaHack.Client.UI.HandleHumanLocalM

Description

Semantics of Game.LambdaHack.Client.UI.HumanCmd client commands that do not return server requests,, but only change internal client state. None of such commands takes game time.

Synopsis

Meta commands

macroHumanTransition :: [KM] -> KeyMacroFrame -> [KeyMacroFrame] -> (KeyMacroFrame, [KeyMacroFrame]) Source #

Push a new macro frame to the stack whenever repeating a macro.

Local commands

chooseItemHuman :: (MonadClient m, MonadClientUI m) => ItemDialogMode -> m MError Source #

Display items from a given container store and possibly let the user chose one.

psuitReq :: (MonadClient m, MonadClientUI m) => m (Either Text (ItemFull -> Either ReqFailure (Point, Bool))) Source #

On top of permittedProjectClient, it also checks legality of aiming at the target and projection range. It also modifies eps.

memberCycleHuman :: (MonadClient m, MonadClientUI m) => Direction -> m MError Source #

Switch current member to the previous in the whole dungeon, wrapping.

memberCycleLevelHuman :: (MonadClient m, MonadClientUI m) => Direction -> m MError Source #

Switch current member to the next on the viewed level, if any, wrapping.

recordHuman :: (MonadClient m, MonadClientUI m) => m () Source #

Starts and stops recording of macros.

Commands specific to aiming

cancelHuman :: MonadClientUI m => m () Source #

End aiming mode, rejecting the current position.

acceptHuman :: (MonadClient m, MonadClientUI m) => m () Source #

Accept the current crosshair position as target, ending aiming mode, if active.

detailCycleHuman :: (MonadClient m, MonadClientUI m) => m () Source #

Cycle detail level of aiming mode descriptions, starting up.

moveXhairHuman :: (MonadClient m, MonadClientUI m) => Vector -> Int -> m MError Source #

Move the xhair. Assumes aiming mode.

aimTgtHuman :: (MonadClient m, MonadClientUI m) => m () Source #

Start aiming.

aimFloorHuman :: (MonadClient m, MonadClientUI m) => m () Source #

Cycle aiming mode. Do not change position of the xhair, switch among things at that position.

aimAscendHuman :: (MonadClient m, MonadClientUI m) => Int -> m MError Source #

Change the displayed level in aiming mode to (at most) k levels shallower. Enters aiming mode, if not already in one.

epsIncrHuman :: (MonadClient m, MonadClientUI m) => Direction -> m () Source #

Tweak the eps parameter of the aiming digital line.

Internal operations

xhairLegalEps :: MonadClientUI m => m (Either Text Int) Source #

Check whether one is permitted to aim (for projecting) at a target. The check is stricter for actor targets, assuming the player simply wants to hit a single actor. In order to fine tune trick-shots, e.g., piercing many actors, other aiming modes should be used. Returns a different seps if needed to reach the target.

Note: Simple Perception check is not enough for the check, e.g., because the target actor can be obscured by a glass wall.

eitherHistory :: forall m. (MonadClient m, MonadClientUI m) => Bool -> m () Source #

endAiming :: (MonadClient m, MonadClientUI m) => m () Source #

End aiming mode, accepting the current position.

doLook :: (MonadClient m, MonadClientUI m) => m () Source #

Perform look around in the current position of the xhair. Does nothing outside aiming mode.