Background
jLogo Programming
- Commanding a Turtle
- Pseudocode
- Adding New Commands
- Iteration & Animation
- Hierarchical Structure
- Procedure Inputs
- Primitive Operators
- Defining Operators
- Words & Sentences
- User Interface Events
- What If? (Predicates)
- Recursion
- Local Variables
- Global Variables
- Word/Sentence Iteration
- Mastermind Project
- Turtles As Actors
- Arrays
Java
- A Java Program
- What's a Class?
- Extending Existing Classes
- Types
- Turtle Graphics
- Control Flow
- User Interface Events
Appendices
Lastly
Pseudocode
Introduction
For getting the turtle to draw simple things, like a box, you can just enter instructions in the CommandCenter and most of the time your program just works. It does what you wanted it to, what you thought it would do. However, when you write any non-trivial program, this will rarely be the case. The more instructions you include in your programs, the more you need to keep in your head about what you're doing and the more typing you need to do. This means more chances for making mistakes.
In this lesson you will learn how to write computer programs in stages.
The first stage will be to just think about what you need to do.
In the next stage you will write what you want the program to do in pseudocode.
pseudo adj. 1: being apparently rather than actually
as stated. ( Webster's New Collegiate Dictionary )
Pseudocode (derived from pseudo and code) is a description
of a computer programming algorithm that uses the structural
conventions of programming languages, but omits detailed
subroutines or language-specific syntax. ( WikipediA )
A third stage is the conversion of the pseudocode into properly formed instructions that are available in the programming language you are using, Logo in our case.
How To Write Non-Trivial Programs
That Do What You Want
When you did the exercises at the end of the last lesson, my guess is that you didn't type in programs that worked perfectly the first time. If you did, congratulations... you are great at visualization and orderly thought. The good news is that anyone can learn to write correct programs - an experienced programmer would have no problem writing "correct" programs for these exercises.
Why?
As you are about to see, an experienced programmer would think about how to solve the problem before she would start typing in instructions. An experienced programmer would break the problem into pieces that each are simple to do by themselves. Then, put all the pieces together to solve the problem. In computer science this is a process that's called "stepwise refinement." You break the problem down into steps and then refine what each step does.
Let's play "experienced programmer" with the first exercise.
Understanding the Problem
What you should do first is think about what you need to do. Get out
some paper and a pencil to write down your thoughts. Look at the diagram
carefully. How can you break it up into multiple, simpler to do parts.
You need to get the turtle to:
- draw 4 rectangles
- one is tall and thin
- three are short and form a stack of rectangles next to the first
- draw 7 lines (4 horizontal and 3 vertical)
- 4 lines form the perimeter of a big rectangle
- 1 line splits this rectangle in half vertically
- 2 lines split the right half of the rectangle into 3, equally sized rectangles
- draw 13 line segments (6 horizontal and 7 vertical). This is hard to describe; so, I'm choosing not to go any further with it. But, it is a way of looking at the problem.
This completes the "Understanding the Problem" phase, now on to planning.
Devising a Plan
The most important mental tool for coping with complexity
is abstraction. Therefore, a complex problem should not be
regarded immediately in terms of computer instructions...
(On the Composition of Well-Structured Programs,
Nicklaus Wirth, Computing Surveys, Dec., 1974)
So you now have some sketches and notes on a piece of paper that describe ways that lead to a solution. The next step is to decide on an approach and put together a process which gets the turtle to draw the figure.
Let's follow our experienced programmer's thoughts through the rest of a solution. She has chosen to draw a square (a special kind of rectangle) and subdivide it.
The first step: figure out how many turtle steps each side of the square needs to be. Since it will be split in half and into thirds, she needs a length that is a multiple of 2 and 3. She likes nice round numbers so she makes each side of the square 120 turtle steps (120/2=60; 120/3=40). As you can see, it's nice to know a little bit of math when you're programming.
With this decided, she first writes her program down on paper in pseudocode.
1. draw a square 2. draw the vertical line that splits the square in half 3. draw the top horizontal line spliting the right half 4. draw the bottom horizontal line spliting the right half 5. make the turtle invisible
Pseudocode is a term for describing something in your native language. Her pseudocode is English descriptions of what she wants her program to do. Once this is complete and she is convinced that her plan should produce what she wants, it's time for the next phase: converting the pseudocode into Logo instructions.
Carrying Out the Plan
Time to convert the plan into a program that can be executed on a computer. Since she is programming in Logo, our expert programmer will convert the pseudocode into instructions available in this computer language. Table 3.1 shows both the pseudocode and the results of its conversion into Logo.
| Pseudocode (Written on Paper) |
Logo Instructions (Typed on Computer) |
|---|---|
| draw a square | fd 120 rt 90 fd 120 rt 90 fd 120 rt 90 fd 120 |
| draw the vertical line that splits the square in half | bk 60 rt 90 fd 120 |
| draw the top horizontal line spliting the right half | bk 40 rt 90 fd 60 bk 60 lt 90 |
| draw the bottom horizontal line spliting the right half | bk 40 rt 90 fd 60 |
| make the turtle invisible | ht |
| |
|
Our experienced programmer brings up the TG Applet in a browser on her computer. TG understands the Logo programming language; it contains a Logo interpreter.
She reads her pseudocode notes (converting them to Logo instructions in her head) and types them into the CommandCenter. As each line is [Enter]-ed she watches the turtle do exactly what's expected.
Using TG's Editor Instead of Paper
It is possible to switch from pencil and paper to the TG applet for the "Devising a Plan" and "Carrying Out the Plan" stages.
I was taught to write my programs on paper first 36 years ago. But, my interaction with a computer consisted of getting a little bit of time on a computer I shared with hundreds of others. So, use of paper and a pencil for writing programs was important. But, now everyone has their own computer... Let's take advantage of this and eliminate the use of paper and pencil.
You will do this via TG's editor.
The editor is available via the Window->Editor->Open menu item. In the application, the menu system is readily available via the standard, pull-down stripe across the top. To access the menu system in the applet, position the mouse in the applet and hold down the right mouse button. Position the mouse over the "Window" menu item to bring up its submenu, choose the "Editor" submenu, and finally choose its "Open" option. Figure 3.1 shows this.
Figure 3.1
Figure 3.2 shows the result, an editor subwindow is now below the CommandCenter, at the bottom of the applet.
Figure 3.2
At this point, the height of the subwindows can be adjusted by positioning the mouse over one of the name stripes, holding down the left mouse button, and dragging the name stripe up or down. Since we are going to be using the editor, make it a bit taller; first drag the CommandCenter name stripe up, then drag the Editor name stripe up.
So, for "Devising a Plan" we need to enter the pseudocode representation of the program. Well, this is a problem. Logo doesn't understand pseudocode and it and will complain if we type it in. We solve this problem by entering the pseudocode as comments. Comments in Logo start with the semicolon (";") character and go through the end of the line. Comments are intended to be read by humans and are ignored by Logo.
Figure 3.3
Figure 3.3 shows the TG applet after the pseudocode from the previous exercise has been entered into the editor.
Now we are ready for the "Carrying Out the Plan" stage. Under each comment, we convert the pseudocode into the appropriate Logo instructions.
Figure 3.4 shows the TG applet after the Logo instructions have been added.
Figure 3.4
So, unlike when we entered Logo instructions into the CommandCenter, nothing has been happening while we enter stuff in the Editor. How do we get the Logo interpreter to perform the instructions we've typed into the Editor?
You use the Window->Editor->Interpret menu item. Figure 3.5 shows me doing this - after I resized the Editor and CommandCenter subwindows near their minimum sizes.
Figure 3.5
And finally, Figure 3.6 show the results, our set of boxes drawn exactly as expected...
Figure 3.6
Practice: Draw a House
Try this new approach. Write a program that draws the simple house shown in Figure 3.7. Go through all of the steps presented:
|
Although it's not the most attractive house, it is easy to draw with the turtle. Make the front of the house a box with each side 100 turtle steps. Make the roof an equilateral triangle, with each side 100 turtle steps. Make the door 50 turtle steps high and 25 turtle steps wide. Make the window a square, 25 turtle steps on each side. |
First, write pseudocode for how you will go about drawing the house and then convert this into Logo instructions. If you prefer paper and pencil, do it this way. If you prefer to type stuff into TG's editor, here's the applet.
TG - TurtleGraphics Applet
Summary
One BIG thing we learned in this lesson was how to write a program in phases:
1. Understanding the Problem
2. Devising a Plan
3. Carrying out the Plan
These are the first three of George Polya's four steps to solving mathematical problems. Dr. Polya wrote a very good book called How to Solve It which explains his methodology.
I've saved his fourth step for this summary, it's:
4. Looking Back
How appropriate. Think about how you went about drawing the house. What was the hardest part? If it didn't work the first time, what was the mistake, or mistakes? Can you think of any way to do your next project so that you don't make the same mistake(s) again?
Go to the Table of Contents
On to Adding New Commands