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

From Chilipedia
Jump to: navigation, search
(Video Timestamp Index)
(Video Timestamp Index)
Line 6: Line 6:
  
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==
* Intro [https://youtu.be/PwuIEMUFUnQ 0:00]
+
* Intro [https://youtu.be/6VMq_2lH-Qo 0:00]
* Pixels and coordinates [https://youtu.be/PwuIEMUFUnQ?t=0m24s 0:24]
+
* Pixels and coordinates [https://youtu.be/6VMq_2lH-Qo?t=0m24s 0:24]
* <code>PutPixel()</code> parameter meanings [https://youtu.be/PwuIEMUFUnQ?t=2m11s 2:11]
+
* <code>PutPixel()</code> parameter meanings [https://youtu.be/6VMq_2lH-Qo?t=2m11s 2:11]
* Drawing outside of the screen and escaping debugger limbo [https://youtu.be/PwuIEMUFUnQ?t=4m00s 4:00]
+
* Drawing outside of the screen and escaping debugger limbo [https://youtu.be/6VMq_2lH-Qo?t=4m00s 4:00]
* Function call concept and syntax [https://youtu.be/PwuIEMUFUnQ?t=6m16s 6:16]
+
* Function call concept and syntax [https://youtu.be/6VMq_2lH-Qo?t=6m16s 6:16]
* Intellisense and Autocompletion [https://youtu.be/PwuIEMUFUnQ?t=9m10s 9:10]
+
* Intellisense and Autocompletion [https://youtu.be/6VMq_2lH-Qo?t=9m10s 9:10]
* Fixing syntax errors [https://youtu.be/PwuIEMUFUnQ?t=11m37s 11:37]
+
* Fixing syntax errors [https://youtu.be/6VMq_2lH-Qo?t=11m37s 11:37]
* C++ doesn't care about whitespace [https://youtu.be/PwuIEMUFUnQ?t=14m34s 14:34]
+
* C++ doesn't care about whitespace [https://youtu.be/6VMq_2lH-Qo?t=14m34s 14:34]
* Visualizing pixel image from code challenge [https://youtu.be/PwuIEMUFUnQ?t=15m56s 15:56]
+
* Visualizing pixel image from code challenge [https://youtu.be/6VMq_2lH-Qo?t=15m56s 15:56]
* Changing image position challenge (homework) [https://youtu.be/PwuIEMUFUnQ?t=16:37m24s 16:37]
+
* Changing image position challenge (homework) [https://youtu.be/6VMq_2lH-Qo?t=16:37m24s 16:37]
  
 
== Homework ==
 
== Homework ==

Revision as of 22:12, 1 August 2016

This tutorial mainly deals with how to call a function in C++ and basic syntax rules. We also talk about pixels, intellisense and other dumb bullshit.

Concepts Taught

  • Function calls
  • Basic C++ syntax

Video Timestamp Index

  • Intro 0:00
  • Pixels and coordinates 0:24
  • PutPixel() parameter meanings 2:11
  • Drawing outside of the screen and escaping debugger limbo 4:00
  • Function call concept and syntax 6:16
  • Intellisense and Autocompletion 9:10
  • Fixing syntax errors 11:37
  • C++ doesn't care about whitespace 14:34
  • Visualizing pixel image from code challenge 15:56
  • Changing image position challenge (homework) 16:37

Homework

The homework for this lesson is to modify the code to move the pixel image to the bottom right corner of the screen. The solution will be given at the beginning of the next tutorial.

See also