Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
 Welcome to our latest new user Harvey ! (Registered 2024-11-25) You are not logged in - nap
CSDb User Forums


Forums > C64 Productions > Sprites over rasterbars: where?
2012-04-27 13:06
Flavioweb

Registered: Nov 2011
Posts: 463
Sprites over rasterbars: where?

Someone can tell me a demo/intro name where are sprites movin' over rasterbars?
Or, at least, sprites without movement over rasterbars?
Tnx.
 
... 7 posts hidden. Click here to view all posts....
 
2012-04-27 18:24
Flavioweb

Registered: Nov 2011
Posts: 463
Quoting Skate
There are many. I leave others to give you examples. But i will try to give you the main idea about sprites with rasterbars.


I hope you were looking for the techniques. I thought it's better this way than examining the codes. If you just needed the demo names, you can forget about my answer. :)


Yes, i want to know "how things works".
I don't start this thread into "coding" section, because i don't know how many people want to share his knowledge, but if someone want to help me into learning how to do sprites moving over rasterbars... any help is welcome...

Maybe some moderator will change thread section =)
2012-04-28 00:10
Codey

Registered: Oct 2005
Posts: 79
also if you use fld for your timing, your rasters will be perfect and can have sprites moving over them iirc. the only drawback is no char mode..
2012-04-28 04:02
Flavioweb

Registered: Nov 2011
Posts: 463
Quoting Peiselulli
Maybe look into Jars's Revenge ingame code ... there are no rasterbars, but the border is disabled (which is more time critical) with moving sprites ...


At a first look, seems that is used a stable irq (inverted timer) with code for every line unrolled, and jitter is compensated "on the fly" when -cycles- goes on new raster line...
I'm on right path?
2012-04-28 06:14
Graham
Account closed

Registered: Dec 2002
Posts: 990
Real DYSP
2012-05-01 13:01
iAN CooG

Registered: May 2002
Posts: 3187
Dingy
2012-05-01 18:18
Zaz
Account closed

Registered: Mar 2004
Posts: 33
This Is What It Is
2012-05-04 20:52
ready.

Registered: Feb 2003
Posts: 441
a part of this demo:

20 Minutes in the Future
2012-08-28 21:34
raven
Account closed

Registered: Jan 2002
Posts: 137
Continuing what Skate has started, there's a 3rd method which is easiest to implement & also most versatile, as it basically takes care of itself.

Use a timer to count down from 63 and branch according to its value. This code must be done each line.
If you'd like bad-lines active, they'll require different handling.

The line code will look something like this:

lda #cycles
sbc $dd04
sta *+4
bcs *
lda #$a9
lda #$a9
...
bit $ea
...rest of raster code...


+ Sprites can be moved freely without restrictions, no update of the timings is required for non bad-lines
- Doesn't leave much raster-time per line
2012-08-29 13:06
Trash

Registered: Jan 2002
Posts: 122
Another simple solution if you dont want graphics behind the sprites is:
outer_loop:
lda #raster_row
ldx #count_rows
cmp $d012
bne * - 3
inner_loop:
lda coltable, x
sta $d020
sta $d021
lda $d011
and #7
ora #16
sta $d011
dex
bne inner_loop
; move sprites around here
jmp outer_loop
2012-08-30 07:10
Oswald

Registered: Apr 2002
Posts: 5086
or you can do it as Ninja, set a CIA timer to count down from 63 & set the irq vector over the CIA timer & set the register before to jump instruction $4c, and it will select the routine needed for the desired timing automagically. Beware, this eplanation is very rough, just added to drop in the idea.
Previous - 1 | 2 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
Teos
Bob/Censor Design
hedning/G★P
Unlock/Padua/Albion
4gentE/ΤRIΛD
Apollyon/ALD
Alakran_64
CopAss/Leader
zscs
Norrland/G*P/GSW
WVL/Xenon
katon/Lepsi De
Mason/Unicess
Hairdog/BOOM!^Dream
wil
Six/G★P
Da Snake
Guests online: 129
Top Demos
1 Next Level  (9.7)
2 13:37  (9.7)
3 Coma Light 13  (9.7)
4 The Demo Coder  (9.6)
5 Edge of Disgrace  (9.6)
6 Mojo  (9.6)
7 What Is The Matrix 2  (9.6)
8 Uncensored  (9.6)
9 Wonderland XIV  (9.6)
10 Comaland 100%  (9.6)
Top onefile Demos
1 Layers  (9.6)
2 Party Elk 2  (9.6)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.6)
5 Libertongo  (9.5)
6 Rainbow Connection  (9.5)
7 Onscreen 5k  (9.5)
8 Morph  (9.5)
9 Dawnfall V1.1  (9.5)
10 It's More Fun to Com..  (9.5)
Top Groups
1 Performers  (9.3)
2 Booze Design  (9.3)
3 Oxyron  (9.3)
4 Nostalgia  (9.3)
5 Triad  (9.2)
Top Webmasters
1 Slaygon  (9.6)
2 Perff  (9.6)
3 Morpheus  (9.5)
4 Sabbi  (9.5)
5 CreaMD  (9.1)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.038 sec.