logo Use CA10RAM to get 10%* Discount.
Order Nowlogo
(5/5)

Create an Active Processing program that will draw some kind of repeating background. Choose your own background, be creative!

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Q1: REPEATING BACKGROUND [3 MARKS]

 

Create an Active Processing program that will draw some kind of repeating background. Choose your own background, be creative!

 

Create the usual setup() and draw()

functions.

From draw(), call a function drawBackground() that controls the drawing of the game background.

drawBackground() should

o Draw a horizon (e.g., the grass in the example).

o Draw a repeating set of items (e.g., the trees in the example). This should be done by

Writing a function that accepts the location of one item (as parameters), and draws the item at the given location.

Repeatedly calling the function to draw one item, each time passing a different position, to draw all of the items in the background.

The repeating item (e.g., tree in the example) must consist of at least two shapes.

All variables used in this question must be local. You should not use any global variables in Q1.

All dimensions should be relative to the canvas size, so that if the canvas size is changed, the size of all the items drawn will also change.

 

Q2: FLYING OBJECT [3 MARKS]

 

Add an object that flies from left to right, over and over.

 

The object can be simple but should be of your own design. It should use at least three shapes (e.g., the plane in the example uses one rectangle and two triangles).

The object’s coordinates should be stored globally, because we will need to remember where the object is from one frame to the next.

A drawXXXXX() function (where

XXXXX is your object) should use the

current position of the object to draw the object. The object should be near the top of the canvas.

A moveXXXXX() function (where XXXXX is your object) should update the position of the object, using a SPEED constant to determine how much the object should move from one frame to the next.

The moveXXXXX() function should make the object wrap, so that once it has gone off the right side of the canvas, it reappears from the left side of the canvas. The object should move completely out of view (off the canvas) before reappearing, and when it reappears, it should appear to emerge from the left side (i.e., you should not see the entire object pop into view: it will gradually fly off the right side of the canvas, then fly onto the canvas from the left side).

moveXXXXX() and drawXXXXX() should be called from draw().

 

 

Q3: DROP AN ITEM [7 MARKS]

 

In many programs in this course, an item like a moving ball has been controlled by keeping track of its position (x and y), and making a small change to that position each frame. That will NOT be done for the item dropped in this assignment. Instead, formulae can calculate the position of the item at any instant in time, using its initial velocity v (in pixels per second), the gravitational constant g (in pixels per second-squared), the initial x and y positions x0 and y0 (the position of the flying object at the time the item is dropped) and the time t (the number of “seconds” since the item was dropped) using the following formulae:

 

The initial velocity in the x direction is vx.

The initial velocity in the y direction is 0 (the plane is moving horizontally)

The x position at time t is x0 + vx t

The y position at time t is y0 + 0.5 g t2 (note that this is the position measured in Processing coordinates –

y increases as the item falls)

 

In this game, time will be measured as the number of frames elapsed since the program began (and because there are many frames per second, the game “seconds” do not correspond to clock time). Use a global variable to keep track of the time (we need to remember it from one frame to the next). Because the game “seconds” are not real seconds, and the unit of measurement is pixels rather than a real distance, gravity is also different from the constant you might be familiar with from physics. Try GRAVITY = 0.02 and adjust as desired.

 

Drop the item when the player presses the “Enter” key. At that moment, store the initial position of the item, and the time the item was dropped. While the item is in motion, in each frame, calculate the position of the item using the functions below. Use the coordinates returned from those functions to draw the item at the correct position.

 

The following functions should use the above formulae to calculate the current position of the item:

 

float calcTimeSinceDropped(float time) should calculate the time since the item was dropped. The time passed to the function should be the time the player hit Enter.

float calcItemX(float flightTime, float initX, float initV) (where Item is your item) should calculate the x coordinate of the item at the given flightTime (t in above formulae), with the given initial x position (x0) and initial velocity (vx).

float calcItemY(float flightTime, float initY) (where Item is your item) should calculate the y coordinate of the item at the given flightTime (t in above formulae) with the given initial y position (y0).

 

You must use the above functions in your program and calculate the coordinates of the item in every frame. DO

NOT store the item’s current coordinates globally.

 

When an item is in the air, print the coordinates in the top left of the canvas, as in the example image. In this question, if the item moves off the canvas, it should continue to move out of sight, with the coordinates telling the player where it is.

 

Use a boolean variable to make sure that while one item is in motion, another item cannot be dropped (i.e., nothing will happen if the user presses Enter).

 

 

Q4: ADD A TARGET [9 MARKS]

 

Draw a round target at the mouse’s x position within the horizon area (the green area in the example). The target should follow the mouse’s x position during gameplay.

 

Write a function boolean itemInObject(float objectX, float objectY, float objectDiameter, float itemX, float itemY) (where item is your item) that will test if the item’s position is within a circular object (specified by its center coordinates and its diameter).

 

Each frame when the item is in flight, use the

itemInObject function to test if the item has hit the target. If the item has hit the target, increase the score (which should be displayed in the top right), print a message (see below) and the boolean variable that tracks whether there is an item in motion should be set to false.

 

Write a function boolean belowGround(float y) that will test if the item’s y coordinate is below ground

level (off the bottom of the canvas), indicating that the item has missed the target.

 

Write a function boolean outOfView(float x) that will test if the item’s X coordinate is off the right side of the canvas. Because the target must be on the canvas, this also indicates that the item has missed the target.

 

Each frame when the item is falling, use the belowGround and outOfView functions to test if the item has missed the target.

 

At key points in the game, a message should be printed on the canvas, as show in the example. The message should be displayed for only a brief time after an event (long enough for it to be read, at least 60 frames) and then disappear.

 

Possible messages should be:

 

“ITEM RELEASED” (where ITEM is your item) when an item is dropped from your flying object.

“TARGET HIT” when the item hits the target.

“MISS!” when the item hits the ground without hitting the target, or goes off the right edge of the canvas.

 

Q5: ADD LEVELS [2 MARKS]

 

After every three points, increase the level in the game. The target should become smaller (until a minimum size is reached after approximately ten levels, at which point the target size will remain the same to the end of the game).

 

PROGRAMMING STANDARDS [6 MARKS]

 

Assignments must follow the programming standards document published on the course website on UMLearn, as well as any standards described in the lectures (e.g., CONSTANT_NAMES vs variableNames). Make appropriate use of functions, where each one does one thing, and one thing only.

 

(5/5)
Attachments:

Related Questions

. Introgramming & Unix Fall 2018, CRN 44882, Oakland University Homework Assignment 6 - Using Arrays and Functions in C

DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma

. The standard path finding involves finding the (shortest) path from an origin to a destination, typically on a map. This is an

Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t

. Develop a program to emulate a purchase transaction at a retail store. This program will have two classes, a LineItem class and a Transaction class. The LineItem class will represent an individual

Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th

. SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

. Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Um e HaniScience

964 Answers

Hire Me
expert
Muhammad Ali HaiderFinance

961 Answers

Hire Me
expert
Husnain SaeedComputer science

869 Answers

Hire Me
expert
Atharva PatilComputer science

705 Answers

Hire Me
April
January
February
March
April
May
June
July
August
September
October
November
December
2025
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
SunMonTueWedThuFriSat
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
04:30
05:00
05:30
06:00
06:30
07:00
07:30
08:00
08:30
09:00
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
14:30
15:00
15:30
16:00
16:30
17:00
17:30
18:00
18:30
19:00
19:30
20:00
20:30
21:00
21:30
22:00
22:30
23:00
23:30