Changes between Version 6 and Version 7 of Scenarios


Ignore:
Timestamp:
Jul 25, 2011 2:46:27 PM (13 years ago)
Author:
xwang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Scenarios

    v6 v7  
    1010'''Wumpus World'''
    1111
    12 We would like to simulate the Wumpus World in Quake. Invisible items will be used as senses that the quagent can detect using the radar function.
    13 * Created stench, glitter, and breeze items.
    14 * Able to create maps containing these items and make them invisible.
     12We have simulated the Wumpus World in Quake. The goal is for an agent to explore the Wumpus World and find the gold while avoiding the Wumpus and Pits. We use invisible items to represent the senses, which the agent can perceive by calling the radar function. These items are "quagent_sense_breeze", "quagent_sense_stench" and "quagent_sense_glitter". The gold is also represented by an item we have created called "quagent_item_gold". The agent starts in the room at the lower left corner of the map. The gold and wumpus are placed in random rooms other than the start room. Each room other than the start can also have a 0.2 probability of being a pit. A stench is perceived in all rooms adjacent to the wumpus. A breeze if felt in all rooms adjacent to a pit. A glitter is seen in the room with the gold.
    1513
    16 To do:
    17 * Create a whole Wumpus World map.
    18 * Create random maps.
    19 * Client AI.
     14We have a working demo of an agent exploring the Wumpus World. The agent is able to update its view of the world through what it senses in each room. The agent uses breadth first search to plan a path from one room to another, only travelling through rooms that it knows are safe, and depth first search to explore the world. We have two maps for the Wumpus World: !WumpusWorld.map and Wumpus2.map. We are currently working on generating random maps.
    2015
    2116'''Capture the Flag'''