Page 1 of 1

Equinoxe game progress ...

Posted: Mon Sep 12, 2022 6:30 pm
by svenvandevelde

Done more work on the engine ... so now the animations of the sprites can be dynamically loaded into vram and using a least recently used cache implementation, the images are placed with newer ones on the fly, when they are needed.

In other words, this is a VERA VRAM resource management method ...

Have a look at the below video. It has taken me a lot of work to make this ...

https://screencast-o-matic.com/watch/c3QlFQVOoQS


Equinoxe game progress ...

Posted: Mon Sep 12, 2022 6:49 pm
by desertfish

Very nice video Sven!!


Equinoxe game progress ...

Posted: Mon Sep 12, 2022 6:51 pm
by svenvandevelde


On 9/12/2022 at 8:49 PM, desertfish said:




Very nice video Sven!!



Thank you. Maybe I plan to document it later on but now first want to work on the enemy flow logic a bit more. To make more enemies and make more bullets etc.

So that the game get's more attractive, building on the core that is here now. It is also necessary to do, for a good and thorough testing of the game engine.

Maybe a video to explain it would do, but also that takes a lot of time to make. Not sure what is the best. Tried to write things down, but that is not interactive at all (with people).


Equinoxe game progress ...

Posted: Thu Sep 15, 2022 5:06 pm
by svenvandevelde

One thing I learn on the CX16 is that in order to do fancy things, like memory resource managers or heap managers, this results in a rather significant footprint of code and data. Like a hash management code and a hash table. Like linked lists and logic to manage these lists.... And the low memory area of the CX16 is limited, so it is important to ensure your game logic plus resource management logic all fits in the 0800 till 9Fxx memory area.


Equinoxe game progress ...

Posted: Tue Oct 11, 2022 3:16 pm
by Cyber

I very much like how video shows RAM contents in real time!


Equinoxe game progress ...

Posted: Wed Oct 12, 2022 10:16 am
by svenvandevelde


On 10/11/2022 at 5:16 PM, Cyber said:




I very much like how video shows RAM contents in real time!



It was a loţ of work to get to this point. A lot of base code written to make this all happen. I plan to make "how to" knowledge sharing materials on some of these topics later or early next year.