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

From Chilipedia
Jump to: navigation, search
(Const Correctness)
(Homework)
Line 16: Line 16:
 
# Make a second <code>DrawRect</code> function that takes a single point (top left corner) and the dimensions as parameters.
 
# Make a second <code>DrawRect</code> function that takes a single point (top left corner) and the dimensions as parameters.
  
The solution is given in a future video.
+
The solution is given in a [https://youtu.be/MOhF8Z2jW0k this] video.
  
 
== Downloads ==
 
== Downloads ==

Revision as of 21:16, 23 October 2016

References are sweet because they let us control our shit from far away. Remember the days when we had to actually get up to change the channel on the TV? Remember TV? Fuck that shit! Also, const correctness is for big dick gangstas that don't give any fucks.

Concepts Taught

  • References
  • Passing by reference
  • const correctness (redux)

Const Correctness

The use of const as as a means of communication by code and as method to prevent you and other people from shooting you (your code / themselves) in the dick is something that Chili finds cromulent. For some info on how const makes your code less shitty, check this. If you're still not sold (I happen to like being a human dumpster fire, thank you very much Chili), here is a video showing how using const can make your code a fuck of a lot faster: cool beans.

Video Timestamp Index

Coming soon!

Homework

  1. Move the drawing code for Dude from Game into the Dude class.
  2. Make a second DrawRect function that takes a single point (top left corner) and the dimensions as parameters.

The solution is given in a this video.

Downloads

See also