home *** CD-ROM | disk | FTP | other *** search
- ;
- ; PatchGetRGB32
- ;
- ; A program to fix a bug in graphics.library/GetRGB32():
- ; In V39 and V40 (Kickstart 3.0 and 3.1) GetRGB32() contains an
- ; unnecessary Check if the AGA Chipset is present and if not, it uses
- ; only 4 bits per gun instead of the 8 bits which exist in fact in the
- ; ColorTable to compute the 32bit results :-(
- ;
- ; This bug shows up when a graphics board with more than 4 bits per
- ; color gun is installed, a palette with color values that need more than 4
- ; bits per gun is build with the palette editor and then screens are
- ; switched: The lower bits of the palette are lost. This happened on my
- ; A2000 with Picasso gfx board and the palette of MagicWB2.0.
- ;
- ; PatchGetRGB32 looks if graphics.library V39+ and NO AGA are present and
- ; if the first few bytes of the GetRGB32() function are the known code
- ; with the unnecessary AGA-Test. If not, it quits with returncode 5,
- ; otherwise it uses exec.library/SetFunction() to install a short peace
- ; of code that is identical to the original version, but without the
- ; AGA-Check, and jumps into the original code after that.
- ;
- ; WARNING: There is a (small) possibility that C= develops a V41 Kickstart
- ; which needs the AGA check in GetRGB32() and is identical in the first
- ; bytes to V39/V40... So: No warranty that this will work with future
- ; OS versions (if they ever are developed...).
- ;
- ; Start of program: "Run >NIL: PatchGetRGB32"
- ; in User-Startup or later. If started after the Workbech screen is
- ; already visible, use "Palette env:sys/palette.prefs use"
- ; to correct an already trimmed palette.
- ;
- ; End of program: not implemented :-) Program Wait()s forever.
- ;
- ; Author: Detlef Wuerkner, Roonstr. 12, 35390 Giessen, Germany.
- ; EMail: TetiSoft@apg.lahn.de
- ;
- ; This is Public Domain.
-
- SIGBREAKF_CTRL_C = 1<<12
- _LVOOpenLibrary = -552
- _LVOCloseLibrary = -414
- _LVOForbid = -132
- _LVOPermit = -138
- _LVOSetFunction = -420
- _LVOGetRGB32 = -900
- _LVOWait = -318
-
- CODE
-
- move.l (4).w,a6 ;SysBase
- lea GraphicsName(pc),a1
- moveq.l #39,d0
- jsr _LVOOpenLibrary(a6)
- tst.l d0
- beq.s error ;GfxLib too old
- move.l d0,a1
- btst #3,236(a1) ;ChipRevBits0 GFXB_AA_LISA
- beq.s NoAGA
- jsr _LVOCloseLibrary(a6) ;AGA -> Patch not needed
- error
- moveq.l #5,d0
- rts
- NoAGA
- move.l d0,a2 ;Save GfxBase
- jsr _LVOForbid(a6) ;Ensure that no SetFunction()
- ;happens while we examine this
- move.l _LVOGetRGB32+2(a2),a0 ;Pointer to original GetRGB32()
- lea NewGetRGB32(pc),a1 ;Pointer to new GetRGB32()
- cmp.l (a0)+,(a1)+
- bne.s UnknownCode
- cmp.l (a0)+,(a1)+
- bne.s UnknownCode
- cmp.w (a0)+,(a1)+
- bne.s UnknownCode
- cmp.l #$082e0003,(a0)+
- bne.s UnknownCode
- cmp.l #$00ec6710,(a0)+
- bne.s UnknownCode
- cmp.l (a0)+,(a1)+
- bne.s UnknownCode
- cmp.l (a0)+,(a1)+
- bne.s UnknownCode
- cmp.l (a0)+,(a1)+
- bne.s UnknownCode
- cmp.l (a0)+,(a1)+
- beq.s DoPatch
- UnknownCode
- jsr _LVOPermit(a6)
- move.l a2,a1 ;GfxBase
- jsr _LVOCloseLibrary(a6)
- moveq.l #5,d0
- rts
- DoPatch
- move.l a0,OldGetRGB32_Cont
- lea NewGetRGB32(pc),a0
- move.l a0,d0
- move.l a2,a1
- move.w #_LVOGetRGB32,a0
- jsr _LVOSetFunction(a6)
- jsr _LVOPermit(a6)
- WaitForEver
- move.l #SIGBREAKF_CTRL_C,d0
- jsr _LVOWait(a6)
- bra.s WaitForEver
-
-
- NewGetRGB32 ;a0 ColorMap d0 firstcolor d1 ncolors a1 table
- movem.l a2-a3/d2-d7,-(sp)
- move.l 4(a0),a2 ;ColorMap.ColorTable
- move.l a2,a3
- ; btst #3,236(a6) ;ChipRevBits0 GFXB_AA_LISA
- ; beq.s GotLowColorBits ;DONT :-)
- tst.b 1(a0) ;ColorMap.Type == COLORMAP_TYPE_V1_2 ?
- beq.s GotLowColorBits
- tst.l 12(a0) ;ColorMap.LowColorBits
- beq.s GotLowColorBits
- move.l 12(a0),a3 ;LowColorBits instead of ColorTable to a3
- GotLowColorBits
- move.l OldGetRGB32_Cont,-(sp)
- rts ;Jump to original
-
- GraphicsName
- dc.b "graphics.library",0
-
- BSS
-
- OldGetRGB32_Cont
- ds.l 1
-
- END
-