C++ Project#

I started this project as a way to get myself even more familiar with and comfortable writing C++ code. For this I’ve built everything myself aside from the renderer (which uses Pixie).

Systems I built include:

  • Map manager that can draw a map from a config file (deprecated in favour of wfc)
  • Sprite manager to draw both static and animated sprites
  • Load sprites, animated sprite data from config, with the ability to load and set different atlas’s
  • Display different sprites for character direction when moving
  • Movement and collision
  • Load tile relationship information data from config
  • Basic wave function collapse implementation using the tiled model

Related work:

  • Json Parser (I went on a detour to make this when I started making configs to load sprites and other data from)
  • Aseprite export script to write out json configs for atlas, sprites and animated sprite data
  • Tiled export script to write out json configs of tile relationship data based on the current map

Currently working on:

  • Font renderer
  • Overlapping model of wave function collapse

wfc-tile-model wfc-tile-model

Cpplox#

I am also currently working my way through Crafting Interpreters and writing the jlox language in C++ as I go.