Activity 2: Running Simplified Magpie Code

The College Board activity asks you to enter input using the Scanner class and record the responses. But, instead you can run this simplified version below and just call the getResponse method with each string as input as shown in the main method below.

Up until now, all our code has been in the main method. In this lab, there are a couple methods. The main method creates a Magpie object called maggie, and calls its methods maggie.getGreeting() and maggie.getResponse(input) giving one of the following strings as input and printing its response.

Run the following code and see the responses to these 4 inputs.

When different methods are called from the main method, the control flows to these methods and then comes back to main exactly where it was left when the methods finish.

Click on this cool Java visualizer Chatbot to step through the code. Click on the Forward button at the bottom of the code to step through the code to see the flow of control from the main method to the other methods and back.

You can also run a version of the Magpie lab on repl.it that uses the Scanner class for input so that you can type in your own input to interact with it.

As you can see the getResponse method of Magpie2 looks for certain keywords like "mother" and "brother". Why do you think the response to “Do you know my brother?” isn’t “Tell me more about your family.”? Discuss this with partner in pairs and see if you can figure it out. See if you can modify the code above to respond correctly.

The response to “The weather is nice.” is one of the random responses. Look at the code to see how the if statement assigns a value to the response and returns that response. The method getRandomResponse generates a random number and uses that to assign the response. Modify the code above to add other random responses.

Exercises

Alter the code above or in your own IDE (see section below) to do the following. We encourage you to work in pairs.

  • Have it respond “Tell me more about your pets” when the statement contains the word “dog” or “cat”. For example, a possible statement and response would be:

    • Statement: I like my cat Mittens.

    • Response: Tell me more about your pets.

  • Have it respond favorably when it sees the name of your teacher. Be sure to use appropriate pronouns! For example, a possible statement and response would be:

    • Statement: Mr. Finkelstein is telling us about robotics.

    • Response: He sounds like a good teacher.

  • Have the code check that the statement has at least one character. You can do this by using the trim method to remove spaces from the beginning and end, and then checking the length of the trimmed string. If there are no characters, the response should tell the user to enter something. For example, a possible statement and response would be:

    • Statement:

    • Response: Say something, please.

  • Add two more noncommittal responses to the possible random responses.

  • Pick three more keywords, such as “no” and “brother” and edit the getResponse method to respond to each of these.

  • What happens when more than one keyword appears in a string? Try the input “My mother has a dog but no cat.” Which response did you get – was it the one about family or the one about pets or the negative one for no? Change the order of your if-else-if statements to make it so that one of the other responses is selected and try running it again.

lab-1b-2: What happens when a keyword is included in another word? Consider statements like “I know all the state capitals” which contains no and “I like vegetables smothered in cheese” which contains mother. Explain the problem with the responses to these statements.

Activity 2: Actual Code - (Optional)

You can do all of Activity 2 with the actual code using the Scanner class for input instead if you prefer.

Here is the actual code for the Magpie lab on repl.it. It uses the Scanner class to read input from the user. The Scanner class is not on the AP CS A exam. You can log in to repl.it and use this code and change it to do this lab.

Or you can copy and paste in the code from below into any Integrated Development Environment (IDE) like DrJava or JGrasp to run on your computer.

Here is the code for MagpieRunner2.java.

 1import java.util.Scanner;
 2
 3/**
 4 * A simple class to run the Magpie class.
 5 * @author Laurie White
 6 * @version April 2012
 7 */
 8public class MagpieRunner2
 9{
10
11   /**
12        * Create a Magpie, give it user input, and print its replies.
13        */
14       public static void main(String[] args)
15       {
16          Magpie2 maggie = new Magpie2();
17
18              System.out.println (maggie.getGreeting());
19              Scanner in = new Scanner (System.in);
20              String statement = in.nextLine();
21
22              while (!statement.equals("Bye"))
23              {
24                      System.out.println (maggie.getResponse(statement));
25                      statement = in.nextLine();
26              }
27       }
28}

Here is the code for Magpie2.java.

 1public class Magpie2
 2{
 3      /**
 4   * Get a default greeting
 5       * @return a greeting
 6       */
 7      public String getGreeting()
 8      {
 9              return "Hello, let's talk.";
10      }
11
12      /**
13       * Gives a response to a user statement
14       *
15       * @param statement
16       *            the user statement
17       * @return a response based on the rules given
18       */
19      public String getResponse(String statement)
20      {
21              String response = "";
22              if (statement.indexOf("no") >= 0)
23              {
24                      response = "Why so negative?";
25              }
26              else if (statement.indexOf("mother") >= 0
27                              || statement.indexOf("father") >= 0
28                              || statement.indexOf("sister") >= 0
29                              || statement.indexOf("brother") >= 0)
30              {
31                      response = "Tell me more about your family.";
32              }
33              else
34              {
35                      response = getRandomResponse();
36              }
37              return response;
38      }
39
40      /**
41       * Pick a default response to use if nothing else fits.
42       * @return a non-committal string
43       */
44      private String getRandomResponse()
45      {
46              final int NUMBER_OF_RESPONSES = 4;
47              double r = Math.random();
48              int whichResponse = (int)(r * NUMBER_OF_RESPONSES);
49              String response = "";
50
51              if (whichResponse == 0)
52              {
53                      response = "Interesting, tell me more.";
54              }
55              else if (whichResponse == 1)
56              {
57                      response = "Hmmm.";
58              }
59              else if (whichResponse == 2)
60              {
61                      response = "Do you really think so?";
62              }
63              else if (whichResponse == 3)
64              {
65                      response = "You don't say.";
66              }
67
68              return response;
69       }
70 }
You have attempted of activities on this page