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

From Chilipedia
Jump to: navigation, search
(Undo revision 613 by Chili (talk))
Line 2: Line 2:
  
 
== Concepts Taught ==
 
== Concepts Taught ==
* References
+
* <code>while</code> loop
* Passing by reference
+
* <code>for</code> loop
* Const correctness (redux)
+
* <code>do</code> ... <code>while</code> loop
 +
* Preincrement <code>++x</code> and postincrement <code>x++</code> operators
  
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==
Line 10: Line 11:
  
 
== Homework ==
 
== Homework ==
# Move the drawing code for Dude from Game into the Dude class.
+
# Write a routine to draw a rectangle on the screen.
# Make a second DrawRect function that takes a single point (top left corner) and the dimensions as parameters.
+
# Make it so that you can control the position of the rectangle with the arrow keys and the size of the rectangle with the WASD keys. For info on querying keyboard input for alphanumeric keys, see the section "Virtual Key Codes" on [[Keyboard (Chili Framework)#Virtual_Key_Codes|this page]].
  
 
The solution is given in a future video.
 
The solution is given in a future video.
Line 21: Line 22:
 
== See also ==
 
== See also ==
 
* [https://www.patreon.com/planetchili Planet Chili Patreon]
 
* [https://www.patreon.com/planetchili Planet Chili Patreon]
* [[Beginner C++ Game Programming Tutorial 12|Next in series (Tutorial 12)]]
+
* [[Beginner C++ Game Programming Tutorial 11|Next in series (Tutorial 11)]]
 
* [[Beginner C++ Game Programming Series]]
 
* [[Beginner C++ Game Programming Series]]

Revision as of 12:50, 20 October 2016

In this video we learn how to loop our shit. Fuckoff copy and paste. Die in a gasoline fire (just kidding, don't leave me baby!)

Concepts Taught

  • while loop
  • for loop
  • do ... while loop
  • Preincrement ++x and postincrement x++ operators

Video Timestamp Index

Coming soon!

Homework

  1. Write a routine to draw a rectangle on the screen.
  2. Make it so that you can control the position of the rectangle with the arrow keys and the size of the rectangle with the WASD keys. For info on querying keyboard input for alphanumeric keys, see the section "Virtual Key Codes" on this page.

The solution is given in a future video.

Downloads

See also