-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFONTGRID.PAS
432 lines (394 loc) · 10.5 KB
/
FONTGRID.PAS
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
{$I COMPILER.INC}
unit FontGrid;
interface
uses
AplObj,
AplTypes,
Controls,
Graphics,
AplMath,
VeriType,
Drawing,
Undo,
Veridian;
type
PFontGrid = ^TFontGrid;
PFontGridEvent = ^TFontGridEvent;
PFontEditor = ^TFontEditor;
PFontEditorChangedEvent = ^TFontEditorChangedEvent;
TFontGridEvent = object(TEvent)
private
public
Character: char;
procedure Init; virtual;
procedure Assign(var ASource: TObject); virtual;
procedure Clear; virtual;
end;
TFontEditorChangedEvent = object(TFontGridEvent)
private
public
OldCharWidth: byte;
NewCharWidth: byte;
procedure Init; virtual;
procedure Assign(var ASource: TObject); virtual;
procedure Clear; virtual;
end;
TFontGrid = object(TPanel)
private
procedure DrawGridLines(ARect: TRect);
public
CurrentFont: PFont;
CharsPerRow: integer;
OnSelectChar: PEventProc;
LineColor: byte;
constructor Create(AFont: PFont; const AID: string; AParent: PControl);
procedure DrawChar(ARect: TRect; ACH: char; AClear: boolean);
procedure MouseDown(var AEvent: TMouseEvent); virtual;
procedure Layout; virtual;
procedure Init; virtual;
procedure Paint(ARect: TRect); virtual;
destructor Free; virtual;
end;
TFontEditor = object(TPanel)
private
FPreviousPixel: TPoint;
FButton: TButtonState;
public
CurrentFont: PFont;
CurrentChar: char;
OnCharacterChanged: PEventProc;
Scale: integer;
constructor Create(AFont: PFont; const AID: string; AParent: PControl);
destructor Free; virtual;
function GetPixelAt(AX, AY: integer; var APos: TPoint): boolean;
procedure Paint(ARect: TRect); virtual;
procedure Init; virtual;
procedure Layout; virtual;
procedure SetCurrentChar(AChar: char);
procedure MouseDown(var AEvent: TMouseEvent); virtual;
procedure MouseMove(var AEvent: TMouseEvent); virtual;
procedure MouseUp(var AEvent: TMouseEvent); virtual;
procedure PaintPixelAt(AX, AY: integer; APixelOn: boolean);
procedure PaintPixel(AColumn, ARow: integer; APixelOn: boolean);
end;
implementation
uses
AplUtils,
Palettes;
procedure TFontGridEvent.Init;
begin
inherited Init;
end;
procedure TFontGridEvent.Assign(var ASource: TObject);
var
source: PFontGridEvent;
begin
inherited Assign(ASource);
source := PFontGridEvent(@ASource);
Character := source^.Character;
end;
procedure TFontGridEvent.Clear;
begin
inherited Clear;
Character := #0;
end;
procedure TFontEditorChangedEvent.Init;
begin
inherited Init;
Clear;
end;
procedure TFontEditorChangedEvent.Assign(var ASource: TObject);
var
source: PFontEditorChangedEvent;
begin
inherited Assign(ASource);
source := PFontEditorChangedEvent(@ASource);
OldCharWidth := source^.OldCharWidth;
NewCharWidth := source^.NewCharWidth;
end;
procedure TFontEditorChangedEvent.Clear;
begin
inherited Clear;
OldCharWidth := 0;
NewCharWidth := 0;
end;
constructor TFontGrid.Create(AFont: PFont; const AID: string; AParent: PControl);
begin
inherited CreateParent(AID, AParent);
CurrentFont := AFont;
end;
procedure TFontGrid.Layout;
var
rows: integer;
begin
inherited Layout;
Width := CharsPerRow * (CurrentFont^.MaxWidth + 1) + 2 * BorderWidth;
rows := 256 div CharsPerRow;
if 256 mod CharsPerRow > 0 then
Inc(rows);
Height := rows * (CurrentFont^.Height + 1) + 2 * BorderWidth;
end;
procedure TFontGrid.DrawGridLines(ARect: TRect);
var
index: integer;
begin
for index := 1 to CharsPerRow - 1 do begin
Graph^.VLine(ARect.X + index * (CurrentFont^.MaxWidth + 1) - 1, ARect.Y, ARect.Height);
end;
for index := 1 to 255 div CharsPerRow do begin
Graph^.HLine(ARect.X, ARect.Y + index * (CurrentFont^.Height + 1) - 1,
ARect.Width);
end;
end;
procedure TFontGrid.DrawChar(ARect: TRect; ACH: char; AClear: boolean);
var
row, column, cx, cy: integer;
charRect: TRect;
begin
Graph^.SetForeColor(ForeColor);
Graph^.SetBackColor(BackColor);
row := ord(ACH) div CharsPerRow;
column := ord(ACH) mod CharsPerRow;
cx := column * (CurrentFont^.MaxWidth + 1) + OuterWidth;
cy := row * (CurrentFont^.Height + 1) + OuterWidth;
Graph^.State^.Font := CurrentFont;
charRect.CreateDims(ARect.X + cx, ARect.Y + cy,
CurrentFont^.MaxWidth, CurrentFont^.Height);
if AClear then begin
Graph^.FillRect(charRect);
Graph^.DrawText(charRect.X, charRect.Y, ACH);
end
else
Graph^.DrawText(ARect.X + cx, ARect.Y + cy, ACH);
end;
procedure TFontGrid.Paint(ARect: TRect);
var
ch: char;
cy, lineIndex, index: integer;
line: string;
drawRect: TRect;
begin
inherited Paint(ARect);
if CurrentFont = nil then
exit;
GetDrawRect(drawRect);
Graph^.SetForeColor(ForeColor);
Graph^.SetBackColor(BackColor);
Graph^.State^.Font := CurrentFont;
Graph^.State^.OverrideFontWidth := CurrentFont^.MaxWidth + 1;
for index := 0 to 256 div CharsPerRow - 1 do begin
line := '';
cy := index * (CurrentFont^.Height + 1) + OuterWidth;
for lineIndex := 0 to CharsPerRow - 1 do begin
ch := char(index * CharsPerRow + lineIndex);
line := line + ch;
end;
Graph^.DrawText(drawRect.X, drawRect.Y + cy, line);
end;
Graph^.SetForeColor(LineColor);
DrawGridLines(ARect);
end;
procedure TFontGrid.MouseDown(var AEvent: TMouseEvent);
var
ch: char;
index: integer;
event: TFontGridEvent;
begin
if AEvent.Handled then
exit;
index := AEvent.X div (CurrentFont^.MaxWidth + 1) +
(AEvent.Y div (CurrentFont^.Height + 1)) * CharsPerRow;
index := Clamp(index, 0, 255);
ch := char(index);
event.Create;
event.Character := ch;
Invoke(OnSelectChar, event);
inherited MouseDown(AEvent);
end;
procedure TFontGrid.Init;
begin
inherited Init;
CurrentFont := nil;
CharsPerRow := 16;
LineColor := egaDarkGray;
ForeColor := egaWhite;
BackColor := 0;
BorderStyle := bsNone;
OnSelectChar := nil;
end;
destructor TFontGrid.Free;
begin
inherited Free;
end;
constructor TFontEditor.Create(AFont: PFont; const AID: string; AParent: PControl);
begin
inherited CreateParent(AID, AParent);
CurrentFont := AFont;
end;
function TFontEditor.GetPixelAt(AX, AY: integer; var APos: TPoint): boolean;
begin
GetPixelAt := true;
APos.CreateCoords((AX - OuterWidth) div Scale, (AY - OuterWidth) div Scale);
if (APos.X < 0) or (APos.X >= CurrentFont^.MaxWidth) or
(APos.X < 0) or (APos.Y >= CurrentFont^.Height) then
GetPixelAt := false;
end;
procedure TFontEditor.PaintPixelAt(AX, AY: integer; APixelOn: boolean);
var
pos: TPoint;
begin
if not GetPixelAt(AX, AY, pos) then
exit;
PaintPixel(pos.X, pos.Y, APixelOn);
end;
procedure TFontEditor.PaintPixel(AColumn, ARow: integer; APixelOn: boolean);
var
drawRect, clipRect, rect: TRect;
begin
if CurrentFont = nil then
exit;
if not IsVisible then
exit;
Graph^.State^.Font := CurrentFont;
if APixelOn then
Graph^.SetBackColor(ForeColor)
else
Graph^.SetBackColor(BackColor);
rect.CreateDims(AColumn * Scale, ARow * Scale, Scale, Scale);
rect.Translate(ScreenX, ScreenY);
rect.Translate(Parent^.ContentOffsetX, Parent^.ContentOffsetY);
GetClipRect(clipRect);
rect.Intersect(clipRect);
Graph^.FillRect(rect);
end;
procedure TFontEditor.Paint(ARect: TRect);
var
xIndex, yIndex: integer;
begin
inherited Paint(ARect);
if CurrentFont = nil then
exit;
if not IsVisible then
exit;
Graph^.State^.Font := CurrentFont;
Graph^.SetBackColor(ForeColor);
for yIndex := 0 to CurrentFont^.Height - 1 do begin
for xIndex := 0 to CurrentFont^.MaxWidth - 1 do begin
if CurrentFont^.IsPixelSet(CurrentChar, xIndex, yIndex) then begin
PaintPixel(xIndex, yIndex, true);
end;
end;
end;
end;
procedure TFontEditor.Init;
begin
inherited Init;
CurrentFont := nil;
CurrentChar := #0;
ForeColor := egaWhite;
BackColor := 0;
Scale := 8;
OnCharacterChanged := nil;
FPreviousPixel.Create;
FButton := bsLeft;
end;
procedure TFontEditor.Layout;
begin
inherited Layout;
Width := CurrentFont^.MaxWidth * Scale + 2 * BorderWidth;
Height := CurrentFont^.Height * Scale + 2 * BorderWidth;
end;
procedure TFontEditor.SetCurrentChar(AChar: char);
begin
CurrentChar := AChar;
Draw;
end;
procedure DoSetPixel(AX, AY: integer; AData: pointer); far;
var
fontEditor: PFontEditor;
currentFont: PFont;
currentChar: char;
begin
fontEditor := PFontEditor(AData);
currentFont := fontEditor^.CurrentFont;
currentChar := fontEditor^.CurrentChar;
if fontEditor^.FButton = bsLeft then begin
currentFont^.SetPixel(currentChar, AX, AY);
fontEditor^.PaintPixel(AX, AY, true);
end
else begin
currentFont^.ClearPixel(currentChar, AX, AY);
fontEditor^.PaintPixel(AX, AY, false);
end;
end;
procedure TFontEditor.MouseDown(var AEvent: TMouseEvent);
var
event: TFontEditorChangedEvent;
pos: TPoint;
begin
inherited MouseDown(AEvent);
if AEvent.Handled then
exit;
if not GetPixelAt(AEvent.X, AEvent.Y, pos) then
exit;
FPreviousPixel.SetCoords(pos.X, pos.Y);
event.Create;
event.Character := currentChar;
event.OldCharWidth := currentFont^.CharWidth(CurrentChar);
BeginDrawing;
if AEvent.NewMouseState.ButtonState = [bsLeft] then begin
FButton := bsLeft;
DoSetPixel(pos.X, pos.Y, @self);
end
else if AEvent.NewMouseState.ButtonState = [bsRight] then begin
FButton := bsRight;
DoSetPixel(pos.X, pos.Y, @self);
end;
EndDrawing;
currentFont^.SetCharWidths;
event.NewCharWidth := currentFont^.CharWidth(CurrentChar);
Invoke(OnCharacterChanged, event);
end;
procedure TFontEditor.MouseMove(var AEvent: TMouseEvent);
var
event: TFontEditorChangedEvent;
pos: TPoint;
rect: TRect;
begin
if AEvent.Handled then
exit;
if VeridianApp^.LeftMouseDownControl = @self then
FButton := bsLeft
else if VeridianApp^.RightMouseDownControl = @self then
FButton := bsRight
else
exit;
GetPixelAt(AEvent.X, AEvent.Y, pos);
if FPreviousPixel.EqualsCoords(pos.X, pos.Y) then
exit;
event.Create;
event.Character := currentChar;
event.OldCharWidth := currentFont^.CharWidth(CurrentChar);
rect.CreateDims(0, 0, CurrentFont^.MaxWidth, CurrentFont^.Height);
BeginDrawing;
LineDraw(FPreviousPixel.X, FPreviousPixel.Y, pos.X, pos.Y,
rect, @DoSetPixel, @self);
EndDrawing;
currentFont^.SetCharWidths;
event.NewCharWidth := currentFont^.CharWidth(CurrentChar);
Invoke(OnCharacterChanged, event);
FPreviousPixel.SetCoords(pos.X, pos.Y);
inherited MouseMove(AEvent);
end;
procedure TFontEditor.MouseUp(var AEvent: TMouseEvent);
begin
if AEvent.Handled then
exit;
inherited MouseUp(AEvent);
end;
destructor TFontEditor.Free;
begin
inherited Free;
end;
begin
end.