aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-05-06Changed color handling to take ANSI 8bit colorsGravatar Jonas Gunz
added ansi_color_fg(R,G,B) and ..._bg(...) to generate ANSI-colors from RGB values replaced two spaces with tabs in every file to fix terrible tabbing (thanks atom...)
2019-05-05Makefile fixingGravatar Jonas Gunz
2019-04-21cInput: removed static buffer lengthGravatar jonas
.gitignore: added missing files
2019-03-28replaced sprintf with snprintf #8Gravatar jonas
2019-03-27Increased Buffer sizes in render()Gravatar Jonas Gunz
2019-03-26cRender: Added enableDebugInfo() to print debug infoGravatar jonas
2019-03-26cRender: Added divide by zero checkGravatar jonas
2019-03-20Remove obsolete features, cleanupGravatar Jonas Gunz
2019-03-20Added forced screen size and mute to cRender for testingGravatar Jonas Gunz
2019-03-20+cRender():setTargetFPS(uint) to set target FramerateGravatar Jonas Gunz
if set >1 render sleeps until target frametime is reached
2019-03-16Reworked color for xterm compatible terminals. #6Gravatar Jonas Gunz
_color can now be set as (FG | BG | MOD)
2019-03-16Removed collision detection in Framebuffer #4Gravatar Jonas Gunz
2019-03-07Added sanity cehck in cObject::moveObject() to check if hit object existsGravatar Jonas Gunz
2019-03-07Deactivated color to fix #5 temporarilyGravatar Jonas Gunz
2019-03-07Switched to unsigned cariables for all counting loops and buffer accessesGravatar Jonas Gunz
2019-03-06converting size variables to unsigned #1Gravatar Jonas Gunz
2019-03-06Updated Object writing to framebufferGravatar Jonas Gunz
cObject now handles writing itself to the framebuffer with write() instead of passing the cScreen pointer to cObjectHandler
2019-03-06Fixing counter underflow in CheckCollision() by casting to long intGravatar Jonas Gunz
2019-03-06Collision updateGravatar Jonas Gunz
Changed collision parameters for onCollision fuinctions to pass the movement delta of moved Object
2019-03-06Directory updatesGravatar Jonas Gunz
Moved source files to ./src and exmaple and test to ./example Updated Makefile and .doxygen to use those directorys