home · contact · privacy
Player earns a score by killing enemies.
[plomrogue] / src / misc.c
2013-08-27 Christian HellerPlayer earns a score by killing enemies.
2013-08-26 Christian HellerFor consistency mirror the replacement of "n" with...
2013-08-26 Christian HellerChanged letter controlling forward movement in cycle_ac...
2013-08-25 Christian HellerImproved error message phrasings.
2013-08-25 Christian HellerCorrected lack of some specific error messages.
2013-08-24 Christian HellerAdded further (though rarely informative) handling...
2013-08-21 Christian Hellermain() handles file IO now safely, exits on errors...
2013-08-21 Christian HellerApplied new safer file saving method to record file...
2013-08-21 Christian HellerSmall refactoring for greater readability.
2013-08-21 Christian HellerRe-factoring of save_game() for greater readability.
2013-08-21 Christian HellerCosmetic reformatting of save_game() code.
2013-08-21 Christian HellerSave game to a temp file first before overwriting old...
2013-08-21 Christian HellerIn save_game(), error-exit on earliest of writing error...
2013-08-21 Christian HellerMore expressive error messages in save_game().
2013-08-21 Christian HellerIn save_game(), check for error return code of fclose...
2013-08-21 Christian HellerMinor refactoring of save_game().
2013-08-21 Christian Hellersave_game() now checks for the error return code of...
2013-08-15 Christian HellerUse "uint8_t" instead of "unsigned char".
2013-08-15 Christian HellerRenamed all "fail" variables to "err", to reduce line...
2013-08-14 Christian HellerBuilt error checking into file reading/writing routines...
2013-08-14 Christian HellerMade game exiting and cleaning up more flexible. Provid...
2013-08-06 Christian HellerSimplified interface of (build/read/write)_map_objects...
2013-08-06 Christian HellerMoved pseudo-random generator into its own library...
2013-07-30 Christian HellerUse bit shifting instead of magic number in rrand().
2013-07-30 Christian HellerMinor formatting improvements.
2013-07-29 Christian HellerApplied new formatting and documentation rules to misc...
2013-07-20 Christian HellerMoved game exiting into its own function.
2013-07-19 Christian HellerReplaced dummy function by just passing NULL and checki...
2013-07-19 Christian HellerRead monster / item definitions from file "defs". File...
2013-07-18 Christian HellerEmptied map_objects library of stuff that fits better...
2013-07-18 Christian HellerSupport different kinds of monsters and items defined...
2013-07-10 Christian HellerRenamed "objects_on_map" library to "map_objects".
2013-07-10 Christian HellerAdded some externs.
2013-07-10 Christian HellerSplit roguelike.(c|h) into main.(c|h) and misc.(c|h).