Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove say command one message limit #2316

Merged
merged 8 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/scenarios/Testing/00-ORDER.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Achievements
1721-walkability-whitelist-path-cache.yaml
1535-ping
1575-structure-recognizer
1592-shared-template-robot-say-logs.yaml
1631-tags.yaml
1634-message-colors.yaml
1681-pushable-entity.yaml
Expand Down
61 changes: 61 additions & 0 deletions data/scenarios/Testing/1592-shared-template-robot-say-logs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
version: 1
name: Logs from same-template robots
creative: false
description: |
Logs from different robots generated from the same template.

The objective checks that base hears one message each tick,
afterwards the integration test checks that all messages
are present in the base log.
objectives:
- goal:
- Please `grab` the `token`{=entity} if you hear what you expected.
condition: |
as base { has "token" }
solution: |
s <- listen;
if (s == "Hello from (2, -2)!") {
s <- listen;
if (s == "Hello from (3, -2)!") {
s <- listen;
if (s == "Hello from (4, -2)!") {
grab; say "OK!"
} {say $ "3: Not what I expected: " ++ s}
} {say $ "2: Not what I expected: " ++ s}
} {say $ "1: Not what I expected: " ++ s}
robots:
- name: base
devices:
- logger
- hearing aid
- comparator
- branch predictor
- string
- grabber
- name: saybot
system: true
display:
invisible: false
attr: blue
program: |
loc <- whereami;
wait $ fst loc;
say ("Hello from " ++ format loc ++ "!");
entities:
- name: token
display:
char: 'W'
properties:
- known
- pickable
description:
- Signals a success.
world:
palette:
'.': [grass]
'B': [grass, token, base]
's': [grass, null, saybot]
map: |
B...s
...ss
..sss
2 changes: 1 addition & 1 deletion data/schema/entity.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"type": "string",
"examples": [
"unwalkable",
"portable",
"pickable",
"infinite",
"known",
"growable"
Expand Down
30 changes: 6 additions & 24 deletions src/swarm-engine/Swarm/Game/Step/Const.hs
Original file line number Diff line number Diff line change
Expand Up @@ -749,34 +749,16 @@ execConst runChildProg c vs s k = do
[VText msg] -> do
isPrivileged <- isPrivilegedBot
loc <- use robotLocation

-- current robot will be inserted into the robot set, so it needs the log
m <- traceLog Said Info msg
emitMessage m
let measureToLog robLoc = \case
RobotLog _ _ logLoc -> cosmoMeasure manhattan robLoc logLoc
SystemLog -> Measurable 0
addLatestClosest rl = \case
Seq.Empty -> Seq.singleton m
es Seq.:|> e
| e `isEarlierThan` m -> es |> e |> m
| e `isFartherThan` m -> es |> m
| otherwise -> es |> e
where
isEarlierThan = (<) `on` (^. leTime)
isFartherThan = (>) `on` (measureToLog rl . view leSource)
let addToRobotLog :: (Has (State GameState) sgn m) => Robot -> m ()
addToRobotLog r = do
maybeRidLoc <- evalState r $ do
hasLog <- hasCapability $ CExecute Log
hasListen <- hasCapability $ CExecute Listen
loc' <- use robotLocation
rid <- use robotID
return $ do
guard $ hasLog && hasListen
Just (rid, loc')
forM_ maybeRidLoc $ \(rid, loc') ->
robotInfo . robotMap . at rid . _Just . robotLog %= addLatestClosest loc'
addToRobotLog r = evalState r $ do
hasLog <- hasCapability $ CExecute Log
hasListen <- hasCapability $ CExecute Listen
rid <- use robotID
when (hasLog && hasListen) $
robotInfo . robotMap . at rid . _Just . robotLog %= (|> m)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this is simpler? (It would have been simpler before, too...)

            addToRobotLog r = evalState r $ do
              hasLog <- hasCapability $ CExecute Log
              hasListen <- hasCapability $ CExecute Listen
              rid <- use robotID
              when (hasLog && hasListen) $
                robotInfo . robotMap . at rid . _Just . robotLog %= (|> m)

robotsAround <-
zoomRobots $
if isPrivileged
Expand Down
15 changes: 11 additions & 4 deletions test/integration/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import Swarm.Failure (SystemFailure)
import Swarm.Game.Achievement.Definitions (GameplayAchievement (..))
import Swarm.Game.CESK (initMachine)
import Swarm.Game.Entity (lookupByName)
import Swarm.Game.Robot (equippedDevices, systemRobot)
import Swarm.Game.Robot (equippedDevices, robotName, systemRobot)
import Swarm.Game.Robot.Activity (commandsHistogram, lifetimeStepCount, tangibleCommandCount)
import Swarm.Game.Robot.Concrete (activityCounts, machine, robotLog, waitingUntil)
import Swarm.Game.Scenario (Scenario, ScenarioInputs (..), gsiScenarioInputs)
Expand Down Expand Up @@ -508,6 +508,13 @@ testScenarioSolutions rs ui key =
&& any ("- tank treads" `T.isInfixOf`) msgs
, testSolution Default "Testing/2253-halt-waiting"
, testSolution Default "Testing/2270-instant-defs"
, testSolution' Default "Testing/1592-shared-template-robot-say-logs" CheckForBadErrors $ \g -> do
let baseLogs = g ^.. baseRobot . robotLog . to logToText . traverse
-- printAllLogs g
assertEqual
"There should be 6 logs from all of the robots saying things at once!"
(length baseLogs)
6 -- the final OK said by base happens after win, and is for debugging
]
where
-- expectFailIf :: Bool -> String -> TestTree -> TestTree
Expand Down Expand Up @@ -555,9 +562,9 @@ noBadErrors g =

printAllLogs :: GameState -> IO ()
printAllLogs g =
mapM_
(\r -> forM_ (r ^. robotLog) (putStrLn . T.unpack . view leText))
(g ^. robotInfo . robotMap)
forM_ (g ^. robotInfo . robotMap) $ \r -> do
putStrLn $ "-- ROBOT: " ++ T.unpack (r ^. robotName)
forM_ (r ^. robotLog) (putStrLn . T.unpack . view leText)

-- | Test that editor files are up-to-date.
testEditorFiles :: TestTree
Expand Down