Difference between revisions of "Beginner C++ Game Programming Tutorial 19"

From Chilipedia
Jump to: navigation, search
(Homework)
(Homework)
 
Line 18: Line 18:
  
 
For information on using the Mouse class to get mouse input, see this page: [[Mouse (Chili Framework)]].
 
For information on using the Mouse class to get mouse input, see this page: [[Mouse (Chili Framework)]].
 +
 +
The solution to this homework can be found in [https://www.youtube.com/watch?v=gB9zwetKOJk this video].
  
 
== See also ==
 
== See also ==

Latest revision as of 12:51, 22 January 2017

Welcome to the fantastic erotic world of mathematical vectors. Everything is different now. Every operator is overloaded.

Topics Covered

  • 2D vector math basics
  • Getting a reference to the current object with *this

Video Timestamp Index

Tutorial 19

Source Code Download

Poo Game GitHub Repository

Homework

This video has two homework assignments, both of which are related to vector math:

  1. There is something "wrong" with the movement of the Dude in the Poo Game. Chili wants you to figure out what it is and how to fix it.
  2. Overhaul the Poo Game so that it is controlled with the mouse instead of the arrow keys. When the left mouse button is down in the window, the Dude should move towards the position of the mouse pointer.

For information on using the Mouse class to get mouse input, see this page: Mouse (Chili Framework).

The solution to this homework can be found in this video.

See also