Programming in Karel: Eric Roberts CS 106A April 4, 2012
Programming in Karel: Eric Roberts CS 106A April 4, 2012
Move forward one square Turn 90 degrees to the left Pick up a beeper from the current square Put down a beeper on the current square
At the end of class, we designed a Karel program to solve the following problem:
public class FirstKarelProgram extends Karel { public void run() { move(); pickBeeper(); move(); turnLeft(); move(); The run method, which specifies the operations A Karel program class turnLeft(); turnLeft(); turnLeft(); move(); putBeeper(); move(); } }
In patterns of this sort, the boldfaced words are fixed parts of the pattern; the italicized parts represent the parts you can change. Thus, every helper method will include the keywords private and void along with the parentheses and braces shown. You get to choose the name and the sequence of statements performs the desired operation.
Once you have made this definition, you can use turnRight in your programs in exactly the same way you use turnLeft.
In a sense, defining a new method is analogous to teaching Karel a new word. The name of the method becomes part of Karels vocabulary and extends the set of operations the robot can perform.
Define a method backup that moves Karel backward one square, leaving Karel facing in the same direction.
private void backup() { turnAround(); move(); turnAround(); }
Control Statements
In addition to allowing you to define new methods, Karel also includes three statement forms that allow you to change the order in which statements are executed. Such statements are called control statements. The control statements available in Karel are:
The for statement, which is used to repeat a set of statements a predetermined number of times. The while statement, which repeats a set of statements as long as some condition holds. The if statement, which applies a conditional test to determine whether a set of statements should be executed at all. The if-else statement, which uses a conditional test to choose between two possible actions.
As with most control statements, the for statement pattern consists of two parts:
The header line, which specifies the number of repetitions The body, which is the set of statements affected by the for
Note that most of the header line appears in boldface, which means that it is a fixed part of the for statement pattern. The only thing you are allowed to change is the number of repetitions, which is indicated by the placeholder count.
The following method creates a square of four beepers, leaving Karel in its original position:
private void makeBeeperSquare() { for (int i = 0; i < 4; i++) { putBeeper(); move(); turnLeft(); } }
Conditions in Karel
Karel can test the following conditions:
positive condition frontIsClear() leftIsClear() rightIsClear() negative condition frontIsBlocked() leftIsBlocked() rightIsBlocked()
beepersPresent()
beepersInBag() facingNorth()
noBeepersPresent()
noBeepersInBag() notFacingNorth()
facingEast()
facingSouth() facingWest()
notFacingEast()
notFacingSouth() notFacingWest()
The simplest example of the while statement is the method moveToWall, which comes in handy in lots of programs:
private void moveToWall() { while (frontIsClear()) { move(); } }
An if-else statement for situations in which you must choose between two different actions:
if (condition) { statements to be executed if the condition is true } else { statements to be executed if the condition is false }
Climbing Mountains
For the rest of today, well explore the use of methods and control statements in the context of teaching Karel to climb stair-step mountains that look something like this: Fr i day Four-s quare 4
3
1 1 2 3 4 5 6 7
The initial version will work only in this world, but later examples will be able to climb mountains of any height.
The End