+ All Categories
Home > Documents > The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is...

The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is...

Date post: 06-Oct-2020
Category:
Upload: others
View: 0 times
Download: 0 times
Share this document with a friend
60
The Counter Pattern
Transcript
Page 1: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Counter Pattern

Page 2: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 3: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the animation

name?

Page 4: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the animation

name?

blue

Page 5: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the animation

name?

How many frames?

blue

Page 6: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the animation

name?

How many frames?

blue

2

Page 7: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 8: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is Animation’s

name?

Page 9: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is Animation’s

name?blue

Page 10: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the Sprite’s name?What is

Animation’s name?

blue

Page 11: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the Sprite’s name?What is

Animation’s name?

bluefish

Page 12: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What code links the sprite to an

animation?

Page 13: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What code links the sprite to an

animation?.setAnimation

Page 14: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the initial

position?What code links the sprite to an

animation?.setAnimation

Page 15: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

What is the initial

position?What code links the sprite to an

animation?.setAnimation

300, 200

Page 16: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 17: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Set up sprites

Page 18: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Steps to repeat

Set up sprites

Page 19: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

Page 20: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

2. Test loop stopping condition

Page 21: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

2. Test loop stopping condition

3. Steps to repeat

Page 22: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

2. Test loop stopping condition

3. Steps to repeat

4. Progress to the loop stopping condition.

Page 23: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

2. Test loop stopping condition

3. Steps to repeat

4. Progress to the loop stopping condition.

Page 24: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

2. Test loop stopping condition

3. Steps to repeat

4. Progress to the loop stopping condition.

Was Pressed?

Page 25: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

2. Test loop stopping condition

3. Steps to repeat

4. Progress to the loop stopping condition.

Was Pressed?

Page 26: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

1. Initialize loop stopping variables

2. Test loop stopping condition

3. Steps to repeat

4. Progress to the loop stopping condition.

Was Pressed?

Page 27: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Counter Pattern

Page 28: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Counter Pattern

1. Take the current value of fish.x

Page 29: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Counter Pattern

1. Take the current value of fish.x

2. Add 1

Page 30: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Counter Pattern

1. Take the current value of fish.x

2. Add 13. Store it back

in fish.x

Page 31: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Counter Pattern

1. Take the current value of fish.x

2. Add 13. Store it back

in fish.x

Makes the variable increase by 1.

Page 32: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Counter Pattern

1. Take the current value of fish.x

2. Add 13. Store it back

in fish.x

Makes the variable increase by 1.

Page 33: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 34: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

(0,0)

(0,400) (400,400)

(400,0)

Page 35: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

(0,0)

(0,400) (400,400)

(400,0)

Page 36: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

(0,0)

(0,400) (400,400)

(400,0)

Page 37: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 38: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 39: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

These two lines mean the same

thing.

Page 40: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 41: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 42: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 43: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

RightX Pos

LeftX Neg

UpY Neg

DownY Pos

(0,0)

(400,400)

x

y

Page 44: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 45: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Car’s Initial Direction

Page 46: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Car’s Initial Direction

Page 47: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

The Car’s Initial Direction

Page 48: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 49: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Hit

Page 50: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Hit

Bounce off

Page 51: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 52: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Hit

Page 53: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Hit

Bounce off

Page 54: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Hit

Bo

un

ce o

ff

Page 55: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Hit

Bo

un

ce off

Page 56: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 57: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 58: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 59: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation
Page 60: The Counter Pattern - Gorski CompScigorskicompsci.ca/ICS2O/Unit3/ppt7_CounterPattern.pdf · What is the initial position? What code links the sprite to an animation?.setAni mation

Recommended