-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #175 from EHAT32/main
Added test for flat world mission running
- Loading branch information
Showing
2 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import unittest | ||
import logging | ||
from tagilmo import VereyaPython | ||
import json | ||
import time | ||
import tagilmo.utils.mission_builder as mb | ||
from tagilmo.utils.vereya_wrapper import MCConnector, RobustObserver | ||
from base_test import BaseTest | ||
|
||
|
||
def init_mission(mc, start_x=None, start_z=None): | ||
want_depth = False | ||
|
||
video_producer = mb.VideoProducer(width=320 * 4, | ||
height=240 * 4, want_depth=want_depth) | ||
|
||
obs = mb.Observations() | ||
|
||
agent_handlers = mb.AgentHandlers(observations=obs, | ||
video_producer=video_producer) | ||
|
||
print('starting at ({0}, {1})'.format(start_x, start_z)) | ||
|
||
#miss = mb.MissionXML(namespace="ProjectMalmo.microsoft.com", | ||
miss = mb.MissionXML( | ||
agentSections=[mb.AgentSection(name='Cristina', | ||
agenthandlers=agent_handlers, | ||
# depth | ||
agentstart=mb.AgentStart([start_x, -60.0, start_z, 1]))]) | ||
world = mb.flatworld("", | ||
seed='5', | ||
forceReset="false") | ||
miss.setWorld(world) | ||
miss.serverSection.initial_conditions.allowedmobs = "Pig Sheep Cow Chicken Ozelot Rabbit Villager" | ||
# uncomment to disable passage of time: | ||
miss.serverSection.initial_conditions.time_pass = 'false' | ||
miss.serverSection.initial_conditions.time_start = "1000" | ||
|
||
if mc is None: | ||
mc = MCConnector(miss) | ||
obs = RobustObserver(mc) | ||
else: | ||
mc.setMissionXML(miss) | ||
return mc, obs | ||
|
||
|
||
class TestFlat(BaseTest): | ||
mc = None | ||
|
||
@classmethod | ||
def setUpClass(cls, *args, **kwargs): | ||
start = (-108.0, -187.0) | ||
mc, obs = init_mission(None, start_x=start[0], start_z=start[1]) | ||
cls.mc = mc | ||
assert mc.safeStart() | ||
time.sleep(3) | ||
|
||
@classmethod | ||
def tearDownClass(cls, *args, **kwargs): | ||
cls.mc.stop() | ||
|
||
def setUp(self): | ||
super().setUp() | ||
self.mc.sendCommand("chat /clear") | ||
time.sleep(3) | ||
|
||
def test_flat_world(self): | ||
self.assertTrue(self.mc.is_mission_running()) | ||
|
||
|
||
def main(): | ||
VereyaPython.setupLogger() | ||
unittest.main() | ||
|
||
if __name__ == '__main__': | ||
main() |