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

From Chilipedia
Jump to: navigation, search
(Created page with "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 == * Pract...")
 
(Download Materials)
Line 12: Line 12:
  
 
== Download Materials ==
 
== Download Materials ==
 +
* [http://www-cs-faculty.stanford.edu/~knuth/sgb-words.txt Five-letter word list]
 +
* [https://raw.githubusercontent.com/first20hours/google-10000-english/master/20k.txt Common word list]
  
 
== Homework ==
 
== Homework ==

Revision as of 21:41, 17 August 2017

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

Source Code

Werd 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