Пример #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            Wumpus wump = new Wumpus();

            wump.wumpusWakesUp(2, true);
            String wumpusWakesUp = wump.getWumpusState();

            textBox1.Text = wumpusWakesUp;
        }
Пример #2
0
        public int wumpusLocation()
        {
            Wumpus      wumpus         = new Wumpus();
            int         wumpusPosition = wumpus.getWumpusPosition();
            WumpusState state          = wumpus.getWumpusState();
            int         movement       = 0;

            if (state == "asleep")
            {
                movement = 0;
            }
            else
            {
                movement = 1;
            }
            return(roomNumberWumpus + movement);
            // given the wumpus state I can make the wumpus move to a whole new room number
        }
Пример #3
0
 public String getWumpusState()
 {
     return(wumpus.getWumpusState().ToString().ToLower());
 }