2018-08-13 22:17:36 +00:00
|
|
|
|
2019-12-03 04:16:11 +00:00
|
|
|
/*
|
|
|
|
This is a demo of an animated starfield.
|
|
|
|
The TMS9918 has no scrolling registers, so scrolling
|
|
|
|
requires rewriting the pattern table on each frame.
|
|
|
|
|
|
|
|
There is actually only one star in the pattern table,
|
|
|
|
just a single pixel. We move it vertically between 16
|
|
|
|
different character tiles (8 * 16 = 128 pixels high).
|
|
|
|
We then draw vertical stripes of 8 repeating consecutive
|
|
|
|
characters into the image table.
|
|
|
|
|
|
|
|
By randomly offsetting where we begin each stripe, we
|
|
|
|
create what appears to be a random starfield.
|
|
|
|
(If you look closely, you'll see there's exactly two
|
|
|
|
stars for every 8-pixel-wide vertical column.)
|
|
|
|
|
|
|
|
This demo uses an interrupt handler to increment a
|
|
|
|
counter 60 times per second. We use this counter to
|
|
|
|
determine the new position of the star pixel when we animate.
|
|
|
|
*/
|
|
|
|
|
2018-08-12 23:59:08 +00:00
|
|
|
#include <cv.h>
|
|
|
|
#include <cvu.h>
|
2017-05-02 13:09:53 +00:00
|
|
|
|
2019-12-03 04:16:11 +00:00
|
|
|
//#link "common.c"
|
2018-11-29 23:55:20 +00:00
|
|
|
#include "common.h"
|
2017-05-02 13:09:53 +00:00
|
|
|
|
2019-12-03 04:16:11 +00:00
|
|
|
// the starting character index in the pattern table
|
2018-11-29 23:55:20 +00:00
|
|
|
char starfield_base_char = 240;
|
2017-05-02 13:09:53 +00:00
|
|
|
|
2019-12-03 04:16:11 +00:00
|
|
|
// a random offset for every vertical column
|
2018-11-29 23:55:20 +00:00
|
|
|
const char star_yoffsets[32] = {
|
|
|
|
31, 11, 25, 10, 21, 1, 9, 6,
|
|
|
|
22, 3, 7, 14, 15, 18, 0, 29,
|
|
|
|
30, 5, 16, 28, 20, 12, 24, 17,
|
|
|
|
13, 8, 26, 19, 23, 27, 2, 4
|
|
|
|
};
|
2017-05-02 13:09:53 +00:00
|
|
|
|
2019-12-03 04:16:11 +00:00
|
|
|
// returns the tile index for every (x,y) position
|
2018-11-29 23:55:20 +00:00
|
|
|
byte starfield_get_tile_xy(byte x, byte y) {
|
|
|
|
return ((star_yoffsets[x] + y) & 15) + starfield_base_char;
|
2017-05-02 13:09:53 +00:00
|
|
|
}
|
|
|
|
|
2019-12-03 04:16:11 +00:00
|
|
|
// set up starfield image and pattern table
|
2018-11-29 23:55:20 +00:00
|
|
|
void starfield_setup() {
|
2019-08-19 14:24:22 +00:00
|
|
|
// clear star patterns
|
|
|
|
cvu_vmemset(PATTERN+starfield_base_char*8, 0, 16*8);
|
2019-12-03 04:16:11 +00:00
|
|
|
// write starfield image table
|
2018-11-29 23:55:20 +00:00
|
|
|
for (byte x=0; x<32; x++) {
|
|
|
|
for (byte y=0; y<28; y++) {
|
2019-08-19 14:24:22 +00:00
|
|
|
putcharxy(x, y, starfield_get_tile_xy(x, y));
|
2018-11-29 23:55:20 +00:00
|
|
|
}
|
2019-12-03 04:16:11 +00:00
|
|
|
// set value in color table for each character
|
2018-11-29 23:55:20 +00:00
|
|
|
cvu_voutb(COLOR_FG(CV_COLOR_WHITE),
|
|
|
|
COLOR+((starfield_base_char+x)>>3));
|
|
|
|
}
|
2017-05-02 13:09:53 +00:00
|
|
|
}
|
|
|
|
|
2019-12-03 04:16:11 +00:00
|
|
|
// call each frame to animate starfield
|
2018-11-29 23:55:20 +00:00
|
|
|
void starfield_update() {
|
|
|
|
static byte oldcounter;
|
|
|
|
const byte mask = 0x7f; // 128 star bytes
|
2019-12-03 04:16:11 +00:00
|
|
|
// interrupt counter increments every frame
|
|
|
|
// use this value to determine new star position
|
2018-11-29 23:55:20 +00:00
|
|
|
byte counter = vint_counter;
|
2019-12-03 04:16:11 +00:00
|
|
|
// base address in pattern table
|
2018-11-29 23:55:20 +00:00
|
|
|
word base = PATTERN + starfield_base_char * 8;
|
|
|
|
// erase old star, create new star in pattern table
|
|
|
|
cvu_voutb(0, base + (oldcounter & mask));
|
|
|
|
cvu_voutb(8, base + (counter & mask));
|
2019-12-03 04:16:11 +00:00
|
|
|
// make sure we remember counter value to erase
|
|
|
|
// in case we skip a frame
|
2018-11-29 23:55:20 +00:00
|
|
|
oldcounter = counter;
|
|
|
|
}
|
2017-05-02 13:09:53 +00:00
|
|
|
|
2018-11-29 23:55:20 +00:00
|
|
|
#ifdef __MAIN__
|
2017-05-02 13:09:53 +00:00
|
|
|
|
2018-11-29 23:55:20 +00:00
|
|
|
void main() {
|
|
|
|
vdp_setup();
|
2019-12-03 04:16:11 +00:00
|
|
|
// set up default interrupt handler
|
2018-11-29 23:55:20 +00:00
|
|
|
cv_set_vint_handler(&vint_handler);
|
|
|
|
starfield_setup();
|
|
|
|
cv_set_screen_active(true);
|
|
|
|
while(1) {
|
|
|
|
wait_vsync();
|
|
|
|
starfield_update();
|
|
|
|
}
|
2017-05-02 13:09:53 +00:00
|
|
|
}
|
2018-11-29 23:55:20 +00:00
|
|
|
|
|
|
|
#endif
|