GAME:IT Junior Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a.

Slides:



Advertisements
Similar presentations
GAME:IT Junior Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a.
Advertisements

GAME:IT Junior Ping Pong Objectives: Review skills from previous lessons Create a 2-player game Create a scoring display system Using old and new skills,
Create a Simple Game in Scratch
Create a Simple Game in Scratch
Microsoft® Small Basic
Pong! “The oldest commercially available game in history” Resources created from the video tutorials provided by David Phillips on
 First you have to think up a what kind of game are you going to have it can be any thing from a brick breaker to an role playing game.
Justus Nyagwencha Game Maker. Getting started -> Resources The icons across the top are very important All the things you add to the game are called “Resources”.
Creative Commons Attribution 3.0 creativecommons.org/licenses/by/3.0/ Creating a Platformer in Game Maker Foundations of Interactive Game Design Prof.
Backgrounds, Inheritance in GameMaker (BrickMania 1 of 2) Foundations of Interactive Game Design Professor Jim Whitehead January 28, 2008 Creative Commons.
Extending the Pong Example Barb Ericson Georgia Tech June 2011.
GAME:IT Junior Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game.
GameMaker.  A lot of Different Definitions  Easier to Say What is NOT a Game  Movie is Not a Game  No Active Participation  Final Outcome is Fixed.
Creating pong in scratch Learning objectives: To learn how to program Sensing via colour and sprite proximity O:\ICT\ks3\scratch\scratch Exercises\Creating.
Game Design Creating a game called PING Phase 3: Steps for building basic game.
Introduction to TouchDevelop
Backgrounds, Inheritance in GameMaker (BrickMania 1 of 2) Foundations of Interactive Game Design Professor Jim Whitehead January 28, 2008 Creative Commons.
GAME:IT Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game.
Game Maker Day 2 Making a Maze Game.
Making a Boat Racing Game in Alice By Jenna Hayes Under the direction of Professor Susan Rodger Duke University, July 2010.
VIDEO GAME PROGRAMMING Video Game Programming Junior – DigiPutt INSTRUCTOR TEACHER’S ASSISTANT.
VIDEO GAME PROGRAMMING Video Game Programming Level One – Breakout INSTRUCTOR Big Dan Teague TEACHER’S ASSISTANT Delmar O'Donnell.
Using MIT Scratch for Programming and Control Exercise 3 Ball Game Year 9 ICT Autumn Term 2007.
Learning Game Maker Studio:
For the Students and Faculty at Athens Middle School Created by: Amanda Gibbs.
GAME:IT Helicopter Objectives: Review skills in making directional sprites Create objects that shoot and destroy for points Create random enemies on the.
GAME:IT Pinball Objectives: Review skills from Introduction Introduce gravity and friction Introduce GML coding into programming.
Catch the Clown Tutorial Tech Camp Fall 2008 Colorado School of Mines.
Game Maker Terminology
PowerPoint Practice Exercise 1 1.Save this file in your AV-TECH Folder as PowerPoint Practice Exercise 1. 2.Open this file in PowerPoint. 3.Edit each slide.
Game Maker – Getting Started What is Game Maker?.
Shooters in GameMaker J Parker.
Overview of Game Maker. Game Maker Version 7.0 Lite (free version) For MS-Windows platforms
Creating a Simple Game in Scratch Barb Ericson Georgia Tech June 2008.
Game Maker Galactic Mail Advanced Group: Complete Galactic Mail, then start developing an independent project.
Game Maker Tutorial.
2D Platform Game Game Maker Terminology. Object  Item in a game that has behavior, such as a main character who can move.
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
Computer Programming Modeling a Passive Solar Home.
Today we are learning to: Understand how actions and events control our game. Completing the catch the clown game – making a room – adding music Gather.
Today we are learning to: Understand how flow charts are used to design games Add events to our objects to control stuff in our game – (Using the user.
How to make a PowerPoint using Windows 07? Slide Design/Background Animation Custom Animation Adding a Picture.
Game Maker Evil Clutches.
Scratch for Interactivity Dr. Ben Schafer Department of Computer Science University of Northern Iowa.
Tank Game Part 3 of 6. Secondary Weapons and Pick ups Pick ups will appear randomly in the battle area and can be collected by driving into them. Each.
GAME:IT Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a simple.
Choose Sprite. Add collision event for object and add score action. Set your score to plus 100 and check relative.
ICT/COMPUTING RULES Only use software allowed by the teacher
Tank Game Part 2 of 6. Firing Shells Coming up… Players Scores Large Explosions Small Explosions Damage Health Bars Parent Shell Destructible Walls Reappear.
GAME:IT Mario Creating Platform Games Level 4 with GML Game Maker Language (GML) allows users more flexibility in game design. GML is similar to how real.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
AD 206 Intermediate CG : School of Art and Design : University of Illinois at Chicago : Spring 2009 Intro to Action Script 11 "The games of a people reveal.
Game Maker Tutorials Introduction Clickball IntroductionClickball Where is it? Shooting Where is it?Shooting.
Create a Halloween Computer Game in Scratch
Scratch for Interactivity
Game Maker Intro to Programming Game Maker Pop Quiz (Both Groups)
Your First & Last Name (Make sure you capitalize your first and last name!) Follow these instructions: 1. Center your name on the slide (use the “Centered”
Scratch for Interactivity
Loopy Motion Control.
Competitive Multiplayer Game
Finish the Scratch Presentations Game Maker
Intro to GML.
The One Where You Scratch
Tank Game Part 2 of 6.
Game Maker Intro to Programming Game Maker Pop Quiz (Both Groups)
Transparency & magic pixel
Creating a Simple Game in Scratch
So you want to be a Game Designer
Presentation transcript:

GAME:IT Junior Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a simple scoring system Using old and new skills, develop a game of “paddle ball”

Create 5 sprites for Game2. They are located in Game2 Resources. Name them spr_ball spr_edge spr_miss spr_score and spr_paddle NAME THEM EXACTLY AS INSTRUCTED 2

Create the 3 sounds from the sound files in Game 2 Resources. Name them exactly as instructed. Snd_beep = beep Snd_miss = miss Snd_hit = hit 3

Create a background. Load the background from the Game 2 Resources and name it bckgd_green 4

Create the above objects using the sprites you created earlier. Name them: obj_ball (visible and solid should be checked) obj_paddle (visible and solid should be checked) obj_hit (visible and solid should be checked) obj_miss (do not check either visible or solid) obj_edge (visible and solid should be checked) 5

Create a Room to look like the one below: obj_edge obj_score obj_miss 6

Programming the Objects: Obj_edge: Has no programming Obj_hit: Add Event: Collision with obj_ball Add 2 Actions: Action 2: Play Sound (on the main1 tab). Choose “snd_beep” from the drop down. Loop = False Action 1: Set Score (on the score tab) New Score = 1 Relative IS checked. (This increases your score when you hit the wall with the ball) 7

Obj_miss: Add Event: Collision with obj_ball Add 2 Actions Action 1: Set Score New Score = -2. Relative IS checked. (Decreases your score by 2 when you miss the ball) Action 2: Play Sound (on the main1 tab). Choose “snd_miss” from the drop down. Loop = False 8

Obj_paddle: Add 4 Events: Event 1: Collision with obj_edge Action: Move Fixed Applies to: Self Select center button only – this stops movement. Speed = 0 Relative is NOT checked Event 2: Keyboard Event – select Action: Move Fixed Applies to: Self Select center button only – this stops movement. Speed = 0 Relative is NOT checked 9

Obj_paddle (cont.) : Event 3: Keyboard Event Action: Move Fixed Applies to: Self Select the Arrow facing up Speed = 7 Relative is NOT checked Event 4: Keyboard Event Action: Move Fixed Applies to: Self Select the Arrow facing down Speed = 7 Relative is NOT checked 10

Obj_ball: Add Five Events: Event 1: Create Add 2 Actions: Action 1: Set Score New Score = 1 Relative is NOT checked Action 2: Move Fixed Applies to: Self Select the 4 corners Speed = 5 Relative is NOT checked 11

Obj_ball (cont): Event 2: Collision with obj_edge Add 2 Actions: Action 1: Bounce against solid objects Applies to: Self Precise = Precisely Against = Solid Objects Action 2: Play Sound Choose “snd_beep” from the drop down. Loop = False 12

Event 3: Collision with obj_paddle Add 2 Actions: Action 1: Move Fixed Applies to: Self Select the 3 Left Facing arrows Speed = 1 Relative IS checked – this makes the ball pick up speed each time it’s hit Action 2: Play Sound Choose “snd_hit” from the drop down. Loop = False Obj_ball (cont): 13

Event 4: Collision with obj_hit Action: Bounce against Solid Objects Applies to: Self Precise = Precisely Against = Solid Objects Event 5: Collision with obj_miss Add 2 Actions Action 1: Jump to Start Applies to: Self Action 2: Action 1: Move Fixed Applies to: Self Select the 4 corner arrows Speed = 5 Relative is NOT checked Obj_ball (cont): 14

Event 1: Draw 4 Actions Action 1: Draw Sprite (draw tab) Applied to: Self Sprite = spr_edge x = 0 y = 0 subimage = -1 Relative IS checked Obj_edge: One Event: Action 2: Set Font (draw tab) Font: choose “font basic” from drop down align: choose “left” from drop down

Action 3: Set Color Choose a color for the Player 1 Score Action 4: Draw Text Applies to: Self Text: 'Player 1: ' + string(score) x: 80 y: 40 Relative is NOT checked Obj_edge (cont): 16

Save the as Game2 It is now ready to test & play! Assignment: Modify the game so that the ball and paddle move faster (increase the difficulty of the game). Save it as Game 2A 17