about summary refs log tree commit diff
path: root/users/grfn/xanthous/src/Xanthous/Entities/Item.hs
blob: b50a5eab809d6e3169854c9b7347e31929ba373c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE StandaloneDeriving #-}
--------------------------------------------------------------------------------
module Xanthous.Entities.Item
  ( Item(..)
  , itemType
  , newWithType
  , isEdible
  ) where
--------------------------------------------------------------------------------
import           Xanthous.Prelude
import           Test.QuickCheck
import           Data.Aeson (ToJSON, FromJSON)
import           Data.Aeson.Generic.DerivingVia
--------------------------------------------------------------------------------
import           Xanthous.Entities.RawTypes hiding (Item, description, isEdible)
import qualified Xanthous.Entities.RawTypes as Raw
import           Xanthous.Game.State
--------------------------------------------------------------------------------

data Item = Item
  { _itemType :: ItemType
  }
  deriving stock (Eq, Show, Ord, Generic)
  deriving anyclass (NFData, CoArbitrary, Function)
  deriving Draw via DrawRawChar "_itemType" Item
  deriving (ToJSON, FromJSON)
       via WithOptions '[ FieldLabelModifier '[Drop 1] ]
                       Item
makeLenses ''Item

{-# ANN Item ("HLint: ignore Use newtype instead of data" :: String )#-}

-- deriving via (Brainless Item) instance Brain Item
instance Brain Item where step = brainVia Brainless

instance Arbitrary Item where
  arbitrary = Item <$> arbitrary

instance Entity Item where
  description = view $ itemType . Raw.description
  entityChar = view $ itemType . Raw.char
  entityCollision = const Nothing

newWithType :: ItemType -> Item
newWithType = Item

isEdible :: Item -> Bool
isEdible = Raw.isEdible . view itemType