Difference between revisions of "Hardware 3D (C++ DirectX Graphics) Tutorial 8"

From Chilipedia
Jump to: navigation, search
(Created page with "A nice little component to encapsulate access to the keyboard input. == Topics Covered == * Keyboard state tracking / querying * Keyboard event queue w/ <code>Event</code> cl...")
 
(Video Timestamp Index)
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
  
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==
[https://youtu.be/QYGLXhulvVQ Tutorial 8]
+
[https://youtu.be/h7HCdEyGRRw Tutorial 8]
  
 
== Source Code ==
 
== Source Code ==
Line 15: Line 15:
  
 
== See also ==
 
== See also ==
* [[Hardware 3D (C++ DirectX Graphics) Tutorial 8|Next in series (Tutorial 9)]]
+
* [[Hardware 3D (C++ DirectX Graphics) Tutorial 9|Next in series (Tutorial 9)]]
 
* [[Hardware 3D Series (C++ DirectX Graphics)]]
 
* [[Hardware 3D Series (C++ DirectX Graphics)]]
 
* [https://www.patreon.com/planetchili Planet Chili Patreon]
 
* [https://www.patreon.com/planetchili Planet Chili Patreon]

Latest revision as of 13:09, 26 January 2019

A nice little component to encapsulate access to the keyboard input.

Topics Covered

  • Keyboard state tracking / querying
  • Keyboard event queue w/ Event class
  • Keyboard text stream queue for WM_CHAR
  • Handling WM_KILLFOCUS to prevent zombie keyholds
  • Handling WM_SYSKEYDOWN to get those sexy syskeys

Video Timestamp Index

Tutorial 8

Source Code

See also