Strategies for 1 pixel vertical scrolling on 9918 VDP (MSX 1)

Pagina 6/6
1 | 2 | 3 | 4 | 5 |

Van Chilly Willy

Expert (103)

afbeelding van Chilly Willy

12-01-2021, 21:19

What about wrapping in a continuous loop?
What I am looking at is 2x the maps if I have more than one.
I suspect 4x if I double buffer with one 8x8 and one 4x8 tile

Van st1mpy

Paladin (932)

afbeelding van st1mpy

12-01-2021, 21:33

To explain the last solution more plainly.
If you think about just scrolling in one axis, you just need to duplicate one screen.
If the map scrolls like 1, 2, 3, 4. Then, you just need to do 1, 2, 3, 4, 1.
When you get to the last 1, you can jump back to the first one, and it continues.
You can do the same for the other axis.

Van albs_br

Champion (473)

afbeelding van albs_br

14-01-2021, 17:38

st1mpy wrote:

To explain the last solution more plainly.
If you think about just scrolling in one axis, you just need to duplicate one screen.
If the map scrolls like 1, 2, 3, 4. Then, you just need to do 1, 2, 3, 4, 1.
When you get to the last 1, you can jump back to the first one, and it continues.
You can do the same for the other axis.

A possible disadvantage of this approach may be if the map has updateble elements (a bridge that can be destroyed for example). Then it has to be updated on two places, if the element is in the repeated portion (1 on the above example).

Van santiontanon

Paragon (1805)

afbeelding van santiontanon

14-01-2021, 18:01

Indeed that has to be updated twice in this case. But that's a very common approach. I use exactly this replication technique in my "The Menace from Triton" game, and for enemies / items / scenery that is updated in the part that is replicated, I just update it twice. It's not too complicated, and the benefits of being able to do easy scrolling totally make up for having to copy things twice some times Smile

Pagina 6/6
1 | 2 | 3 | 4 | 5 |