Difference between revisions of "Intermediate C++ Game Programming Tutorial 9"

From Chilipedia
Jump to: navigation, search
(Source Code)
(Video Timestamp Index)
Line 7: Line 7:
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==
 
[https://youtu.be/F9oqC1nscgE Tutorial 9]
 
[https://youtu.be/F9oqC1nscgE Tutorial 9]
 +
* Intro [https://youtu.be/F9oqC1nscgE 0:00]
 +
* Pixels and coordinates [https://youtu.be/F9oqC1nscgE?t=32 0:32]
 +
* <code>code syntax()</code>
  
 
== Source Code ==
 
== Source Code ==

Revision as of 03:08, 1 September 2019

We create an addictive little console game that will test both your vocabulary and your deductive powers while we flex our newfound std::muscles.

Topics Covered

  • Practicing std::vector/string/ifstream/cin/cout
  • std::tolower()

Video Timestamp Index

Tutorial 9

  • Intro 0:00
  • Pixels and coordinates 0:32
  • code syntax()

Source Code

Werd Game Repo

Download Materials

Homework

The homework is to modify Werd so that it uses a second word frequency list (linked above) to filter the words selected as targets so that the game doesn't make you guess rare-ass words that nobody knows.

See also