For the lisp game jam http://itch.io/jam/january-2016-lisp-game-jam. Also practice for my future forever project game (not yet named). This is a roguelike where you play a necromancer able to summon skeletons and any other powers I have time for.

NOTES.org 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. http://foo.wyrd.name/en:bearlibterminal:design
  2. http://foo.wyrd.name/en:bearlibterminal:reference
  3. http://www.utf8-chartable.de/unicode-utf8-table.pl?utf8=0x
  4. * Tasks
  5. ** DONE Get bearlibterminal autowrapped and basic window working.
  6. CLOSED: [2016-01-01 Fri 22:52]
  7. ** High Priority
  8. *** TODO Tweak health, regen, and damage values.
  9. *** TODO Fix mana being allowed to go negative.
  10. *** TODO Add instructions page (auto show after start, h key to show later)
  11. *** DONE Add status line section for current attack
  12. CLOSED: [2016-01-12 Tue 18:52]
  13. *** DONE Create enemy AI
  14. CLOSED: [2016-01-11 Mon 23:57]
  15. - [X] Detect whether player can be seen
  16. - [X] Move to player
  17. - [X] Attack player
  18. *** DONE Create ally AI
  19. CLOSED: [2016-01-11 Mon 23:57]
  20. - [X] Detect whether enemies can be seen
  21. - [X] If enemies, move to them and attack.
  22. - [X] If not enemies, move toward player.
  23. *** ABORTED Make nearest-open-tile able to use self as the tile
  24. CLOSED: [2016-01-11 Mon 01:59]
  25. *** DONE Base random enemy/tomb placement off center of room, not edges
  26. CLOSED: [2016-01-11 Mon 01:55]
  27. *** DONE Randomly place ally tombs
  28. CLOSED: [2016-01-11 Mon 01:28]
  29. - [X] Player can wake up allies by entering room
  30. *** DONE Randomly place enemies
  31. CLOSED: [2016-01-11 Mon 00:32]
  32. *** DONE Create player character
  33. CLOSED: [2016-01-10 Sun 21:00]
  34. - [X] Health (no regeneration)
  35. - [X] Mana (regenerates per turn)
  36. - [X] Ranged attack (takes mana)
  37. - [X] Melee attack (weak, no mana cost)
  38. *** DONE Create vision
  39. CLOSED: [2016-01-10 Sun 03:49]
  40. *** DONE Create enemy characters (human knights?)
  41. CLOSED: [2016-01-08 Fri 23:37]
  42. *** DONE Add collision detection between all entities (for now nothing is allowed to collide)
  43. CLOSED: [2016-01-08 Fri 23:13]
  44. *** DONE Use axion's crawler for map generation
  45. CLOSED: [2016-01-08 Fri 20:52]
  46. *** DONE Fix broken viewport
  47. CLOSED: [2016-01-06 Wed 22:24]
  48. *** DONE Merge out-of-bounds logic between viewport and mobiles
  49. CLOSED: [2016-01-06 Wed 22:24]
  50. *** DONE Figure out how to get messages in exact center.
  51. CLOSED: [2016-01-02 Sat 03:33]
  52. ** Medium priority
  53. *** TODO Add unit + property tests for all pure functions
  54. *** TODO Add unit + property tests for all classes
  55. *** TODO Create configuration system that can control display and keybindings.
  56. *** TODO Create generalized input command dispatch. (consider generalizing this)
  57. *** TODO Update input handling for attacks to be less surprising
  58. *** TODO Update vision algorithm to be better
  59. *** TODO Update LOS algorithm to be better.
  60. *** TODO Improve ally AI to never go too far from player
  61. - Should be simple with the two dijikstra, just have to weight both I think?
  62. - Right now they just kind of beserk after the nearest enemy
  63. *** DONE Create map -> graphics layer so that isn't manual. (consider generalizing this)
  64. CLOSED: [2016-01-02 Sat 01:32]