Example #1
0
    public static void Main(string[] args)
    {
        MissionSpec my_mission = new MissionSpec();

        my_mission.timeLimitInSeconds(10);
        my_mission.drawBlock(19, 0, 19, "redstone_block");
        my_mission.createDefaultTerrain();
        my_mission.setTimeOfDay(6000, false);
        my_mission.drawCuboid(50, 0, 50, 100, 10, 100, "redstone_block");
        my_mission.drawItem(3, 0, 2, "diamond_pickaxe");
        my_mission.drawSphere(50, 10, 50, 10, "ice");
        my_mission.drawLine(50, 20, 50, 100, 20, 100, "redstone_block");
        my_mission.startAt(2.5f, 0.0f, 2.5f);
        my_mission.endAt(19.5f, 0.0f, 19.5f, 1.0f);
        my_mission.requestVideo(320, 240);
        my_mission.setModeToCreative();
        my_mission.rewardForReachingPosition(19.5f, 0.0f, 19.5f, 100.0f, 1.1f);
        my_mission.observeRecentCommands();
        my_mission.observeHotBar();
        my_mission.observeFullInventory();
        my_mission.observeGrid(-2, 0, -2, 2, 1, 2, "Cells");
        my_mission.observeDistance(19.5f, 0.0f, 19.5f, "Goal");
        my_mission.allowAllDiscreteMovementCommands();

        // check that the XML we produce validates
        bool   pretty_print = false;
        string xml          = my_mission.getAsXML(pretty_print);

        try
        {
            bool        validate    = true;
            MissionSpec my_mission2 = new MissionSpec(xml, validate);

            // check that we get the same XML if we go round again
            string xml2 = my_mission2.getAsXML(pretty_print);
            if (xml2 != xml)
            {
                Console.WriteLine("Mismatch between first generation XML and the second.");
                Environment.Exit(1);
            }
        }
        catch (Exception e)
        {
            Console.WriteLine("Error validating the XML we generated: {0}", e);
            Environment.Exit(1);
        }
    }
Example #2
0
        private async Task <MissionSpec> loadMission(string path)
        {
            using (StreamReader reader = new StreamReader(path))
            {
                try
                {
                    string xml = await reader.ReadToEndAsync();

                    xml = xml.Replace("__SEED__", _rand.Next().ToString());
                    MissionSpec mission = new MissionSpec(xml, true);

                    if (!mission.isVideoRequested(0))
                    {
                        mission.requestVideo(Settings.Default.VideoWidth, Settings.Default.VideoHeight);
                    }

                    mission.removeAllCommandHandlers();
                    mission.allowAllContinuousMovementCommands();
                    mission.allowAllDiscreteMovementCommands();

                    XDocument  xdoc       = XDocument.Parse(xml);
                    XNamespace malmo      = "http://ProjectMalmo.microsoft.com";
                    var        timeUpNode = xdoc.Descendants(malmo + "ServerQuitFromTimeUp").FirstOrDefault();
                    if (timeUpNode != null)
                    {
                        _missionDuration = TimeSpan.FromMilliseconds(double.Parse(timeUpNode.Attribute("timeLimitMs").Value));
                    }
                    else
                    {
                        _missionDuration = TimeSpan.Zero;
                    }

                    if (_recordWindow != null && _recordWindow.IsVisible)
                    {
                        _recordWindow.MissionPath = path;
                    }

                    return(mission);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "Error Parsing Mission", MessageBoxButton.OK, MessageBoxImage.Error);
                    return(null);
                }
            }
        }
Example #3
0
    public static void Main(string[] args)
    {
        MissionSpec my_mission = new MissionSpec();
        my_mission.timeLimitInSeconds( 10 );
        my_mission.drawBlock( 19, 0, 19, "redstone_block" );
        my_mission.createDefaultTerrain();
        my_mission.setTimeOfDay(6000,false);
        my_mission.drawCuboid(50,0,50,100,10,100,"redstone_block");
        my_mission.drawItem(3,0,2,"diamond_pickaxe");
        my_mission.drawSphere(50,10,50,10,"ice");
        my_mission.drawLine(50,20,50,100,20,100,"redstone_block");
        my_mission.startAt( 2.5f, 0.0f, 2.5f );
        my_mission.endAt( 19.5f, 0.0f, 19.5f, 1.0f );
        my_mission.requestVideo( 320, 240 );
        my_mission.setModeToCreative();
        my_mission.rewardForReachingPosition(19.5f,0.0f,19.5f,100.0f,1.1f);
        my_mission.observeRecentCommands();
        my_mission.observeHotBar();
        my_mission.observeFullInventory();
        my_mission.observeGrid(-2,0,-2,2,1,2,"Cells");
        my_mission.observeDistance(19.5f,0.0f,19.5f,"Goal");
        my_mission.allowAllDiscreteMovementCommands();

        // check that the XML we produce validates
        bool pretty_print = false;
        string xml = my_mission.getAsXML( pretty_print );
        try
        {
            bool validate = true;
            MissionSpec my_mission2 = new MissionSpec( xml, validate );

            // check that we get the same XML if we go round again
            string xml2 = my_mission2.getAsXML( pretty_print );
            if( xml2 != xml )
            {
                Console.WriteLine("Mismatch between first generation XML and the second.");
                Environment.Exit(1);
            }
        }
        catch( Exception e )
        {
            Console.WriteLine("Error validating the XML we generated: {0}", e);
            Environment.Exit(1);
        }
    }
Example #4
0
        private async Task<MissionSpec> loadMission(string path)
        {
            using (StreamReader reader = new StreamReader(path))
            {
                try
                {
                    string xml = await reader.ReadToEndAsync();
                    xml = xml.Replace("__SEED__", _rand.Next().ToString());
                    MissionSpec mission = new MissionSpec(xml, true);

                    if (!mission.isVideoRequested(0))
                    {
                        mission.requestVideo(Settings.Default.VideoWidth, Settings.Default.VideoHeight);
                    }

                    mission.removeAllCommandHandlers();
                    mission.allowAllContinuousMovementCommands();
                    mission.allowAllDiscreteMovementCommands();                    

                    XDocument xdoc = XDocument.Parse(xml);
                    XNamespace malmo = "http://ProjectMalmo.microsoft.com";
                    var timeUpNode = xdoc.Descendants(malmo + "ServerQuitFromTimeUp").FirstOrDefault();
                    if(timeUpNode != null)
                    {
                        _missionDuration = TimeSpan.FromMilliseconds(double.Parse(timeUpNode.Attribute("timeLimitMs").Value));
                    }
                    else
                    {
                        _missionDuration = TimeSpan.Zero;
                    }

                    if (_recordWindow != null && _recordWindow.IsVisible)
                    {
                        _recordWindow.MissionPath = path;
                    }

                    return mission;
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "Error Parsing Mission", MessageBoxButton.OK, MessageBoxImage.Error);
                    return null;
                }
            }
        }