mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 06:29:16 +02:00
+ {$linkframework Carbon}
* managed to completely disable anti-aliasing, and mostly fixed getpixel using least mean squares to find the closest palette entry git-svn-id: trunk@8345 -
This commit is contained in:
parent
c5b3180f5f
commit
a5ff6ec116
@ -20,6 +20,7 @@ uses
|
|||||||
{ the ones in the universal interfaces }
|
{ the ones in the universal interfaces }
|
||||||
cthreads, FPCMacOSAll;
|
cthreads, FPCMacOSAll;
|
||||||
|
|
||||||
|
{$linkframework Carbon}
|
||||||
|
|
||||||
type
|
type
|
||||||
TGraphProgram = function(p: pointer): longint;
|
TGraphProgram = function(p: pointer): longint;
|
||||||
@ -273,6 +274,8 @@ begin
|
|||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
CGColorSpaceRelease( colorSpace );
|
CGColorSpaceRelease( colorSpace );
|
||||||
|
{ disable anti-aliasing }
|
||||||
|
CGContextTranslateCTM(CreateBitmapContext,0.5,-0.5);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -409,13 +412,13 @@ begin
|
|||||||
end;
|
end;
|
||||||
32678:
|
32678:
|
||||||
begin
|
begin
|
||||||
CGContextSetRGBFillColor(offscreen,((color and $7ffff) shr 10) shl 3,((color shr 5) and 31) shl 3,(color and 31) shl 3,1);
|
CGContextSetRGBFillColor(offscreen,((color and $7ffff) shr 10)/31.0,((color shr 5) and 31)/31.0,(color and 31)/31.0,1);
|
||||||
CGContextSetRGBStrokeColor(offscreen,((color and $7ffff) shr 10) shl 3,((color shr 5) and 31) shl 3,(color and 31) shl 3,1);
|
CGContextSetRGBStrokeColor(offscreen,((color and $7ffff) shr 10)/31.0,((color shr 5) and 31)/31.0,(color and 31)/31.0,1);
|
||||||
end;
|
end;
|
||||||
65536:
|
65536:
|
||||||
begin
|
begin
|
||||||
CGContextSetRGBFillColor(offscreen,(word(color) shr 11) shl 3,((word(color) shr 5) and 63) shl 2,(color and 31) shl 3,1);
|
CGContextSetRGBFillColor(offscreen,(word(color) shr 11)/31.0,((word(color) shr 5) and 63)/63.0,(color and 31)/31.0,1);
|
||||||
CGContextSetRGBStrokeColor(offscreen,(word(color) shr 11) shl 3,((word(color) shr 5) and 63) shl 2,(color and 31) shl 3,1);
|
CGContextSetRGBStrokeColor(offscreen,(word(color) shr 11)/31.0,((word(color) shr 5) and 63)/63.0,(color and 31)/31.0,1);
|
||||||
end;
|
end;
|
||||||
else
|
else
|
||||||
runerror(218);
|
runerror(218);
|
||||||
@ -496,9 +499,12 @@ begin
|
|||||||
Color:=CurrentColor;
|
Color:=CurrentColor;
|
||||||
end;
|
end;
|
||||||
q_SetColor(Color);
|
q_SetColor(Color);
|
||||||
// writeln('direct: (',x,',',y,') := ',color);
|
|
||||||
EnterCriticalSection(graphdrawing);
|
EnterCriticalSection(graphdrawing);
|
||||||
CGContextStrokeRect(offscreen,CGRectMake(x-0.5,y-0.5,0.5,0.5));
|
CGContextBeginPath(offscreen);
|
||||||
|
CGContextMoveToPoint(offscreen,x,y);
|
||||||
|
CGContextAddLineToPoint(offscreen,x,y);
|
||||||
|
CGContextClosePath(offscreen);
|
||||||
|
CGContextStrokePath(offscreen);
|
||||||
UpdateScreen;
|
UpdateScreen;
|
||||||
LeaveCriticalSection(graphdrawing);
|
LeaveCriticalSection(graphdrawing);
|
||||||
end;
|
end;
|
||||||
@ -508,9 +514,12 @@ begin
|
|||||||
if Not ClipCoords(X,Y) Then
|
if Not ClipCoords(X,Y) Then
|
||||||
exit;
|
exit;
|
||||||
q_setcolor(Color);
|
q_setcolor(Color);
|
||||||
// writeln('regular: (',x,',',y,') := ',color);
|
|
||||||
EnterCriticalSection(graphdrawing);
|
EnterCriticalSection(graphdrawing);
|
||||||
CGContextStrokeRect(offscreen,CGRectMake(x-0.5,y-0.5,0.5,0.5));
|
CGContextBeginPath(offscreen);
|
||||||
|
CGContextMoveToPoint(offscreen,x,y);
|
||||||
|
CGContextAddLineToPoint(offscreen,x,y);
|
||||||
|
CGContextClosePath(offscreen);
|
||||||
|
CGContextStrokePath(offscreen);
|
||||||
UpdateScreen;
|
UpdateScreen;
|
||||||
LeaveCriticalSection(graphdrawing);
|
LeaveCriticalSection(graphdrawing);
|
||||||
end;
|
end;
|
||||||
@ -520,14 +529,14 @@ type
|
|||||||
pbyte = ^byte;
|
pbyte = ^byte;
|
||||||
var
|
var
|
||||||
p: pbyte;
|
p: pbyte;
|
||||||
rsingle, gsingle, bsingle: single;
|
rsingle, gsingle, bsingle, dist, closest: single;
|
||||||
count: longint;
|
count: longint;
|
||||||
red, green, blue: byte;
|
red, green, blue: byte;
|
||||||
begin
|
begin
|
||||||
if not ClipCoords(X,Y) then
|
if not ClipCoords(X,Y) then
|
||||||
exit;
|
exit;
|
||||||
p := pbyte(CGBitmapContextGetData(offscreen));
|
p := pbyte(CGBitmapContextGetData(offscreen));
|
||||||
y:=maxy-y-1;
|
y:=maxy-(y-1);
|
||||||
inc(p,(y*(maxx+1)+x)*4);
|
inc(p,(y*(maxx+1)+x)*4);
|
||||||
red:=p^;
|
red:=p^;
|
||||||
green:=(p+1)^;
|
green:=(p+1)^;
|
||||||
@ -535,23 +544,29 @@ begin
|
|||||||
case maxcolor of
|
case maxcolor of
|
||||||
16, 256:
|
16, 256:
|
||||||
begin
|
begin
|
||||||
rsingle:=red/252.0;
|
{ find closest color using least squares }
|
||||||
gsingle:=green/252.0;
|
rsingle:=red/255.0;
|
||||||
bsingle:=blue/252.0;
|
gsingle:=green/255.0;
|
||||||
for count := 0 to maxcolor-1 do
|
bsingle:=blue/255.0;
|
||||||
if (abs(colorpalette[count,1]-rsingle) < 1/64.0) and
|
closest:=255.0;
|
||||||
(abs(colorpalette[count,2]-gsingle) < 1/64.0) and
|
|
||||||
(abs(colorpalette[count,3]-bsingle) < 1/64.0) then
|
|
||||||
begin
|
|
||||||
q_getpixelproc:=count;
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
q_getpixelproc:=0;
|
q_getpixelproc:=0;
|
||||||
|
for count := 0 to maxcolor-1 do
|
||||||
|
begin
|
||||||
|
dist:=sqr(colorpalette[count,1]-rsingle) +
|
||||||
|
sqr(colorpalette[count,2]-gsingle) +
|
||||||
|
sqr(colorpalette[count,3]-bsingle);
|
||||||
|
if (dist < closest) then
|
||||||
|
begin
|
||||||
|
closest:=dist;
|
||||||
|
q_getpixelproc:=count;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
exit;
|
||||||
end;
|
end;
|
||||||
32678:
|
32678:
|
||||||
q_getpixelproc:=(red shl 7) or (green shl 2) or (blue shr 3);
|
q_getpixelproc:=((red div 8) shl 7) or ((green div 8) shl 2) or (blue div 8);
|
||||||
65536:
|
65536:
|
||||||
q_getpixelproc:=(red shl 8) or (green shl 3) or (blue shr 3);
|
q_getpixelproc:=((red div 8) shl 8) or ((green div 4) shl 3) or (blue div 8);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -714,17 +729,16 @@ end;
|
|||||||
procedure q_setrgbpaletteproc(ColorNum, RedValue, GreenValue, BlueValue: smallint);
|
procedure q_setrgbpaletteproc(ColorNum, RedValue, GreenValue, BlueValue: smallint);
|
||||||
begin
|
begin
|
||||||
{ vga is only 6 bits per channel, palette values go from 0 to 252 }
|
{ vga is only 6 bits per channel, palette values go from 0 to 252 }
|
||||||
{ the anti-aliasing darkens most stuff though, so pump up brightness a bit }
|
colorpalette[ColorNum,1]:=RedValue * (1.0/252.0);
|
||||||
colorpalette[ColorNum,1]:=RedValue * (1.0/249.0);
|
colorpalette[ColorNum,2]:=GreenValue * (1.0/252.0);
|
||||||
colorpalette[ColorNum,2]:=GreenValue * (1.0/249.0);
|
colorpalette[ColorNum,3]:=BlueValue * (1.0/252.0);
|
||||||
colorpalette[ColorNum,3]:=BlueValue * (1.0/249.0);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure q_getrgbpaletteproc (ColorNum: smallint; var RedValue, GreenValue, BlueValue: smallint);
|
procedure q_getrgbpaletteproc (ColorNum: smallint; var RedValue, GreenValue, BlueValue: smallint);
|
||||||
begin
|
begin
|
||||||
RedValue:=trunc(colorpalette[ColorNum,1]*249.0);
|
RedValue:=trunc(colorpalette[ColorNum,1]*252.0);
|
||||||
GreenValue:=trunc(colorpalette[ColorNum,2]*249.0);
|
GreenValue:=trunc(colorpalette[ColorNum,2]*252.0);
|
||||||
BlueValue:=trunc(colorpalette[ColorNum,3]*249.0);
|
BlueValue:=trunc(colorpalette[ColorNum,3]*252.0);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -788,7 +802,7 @@ begin
|
|||||||
_GraphResult:=grNoLoadMem;
|
_GraphResult:=grNoLoadMem;
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
// CGContextSetShouldAntialias(offscreen,0);
|
CGContextSetShouldAntialias(offscreen,0);
|
||||||
|
|
||||||
if (CreateHIView(myMainWindow,contentRect,graphHIView) <> noErr) then
|
if (CreateHIView(myMainWindow,contentRect,graphHIView) <> noErr) then
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user