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

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