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

From Chilipedia
Jump to: navigation, search
(Concepts Taught)
Line 1: Line 1:
Comparison and Boolean logic operators. Operators galore! Make <code>if</code> statements great again! Let the <code>int</code> dick measuring contests begin!
+
Comparison and Boolean logic operators. Operators galore! Make <code>if</code> statements great again! Let the <code>int</code> dick measuring contests begin! Also, collision detection between rectangles, which is useful for stuff.
  
 
== Concepts Taught ==
 
== Concepts Taught ==

Revision as of 13:43, 13 July 2017

Comparison and Boolean logic operators. Operators galore! Make if statements great again! Let the int dick measuring contests begin! Also, collision detection between rectangles, which is useful for stuff.

Concepts Taught

  • Comparison operators (>, <, ==, >=, <=, !=)
  • Boolean operators (&&, ||, !)
  • Using parentheses to change order of evaluation (effectively changing what an operator works on)
  • Collision (overlap) detection of rectangular regions

Video Timestamp Index

Coming soon!

Homework

Draw two targeting boxes, one controlled with the arrow keys and one stationary, and have the color of the mobile targeting box change whenever the targeting boxes overlap.

The solution is given in this video.

See also