Vision BASIC – A New C64 BASIC Compiler
Vision BASIC is the latest in a long, long line of tools intended to speed up the execution of C64 BASIC code.
Vision BASIC is the latest in a long, long line of tools intended to speed up the execution of C64 BASIC code.
In the final (for now, at least) entry in this series, we are going to pull everything together into a playable “Shoot the Invaders from Space” game that has keyboard and joystick control, killable enemies, moving bullets, and a scrolling star field backdrop …
There is one last popular option for scrolling the screen and covering it gives us an opportunity to introduce the special AMOS animation language, AMAL …
In the previous article, we created a tile map and did a simple scrolling screen using Screen Copy. While it worked, and demonstrated some cool aspects of AMOS, it wouldn’t really be efficient for use in an action/arcade game, is there a better option? Also, can we load the map from disk? There is also …
Up until now, our AMOS BASIC programming has relied on loading quite large full-screen images as our backgrounds. That is not memory efficient, plus creating maps and levels this way would be quite cumbersome. The go-to solution is to create a tiled map. We will look at loading and drawing Icons, and how we can …
Previously we looked at how AMOS can load images and configure screens, and layered scrolling via a feature called “Dual Playfield”. If we are going to create playable games then we will also need graphics to represent the player and the enemies. Colloquially we call these sprites, but in AMOS the term sprite has a …
Previously we looked at how AMOS can load images and configure screens, setting up screen resolution and number of colours. I also left you with a tease about this lesson, where I mentioned that AMOS has a feature where you can have layered scrolling via a feature called “Dual Playfield”. Let’s dig into that now …