Skip to content

libSDL2pp/libSDL2pp-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

371c507 · Oct 24, 2022

History

11 Commits
Oct 24, 2022
Mar 20, 2015
Mar 20, 2015
Dec 16, 2015
Mar 20, 2015
Oct 24, 2022
Mar 20, 2015
Dec 16, 2015
Mar 20, 2015
Mar 20, 2015
Mar 20, 2015
Mar 20, 2015
Mar 20, 2015
Jan 9, 2017
Mar 20, 2015
Mar 20, 2015

Repository files navigation

libSDL2pp tutorial

Build Status


Screenshot

Here's tutorial for libSDL2pp, C++11 bindings/wrapper for SDL2. It covers core functionality of the library, including initialization and window construction, loading image files, sprite and text rendering, animation, and event handling trying to demonstate library features in as little code as possible.

Lessons

The tutorial is split into lessons, which demonstrate gradual development of a simple application resembling a platformer game.

  • lesson00: SDL library initialization, window creation, image loading and rendering
  • lesson01: picking specific sprite from an image atlas
  • lesson02: main loop, event processing
  • lesson03: timing and animation
  • lesson04: keyboard control
  • lesson05: texture generation
  • lesson06: alpha blending and color modulation
  • lesson07: text rendering

Each lesson adds some lines to the code and, thus, functionality to the application. You can explore these lessons sequentially starting from the first one (in which you might find e.g. git diff lesson00.cc lesson01.cc helpful to see what was added by the next lesson), or just jump straight to the last one and see all bits at once.

Building

To build executables from these lessons, you need cmake, SDL2, SDL2_image and SDL2_ttf libraries and corresponding development files.

To build the tutorial, run

cmake . && make

which will produce a set of binaries: lesson00 .. lesson07.

Author

License

Lesson code is licensed under CC0. Bundled data files have separate licenses, see COPYRIGHT files under data/.