outline-work.txt 916 B

12345678910111213141516
  1. animated tiles?
  2. per-layer/per-sprite effect data
  3. font "layers", sort all layers (bitmap, font, tile) in one group, sprites get a sort and appear above that layer
  4. FILE formats?
  5. code to take something colliding with something else and "move it out" (for getting stuck in walls)
  6. function to get the slope of the line you're colliding with
  7. sliding functions?
  8. FILE STORAGE libraries, you can export any portions of a world to it, import likewise, edit likewise, just like a game except doesn't need all the parts and can't be run
  9. Collision proximity discards:
  10. Need a routine that's consistently effective for ~200 collisions per frame among objects of varied sizes distributed
  11. evenly across the scene/screen, all moving (approximately 50 objects of various types- not all registered to collide
  12. with all others- example, 12 enemies, 25 enemy bullets, 1 player, 12 player bullets = 12 + 25 + 144 = 181 collisions)