Difference between revisions of "Project1S21"

From Immersive Visualization Lab Wiki
Jump to: navigation, search
(Whack-a-Coronavirus)
(Whack-a-Mutant)
Line 1: Line 1:
 
=Whack-a-Mutant=
 
=Whack-a-Mutant=
  
In this first programming project you need to create a simple game in Unity that resembles Whack-a-Mole, except you're whacking Coronavirus mutants. The game needs to create a 3D world, even though we're only going to use it with mouse and keyboard (exception: extra credit option).
+
As if the original 2019 Coronavirus was not bad enough, there are now a number of mutated variants of it which are spreading among the world's population. One of the most concerning is the British B.1.1.7. Mutations develop randomly and in unforeseeable locations. Which makes for a great game concept!
  
The idea of the game is to find the mutated virus among an array of Coronaviruses, and click on it to eliminate it. The player has a limited amount of time to click on as many mutants as possible.
+
In this first programming project you need to create a simple game in Unity that resembles Whack-a-Mole, except you're whacking Coronavirus mutants. The game will exist in a 3D world, even though we're only going to use it with mouse and keyboard on a desktop or laptop computer (exception: extra credit option).
 +
 
 +
The idea of the game is to find the mutated viruses among an array of original Coronaviruses, and eliminate them. The player has a limited amount of time to eliminate as many mutants as possible.
  
 
The project is due Sunday, April 18th at 11:59pm PT.
 
The project is due Sunday, April 18th at 11:59pm PT.
Line 9: Line 11:
 
==Project (100 Points)==
 
==Project (100 Points)==
  
Download Unity and do the Unity tutorial. Learn how to make Unity apps and get an app working (any app). (10 points)
+
Download Unity and do a Unity tutorial. [https://learn.unity.com/ Unity's own tutorials] are great, but might also like the [https://drive.google.com/drive/folders/1OAT0axpdS46eNmh-6KGHX0GYR_as7w5W?usp=sharing tutorial from edX course CSE190x].
 +
 
 +
Learn how to make Unity apps and get an app working in Unity (any app). (10 points)
  
Use Unity to develop this game for your Windows or Mac computer. The game does not need to run in VR, but there is an extra credit option for it.
+
Use Unity to create a Coronavirus game for your Windows or Mac computer. The game does not need to run in VR, but there is an extra credit option for it.
  
 
Here are step by step instructions:
 
Here are step by step instructions:

Revision as of 17:25, 31 March 2021

Whack-a-Mutant

As if the original 2019 Coronavirus was not bad enough, there are now a number of mutated variants of it which are spreading among the world's population. One of the most concerning is the British B.1.1.7. Mutations develop randomly and in unforeseeable locations. Which makes for a great game concept!

In this first programming project you need to create a simple game in Unity that resembles Whack-a-Mole, except you're whacking Coronavirus mutants. The game will exist in a 3D world, even though we're only going to use it with mouse and keyboard on a desktop or laptop computer (exception: extra credit option).

The idea of the game is to find the mutated viruses among an array of original Coronaviruses, and eliminate them. The player has a limited amount of time to eliminate as many mutants as possible.

The project is due Sunday, April 18th at 11:59pm PT.

Project (100 Points)

Download Unity and do a Unity tutorial. Unity's own tutorials are great, but might also like the tutorial from edX course CSE190x.

Learn how to make Unity apps and get an app working in Unity (any app). (10 points)

Use Unity to create a Coronavirus game for your Windows or Mac computer. The game does not need to run in VR, but there is an extra credit option for it.

Here are step by step instructions:

  • Create a thin box that you use as a wall as the backdrop of your application. The wall's height should be approximately equal to your vertical field of view. (10 points)
  • Using a photo camera or your phone, take a picture of your surroundings (indoor or outdoor), or some other location near you, with your smartphone and import it into Unity as a texture asset. You are allowed to edit the image as much as you'd like. (10 points)
  • Paste the picture onto the wall so that it faces the user. (5 points)
  • Create and place a 3D array of 5x5 = 25 spheres in front of the wall. Each sphere should be the size of a tennis ball (0.07 meters diameter), and the balls' center points should be 0.14 meters apart from each other (horizontally and vertically). Color the spheres in a color of your choice. (15 points)
  • Create C# code to highlight a random sphere in a different color than the initial one. (5 points)
  • Create a cursor (e.g., a line, small sphere snapping to closest object, etc.) to allow the user to select a sphere by pointing at it with the mouse. (10 points)
  • Start the game when the user pushes the mouse button. This should start a 20 second timer, which needs to be displayed in text somewhere on the screen. Only display whole seconds, no fractions. (5 points)
  • Display a sphere counter in a different part of the screen. This should be a number that can be up to 3 digits long. It starts with zero. (5 points)
  • When the user clicks the mouse button, check if they hit the highlighted sphere and if so increase the sphere counter. (10 points)
  • Un-highlight the sphere and highlight a different one (randomly selected). (5 points)
  • If the user clicks on a sphere other than the highlighted one, the click should be ignored. (5 points)
  • Repeat the above until the timer is up. Then un-highlight all spheres and display a message such as "The time is up.". (5 points)

Here's a mock-up of what the game could look like:

S21-project1-mockup.jpg

Record a video off the screen while you play the game from start to finish. Make sure you include a shot of your final score. Upload the video to Canvas by the deadline. Also, add a comment stating which parts of the project you got done or didn't get done.

To create the video you don't need to use video editing software, but you should use software to capture your screen to a video file. To record off your desktop computer, we recommend OBS Studio, which is available free of charge for Windows and Mac.

Extra Credit (Max. 10 Points)

Options for extra credit are:

  • Instead of (or in addition to) highlighting the sphere that is to be clicked on, wrap a picture of a mole around it as a texture (5 points), or find (5 points) or create (10 points) a 3D model of a mole and load it instead of the spheres (10 points).
  • Add sound effects to your game (5 points).
  • Get your game working on your VR headset, or on your smartphone with a VR viewer (such as Google Cardboard). The video recording of a run of the game is still required and needs to be recorded off your VR device. (10 points)