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.5KB

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