Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > fastest or smallest 'switch' statment
2015-09-05 15:02
mhindsbo
Account closed

Registered: Dec 2014
Posts: 50
fastest or smallest 'switch' statment

I use the following code a lot to switch between two values and was wondering what others do and if there is a faster, smaller or simply more elegant way someone has come up with.
      lda #value1    ; default value: AR = value1
      ldy switch     ; get value of switch in YR 
      cpy #case1     ; compare switch 
      beq @cont
      lda #value2    ; if switch != #case1 then AR = value2

@cont ...            ; AR = value1/value2 depending on switch
 
... 14 posts hidden. Click here to view all posts....
 
2015-09-05 18:43
soci

Registered: Sep 2003
Posts: 473
Fungus: There was at least a '#' missing.
mod1 lda #value1
     eor #value1 ^ value2
     sta mod1 + 1

But this is not what he wants to do.

For $c0 and $d0 only a shorter table could do it fast.
      ldy switch
      lda table - $c0,y

table .fill $d0 - $c0, value1
      .byte value2
2015-09-05 19:46
lft

Registered: Jul 2007
Posts: 369
Quoting iAN CooG
a table, use y as index
ldy switch
lda table,y

table
byte value1, value2, etc


Sometimes this could be faster:

switch = * + 1
lda table
2015-09-05 20:23
mhindsbo
Account closed

Registered: Dec 2014
Posts: 50
Thanks for all the input. good stuff. I dont have $100 to spend on a table unfortunately.

I use it in a number of functions where the switch values are different (but all to switch between two states)... so it would lead to multiple tables.

The 'cmp' is probably the best in this use case, but it just felt so inelegant using it all the time ;-)
2015-09-05 20:50
Oswald

Registered: Apr 2002
Posts: 5017
can you cite a real world example where you need to use this ? maybe it can be done algorithmically better.
2015-09-05 23:20
mhindsbo
Account closed

Registered: Dec 2014
Posts: 50
In my game I have a number of objects (enemies, bullets, ...) and each has a specific identifier (0-255). In many of the object routines I check for a specific object or a specific state and take one of two actions or set one of two parameters.

Hope this helps explain it. Its always a balance of speed and size for a game. Tables can be obvious as can unrolled code or specific code for specific objects ... but with level graphics, music, etc. I find myself often in a compromise between the two.

E.g. the table lookup is faster, but cant do too many $100 tables. Specific code for each object is faster, but similar ends up eating up memory quickly.

Hope that gives some context. I am decently happy with what I mentioned originally in terms of compromise to switch between to values depending on a parameter ... but just thought I would seek some inspiration as well.

Thanks to everyone who chimed in!
2015-09-05 23:29
soci

Registered: Sep 2003
Posts: 473
Quoting mhindsbo
The 'cmp' is probably the best in this use case, but it just felt so inelegant using it all the time ;-)

Well, then use the one below for a change ;)
      lda switch         ; get value of switch in AR.
      eor #case1         ; compare switch.
      beq @cont
      lda #value2^value1 ; if switch != #case1 then AR = value2
@cont eor #value1        ; default value: AR = value1
                         ; AR = value1/value2 depending on switch

It's not faster or shorter, but it's only using the accumulator and does not destroy the carry.
2015-09-06 00:18
mhindsbo
Account closed

Registered: Dec 2014
Posts: 50
nice ... I like it :-)
2015-09-06 07:59
Bitbreaker

Registered: Oct 2002
Posts: 500
Depending on the values you wish as result, there's also the option to go like this:

cmp #switch
arr #$00


this would work if you need $80 and $00 as resulting values, so it would be interesting what the input and output values are, for some, there can be nice code constructs to generate the resulting values with a few mnemonics and without a branch.
Also, if the result would be just 2 values, the table approach woud just need 2 values strayed into the code somewhere, should be bearable in regards of memory footprint.

Another example that sets bit 4 depending on carry and toggling bit 5 on every call:

cmp #switch
and #$ef      ;clear bit 4
adc #$20      ;toggle bit 5 and set bit 4 depending on carry -> adc #$20/21
ora #$0f      ;set all lower bits again (might be omitted)
2015-09-06 09:22
lft

Registered: Jul 2007
Posts: 369
Quoting mhindsbo
In my game I have a number of objects (enemies, bullets, ...) and each has a specific identifier (0-255). In many of the object routines I check for a specific object or a specific state and take one of two actions or set one of two parameters.


This will again depend on circumstances, but sometimes it is useful to encode information about the objects in a flag table. If you have 256 objects, and you need to switch one way or the other depending on whether an object is edible, held, a key, dangerous etc., then you might encode that as flags in a table. Some flags will be static, and some will change during gameplay. Then you have a one-page table that tracks eight such flags per object.

; object number in y
lda flags1,y
and #$40 ; is this a bullet?
beq ...
2015-09-06 14:47
Frantic

Registered: Mar 2003
Posts: 1627
http://codebase64.org/doku.php?id=base:dispatch_on_a_byte
Previous - 1 | 2 | 3 - 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
csabanw
Fungus/Nostalgia
MAT64
Ray Manta/DataDoor
Slator/Arsenic/Stone..
Guests online: 177
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 Wonderland XIV  (9.6)
9 Memento Mori  (9.6)
10 Bromance  (9.5)
Top onefile Demos
1 It's More Fun to Com..  (9.7)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 TRSAC, Gabber & Pebe..  (9.5)
6 Rainbow Connection  (9.5)
7 Wafer Demo  (9.5)
8 Dawnfall V1.1  (9.5)
9 Quadrants  (9.5)
10 Daah, Those Acid Pil..  (9.5)
Top Groups
1 Oxyron  (9.3)
2 Nostalgia  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top NTSC-Fixers
1 Pudwerx  (10)
2 Booze  (9.7)
3 Stormbringer  (9.7)
4 Fungus  (9.6)
5 Grim Reaper  (9.3)

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