Introducing Small Basic
Introducing Small Basic
An introduction to Programming
Chapter 1
An Introduction
Small Basic and Programming
Computer Programming is defined as the process of creating computer software using programming languages. Just like we speak and understand English or Spanish or French, computers can understand programs written in certain languages. These are called programming languages. In the beginning there were just a few programming languages and they were really easy to learn and comprehend. But as computers and software became more and more sophisticated, programming languages evolved fast, gathering more complex concepts along the way. As a result most modern programming languages and their concepts are pretty challenging to grasp by a beginner. This fact has started discouraging people from learning or attempting computer programming. Small Basic is a programming language that is designed to make programming extremely easy, approachable and fun for beginners. Small Basics intention is to bring down the barrier and serve as a stepping stone to the amazing world of computer programming.
This is the Small Basic Environment, where well write and run our Small Basic programs. This environment has several distinct elements which are identified by numbers. The Editor, identified by [1] is where we will write our Small Basic programs. When you open a sample program or a previously saved program, it will show up on this editor. You can then modify it and save if for later use. You can also open and work with more than one program at one time. Each program you are working with will be displayed in a separate editor. The editor that contains the program you are currently working with is called the active editor. The Toolbar, identified by [2] is used to issue commands either to the active editor or the environment. Well learn about the various commands in the toolbar as we go. The Surface, identified by [3] is the place where all the editor windows go.
This is our first Small Basic program. And if you have typed it correctly, you should see something similar to the figure below.
Now that we have typed our new program, lets go ahead and run it to see what happens. We can run our program either by clicking on the Run button on the toolbar or by using the shortcut key, F5 on the keyboard. If everything goes well, our program should run with the result as shown below.
Congratulations! You have just written and run the first Small Basic program. A very small and simple program, but nevertheless a big step towards becoming a real computer programmer! Now, theres just one more detail to cover before we go on to create bigger programs. We have to understand what just happened what exactly did we tell the computer and how did the computer know what to do? In the next chapter, well analyze the program we just wrote, so we can gain that understanding.
As you typed your first program, you might have noticed that a popup appeared with a list of items (Figure 4). This is called intellisense and it helps you type your program faster. You can traverse that list by pressing the Up/Down arrow keys, and when you find something you want, you can hit the Enter key to insert the selected item in your program.
Figure 4 - Intellisense
Chapter 2
When you run the above program, youll notice that it prints out the same Hello World phrase inside TextWindow, but this time it prints it out in yellow instead of the gray that it did earlier.
Notice the new statement we added to our original program. It uses a new word, ForegroundColor which we equated to a value of Yellow. This means weve assigned Yellow to ForegroundColor. Now, the difference between ForegroundColor and the operation WriteLine is that ForegroundColor did not take any inputs nor did it need any parenthesis. Instead it was followed by an equals to symbol and a word. We define ForegroundColor as a Property of TextWindow. Here is a list of values that are valid for the ForegroundColor property. Try replacing Yellow with one of these and see the results dont forget the quotes, they are required punctuations. Black Blue Cyan Gray Green Magenta Red White
Chapter 3
Introducing Variables
Using Variables in our program
Wouldnt it be nice if our program can actually say Hello with the users name instead of saying the generic Hello World? In order to do that we must first ask the user for his/her name and then store it somewhere and then print out Hello with the users name. Lets see how we can do that: TextWindow.Write("Enter your Name: ") name = TextWindow.Read() TextWindow.WriteLine("Hello " + name) When you type and execute this program, youll see an output like the following:
And when you type in your name and hit ENTER, youll see the following output:
Now, if you run the program again, youll be asked the same question again. You can type in a different name and the computer will say Hello with that name.
Write, just like WriteLine is another operation on ConsoleWindow. Write allows you to write something to the ConsoleWindow but allows succeeding text to be on the same line as the current text.
TextWindow.Write("Enter your Name: ") name = TextWindow.Read() TextWindow.Write("Hello " + name + ". ") TextWindow.WriteLine("How are you doing " + name + "?") And youll see the following output:
When you run this program youll get the following as output:
In the first line of the program, youre assigning the variable number1 with a value of 10. And in the second line, youre assigning the variable number2 with a value of 20. In the third line, Notice that the numbers dont have quotes youre adding number1 and number2 and then around them. For numbers, quotes are not assigning the result of that to number3. So, in necessary. You need quotes only when youre this case, number3 will have a value of 30. And using text. that is what we printed out to the TextWindow. Now, lets modify that program slightly and see the results: number1 = 10 number2 = 20
number3 = number1 * number2 TextWindow.WriteLine(number3) The program above will multiply number1 with number2 and store the result in number3. And you can see in the result of that program below:
Similarly, you can subtract or divide numbers. Here is the subtraction: number3 = number1 - number2 And the symbol for division is /. The progam will look like: number3 = number1 / number2 And the result of this division would be:
celsius = 5 * (fahr - 32) / 9 The parentheses tell the computer to calculate the fahr 32 part first and then process the rest. Now all we have to do is print the result out to the user. Putting it all together, we get this program: TextWindow.Write("Enter temperature in Fahrenheit: ") fahr = TextWindow.ReadNumber() celsius = 5 * (fahr - 32) / 9 TextWindow.WriteLine("Temperature in Celsius is " + celsius) And the result of this program would be:
Chapter 4
Lets analyze the first three lines of the program. Youd have already figured out that this line tells the computer that if the Clock.Hour is lesser than 12, print out Good Morning World. The words If, In Small Basic, you can use the Clock object to Then and EndIf are special words that are access the current date and time. It also understood by the computer when the program is provides you a bunch of properties that allow run. The word If is always followed by a condition, you to get the current Day, Month, Year, Hour, which in this case is (Clock.Hour < 12). Remember Minutes, Seconds separately. that the parentheses are necessary for the computer to understand your intentions. The condition is followed by then and the actual operation to execute. And after the operation comes EndIf. This tells the computer that the conditional execution is over. Between the then and the EndIf, there could be more than one operation and the computer will execute them all if the condition is valid. For example, you could write something like this: If (Clock.Hour < 12) Then TextWindow.Write("Good Morning. ") TextWindow.WriteLine("How was breakfast?") EndIf
Else
In the program at the start of this chapter, you might have noticed that the second condition is kind of redundant. The Clock.Hour value could either be less than 12 or not. We didnt really have to do the second check. At times like this, we can shorten the two if..then..endif statements to be just one by using a new word, else. If we were to rewrite that program using else, this is how it will look: If (Clock.Hour < 12) Then TextWindow.WriteLine("Good Morning World") Else TextWindow.WriteLine("Good Evening World") EndIf
And this program will do exactly the same as the other one, which brings us to a very important lesson in computer programming:
In programming, there usually are many ways of doing the same thing. Sometimes one way makes more sense than the other way. The choice is left to the programmer. As you write more programs and get more experienced, youll start to notice these different techniques and their advantages and disadvantages.
Indentation
In all the examples you can see how the statements between If, Else and EndIf are indented. This indentation is not necessary. The computer will understand the program just fine without them. However, they help us see and understand the structure of the program easier. Hence, its usually considered as a good practice to indent the statements between such blocks.
Even or Odd
Now that we have the If..Then..Else..EndIf statement in our bag of tricks, lets write out a program that, given a number, will say if its even or odd. TextWindow.Write("Enter a number: ") num = TextWindow.ReadNumber() remainder = Math.Remainder(num, 2) If (remainder = 0) Then TextWindow.WriteLine("The number is Even") Else TextWindow.WriteLine("The number is Odd") EndIf And when you run this program, youll see an output like:
In this program, weve introduced another new useful operation, Math.Remainder. And yes, as you already might have figured out, Math.Remainder will divide the first number by the second number and then give back the remainder.
Branching
Remember, in the second chapter you learned that the computer processes a program one statement at a time, in order from the top to bottom. However, theres a special statement that can make the computer jump to another statement out of order. Lets take a look at the next program. i = 1 start: TextWindow.WriteLine(i) i = i + 1 If (i < 25) Then Goto start EndIf
In the program above, we assigned a value of 1 to the variable i. And then we added a new statement which ends in a colon (:) start: This is called a label. Labels are like bookmarks that the computer understands. You can name the bookmark anything and you can add as many labels as you want in your program, as long as they are all uniquely named. Another interesting statement here is: i = i + 1
This just tells the computer to add 1 to the variable i and assign it back to i. So if the value of i was 1 before this statement, it will be 2 after this statement is run. And finally, If (i < 25) Then Goto start EndIf This is the part that tells the computer that if the value of i is less than 25, start executing statements from the bookmark start.
Endless execution
Using the Goto statement you can make the computer repeat something any number of times. For example, you can take the Even or Odd program and modify it like below, and the program will run for ever. You can stop the program by clicking on the Close (X) button on the top right corner of the window. begin: TextWindow.Write("Enter a number: ") num = TextWindow.ReadNumber() remainder = Math.Remainder(num, 2) If (remainder = 0) Then TextWindow.WriteLine("The number is Even") Else TextWindow.WriteLine("The number is Odd") EndIf Goto begin
Chapter 5
Loops
For Loop
Lets take a program we wrote in the previous chapter. i = 1 start: TextWindow.WriteLine(i) i = i + 1 If (i < 25) Then Goto start EndIf This program prints out numbers from 1 to 24 in order. This process of incrementing a variable is very common in programming that programming languages usually provide an easier method of doing this. The above program is equivalent to the program below: For i = 1 To 24 TextWindow.WriteLine(i) EndFor
Notice that weve reduced the 8 line program to a 4 line program, and it still does exactly the same as the 8 line program! Remember earlier we said that there are usually several ways of doing the same thing? This is a great example. For..EndFor is, in programming terms, called a loop. It allows you to take a variable, give it an initial and an end value and let the computer increment the variable for you. Every time the computer increments the variable, it runs the statements between For and EndFor. But if you wanted the variable to be incremented by 2 instead of 1 like say, you wanted to print out all the odd numbers between 1 and 24, you can use the loop to do that too. For i = 1 To 24 Step 2 TextWindow.WriteLine(i) EndFor
The Step 2 part of the For statement tells the computer to increment the value of i by 2 instead of the usual 1. By using Step you can specify any increment that you want. You can even specify a negative value for the step and make the computer count backwards, like in the example below: For i = 10 To 1 Step -1 TextWindow.WriteLine(i) EndFor
While Loop
The While loop is yet another looping method, that is useful especially when the loop count is not known ahead of time. Whereas a For loop runs for a pre-defined number of times, the While loop runs until a given condition is true. In the example below, were halving a number until the result is greater than 1. number = 100 While (number > 1) TextWindow.WriteLine(number) number = number / 2 EndWhile
In the program above, we assign the value 100 to number and run the while loop as long as number is greater than 1. Inside the loop, we print out the number and then we divide it by two, effectively halving it. And as expected, the output of the program is numbers that are progressively getting halved one after another.
Itll be really hard to write this program using a For loop, because we dont know how many times the loop will run. With a while loop its easy to check for a condition and ask the computer to either continue the loop or quit. Itll be interesting to note that every while loop can be unwrapped into an If..Then statement. For instance, the program above can be rewritten as follows, without affecting the end result. number = 100 startLabel: TextWindow.WriteLine(number) number = number / 2 If (number > 1) Then Goto startLabel EndIf
In fact, the computer internally rewrites every While loop into statements that use If..Then along with one or more Goto statements.
Chapter 6
Beginning Graphics
So far in all our examples, weve used the TextWindow to explain the fundamentals of the Small Basic language. However, Small Basic comes with a powerful set of Graphics capabilities that well start exploring in this chapter.
Introducing GraphicsWindow
Just like we had TextWindow that allowed us to work with Text and Numbers, Small Basic also provides a GraphicsWindow that we can use to draw things. Lets begin by displaying the GraphicsWindow. GraphicsWindow.Show() When you run this program, youll notice that instead of the usual black text window, you get a white Window like the one shown below. Theres nothing much to do on this window yet. But this will be the base window on which well work on in this chapter. You can close this window by clicking on the X button on the top right corner.
Heres how the customized graphics window looks. You can change the background color to one of the many values listed in Appendix B. Play with these properties to see how you can modify the windows appearance.
Drawing Lines
Once we have the GraphicsWindow up, we can draw shapes, text and even pictures on it. Lets start by drawing some simple shapes. Heres a program that draws a couple lines on the Graphics Window. GraphicsWindow.Width = 200 GraphicsWindow.Height = 200 GraphicsWindow.DrawLine(10, 10, 100, 100) GraphicsWindow.DrawLine(10, 100, 100, 10)
Figure 25 CrissCross
The first two lines of the program setup the window and the next two lines draw the crisscross lines. The first two numbers that follow DrawLine specify the starting x and y co-ordinates and the other two specify the ending x and y co-ordinates. The interesting thing with computer graphics is
Instead of using names for colors you can use the web color notation (#RRGGBB). For example, #FF0000 denotes Red, #FFFF00 for Yellow, and so on. Well learn more about colors in [TODO Colors chapter]
that the co-ordinates (0, 0) start at the top left corner of the window. In effect, in the co-ordinate space the window is considered to be on the 2nd quadrant. [TODO: Insert picture of quadrant]
If we go back to the line program, its interesting to note that Small Basic allows you to modify the properties of the line, such as the color and its thickness. First, lets modify the color of the lines as shown in the program below. GraphicsWindow.Width = 200 GraphicsWindow.Height = 200 GraphicsWindow.PenColor = "Green" GraphicsWindow.DrawLine(10, 10, 100, 100) GraphicsWindow.PenColor = "Gold" GraphicsWindow.DrawLine(10, 100, 100, 10)
Now, lets modify the size too. In the program below, we change the line width to be 10, instead of the default which is 1. GraphicsWindow.Width = 200 GraphicsWindow.Height = 200 GraphicsWindow.PenWidth = 10
GraphicsWindow.PenColor = "Green" GraphicsWindow.DrawLine(10, 10, 100, 100) GraphicsWindow.PenColor = "Gold" GraphicsWindow.DrawLine(10, 100, 100, 10)
PenWidth and PenColor modify the pen with which these lines are drawn. They not only affect lines but also any shape that is drawn after the properties are updated. By using the looping statements we learned in the previous chapters, we can easily write a program that draws multiple lines with increasing pen thickness. GraphicsWindow.BackgroundColor = "Black" GraphicsWindow.Width = 200 GraphicsWindow.Height = 160 GraphicsWindow.PenColor = "Blue" For i = 1 To 10 GraphicsWindow.PenWidth = i GraphicsWindow.DrawLine(20, i * 15, 180, i * 15) endfor
The interesting part of this program is the loop, where we increase the PenWidth every time the loop is run and then draw a new line under the old one.
To draw or fill a rectangle, you need four numbers. The first two numbers represent the X and Y coordinates for the top left corner of the rectangle. The third number specifies the width of the rectangle while the fourth specifies its height. In fact, the same applies for drawing and filling ellipses, as shown in the program below. GraphicsWindow.Width = 400 GraphicsWindow.Height = 300
GraphicsWindow.PenColor = "Red" GraphicsWindow.DrawEllipse(20, 20, 300, 60) GraphicsWindow.BrushColor = "Green" GraphicsWindow.FillEllipse(60, 100, 300, 60)
Ellipses are just a general case of circles. If you want to draw circles, you would have to specify the same width and height. GraphicsWindow.Width = 400 GraphicsWindow.Height = 300 GraphicsWindow.PenColor = "Red" GraphicsWindow.DrawEllipse(20, 20, 100, 100) GraphicsWindow.BrushColor = "Green" GraphicsWindow.FillEllipse(100, 100, 100, 100)
Figure 32 Circles
Chapter 7
Rectangalore
Here we draw multiple rectangles in a loop, with increasing size. GraphicsWindow.BackgroundColor = "Black" GraphicsWindow.PenColor = "LightBlue" GraphicsWindow.Width = 200 GraphicsWindow.Height = 200 For i = 1 To 100 Step 5 GraphicsWindow.DrawRectangle(100 - i, 100 - i, i * 2, i * 2) EndFor
Figure 33 - Rectangalore
Circtacular
A variant of the previous program, draws circles instead of squares. GraphicsWindow.BackgroundColor = "Black" GraphicsWindow.PenColor = "LightGreen" GraphicsWindow.Width = 200 GraphicsWindow.Height = 200 For i = 1 To 100 Step 5 GraphicsWindow.DrawEllipse(100 - i, 100 - i, i * 2, i * 2) EndFor
Figure 34 Circtacular
Randomize
This program uses the operation GraphicsWindow.GetRandomColor to set random colors for the brush and then uses Math.GetRandomNumber to set the x and y co-ordinates for the circles. These two operations can be combined in interesting ways to create interesting programs that give different results each time they are run.
GraphicsWindow.BackgroundColor = "Black" For i = 1 To 1000 GraphicsWindow.BrushColor = GraphicsWindow.GetRandomColor() x = Math.GetRandomNumber(640) y = Math.GetRandomNumber(480) GraphicsWindow.FillEllipse(x, y, 10, 10) EndFor
Figure 35 Randomize
Fractals
The following program draws a simple triangle fractal using random numbers. A fractal is a geometric shape that can be subdivided into parts, each of which resembles the parent shape accurately. In this case, the program draws hundreds of triangles each of which resembles its parent triangle. And since the program runs for a few seconds, you can actually see the triangles forming slowly from mere dots. The logic itself is somewhat hard to describe and Ill leave it as an exercise for you to explore. GraphicsWindow.BackgroundColor = "Black" x = 100 y = 100 For i = 1 To 100000 r = Math.GetRandomNumber(3)
ux = 150 uy = 30 If (r = 1) then ux = 30 uy = 1000 EndIf If (r = 2) Then ux = 1000 uy = 1000 EndIf x = (x + ux) / 2 y = (y + uy) / 2 GraphicsWindow.SetPixel(x, y, "LightGreen") EndFor
If you want to really see the dots slowly forming the fractal, you can introduce a delay in the loop by using the Program.Delay operation. This operation takes in a number that specifies in milliseconds, how long to delay. Heres the modified program, with the modified line in bold.
GraphicsWindow.BackgroundColor = "Black" x = 100 y = 100 For i = 1 To 100000 r = Math.GetRandomNumber(3) ux = 150 uy = 30 If (r = 1) then ux = 30 uy = 1000 EndIf If (r = 2) Then ux = 1000 uy = 1000 EndIf x = (x + ux) / 2 y = (y + uy) / 2 GraphicsWindow.SetPixel(x, y, "LightGreen") Program.Delay(2) EndFor Increasing the delay will make the program slower. Experiment with the numbers to see whats best for your taste. Another modification you can make to this program is to replace the following line: GraphicsWindow.SetPixel(x, y, "LightGreen") with color = GraphicsWindow.GetRandomColor() GraphicsWindow.SetPixel(x, y, color) This change will make the program draw the pixels of the triangle using random colors.
Chapter 8
Turtle Graphics
Logo
In the 1970s, there was a very simple but powerful programming language, called Logo that was used by a few researchers. This was until someone added what is called Turtle Graphics to the language and made available a Turtle that was visible on the screen and responded to commands like Move Forward, Turn Right, Turn Left, etc. Using the Turtle, people were able to draw interesting shapes on the screen. This made the language immediately accessible and appealing to people of all ages, and was largely responsible for its wild popularity in the 1980s. Small Basic comes with a Turtle object with many commands that can be called from within Small Basic programs. In this chapter, well use the Turtle to draw graphics on the screen.
The Turtle
To begin with, we need to make the Turtle visible on the screen. This can be achieved by a simple one line program. Turtle.Show() When you run this program youll notice a white window, just like the one we saw in the previous chapter, except this one has a Turtle in the center. It is this Turtle that is going to follow our instructions and draw whatever we ask it to.
When using operations on the Turtle, it is not necessary to call Show(). The Turtle will be automatically made visible whenever any Turtle operation is performed.
Drawing a Square
A square has four sides, two vertical and two horizontal. In order to draw a square we need to be able to make the Turtle draw a line, turn right and draw another line and continue this until all four sides are finished. If we translated this to a program, heres how it would look. Turtle.Move(100) Turtle.TurnRight() Turtle.Move(100) Turtle.TurnRight() Turtle.Move(100) Turtle.TurnRight() Turtle.Move(100) Turtle.TurnRight() When you run this program, you can see the Turtle drawing a square, one line at a time, and the result looks like the figure below.
It will be interesting to note that were issuing the same two instructions over and over four times precisely. And weve already learnt that such repetitive commands can be executed using loops. So, if we take the program above and modify it to use the For..EndFor loop, well end up with a much simpler program. For i = 1 To 4 Turtle.Move(100) Turtle.TurnRight() EndFor
Changing Colors
The Turtle draws on the exact same GraphicsWindow that we saw in the previous chapter. This means that all the operations that we learned in the previous chapter are still valid here. For instance, the following program will draw the square with each side in a different color. For i = 1 To 4 GraphicsWindow.PenColor = GraphicsWindow.GetRandomColor() Turtle.Move(100) Turtle.TurnRight() EndFor
Turtle.Move(length) Turtle.Turn(angle) EndFor Using this program, you can draw any polygon by just modifying the sides variable. Putting 4 here would give us the Square we started with. Putting a sufficiently large value, say 50 would make the result indistinguishable from a circle.
Using the technique we just learned, we can make the Turtle draw multiple circles each time with a little shift resulting in an interesting output. sides = 50 length = 400 / sides angle = 360 / sides Turtle.Speed = 9 For j = 1 To 20 For i = 1 To sides Turtle.Move(length) Turtle.Turn(angle) EndFor Turtle.Turn(18)
EndFor The program above has two For..EndFor loops, one within the other. The inner loop (i = 1 to sides) is similar to the polygon program and is responsible for drawing a circle. The outer loop (j = 1 to 20) is responsible for turning the Turtle by a small bit for every circle that is drawn. This tells the Turtle to draw 20 circles. When put together, this program In the program above, we have made the Turtle results in a very interesting pattern, like the one go faster by setting the Speed to 9. You can set shown below. this property to any value between 1 and 10 to make the Turtle go as fast as you want.
Moving Around
You can make the turtle not draw by calling the PenUp operation. This allows you to move the turtle to anywhere on the screen without drawing a line. Calling PenDown will make the turtle draw again. This can be used to get some interesting effects, like say, dotted lines. Heres a program that uses this to draw a dotted line polygon. sides = 6 length = 400 / sides angle = 360 / sides For i = 1 To sides
For j = 1 To 6 Turtle.Move(length / 12) Turtle.PenUp() Turtle.Move(length / 12) Turtle.PenDown() EndFor Turtle.Turn(angle) EndFor Again, this program has two loops. The inner loop draws a single dotted line, while the outer loop specifies how many lines to draw. In our example, we used 6 for the sides variable and hence we got a dotted line hexagon, as below.
Chapter 9
Subroutines
Very often while writing programs well run into cases where well have to execute the same set of steps, over and over again. In those cases, it probably wouldnt make sense to rewrite the same statements multiple times. Thats when Subroutines come in handy. A subroutine is a portion of code within a larger program that usually does something very specific, and that can be called from anywhere in the program. Subroutines are identified by a name that follows the Sub keyword and are terminated by the EndSub keyword. For example, the following snippet represents a subroutine whose name is PrintTime, and it does the job of printing the current time to the TextWindow. Sub PrintTime TextWindow.WriteLine(Clock.Time) EndSub Below is a program that includes the subroutine and calls it from various places. PrintTime() TextWindow.Write("Enter your name: ") name = TextWindow.Read() TextWindow.Write(name + ", the time now is: ") PrintTime() Sub PrintTime TextWindow.WriteLine(Clock.Time)
EndSub
You execute a subroutine by calling SubroutineName(). As usual, the punctuators () are necessary to tell the computer that you want to execute a subroutine.
Using variables
You can access and use any variable that you have in a program from within a subroutine. As an example, the following program accepts two numbers and prints out the larger of the two. Notice that the variable max is used both inside and outside of the subroutine. TextWindow.Write("Enter first number: ") num1 = TextWindow.ReadNumber() TextWindow.Write("Enter second number: ") num2 = TextWindow.ReadNumber() FindMax()
TextWindow.WriteLine("Maximum number is: " + max) Sub FindMax If (num1 > num2) Then max = num1 Else max = num2 EndIf EndSub And the output of this program looks like this.
Lets look at another example that will illustrate the usage of Subroutines. This time well use a graphics program that computes various points which it will store in variables x and y. Then it calls a subroutine DrawCircleUsingCenter which is responsible for drawing a circle using x and y as the center. GraphicsWindow.BackgroundColor = "Black" GraphicsWindow.PenColor = "LightBlue" GraphicsWindow.Width = 480 For i = 0 To 6.4 Step 0.17 x = Math.Sin(i) * 100 + 200 y = Math.Cos(i) * 100 + 200 DrawCircleUsingCenter() EndFor Sub DrawCircleUsingCenter startX = x - 40 startY = y - 40 GraphicsWindow.DrawEllipse(startX, startY, 120, 120) EndSub
EndIf Endfor EndLoop: EndSub The PrimeCheck subroutine takes the value of i and tries to divide it by smaller numbers. If a number divides i and leaves no remainder, then i is not a prime number. At that point the subroutine sets the value of isPrime to False and exits. If the number was indivisible by smaller numbers then the value of isPrime remains as True.
Now that you have a subroutine that can do the Prime test for us, you might want to use this to list out all the prime numbers below, say, 100. It is really easy to modify the above program and make the call to PrimeCheck from inside a loop. This gives the subroutine a different value to compute each time the loop is run. Lets see how this is done with the example below. For i = 3 To 100 isPrime = "True" PrimeCheck() If (isPrime = "True") Then TextWindow.WriteLine(i) EndIf EndFor Sub PrimeCheck For j = 2 To Math.SquareRoot(i) If (Math.Remainder(i, j) = 0) Then isPrime = "False" Goto EndLoop EndIf Endfor EndLoop: EndSub In the program above, the value of i is updated every time the loop is run. Inside the loop, a call to the subroutine PrimeCheck is made. The subroutine PrimeCheck then takes the value of i and computes whether or not i is a prime number. This result is stored in the variable isPrime which is then accessed
by the loop outside of the subroutine. The value of i is then printed if it turns out to be a prime number. And since the loop starts from 3 and goes up to 100, we get a list of all the prime numbers that are between 3 and 100. Below is the result of the program.
Chapter 10
The interesting part to note in the program above is the line where we assign the subroutine name to the MouseDown event of GraphicsWindow object. Youll notice that MouseDown looks very much like a property except that instead of assigning some value, were assigning the subroutine OnMouseDown to it. Thats what is special about events when the event happens, the subroutine is called automatically. In this case, the subroutine OnMouseDown is called every time the user clicks using the mouse, on the GraphicsWindow. Go ahead, run the program and try it out. Anytime you click on the GraphicsWindow with your mouse, youll see a message box just like the one shown in the picture below.
This kind of event handling is very powerful and allows for very creative and interesting programs. Programs written in this fashion are often called event-driven programs. You can modify the OnMouseDown subroutine to do other things than popup a message box. For instance, like in the program below, you can draw big blue dots where the user clicks the mouse. GraphicsWindow.BrushColor = "Blue" GraphicsWindow.MouseDown = OnMouseDown Sub OnMouseDown x = GraphicsWindow.MouseX - 10 y = GraphicsWindow.MouseY - 10 GraphicsWindow.FillEllipse(x, y, 20, 20) EndSub
Notice that in the program above, we used MouseX and MouseY to get the mouse co-ordinates. We then use this to draw a circle using the mouse co-ordinates as the center of the circle.
If you ran this program and clicked on the window, youll get a blue dot. Now, if you press any key once and click again, youll get a different colored dot. Whats happening when you press a key is that the subroutine OnKeyDown gets executed which changes the brush color to a random color. After that when you click the mouse, a circle is drawn using the newly set color giving the random color dots.
A paint program
Armed with events and subroutines, we can now write a program that lets users draw on the window. Its surprisingly easy to write such a program, provided we break down the problem into smaller bits. As a first step, lets write a program that will allow users to move the mouse anywhere on the graphics window, leaving a trail wherever they move the mouse. GraphicsWindow.MouseMove = OnMouseMove Sub OnMouseMove x = GraphicsWindow.MouseX y = GraphicsWindow.MouseY GraphicsWindow.DrawLine(prevX, prevY, x, y)
prevX = x prevY = y EndSub However, when you run this program, the first line always starts from the top left edge of the window (0, 0). We can fix this problem by handling the MouseDown event and capture the prevX and prevY values when that event comes. Also, we really only need the trail when the user has the mouse button down. Other times, we shouldnt draw the line. In order to get this behavior, well use the IsLeftButtonDown property on the Mouse object. This property tells whether the Left button is being held down or not. If this value is true, then well draw the line, if not well skip the line. GraphicsWindow.MouseMove = OnMouseMove GraphicsWindow.MouseDown = OnMouseDown Sub OnMouseDown prevX = GraphicsWindow.MouseX prevY = GraphicsWindow.MouseY EndSub Sub OnMouseMove x = GraphicsWindow.MouseX y = GraphicsWindow.MouseY If (Mouse.IsLeftButtonDown) Then GraphicsWindow.DrawLine(prevX, prevY, x, y) EndIf prevX = x prevY = y EndSub (Pending completion)
Appendix A
Fun Samples
Turtle Fractal
GraphicsWindow.BackgroundColor = "Black" GraphicsWindow.PenColor = "LightGreen" DrawTree() Sub DrawTree If (distance > 0) Then Turtle.Move(distance) Turtle.Turn(angle) Stack.PushValue("distance", distance) distance = distance - delta DrawTree() Turtle.Turn(-angle * 2) DrawTree() Turtle.Turn(angle) distance = Stack.PopValue("distance") Turtle.Move(-distance) EndIf EndSub
GraphicsWindow.BackgroundColor = "Black" GraphicsWindow.MouseDown = OnMouseDown Sub OnMouseDown pic = Flickr.GetRandomPicture("mountains, river") GraphicsWindow.DrawResizedImage(pic, 0, 0, 640, 480) EndSub
Paddle Game
GraphicsWindow.MouseMove = OnMouseMove x = 0 y = 0 deltaX = 1 deltaY = 1 RunLoop: x = x + deltaX y = y + deltaY gw = GraphicsWindow.Width gh = GraphicsWindow.Height If (x >= gw - 16 or x <= 0) Then deltaX = -deltaX EndIf If (y <= 0) Then deltaY = -deltaY EndIf padX = Shapes.GetLeft (paddle) If (y = gh - 28 and x >= padX and x <= padX + 120) Then deltaY = -deltaY EndIf Shapes.Move(ball, x, y) Program.Delay(5) If (y < gh) Then Goto RunLoop EndIf GraphicsWindow.ShowMessage("You Lose", "Paddle") Sub OnMouseMove paddleX = GraphicsWindow.MouseX Shapes.Move(paddle, paddleX - 60, GraphicsWindow.Height - 12) EndSub
Appendix B
Colors
TODO: Describe colors + hex Heres a list of named colors supported by Small Basic, categorized by their base hue.
Red Colors
IndianRed LightCoral Salmon DarkSalmon LightSalmon Crimson Red FireBrick DarkRed #CD5C5C #F08080 #FA8072 #E9967A #FFA07A #DC143C #FF0000 #B22222 #8B0000
PaleVioletRed
#DB7093
Orange Colors
LightSalmon Coral Tomato OrangeRed DarkOrange Orange #FFA07A #FF7F50 #FF6347 #FF4500 #FF8C00 #FFA500
Yellow Colors
Gold #FFD700 #FFFF00 #FFFFE0 #FFFACD Yellow LightYellow LemonChiffon
Pink Colors
Pink LightPink HotPink DeepPink MediumVioletRed #FFC0CB #FFB6C1 #FF69B4 #FF1493 #C71585
#98FB98 #90EE90 #00FA9A #00FF7F #3CB371 #2E8B57 #228B22 #008000 #006400 #9ACD32 #6B8E23 #808000 #556B2F #66CDAA #8FBC8F #20B2AA #008B8B #008080
Purple Colors
Lavender Thistle Plum Violet Orchid Fuchsia Magenta MediumOrchid MediumPurple BlueViolet DarkViolet DarkOrchid DarkMagenta Purple Indigo SlateBlue DarkSlateBlue MediumSlateBlue #E6E6FA #D8BFD8 #DDA0DD #EE82EE #DA70D6 #FF00FF #FF00FF #BA55D3 #9370DB #8A2BE2 #9400D3 #9932CC #8B008B #800080 #4B0082 #6A5ACD #483D8B #7B68EE
ForestGreen Green DarkGreen YellowGreen OliveDrab Olive DarkOliveGreen MediumAquamarine DarkSeaGreen LightSeaGreen DarkCyan Teal
Blue Colors
Aqua Cyan LightCyan PaleTurquoise Aquamarine Turquoise #00FFFF #00FFFF #E0FFFF #AFEEEE #7FFFD4 #40E0D0 #48D1CC #00CED1 #5F9EA0 #4682B4 #B0C4DE #B0E0E6
Green Colors
GreenYellow Chartreuse LawnGreen Lime LimeGreen #ADFF2F #7FFF00 #7CFC00 #00FF00 #32CD32
LightBlue SkyBlue LightSkyBlue DeepSkyBlue DodgerBlue CornflowerBlue MediumSlateBlue RoyalBlue Blue MediumBlue DarkBlue Navy MidnightBlue
#ADD8E6 #87CEEB #87CEFA #00BFFF #1E90FF #6495ED #7B68EE #4169E1 #0000FF #0000CD #00008B #000080 #191970
Maroon
#800000
White Colors
White Snow Honeydew MintCream Azure AliceBlue GhostWhite WhiteSmoke Seashell Beige OldLace FloralWhite #FFFFFF #FFFAFA #F0FFF0 #F5FFFA #F0FFFF #F0F8FF #F8F8FF #F5F5F5 #FFF5EE #F5F5DC #FDF5E6 #FFFAF0 #FFFFF0 #FAEBD7 #FAF0E6 #FFF0F5 #FFE4E1
Brown Colors
Cornsilk BlanchedAlmond Bisque NavajoWhite Wheat BurlyWood Tan RosyBrown SandyBrown Goldenrod DarkGoldenrod Peru Chocolate SaddleBrown Sienna Brown #FFF8DC #FFEBCD #FFE4C4 #FFDEAD #F5DEB3 #DEB887 #D2B48C #BC8F8F #F4A460 #DAA520 #B8860B #CD853F #D2691E #8B4513 #A0522D #A52A2A
Gray Colors
Gainsboro LightGray Silver DarkGray Gray DimGray LightSlateGray SlateGray DarkSlateGray Black #DCDCDC #D3D3D3 #C0C0C0 #A9A9A9 #808080 #696969 #778899 #708090 #2F4F4F #000000