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

Safe HaskellNone

Game.LambdaHack.Common.Msg

Description

Game messages displayed on top of the screen for the player to read.

Synopsis

Documentation

makePhrase :: [Part] -> TextSource

Re-exported English phrase creation functions, applied to default irregular word sets.

makeSentence :: [Part] -> TextSource

Re-exported English phrase creation functions, applied to default irregular word sets.

type Msg = TextSource

The type of a single message.

(<>) :: Monoid m => m -> m -> m

An infix synonym for mappend.

tshow :: Show a => a -> TextSource

moreMsg :: MsgSource

The "press something to see more" mark.

yesnoMsg :: MsgSource

The confirmation request message.

truncateMsg :: X -> Text -> TextSource

Add a space at the message end, for display overlayed over the level map. Also trims (does not wrap!) too long lines. In case of newlines, displays only the first line, but marks the message as partial.

data Report Source

The type of a set of messages to show at the screen at once.

Instances

emptyReport :: ReportSource

Empty set of messages.

nullReport :: Report -> BoolSource

Test if the set of messages is empty.

singletonReport :: Msg -> ReportSource

Construct a singleton set of messages.

addMsg :: Report -> Msg -> ReportSource

Add message to the end of report.

splitReport :: X -> Report -> OverlaySource

Split a messages into chunks that fit in one line. We assume the width of the messages line is the same as of level map.

renderReport :: Report -> TextSource

Render a report as a (possibly very long) string.

data History Source

The history of reports.

emptyHistory :: HistorySource

Empty history of reports.

singletonHistory :: Report -> HistorySource

Construct a singleton history of reports.

addReport :: Report -> History -> HistorySource

Add a report to history, handling repetitions.

renderHistory :: History -> OverlaySource

Render history as many lines of text, wrapping if necessary.

takeHistory :: Int -> History -> HistorySource

Take the given prefix of reports from a history.

data Overlay Source

A series of screen lines that may or may not fit the width nor height of the screen. An overlay may be transformed by adding the first line and/or by splitting into a slideshow of smaller overlays.

data Slideshow Source

A few overlays, displayed one by one upon keypress. When displayed, they are trimmed, not wrapped and any lines below the lower screen edge are not visible. If the boolean flag is set, the overlay is displayed over a blank screen, including the bottom lines.

splitOverlay :: Bool -> Y -> Overlay -> Overlay -> SlideshowSource

Split an overlay into a slideshow in which each overlay, prefixed by msg and postfixed by moreMsg except for the last one, fits on the screen wrt height (but lines may be too wide).

toSlideshow :: Bool -> [[Text]] -> SlideshowSource

Declare the list of raw overlays to be fit for display on the screen. In particular, current Report is eiter empty or unimportant or contained in the overlays and if any vertical or horizontal trimming of the overlays happens, this is intended.

splitText :: X -> Text -> [Text]Source

Split a string into lines. Avoids ending the line with a character other than whitespace or punctuation. Space characters are removed from the start, but never from the end of lines. Newlines are respected.