/usr/src/castle-game-engine-5.2.0/fonts/castleftfont.pas is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | { Copied to Castle Game Engine from FPC RTL (FPC RTL uses the same license
as Castle Game Engine, so no problem).
Adjusted to use CastleFreeType and CastleFreeTypeH.
}
{
This file is part of the Free Pascal run time library.
Copyright (c) 2003 by the Free Pascal development team
Basic canvas definitions.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{$mode objfpc}{$h+}
{ @exclude Not ready for PasDoc. }
unit CastleFtFont;
interface
uses SysUtils, Classes, FPCanvas, fpimgcmn, CastleFreeType, CastleFreeTypeH;
type
FreeTypeFontException = class (TFPFontException);
TFreeTypeFont = class (TFPCustomDrawFont)
private
FResolution : longword;
FAntiAliased : boolean;
FLastText : TStringBitmaps;
FIndex, FFontID : integer;
FFace : PFT_Face;
FAngle : real;
procedure ClearLastText;
protected
procedure DrawChar (x,y:integer; data:PByteArray; pitch, width, height:integer); virtual;
procedure DrawCharBW (x,y:integer; data:PByteArray; pitch, width, height:integer); virtual;
procedure SetName (AValue:string); override;
procedure SetIndex (AValue : integer);
procedure SetSize (AValue : integer); override;
function GetFlags (index:integer) : boolean; override;
procedure SetFlags (index:integer; AValue:boolean); override;
procedure DoAllocateResources; override;
procedure DoDeAllocateResources; override;
procedure DoCopyProps (From:TFPCanvasHelper); override;
procedure DoDrawText (atx,aty:integer; atext:string); override;
procedure DoGetTextSize (text:string; var w,h:integer); override;
function DoGetTextHeight (text:string) : integer; override;
function DoGetTextWidth (text:string) : integer; override;
procedure GetText (aText:string);
procedure GetFace;
public
constructor create; override;
destructor Destroy; override;
property FontIndex : integer read FIndex write SetIndex;
property Resolution : longword read FResolution write FResolution;
property AntiAliased : boolean read FAntiAliased write FAntiAliased;
property Angle : real read FAngle write FAngle;
end;
var
FontMgr : TFontManager;
procedure InitEngine;
procedure DoneEngine;
implementation
uses fpimage;
procedure InitEngine;
begin
if not assigned (FontMgr) then
FontMgr := TFontManager.create;
end;
procedure DoneEngine;
begin
if assigned (FontMgr) then
FontMgr.Free;
end;
constructor TFreeTypeFont.Create;
begin
inherited;
FFontID := -1;
FAntiAliased := True;
FResolution := DefaultResolution;
end;
destructor TFreeTypeFont.Destroy;
begin
ClearLastText;
inherited Destroy;
end;
procedure TFreeTypeFont.DoCopyProps (From:TFPCanvasHelper);
var f : TFreeTypeFont;
begin
inherited;
if from is TFreeTypeFont then
begin
f := TFreeTypeFont(from);
FIndex := F.Findex;
FAntiAliased := f.FAntiAliased;
FResolution := f.FResolution;
FAngle := f.FAngle;
end;
end;
procedure TFreeTypeFont.SetName (AValue:string);
begin
inherited;
ClearLastText;
if allocated then
FFontID := FontMgr.RequestFont(Name, FIndex);
end;
procedure TFreeTypeFont.SetIndex (AValue : integer);
begin
FIndex := AValue;
ClearLastText;
if allocated then
FFontID := FontMgr.RequestFont(Name, FIndex);
end;
procedure TFreeTypeFont.SetSize (AValue : integer);
begin
ClearLastText;
inherited;
end;
procedure TFreeTypeFont.ClearLastText;
begin
if assigned(FLastText) then
begin
FLastText.Free;
FlastText := nil;
end;
end;
procedure TFreeTypeFont.DoAllocateResources;
begin
InitEngine;
FFontID := FontMgr.RequestFont(Name, FIndex);
end;
procedure TFreeTypeFont.DoDeAllocateResources;
begin
end;
procedure TFreeTypeFont.DoGetTextSize (text:string; var w,h:integer);
var r : TRect;
begin
GetText (text);
FLastText.GetBoundRect (r);
with r do
begin
w := right - left;
h := top - bottom;
end;
end;
function TFreeTypeFont.DoGetTextHeight (text:string) : integer;
var r : TRect;
begin
GetText (text);
FLastText.GetBoundRect (r);
with r do
result := top - bottom;
end;
function TFreeTypeFont.DoGetTextWidth (text:string) : integer;
var r : TRect;
begin
GetText (text);
FLastText.GetBoundRect (r);
with r do
result := right - left;
end;
procedure TFreeTypeFont.SetFlags (index:integer; AValue:boolean);
begin
if not (index in [5,6]) then // bold,italic
inherited SetFlags (index, AValue);
end;
procedure TFreeTypeFont.GetFace;
begin
if not assigned(FFace) then
FFace := FontMgr.GetFreeTypeFont (FFontID);
end;
function TFreeTypeFont.GetFlags (index:integer) : boolean;
begin
if index = 5 then //bold
begin
GetFace;
result := (FFace^.style_flags and FT_STYLE_FLAG_BOLD) <> 0;
end
else if index = 6 then //italic
begin
GetFace;
result := (FFace^.style_flags and FT_STYLE_FLAG_ITALIC) <> 0;
end
else
result := inherited GetFlags (index);
end;
procedure TFreeTypeFont.GetText (aText:string);
var b : boolean;
begin
if assigned (FLastText) then
begin
if CompareStr(FLastText.Text,aText) <> 0 then
begin
FLastText.Free;
b := true;
end
else
begin
if FAntiAliased then
b := (FLastText.mode <> bt256Gray)
else
b := (FLastText.mode <> btBlackWhite);
if b then
FLastText.Free;
end;
end
else
b := true;
if b then
begin
FontMgr.Resolution := FResolution;
if FAntiAliased then
FLastText := FontMgr.GetStringGray (FFontId, aText, Size, Angle)
else
FLastText := FontMgr.GetString (FFontId, aText, Size, Angle);
end;
end;
procedure TFreeTypeFont.DoDrawText (atX,atY:integer; atext:string);
var r : integer;
begin
GetText (atext);
with FLastText do
for r := 0 to count-1 do
with Bitmaps[r]^ do
begin
if mode = btBlackWhite then
DrawCharBW (atX+x, atY+y, data, pitch, width, height)
else
DrawChar (atX+x, atY+y, data, pitch, width, height);
end;
end;
const
//bits : array[0..7] of byte = (1,2,4,8,16,32,64,128);
bits : array[0..7] of byte = (128,64,32,16,8,4,2,1);
procedure TFreeTypeFont.DrawChar (x,y:integer; data:PByteArray; pitch, width, height:integer);
procedure Combine (canv:TFPCustomCanvas; x,y:integer; c : TFPColor; t:longword);
var
pixelcolor: TFPColor;
begin
pixelcolor := AlphaBlend(canv.colors[x,y], FPImage.FPColor(c.red, c.green,c.blue, (t+1) shl 8 - 1));
canv.colors[x,y] := pixelcolor;
end;
var b,rx,ry : integer;
begin
b := 0;
for ry := 0 to height-1 do
begin
for rx := 0 to width-1 do
combine (canvas, x+rx, y+ry, FPColor, data^[b+rx]);
inc (b, pitch);
end;
end;
procedure TFreeTypeFont.DrawCharBW (x,y:integer; data:PByteArray; pitch, width, height:integer);
var rb : byte;
rx,ry,b,l : integer;
begin
b := 0;
for ry := 0 to height-1 do
begin
l := 0;
for rx := 0 to width-1 do
begin
rb := rx mod 8;
if (data^[b+l] and bits[rb]) <> 0 then
canvas.colors[x+rx,y+ry] := FPColor;
if rb = 7 then
inc (l);
end;
inc (b, pitch);
end;
end;
finalization
DoneEngine;
end.
|