Search found 57 matches

by Jeffrey
Tue Jan 30, 2024 2:48 am
Forum: Demoscene
Topic: Color Wheel (~400 colors, low-res and hi-res)
Replies: 4
Views: 2399

Re: Color Wheel (~400 colors, low-res and hi-res)

How did you draw the polygons? I drew them in Python (pygame) first to re-create the original image/bitmap. Then I tiled it so the X16 could fit it into vram. This was to make sure that I had 396 colors. The problem with the original image is that its basicly a jpeg with many thousands of colors. I...
by Jeffrey
Mon Jan 29, 2024 3:06 am
Forum: Demoscene
Topic: Color Wheel (~400 colors, low-res and hi-res)
Replies: 4
Views: 2399

Re: Color Wheel (~400 colors, low-res and hi-res)

To give you an idea what are the top and bottom 142 polygons look here: image-6.png The top 142 yellow polygons share the same palette indexes as the bottom cyan polygons. In the gap between them, the palette is modified each frame. And at the end of each frame (so below the cyan polygons) the palet...
by Jeffrey
Wed Jan 24, 2024 6:49 pm
Forum: Demoscene
Topic: Color Wheel (~400 colors, low-res and hi-res)
Replies: 4
Views: 2399

Color Wheel (~400 colors, low-res and hi-res)

This is a demo showing a colorwheel with around 400 colors. # Low res screenshot low-res_screenshot.png # High res screenshot high-res_screenshot.png This was done by re-creating the original image by re-drawing all polygons (diamonds) and sorting all colors from top to bottom (which is 396 colors e...
by Jeffrey
Mon Sep 11, 2023 2:47 am
Forum: Demoscene
Topic: VERA FX demos for VCF
Replies: 11
Views: 9860

Re: VERA FX demos for VCF

Here are some videos (not mine) showing the demos running on real HW:





Note: music in those videos is post-edit ;)
by Jeffrey
Mon Sep 11, 2023 2:33 am
Forum: Demoscene
Topic: VERA FX demos for VCF
Replies: 11
Views: 9860

Re: VERA FX demos for VCF

Awesome :) Do you think you'll release the source for these demos as well? It would be a good example of how to use the FX features. The source is already available on my GitHub. Its not (at all) cleaned up yet: its part of a hardware test suite right now. (GitHub link : Mario Kart is in "tile...
by Jeffrey
Mon Sep 11, 2023 2:20 am
Forum: Demoscene
Topic: VERA FX demos for VCF
Replies: 11
Views: 9860

Re: VERA FX demos for VCF

Is Mario Kart for real or a cheat ? The 2Mb requirement made me wonder ; there's a pretty demo on here which looks spectacularly 3D but is really just all pre-calculated and rendered simply on the fly ; it's not doing 3D in real time. Not knocking the project, looks great ; things that Vera was rub...
by Jeffrey
Sun Sep 10, 2023 8:07 am
Forum: Games
Topic: Mini Motors
Replies: 40
Views: 26018

Re: Mini Motors

As long as you dont set DCSEL to anything other than 0 or 1 (or 63), the VERA FX should not act any differently than the older VERA firmware.

This sounds like a difference between emulator and hardware. To be entirely sure you would have to check on the older VERA firmware to compare.
by Jeffrey
Sun Sep 10, 2023 6:07 am
Forum: Demoscene
Topic: VERA FX demos for VCF
Replies: 11
Views: 9860

VERA FX demos for VCF

Here is the release of the two VERA FX demos created for VCF. 🥳 It contains the "3D Butterfly" and the "Mario Kart" demos. Run on real HW: - You need the latest VERA firmware (0.3.1). See here: https://github.com/X16Community/vera-module/releases (look in the Assets tab for downl...
by Jeffrey
Mon Aug 28, 2023 8:23 am
Forum: CX16 General Chat
Topic: Update upcoming VERA firmware (aka "VERA FX")
Replies: 8
Views: 3743

Re: Update upcoming VERA firmware (aka "VERA FX")

First, you're a wizard. Second, how long do these operations take? Specifically the 16 bit signed integer multiplication. If it's less than 200 cycles then you've saved me 8 banks of RAM and a kilobyte of low RAM. Do you just set the parameters and then read the result immediately? The FX Update ex...
by Jeffrey
Sun Aug 27, 2023 5:03 pm
Forum: CX16 General Chat
Topic: Update upcoming VERA firmware (aka "VERA FX")
Replies: 8
Views: 3743

Re: Update upcoming VERA firmware (aka "VERA FX")

Since no one from the team replied to my question on another topic, I'll repeat it here: I have a (stupid?) question for the people who worked on VERA FX, so here it goes: Why is there no option to read the entire 32-bit cache in one read operation, since there is an option to write it in one opera...