Tagged Questions
14
votes
1answer
734 views
“Fun” C++ library that interprets ASCII figures in code - what is it called? (“Multi-Dimensional Analog Literals”)
A while ago I stumbled upon a C++ gem, a set of classes that through operator overloading and possibly some preprocessor tricks, let you define variables using in-code ASCII art:
Line x = |-----|; ...
4
votes
3answers
432 views
Help with algorithm to dynamically update text display
First, some backstory:
I'm making what may amount to be a "roguelike" game so i can exersize some interesting ideas i've got floating around in my head. The gameplay isn't going to be a dungeon ...