This post is to provide an update on the Sierra AGI Interpreter I’ve been working on, which I’ve previously shared.
The focus over the last three months has been on achieving a 3D effect. If you’re unfamiliar with these games, they were marketed as “3D” back in the day, though they are what we would now call pseudo-3D. In simple terms, this means that the character can move in front of or behind background objects based on the sprite’s y-position. Later Sierra games using the SCI engine included perspective, but this feature was never supported in AGI games.
For those interested in the technical aspects, here’s a link: http://agiwiki.sierrahelp.com/index.php ... ty_Screens
I’ve also prepared an animated GIF that illustrates this concept better than words. (Note the dithering effect is just an artifact of the animated gif tool)
Currently, I am handling this 3D effect in the IRQ handler. This works in most cases, but there are occasional IRQ overruns with large split sprites, such as the credits in certain introduction sequences.
My major goals for the next three months are:
- To implement a 3D effect backbuffer to reduce the risk of IRQ overruns.
- To add sprite garbage collection to free up VRAM for the buffer. The introductions contain many large, short-lived sprites (e.g., credits in the King’s Quest III intro), so garbage collection could effectively reclaim VRAM.
- To implement a "wander" feature, so that the chickens in King’s Quest III will roam around their cage without leaving, and the crocodiles in the moats will move around naturally.
Sierra AGI Interpreter Update November 2024
Forum rules
This section is for testing Commander X16 programs and programs related to the CX16 for other platforms (compilers, data conversion tools, etc.)
Feel free to post works in progress, test builds, prototypes, and tech demos.
Finished works go in the Downloads category. Don't forget to add a hashtag (#) and the version number your program was meant to run on. (ie: #R41).
This section is for testing Commander X16 programs and programs related to the CX16 for other platforms (compilers, data conversion tools, etc.)
Feel free to post works in progress, test builds, prototypes, and tech demos.
Finished works go in the Downloads category. Don't forget to add a hashtag (#) and the version number your program was meant to run on. (ie: #R41).
- desertfish
- Posts: 1094
- Joined: Tue Aug 25, 2020 8:27 pm
- Location: Netherlands
Re: Sierra AGI Interpreter Update November 2024
woah, is that gif from running on the x16? This has come a long way already! Amazing job
Re: Sierra AGI Interpreter Update November 2024
Yes, this is running on the Commander x16!desertfish wrote: ↑Sun Nov 03, 2024 12:14 pm woah, is that gif from running on the x16? This has come a long way already! Amazing job
Re: Sierra AGI Interpreter Update November 2024
We had fun demo'ing KQ1 on the X16 in VCF earlier this year!!
Though - sound support? It was something the CoCo systems never tackled. The early Sierra games had subtle background audio effects, like birds. Then the ultimate was that organ in KQ4.
Though - sound support? It was something the CoCo systems never tackled. The early Sierra games had subtle background audio effects, like birds. Then the ultimate was that organ in KQ4.
Re: Sierra AGI Interpreter Update November 2024
The engine is looking close to finished! Well done on the job! Are the views sprites or drawn to the bitmap layer? In my version I was using sprites which presents it's own challenges but I always assumed they'd be faster than a heap of pixel gets/sets.
I had sound working in my unfinished implementation of the AGI interpreter: https://github.com/cosmicr/astral_body/ ... in/sound.c
Feel free to steal it and butcher it how you like.
I had sound working in my unfinished implementation of the AGI interpreter: https://github.com/cosmicr/astral_body/ ... in/sound.c
Feel free to steal it and butcher it how you like.
You should have asked me for my Another World port - you could have demoed it too!We had fun demo'ing KQ1 on the X16 in VCF earlier this year!!