Legend of the Gold Box... A game written for the LOWREZJAM 2018 game jam
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415161718192021222324252627282930313233
  1. # Goldbox 64
  2. Written for the (LOWREZJAM 2018)[https://itch.io/jam/lowrezjam-2018], Goldbox64 was intended as a 1980s SSI Goldbox RPG styled game. Sadly, I never got to writting the game portion of the project. As it stands, this is an editor which allows the user to make a map with three different wall sets. These maps can be loaded and saved, but not much else.
  3. Goldbox 64 is written in Python (3.6.6) using the PyGame library (1.9.4).
  4. ## Controls
  5. ### Main Menu
  6. * w - Move up an option
  7. * s - Move down an option
  8. * enter/return - Select highlighted option
  9. * escape - Quit
  10. ### Editor
  11. * w - Move Forward
  12. * s - Move Backward
  13. * d - Turns Right
  14. * a - Turn Left
  15. * q - Select previous wall index (output to terminal)
  16. * e - Select next wall index (output to terminal)
  17. * spacebar - Place wall
  18. * o - Save map
  19. * l - Load map
  20. * escape - (When saving/loading) Cancels operation, otherwise quit to Main Menu
  21. * enter/return - (When saving/loading) Saves/loads the map to/from the entered name.
  22. When saving or loading, it will initially appear as if nothing happened, but upon entering keys you will see their output display at the top of the screen. This is intended to be the file name.
  23. __NOTE:__ There is no filter for bad filenames and some characters will not display (such as spaces) even though they are valid names.
  24. All maps are saved in the maps folder.
  25. ## License
  26. I release this under the MIT license.