This file is indexed.

/usr/src/castle-game-engine-4.1.1/fonts/castlefont2pascal.pas is in castle-game-engine-src 4.1.1-1.

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
{
  Copyright 2004-2013 Michalis Kamburelis.

  This file is part of "Castle Game Engine".

  "Castle Game Engine" is free software; see the file COPYING.txt,
  included in this distribution, for details about the copyright.

  "Castle Game Engine" 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.

  ----------------------------------------------------------------------------
}

{ Converting fonts (TOutlineFont or TBitmapFont) to Pascal source code. }
unit CastleFont2Pascal;

interface

uses CastleOutlineFonts, CastleBitmapFonts, Classes;

{ @noAutoLinkHere }
procedure Font2Pascal(const OutlineFont: TOutlineFont;
  const UnitName, PrecedingComment, FontFunctionName: string; Stream: TStream);
  overload;

{ @noAutoLinkHere }
procedure Font2Pascal(const OutlineFont: TOutlineFont;
  const UnitName, PrecedingComment, FontFunctionName: string;
  const OutURL: string); overload;

{ @noAutoLinkHere }
procedure Font2Pascal(const BitmapFont: TBitmapFont;
  const UnitName, PrecedingComment, FontFunctionName: string; Stream: TStream);
  overload;

{ @noAutoLinkHere }
procedure Font2Pascal(const BitmapFont: TBitmapFont;
  const UnitName, PrecedingComment, FontFunctionName: string;
  const OutURL: string); overload;

implementation

uses SysUtils, CastleUtils, CastleStringUtils, CastleClassUtils, CastleDownload;

{ WriteUnit* ---------------------------------------------------------- }

procedure WriteUnitBegin(Stream: TStream; const UnitName, PrecedingComment,
  UsesUnitName, FontFunctionName, FontTypeName: string);
begin
  WriteStr(Stream,
    'unit ' + UnitName + ';' +nl+
    nl+
    '{' +nl+
    PrecedingComment+
    '}' +nl+
    nl+
    'interface'+nl+
    nl+
    'uses ' + UsesUnitName + ';' +nl+
    nl+
    'function ' + FontFunctionName + ': ' + FontTypeName + ';' +nl+
    nl+
    'implementation' +nl+
    nl+
    'uses SysUtils;' + nl+
    nl+
    'const' +nl
    );
end;

procedure WriteUnitCharHeader(Stream: TStream; c: char);
var
  CharName: string;
begin
  case c of
    ' ':CharName := 'space = ';
    '}':CharName := 'right curly brace = ';
    else
      (* Avoid C = '{' or '}', to not activate accidentaly
         ObjFpc nested comments feature. *)
      if c in ([' '..#255] - ['{', '}']) then
        CharName := ''''+c+''' = ' else
        CharName := '';
  end;

  WriteStr(Stream, Format('  Char%d : packed record { %s#%d }' +nl,
    [Ord(c), CharName, Ord(c)]));
end;

procedure WriteUnitEnd(Stream: TStream; const FontFunctionName, FontTypeName: string);
var
  i: Integer;
begin
  WriteStr(Stream, '  Data : ' + FontTypeName + 'Array = (' +nl+
    '    ');
  for i := 0 to 255 do
  begin
    WriteStr(Stream, '@Char' + IntToStr(i));
    if i < 255 then WriteStr(Stream, ', ');
    if (i+1) mod 20 = 0 then WriteStr(Stream, nl+'    ');
  end;

  WriteStr(Stream, ');' +nl+
     '' +nl+
     'var' +nl+
     '  FFont: ' + FontTypeName + ';' +nl+
     '' +nl+
        'function ' + FontFunctionName + ': ' + FontTypeName + ';' +nl+
     'begin' +nl+
     '  Result := FFont;' +nl+
     'end;' +nl+
     '' +nl+
     'initialization' +nl+
     '  FFont := ' + FontTypeName + '.Create;' +nl+
     '  FFont.Data := Data;' +nl+
     'finalization' +nl+
     '  FreeAndNil(FFont);' +nl+
     'end.' +nl);
end;

{ Write*Char ------------------------------------------------------ }

procedure WriteOutlineChar(Stream: TStream; TTChar: POutlineChar);

  function PolygonKindToString(PolygonKind: TPolygonKind): string;
  begin
    case PolygonKind of
      pkNewPolygon : Result := 'pkNewPolygon';
      pkLines : Result := 'pkLines';
      pkBezier : Result := 'pkBezier';
      pkPoint : Result := 'pkPoint';
      else raise EInternalError.Create(
        'PolygonKindToString: Undefined value of TPolygonKind');
    end;
  end;

var
  i, WrittenInLine, WriteItemsCount: Cardinal;
begin
  if TTChar^.Info.ItemsCount = 0 then
    WriteItemsCount := 1 else
    WriteItemsCount := TTChar^.Info.ItemsCount;

  WriteStr(Stream, Format(
    '    Info : TOutlineCharInfo;'+nl+
    '    Items : array[0..%d] of TOutlineCharItem;'+nl+
    '  end ='+nl+
    '  ( Info : ( MoveX: %g; MoveY: %g; Height: %g;'+nl+
    '             PolygonsCount: %d;'+nl+
    '             ItemsCount: %d );' +nl+
    '    Items :'+nl+
    '    ( ',
    [ WriteItemsCount-1,
      TTChar^.Info.MoveX, TTChar^.Info.MoveY, TTChar^.Info.Height,
      TTChar^.Info.PolygonsCount,
      TTChar^.Info.ItemsCount ]));

  if TTChar^.Info.ItemsCount = 0 then
    WriteStr(Stream, '(Kind: pkPoint; x:0; y:0) { dummy item }') else
  begin
    WrittenInLine := 0;
    { TTChar^.Info.ItemsCount > 0 so TTChar^.Info.ItemsCount-1 >= 0.
      So i may be Cardinal. }
    for i := 0 to TTChar^.Info.ItemsCount-1 do
    begin
      WriteStr(Stream, '(Kind: ' + PolygonKindToString(TTChar^.Items[i].Kind) + '; ');
      if TTChar^.Items[i].Kind = pkPoint then
       WriteStr(Stream, Format('x: %g; y: %g)', [TTChar^.Items[i].x, TTChar^.Items[i].y])) else
       WriteStr(Stream, Format('Count: %d)', [TTChar^.Items[i].Count]));

      Inc(WrittenInLine);
      if i < TTChar^.Info.ItemsCount-1 then
      begin
        WriteStr(Stream, ', ');
        if TTChar^.Items[i+1].Kind <> pkPoint then
          begin WriteStr(Stream, nl+'      '); WrittenInLine := 0 end else
        if WrittenInLine mod 30 = 0 then
          begin WriteStr(Stream, nl+'          '); WrittenInLine := 0 end;
      end;
    end;
  end;
  WriteStr(Stream, nl+'    )'+nl+'  );'+nl+nl);
end;

procedure WriteBitmapChar(Stream: TStream; BitmapChar: PBitmapChar);
var
  RowByteLength: Cardinal;
  i, j, DataSize: Cardinal;
const
  DataIndent = '             ';
begin
  RowByteLength := BitmapCharRowByteLength(BitmapChar);
  DataSize := RowByteLength * BitmapChar^.Info.Height;

  { DataSize = 0 only when BitmapChar^.Info.Width = 0 or BitmapChar^.Info.Height = 0.
    We must change it to 1, simply because array cannot have 0 elements
    in Pascal. }
  if DataSize = 0 then DataSize := 1;

  WriteStr(Stream, Format(
    '    Info: TBitmapCharInfo;'+nl+
    '    Data: packed array[0..%d]of Byte;'+nl+
    '  end ='+nl+
    '  ( Info : ( Alignment : %d;'+nl+
    '             XOrig : %g; YOrig : %g;'+nl+
    '             XMove : %g; YMove : %g;'+nl+
    '             Width : %d; Height : %d );'+nl+
    '    Data : (' +nl,
    [ DataSize-1,
      BitmapChar^.Info.Alignment,
      BitmapChar^.Info.XOrig, BitmapChar^.Info.YOrig,
      BitmapChar^.Info.XMove, BitmapChar^.Info.YMove,
      BitmapChar^.Info.Width, BitmapChar^.Info.Height ]));

  { write BitmapChar^.Data, row by row }
  if (BitmapChar^.Info.Width = 0) or (BitmapChar^.Info.Height = 0) then
    WriteStr(Stream, DataIndent + '0' + nl) else
  begin
    { because BitmapChar^.Info.Width > 0 and BitmapChar^.Info.Height > 0
      we have also RowByteLength > 0.
      So BitmapChar^.Info.Height-1 and RowByteLength-1 are >= 0.
      So i, j can be Cardinal values. }
    for j := 0 to BitmapChar^.Info.Height-1 do
    begin
      WriteStr(Stream, DataIndent);
      for i := 0 to RowByteLength-1 do
      begin
        WriteStr(Stream, '$' + IntToStr16(BitmapChar^.Data[i + j * RowByteLength], 2));
        if (j < BitmapChar^.Info.Height-1) or (i < RowByteLength-1) then WriteStr(Stream, ', ');
      end;
      WriteStr(Stream, nl);
    end;
  end;

  WriteStr(Stream, '           );' +nl+ '  );' +nl +nl);
end;

{ Font2Pascal ----------------------------------------------------- }

procedure Font2Pascal(const OutlineFont: TOutlineFont;
  const UnitName, PrecedingComment, FontFunctionName: string; Stream: TStream);
var
  c: char;
begin
  WriteUnitBegin(Stream, UnitName, PrecedingComment,
    'CastleOutlineFonts', FontFunctionName, 'TOutlineFont');

  for c := #0 to #255 do
  begin
    WriteUnitCharHeader(Stream, c);
    WriteOutlineChar(Stream, OutlineFont.Data[c]);
  end;

  WriteUnitEnd(Stream, FontFunctionName, 'TOutlineFont');
end;

procedure Font2Pascal(const BitmapFont: TBitmapFont;
  const UnitName, PrecedingComment, FontFunctionName: string; Stream: TStream);
var
  c: char;
begin
  WriteUnitBegin(Stream, UnitName, PrecedingComment,
    'CastleBitmapFonts', FontFunctionName, 'TBitmapFont');

  for c := #0 to #255 do
  begin
    WriteUnitCharHeader(Stream, c);
    WriteBitmapChar(Stream, BitmapFont.Data[c]);
  end;

  WriteUnitEnd(Stream, FontFunctionName, 'TBitmapFont');
end;

{ OutURL versions ---------------------------------------------------- }

procedure Font2Pascal(const OutlineFont: TOutlineFont;
  const UnitName, PrecedingComment, FontFunctionName: string;
  const OutURL: string); overload;
var
  Stream: TStream;
begin
  Stream := URLSaveStream(OutURL);
  try
    Font2Pascal(OutlineFont, UnitName, PrecedingComment, FontFunctionName, Stream);
  finally Stream.Free end;
end;

procedure Font2Pascal(const BitmapFont: TBitmapFont;
  const UnitName, PrecedingComment, FontFunctionName: string;
  const OutURL: string); overload;
var
  Stream: TStream;
begin
  Stream := URLSaveStream(OutURL);
  try
    Font2Pascal(BitmapFont, UnitName, PrecedingComment, FontFunctionName, Stream);
  finally Stream.Free end;
end;

end.