swarm-0.3.0.0: src/Swarm/Game/Scenario.hs
{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE DerivingVia #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TemplateHaskell #-}
-- |
-- Module : Swarm.Game.Scenario
-- Copyright : Brent Yorgey
-- Maintainer : byorgey@gmail.com
--
-- SPDX-License-Identifier: BSD-3-Clause
--
-- Scenarios are standalone worlds with specific starting and winning
-- conditions, which can be used both for building interactive
-- tutorials and for standalone puzzles and scenarios.
module Swarm.Game.Scenario (
-- * WorldDescription
PCell (..),
Cell,
PWorldDescription (..),
WorldDescription,
IndexedTRobot,
-- * Scenario
Scenario,
-- ** Fields
scenarioVersion,
scenarioName,
scenarioAuthor,
scenarioDescription,
scenarioCreative,
scenarioSeed,
scenarioAttrs,
scenarioEntities,
scenarioRecipes,
scenarioKnown,
scenarioWorld,
scenarioRobots,
scenarioObjectives,
scenarioSolution,
scenarioStepsPerTick,
-- * Loading from disk
loadScenario,
loadScenarioFile,
getScenarioPath,
) where
import Control.Algebra (Has)
import Control.Carrier.Lift (Lift, sendIO)
import Control.Carrier.Throw.Either (Throw, throwError)
import Control.Lens hiding (from, (<.>))
import Control.Monad (filterM)
import Data.Aeson
import Data.Maybe (catMaybes, isNothing, listToMaybe)
import Data.Text (Text)
import Data.Text qualified as T
import Data.Yaml as Y
import Swarm.Game.Entity
import Swarm.Game.Recipe
import Swarm.Game.Robot (TRobot)
import Swarm.Game.Scenario.Cell
import Swarm.Game.Scenario.Objective
import Swarm.Game.Scenario.Objective.Validation
import Swarm.Game.Scenario.RobotLookup
import Swarm.Game.Scenario.Style
import Swarm.Game.Scenario.WorldDescription
import Swarm.Language.Pipeline (ProcessedTerm)
import Swarm.Util (getDataFileNameSafe)
import Swarm.Util.Yaml
import System.Directory (doesFileExist)
import System.FilePath ((<.>), (</>))
import Witch (from, into)
------------------------------------------------------------
-- Scenario
------------------------------------------------------------
-- | A 'Scenario' contains all the information to describe a
-- scenario.
data Scenario = Scenario
{ _scenarioVersion :: Int
, _scenarioName :: Text
, _scenarioAuthor :: Maybe Text
, _scenarioDescription :: Text
, _scenarioCreative :: Bool
, _scenarioSeed :: Maybe Int
, _scenarioAttrs :: [CustomAttr]
, _scenarioEntities :: EntityMap
, _scenarioRecipes :: [Recipe Entity]
, _scenarioKnown :: [Text]
, _scenarioWorld :: WorldDescription
, _scenarioRobots :: [TRobot]
, _scenarioObjectives :: [Objective]
, _scenarioSolution :: Maybe ProcessedTerm
, _scenarioStepsPerTick :: Maybe Int
}
deriving (Eq, Show)
makeLensesWith (lensRules & generateSignatures .~ False) ''Scenario
instance FromJSONE EntityMap Scenario where
parseJSONE = withObjectE "scenario" $ \v -> do
-- parse custom entities
em <- liftE (buildEntityMap <$> (v .:? "entities" .!= []))
-- extend ambient EntityMap with custom entities
withE em $ do
-- parse 'known' entity names and make sure they exist
known <- liftE (v .:? "known" .!= [])
em' <- getE
case filter (isNothing . (`lookupEntityName` em')) known of
[] -> return ()
unk ->
fail . into @String $
"Unknown entities in 'known' list: " <> T.intercalate ", " unk
-- parse robots and build RobotMap
rs <- v ..: "robots"
let rsMap = buildRobotMap rs
Scenario
<$> liftE (v .: "version")
<*> liftE (v .: "name")
<*> liftE (v .:? "author")
<*> liftE (v .:? "description" .!= "")
<*> liftE (v .:? "creative" .!= False)
<*> liftE (v .:? "seed")
<*> liftE (v .:? "attrs" .!= [])
<*> pure em
<*> v ..:? "recipes" ..!= []
<*> pure known
<*> localE (,rsMap) (v ..: "world")
<*> pure rs
<*> (liftE (v .:? "objectives" .!= []) >>= validateObjectives)
<*> liftE (v .:? "solution")
<*> liftE (v .:? "stepsPerTick")
--------------------------------------------------
-- Lenses
-- | The version number of the scenario schema. Currently, this
-- should always be 1, but it is ignored. In the future, this may
-- be used to convert older formats to newer ones, or simply to
-- print a nice error message when we can't read an older format.
scenarioVersion :: Lens' Scenario Int
-- | The name of the scenario.
scenarioName :: Lens' Scenario Text
-- | The author of the scenario.
scenarioAuthor :: Lens' Scenario (Maybe Text)
-- | A high-level description of the scenario, shown /e.g./ in the
-- menu.
scenarioDescription :: Lens' Scenario Text
-- | Whether the scenario should start in creative mode.
scenarioCreative :: Lens' Scenario Bool
-- | The seed used for the random number generator. If @Nothing@, use
-- a random seed / prompt the user for the seed.
scenarioSeed :: Lens' Scenario (Maybe Int)
-- | Custom attributes defined in the scenario.
scenarioAttrs :: Lens' Scenario [CustomAttr]
-- | Any custom entities used for this scenario.
scenarioEntities :: Lens' Scenario EntityMap
-- | Any custom recipes used in this scenario.
scenarioRecipes :: Lens' Scenario [Recipe Entity]
-- | List of entities that should be considered "known", so robots do
-- not have to scan them.
scenarioKnown :: Lens' Scenario [Text]
-- | The starting world for the scenario.
scenarioWorld :: Lens' Scenario WorldDescription
-- | The starting robots for the scenario. Note this should
-- include the base.
scenarioRobots :: Lens' Scenario [TRobot]
-- | A sequence of objectives for the scenario (if any).
scenarioObjectives :: Lens' Scenario [Objective]
-- | An optional solution of the scenario, expressed as a
-- program of type @cmd a@. This is useful for automated
-- testing of the win condition.
scenarioSolution :: Lens' Scenario (Maybe ProcessedTerm)
-- | Optionally, specify the maximum number of steps each robot may
-- take during a single tick.
scenarioStepsPerTick :: Lens' Scenario (Maybe Int)
------------------------------------------------------------
-- Loading scenarios
------------------------------------------------------------
getScenarioPath :: FilePath -> IO (Maybe FilePath)
getScenarioPath scenario = do
libScenario <- getDataFileNameSafe $ "scenarios" </> scenario
libScenarioExt <- getDataFileNameSafe $ "scenarios" </> scenario <.> "yaml"
let candidates = catMaybes [Just scenario, libScenarioExt, libScenario]
listToMaybe <$> filterM doesFileExist candidates
-- | Load a scenario with a given name from disk, given an entity map
-- to use. This function is used if a specific scenario is
-- requested on the command line.
loadScenario ::
(Has (Lift IO) sig m, Has (Throw Text) sig m) =>
String ->
EntityMap ->
m (Scenario, FilePath)
loadScenario scenario em = do
mfileName <- sendIO $ getScenarioPath scenario
case mfileName of
Nothing -> throwError @Text $ "Scenario not found: " <> from @String scenario
Just fileName -> (,fileName) <$> loadScenarioFile em fileName
-- | Load a scenario from a file.
loadScenarioFile ::
(Has (Lift IO) sig m, Has (Throw Text) sig m) =>
EntityMap ->
FilePath ->
m Scenario
loadScenarioFile em fileName = do
res <- sendIO $ decodeFileEitherE em fileName
case res of
Left parseExn -> throwError @Text (from @String (prettyPrintParseException parseExn))
Right c -> return c