about summary refs log blame commit diff
path: root/src/Xanthous/Entities/Item.hs
blob: 6b50f50ad83c80f513d41966456b12e8c131036c (plain) (tree)
1
2
3
4
5
6
7
8
                                
                                                                                





                                                                                



                                               
                                                                                


                                                                          

















                                                                                
                                                 


                               
{-# LANGUAGE TemplateHaskell #-}
--------------------------------------------------------------------------------
module Xanthous.Entities.Item
  ( Item(..)
  , itemType
  , newWithType
  ) where
--------------------------------------------------------------------------------
import           Xanthous.Prelude
import           Test.QuickCheck
import           Data.Aeson (ToJSON, FromJSON)
import           Data.Aeson.Generic.DerivingVia
--------------------------------------------------------------------------------
import           Xanthous.Entities.RawTypes hiding (Item, description)
import qualified Xanthous.Entities.RawTypes as Raw
import           Xanthous.Entities (Draw(..), Entity(..), DrawRawChar(..))
--------------------------------------------------------------------------------

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

instance Arbitrary Item where
  arbitrary = Item <$> arbitrary

instance Entity Item where
  blocksVision _ = False
  description = view $ itemType . Raw.description

newWithType :: ItemType -> Item
newWithType = Item