Safe Haskell | None |
---|---|
Language | Haskell2010 |
Game.LambdaHack.Client.ClientOptions
Description
Options that affect the behaviour of the client.
Synopsis
- data ClientOptions = ClientOptions {
- sgtkFontFamily :: Maybe Text
- sdlFontFile :: Maybe Text
- sdlScalableSizeAdd :: Maybe Int
- sdlBitmapSizeAdd :: Maybe Int
- sscalableFontSize :: Maybe Int
- slogPriority :: Maybe Int
- smaxFps :: Maybe Int
- sdisableAutoYes :: Bool
- snoAnim :: Maybe Bool
- snewGameCli :: Bool
- sbenchmark :: Bool
- stitle :: Maybe Text
- sfontDir :: Maybe FilePath
- ssavePrefixCli :: String
- sfrontendTeletype :: Bool
- sfrontendNull :: Bool
- sfrontendLazy :: Bool
- sdbgMsgCli :: Bool
- sstopAfterSeconds :: Maybe Int
- sstopAfterFrames :: Maybe Int
- sprintEachScreen :: Bool
- sexposePlaces :: Bool
- sexposeItems :: Bool
- sexposeActors :: Bool
- defClientOptions :: ClientOptions
Documentation
data ClientOptions Source #
Options that affect the behaviour of the client (but not game rules).
Constructors
ClientOptions | |
Fields
|
Instances
Eq ClientOptions Source # | |
Defined in Game.LambdaHack.Client.ClientOptions Methods (==) :: ClientOptions -> ClientOptions -> Bool # (/=) :: ClientOptions -> ClientOptions -> Bool # | |
Show ClientOptions Source # | |
Defined in Game.LambdaHack.Client.ClientOptions Methods showsPrec :: Int -> ClientOptions -> ShowS # show :: ClientOptions -> String # showList :: [ClientOptions] -> ShowS # | |
Generic ClientOptions Source # | |
Defined in Game.LambdaHack.Client.ClientOptions Associated Types type Rep ClientOptions :: Type -> Type | |
Binary ClientOptions Source # | |
Defined in Game.LambdaHack.Client.ClientOptions | |
type Rep ClientOptions Source # | |
Defined in Game.LambdaHack.Client.ClientOptions type Rep ClientOptions = D1 ('MetaData "ClientOptions" "Game.LambdaHack.Client.ClientOptions" "LambdaHack-0.9.5.0-IfKZ3m76YlCDhiCPrOePIo" 'False) (C1 ('MetaCons "ClientOptions" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "sgtkFontFamily") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "sdlFontFile") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sdlScalableSizeAdd") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))) :*: (S1 ('MetaSel ('Just "sdlBitmapSizeAdd") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "sscalableFontSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "slogPriority") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))) :*: ((S1 ('MetaSel ('Just "smaxFps") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "sdisableAutoYes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "snoAnim") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "snewGameCli") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: (S1 ('MetaSel ('Just "sbenchmark") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "stitle") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))) :*: (((S1 ('MetaSel ('Just "sfontDir") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FilePath)) :*: (S1 ('MetaSel ('Just "ssavePrefixCli") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 String) :*: S1 ('MetaSel ('Just "sfrontendTeletype") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))) :*: (S1 ('MetaSel ('Just "sfrontendNull") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: (S1 ('MetaSel ('Just "sfrontendLazy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "sdbgMsgCli") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool)))) :*: ((S1 ('MetaSel ('Just "sstopAfterSeconds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "sstopAfterFrames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "sprintEachScreen") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))) :*: (S1 ('MetaSel ('Just "sexposePlaces") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: (S1 ('MetaSel ('Just "sexposeItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "sexposeActors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))))))) |
defClientOptions :: ClientOptions Source #
Default value of client options.