functions - lehman collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/ch06.pdf · levels of...

35
Functions Alice

Upload: others

Post on 26-Aug-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Functions

Alice

Page 2: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Built-in Functions

We have been using built-in functions.

Page 3: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

How a function works

A function receives value(s), performs somecomputation on the value(s), and returns (sendsback) a value.

Page 4: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Types of Functions

The type of a function depends on the typeof value it returns.

a number a specific object a color a Boolean (true or false) other property values…

Page 5: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

A new exampleA common task in sports game programs is to bouncea ball. To illustrate how this is done, let's bounce theball over the net. (The ball has been positioned 1meter from the net.)

The ball should move up and forward and then downand forward in a pattern that looks something like this:

Note: This looks easy – but do not be deceived!

Page 6: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Design StoryboardA design for a world-level method:

World.ballOverNet:

Do in order toyball turn to face the net Do together toyball move up toyball move forward Do together toyball move down toyball move forward

Page 7: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

DemoToyballOverNet-V1ToyballOverNet-V2Concepts illustrated in this example:

Movement of an object is sometimesrelative to another object. In this example,

a built-in height function is used to determine theheight of the net. Then the ball moves up enoughto clear the net. the toyball's up and down movements arerelative to the ground. An orient to method isused because it is not easy to tell "which way isup."

Page 8: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Rolling the ballAnother sports game action involves rolling a ball alongthe ground.We want a realistic motion rather than a slide.The ball must simultaneously move and roll.

realisticRoll

Do together move ball forward 1 meter turn ball forward 1 revolution

Page 9: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Demo

Ch06Lec1ToyballRoll-V1 Our design assumed that the ball's motionis relative to the ground. But the ball turnsrelative to it's own sense of direction.

Ch06Lec1ToyballRoll-V2AsSeenBy ground can be used to makethe ball turn relative to the ground.

Page 10: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Revising the approach

The ball is made to roll 1 revolution.Suppose we want the ball to roll a certaindistance (say 3 or 4 or even 10 meters)along the ground.How many times should the ball turn 1complete revolution?

Page 11: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Number of revolutions The number of revolutions depends on the sizeof the ball

The number of revolutions is distance/( P * diameter)

But there is no built-in function to return thenumber of revolutionsWe will write our own!

one revolution

four revolutions

Page 12: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

ParametersWe want to return the value computed as

distance/( Π * diameter)

Obviously, what is needed is the ball’s diameter

the ball object has a built-in width function the distance the ball is to travel

can be sent as a parameter to the function

Page 13: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Demo

Ch06Lec1ToyballRoll-V3Concepts illustrated in this example

A function must have a return statement tosend back a computed value. In this example, a math expression iscreated to compute a number value. The order of evaluation is indicated by theuse of parentheses, as in traditional mathexpressions.

Page 14: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Calling the function

test values

We should run the animation with several testvalues to be sure it works as expected.

What happens if you use a negative value?

Page 15: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Levels of Functions

As with methods, functions can be eitherclass-level or world-level. (The functionjust presented was class-level.)The guidelines for class-level methodsalso apply to class-level functions:

No references to other objects. No references to world-level functions youhave written (built-in world-level functionsare fine to use).

Page 16: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Execution Control withIf/Else and Boolean Functions

Example: Single Condition

Alice

Page 17: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Thinking About MoreAdvanced Worlds

No doubt you have started to thinkabout building animations likesimulations and video games…To build more advanced worlds, you willneed to write code that involvesdecisions

Page 18: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Examples of DecisionsIn a car-race simulation, the driversteers the car around curves and pastmile-markers.

If the car stays on the road, the scoreincreases. If the car goes off the road into thestands, the car crashes. If the driver gets the car over thefinish-line, the time is posted and thedriver wins!

Page 19: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Logical Expressions

A decision is made based on currentconditionsA condition is checked in a logicalexpression that evaluates to true or false(Boolean) value

car on road true car over finish line false

Page 20: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

If/ElseIn Alice, a logical expressionis used as the condition inan If/Else control structure.Decisions (using If/Else) areused in

functions methods

Page 21: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Example: Boolean FunctionSuppose you are building a simulation system used totrain air traffic controllers.One of the tasks of an traffic controller is to be alert forpossible collisions in the flight space.

Page 22: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

StoryboardOne factor in determining whether two aircraft are indanger of collision is the vertical distance (difference inaltitudes) between them.We can write a function that checks the vertical distanceagainst a minimum difference in altitudes.The function returns true if they are too close, otherwisefalse.

isTooClose

Parameters: aircraftOne, aircraftTwo, minimumDistance

If the vertical distance between aircraftOne and aircraftTwo is less than minimumDistance return trueElse return false

Page 23: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Demo

Ch06Lec2aFlightCollision-V1Concepts illustrated in thisexample

A world-level relationaloperator is used to create aBoolean expression as thecondition. The absolute value function isused to make sure thecomputed difference in altitudeis not a negative number.

Page 24: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Storyboard

To avoid a collision, the aircraft that isabove the other should move up and thelower aircraft should move down.

avoidCollision

Parameters: aircraftOne, aircraftTwo

If aircraftOne is above aircraftTwo Do together aircraftOne move up aircraftTwo move downElse Do together aircraftOne move down aircraftTwo move up

Page 25: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Demo Ch06Lec2aFlightCollision-V2 Concepts illustrated in this example

Decisions were made to control whether a method is called determine which set of instructions areimmediately executed

Page 26: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Execution Control withIf/Else and Boolean Questions

Example: Multiple Conditions

Alice

Page 27: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

The Zeus world revisited

Recall the Zeus world (Chapter 5 Section 2)

Testing this world, we found two significant problemsAnything the user clicked was zapped by Zeus’ bolt – not justphilosophers!Philosophers could be zapped with lightning more than once!

Page 28: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Problem

What we need in the Zeus world is conditionalexecution

Check conditions: Is the selected object a philosopher? If so, has the philosopher already been zapped bylightning?

Conditional execution: lightning bolt will be shot or not

Page 29: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Multiple Conditions

First, we’ll tackle the problem of restrictingZeus to shoot thunderbolts only atphilosophers.This is different from previous examples inthat four possible conditions must bechecked – the user could click on anyone of the four philosophers.

Page 30: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

DemoCh06Lec2bZeus-V1Concept illustrated:

Begin with just one object – we chose homer, but any onephilosopher would do.

Start with a blank If statement…drag in the who tile, then select== and homer

Page 31: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Demo

Ch06Lec2bZeus-V2Concept illustrated

Boolean logic operators are used to build anexpression composed of multiple conditions

Page 32: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Abstraction

Multiple conditions, as in this example, become complex are difficult to read are difficult to debug

A better solution is to write our ownBoolean question that checks theconditions.This is another example of abstraction –allowing you to think on a higher plane.

Page 33: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Demo

Ch06Lec2bZeus-V3Concepts illustrated in this example

Multiple conditions can be checked usingnested If statements to check each possiblecondition.

If one of the conditions is found to be true, thefunction immediately returns true and the functionis all over!If none of the conditions are true, the functionreturns false.

Page 34: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Completing the Zeus worldNow, we are ready to prevent lightning strikingthe same philosopher more than once.How do we know if a philosopher has alreadybeen struck by lightning?

When a lightning bolt strikes, the philosopher “iszapped” and the his color property is set to black. Checking color is a convenient way to check for aprevious lightning strike.

Page 35: Functions - Lehman Collegecomet.lehman.cuny.edu/stjohn/teaching/cmp108_s07/Ch06.pdf · Levels of Functions As with methods, functions can be either class-level or world-level. (The

Demo

Ch06Lec2bZeus-V4 Concept illustrated in this example

We only need to check for a possible duplicate-strike if we already know that a philosopher isclicked the way to handle this is to nest a second Ifstatement inside the first.