Page 1 of 1
New game uploaded: Ziggurat
Posted: Thu Apr 30, 2020 9:41 pm
by theelkmechanic
Ziggurat
View File
Ziggurat is a Z-machine interpreter written from scratch to take advantage of the power of the Commander X-16. Relive the nostalgia of playing your old Infocom adventures or new Inform stories.
(Note: This is a pre-alpha release. Almost nothing works correctly yet. Please be patient. Development is on
GitHub if you want to help out!)
Submitter
Submitted
04/30/20
Category
New game uploaded: Ziggurat
Posted: Fri May 01, 2020 4:33 am
by Perifractic
This is so cool to see. Text adventures are one of the most nostalgic and atmospheric things for me, personally. Can't wait to see this reach fruition. Keep at it! ??
New game uploaded: Ziggurat
Posted: Tue May 12, 2020 7:47 pm
by theelkmechanic
Fixed some annoying bugs, so version 3 games like Zork seem to work pretty well. Added a file chooser so you can actually select the game file you want to load now.
New game uploaded: Ziggurat
Posted: Wed May 13, 2020 8:48 pm
by theelkmechanic
And Zork will work even better now that the random number generator works. (Previously, fighting the troll tended to blow the game up.)
New game uploaded: Ziggurat
Posted: Tue May 19, 2020 6:16 am
by theelkmechanic
Revamped the character glyph mapping so I can have a lot more characters. Font is now in a separate file. Fixed a couple other bugs as well.
New game uploaded: Ziggurat
Posted: Thu Feb 18, 2021 3:03 am
by theelkmechanic
Finally got around to figuring out what broke file loading on r38. I think it was something in the new CBDOS implementation. To get it to work, I have to pass in $60 to SETLFS for the secondary address, otherwise the OPEN and CHKIN calls will succeed but the first CHRIN will fail. I can't just use the kernal LOAD routine because it assumes the first two bytes of the file are the load address and discards them, so it breaks the Z-code files. Anyway, it works now on r38, and I left v0.0.5 up there for anyone still using r37 (why?), and runs all the version 3 Z-code files I have. Next up I think the code needs a good refactor/reorganization before adding any new features/opcodes.
New game uploaded: Ziggurat
Posted: Fri Apr 01, 2022 3:21 am
by theelkmechanic
Finally updated after a long absence to work with the new r39 emulator/ROM. Kudos to
@Elektron72's addition of headerless loads and to
@Michael Steiland
@ZeroByte for fixing banked RAM loads, so now I don't have to read the game files one byte at a time!