Final Smash

Página 6/7
1 | 2 | 3 | 4 | 5 | | 7

Por gdx

Enlighted (6429)

Imagen del gdx

13-06-2021, 15:00

Did you try to widen the area where we have to send the ball by using tiles instead of sprites?
This should allow the size of the area to vary depending on the difficulty.

Por aoineko

Paragon (1135)

Imagen del aoineko

13-06-2021, 16:25

The size of the target area already vary depending of the difficulty:
- Easy : 32 x 32 pixels
- Medium : 16 x 32 pixels
- Hard : 16 x 16 pixels
Anyway, I have no more room in VRAM to put tiles in alternative color.

Por albs_br

Champion (499)

Imagen del albs_br

14-06-2021, 17:41

This game is fantastic. The players have many colors like MSX 2, and are very well animated. The ball physics is excellent, too.

Por andrea.denara

Expert (73)

Imagen del andrea.denara

15-06-2021, 12:21

Allow me to give 1 suggestion:
The ball pitcher can consist of tiles + 3 sprites.
The sprites that overlap are 2 at the top (green and yellow) and 2 at the bottom (green and white)
In this way you avoid flickering while maintaining the graphic aspect
I think the ball is made up of 2 sprites, so you will never have sprites overlaps

Por gdx

Enlighted (6429)

Imagen del gdx

15-06-2021, 14:44

No sprites, just change the tile color can avoid flickering.

Por smx

Expert (74)

Imagen del smx

15-06-2021, 15:25

This is a demo of sprites + tiles and no flickering Demo

Por aoineko

Paragon (1135)

Imagen del aoineko

15-06-2021, 23:07

smx wrote:

This is a demo of sprites + tiles and no flickering Demo

Can you explain what you did? I don't know what I'm supposed to see. ^^
If you can make a ROM, it could be easier for me to check what you did through Meisei or Emulicious's VRAM viewer.

Por smx

Expert (74)

Imagen del smx

16-06-2021, 08:15

In "Final.dsk" run "Final.bas"
in "Final.asm" you can read a not optimized asm-code used in dsk file.

The starting point is that in rom file I see the ball pitcher consisting of 4 colors in 8 pixels.
I then used sprites + tiles to show the possibility of overcoming this limit.

In my file you see only a static image of course. But we have the ball pitcher and the ball on the left without flicker

Asm-Code is simple:

;******************************************************************************************
ORG $8400

;******************************************************************************************
ld BC,$02F0 ;= 8 x 94 = 752 = $02F0
LD HL,Patterns
LD DE,$0000
call $005C ;copy Patterns in VRAM

ld BC,$02F0 ;= 8 x 94 = 752 = $02F0
LD HL,Colors
LD DE,$2000
call $005C ;Copy Colors in VRAM

ld BC,$0300
LD HL,Pos
LD DE,$1800 ;Pos
call $005C ;Copy Position tiles in VRAM

;******************************************************************************************
ld BC,$00A0 ;Copy sprite patterns in VRAM
LD HL,SpritesPatterns
LD DE,$3800
call $005C

ld BC,$0020 ;Copy sprite position and attributes in VRAM
LD HL,SpritesPos
LD DE,$1B00
call $005C

ret

;********
DATA

Por sergarbes

Expert (116)

Imagen del sergarbes

15-07-2021, 13:02

aoineko wrote:

You can try the 48K ROM: fs0200.rom

I have tried it on the CocoaMSX an runs fine. Congratulations for the hard job done here! I'll try to make some time to load it on my Padial LPE Flash Cartridge and let you know.

Por aoineko

Paragon (1135)

Imagen del aoineko

15-07-2021, 19:00

Thanks

Página 6/7
1 | 2 | 3 | 4 | 5 | | 7