Menu

[r3615]: / branches / parsnip / Src / UStructs.pas  Maximize  Restore  History

Download this file

568 lines (510 with data), 16.6 kB

  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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
{
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/
*
* Copyright (C) 2008-2013, Peter Johnson (www.delphidabbler.com).
*
* $Rev$
* $Date$
*
* Various structures. Some are extension of existing structures with added
* functionality.
}
unit UStructs;
interface
uses
// Delphi
Generics.Collections,
Types;
type
{
TRectEx:
Encapsulates a rectangle. Assignment compatible with TRect. Has methods to
manipulate and cast rectangle.
}
TRectEx = packed record
Left, Top, // Coordinates of top left corner of rectangle
Right, Bottom: Longint; // Coordinates of bottom right corner of rectangle
constructor Create(ALeft, ATop, ARight, ABottom: Longint);
{Record constructor. Sets initial field values.
@param ALeft [in] Left position of rectangle.
@param ATop [in] Top position of rectangle.
@param ARight [in] Right position of rectangle.
@param ABottom [in] Bottom position of rectangle.
}
constructor CreateBounds(ALeft, ATop, AWidth, AHeight: Longint); overload;
{Record constructor. Creates rectangle from its bounds.
@param ALeft [in] Left position of rectangle.
@param ATop [in] Top position of rectangle.
@param AWidth [in] Width of rectangle.
@param AHeight [in] Height of rectangle.
}
constructor CreateBounds(ALeft, ATop: Longint; ASize: TSize); overload;
{Record constructor. Creates rectangle from its bounds.
@param ALeft [in] Left position of rectangle.
@param ATop [in] Top position of rectangle.
@param ASize [in] Size of rectangle.
}
class operator Implicit(ARect: TRect): TRectEx;
{Implicit cast of TRect to a TRectEx.
@param ARect [in] TRect to be cast.
@return TRectEx resulting from cast.
}
class operator Implicit(ARect: TRectEx): TRect;
{Implicit cast of TRectEx to a TRect.
@param ARect [in] TRectEx to be cast.
@return TRect resulting from cast.
}
class operator Equal(R1, R2: TRectEx): Boolean;
{Equality test for two TRectEx rectangles.
@param R1 [in] Left hand operand.
@param R2 [in] Right hand operand.
@return True if R1 is the same as R2, False if different.
}
class operator NotEqual(R1, R2: TRectEx): Boolean;
{Inequality test for two TRectEx rectangles.
@param R1 [in] Left hand operand.
@param R2 [in] Right hand operand.
@return True if R1 is different to R2, False if same.
}
function Width: Longint;
{Width of rectangle.
@return Required width.
}
function Height: Longint;
{Height of rectangle.
@return Required height.
}
procedure InflateBy(DeltaX, DeltaY: Longint);
{Inflates or deflates the rectangle.
@param DeltaX [in] Amount to inflate horizontally. Deflated if -ve.
@param DeltaY [in] Amount to inflate vertically. Deflated if -ve.
}
function Inflate(DeltaX, DeltaY: Longint): TRectEx;
{Returns a copy of rectangle, inflated or deflated.
@param DeltaX [in] Amount to inflate horizontally. Deflated if -ve.
@param DeltaY [in] Amount to inflate vertically. Deflated if -ve.
@return Inflated copy of rectangle.
}
procedure OffsetBy(AX, AY: Longint);
{Offsets rectangle in X and Y directions.
@param AX [in] Horizontal offset.
@param AY [in] Vertical offset.
}
function GetTopLeft: TPoint;
{Read accessor for TopLeft property.
@return Co-ordinates of top left of rectangle.
}
procedure SetTopLeft(const Value: TPoint);
{Write accessor for TopLeft property.
@param Value [in] Coordinates of top left.
}
function GetBottomRight: TPoint;
{Read accessor for BottomRight property.
@return Co-ordinates of bottom right of rectangle.
}
procedure SetBottomRight(const Value: TPoint);
{Write accessor for BottomRight property.
@param Value [in] Coordinates of bottom right.
}
function ContainsPoint(const Pt: TPoint): Boolean;
{Checks if a point is contained in the rectangle.
@param Pt [in] Point to be tested.
@return True if point is contained in the rectangle, False if not.
}
function IsEmpty: Boolean;
{Checks if a rectangle is empty. Empty is defined as Right <= Left or
Bottom <= Top.
return True if empty, False if not.
}
procedure MakeEmpty;
{Makes the rectangle empty.
}
property TopLeft: TPoint read GetTopLeft write SetTopLeft;
{Coordinates of top left corner of rectangle}
property BottomRight: TPoint read GetBottomRight write SetBottomRight;
{Coordinates of bottom right corner of rectangle}
end;
{
TRange:
Encapsulates a range of integers with a method to test wheter a value falls
within the range.
}
TRange = record
strict private
type
/// <summary>Enumerator for TRange.</summary>
TEnumerator = class(TEnumerator<Integer>)
strict private
var
/// <summary>Minimum value of range being enumerated.</summary>
fMin: Integer;
/// <summary>Maximum value of range being enumerated.</summary>
fMax: Integer;
/// <summary>Current value in enumeration.</summary>
fCurrent: Integer;
/// <summary>Flag indicating if enumeration has begun.</summary>
fStarted: Boolean;
strict protected
/// <summary>Gets current value in enumeration.</summary>
function DoGetCurrent: Integer; override;
/// <summary>Moves to next value in enumeration, if any.</summary>
/// <returns>Boolean. True if a new value exists or False if there are
/// no more values in enumeration.</returns>
function DoMoveNext: Boolean; override;
public
/// <summary>Constructs new instance of enumerator for given range.
/// </summary>
constructor Create(const Range: TRange);
end;
public
Min, Max: Integer; // Minimum and maximum bounds of range
constructor Create(AMin, AMax: Integer);
{Record constructor. Initialises range bounds.
@param AMin [in] Minimum value that falls in range.
@param AMax [in] Maximum value that falls in range.
}
function Contains(const Value: Integer): Boolean;
{Checks if a value is contained in range.
@param Value [in] Value to be tested.
@return True if Value is in range, False otherwise.
}
function Constrain(const Value: Integer): Integer;
{Adjusts the given value to ensure it falls within the range.
@param Value [in] Value to be constrained.
@returns Value is returned unchanged if it falls within the range.
Otherwise Min is returned if Value is less than Min or Max is returned
if Value is greater than max.
}
/// <summary>Returns an enumerator that enumerates each integer contained
/// in the range.</summary>
/// <remarks>The caller must free the enumerator when done.</remarks>
function GetEnumerator: TEnumerator<Integer>;
end;
{
TSelection:
Encapsulates a selection defined by its starting position and its length.
An empty selection has length 0.
}
TSelection = record
public
StartPos: Cardinal; // Start of selection
Length: Cardinal; // Length of selection
constructor Create(AStartPos: Cardinal; ALength: Cardinal = 0);
{Record constructor. Initialises start position and length.
@param AStartPos [in] Start of selection.
@param Length [in] Length of selection. Optional.
}
end;
type
// Encapsulates a size quantity. Assignment compatible with TSize. Has methods
// to compare and cast size.
TSizeEx = record
public
// Width
CX: Integer;
// Height
CY: Integer;
// Constructs record with two given CX and CY field values
constructor Create(ACX, ACY: Integer);
// Enables TSize to be assigned to and compared with TSizeEx
class operator Implicit(S: Types.TSize): TSizeEx;
// Enables TSizeEx to be assigned to and compared with TSize
class operator Implicit(S: TSizeEx): Types.TSize;
// Tests for equality of TSizeEx records. Also works if one record is TSize.
class operator Equal(S1, S2: TSizeEx): Boolean;
// Tests for inequality of TSizeEx records. Also works if one record is
// TSize.
class operator NotEqual(S1, S2: TSizeEx): Boolean;
// Tests if a TSizeEx instance is zero (i.e. one of fields is zero)
function IsZero: Boolean;
end;
implementation
uses
// Delphi
Math;
{ TRectEx }
function TRectEx.ContainsPoint(const Pt: TPoint): Boolean;
{Checks if a point is contained in the rectangle.
@param Pt [in] Point to be tested.
@return True if point is contained in the rectangle, False if not.
}
begin
Result := Types.PtInRect(Self, Pt);
end;
constructor TRectEx.Create(ALeft, ATop, ARight, ABottom: Integer);
{Record constructor. Sets initial field values.
@param ALeft [in] Left position of rectangle.
@param ATop [in] Top position of rectangle.
@param ARight [in] Right position of rectangle.
@param ABottom [in] Bottom position of rectangle.
}
begin
Left := ALeft;
Top := ATop;
Right := ARight;
Bottom := ABottom;
end;
constructor TRectEx.CreateBounds(ALeft, ATop, AWidth, AHeight: Integer);
{Record constructor. Creates rectangle from its bounds.
@param ALeft [in] Left position of rectangle.
@param ATop [in] Top position of rectangle.
@param AWidth [in] Width of rectangle.
@param AHeight [in] Height of rectangle.
}
begin
Create(ALeft, ATop, ALeft + AWidth, ATop + AHeight);
end;
constructor TRectEx.CreateBounds(ALeft, ATop: Integer; ASize: TSize);
{Record constructor. Creates rectangle from its bounds.
@param ALeft [in] Left position of rectangle.
@param ATop [in] Top position of rectangle.
@param ASize [in] Size of rectangle.
}
begin
CreateBounds(ALeft, ATop, ASize.cx, ASize.cy);
end;
class operator TRectEx.Equal(R1, R2: TRectEx): Boolean;
{Equality test for two TRectEx rectangles.
@param R1 [in] Left hand operand.
@param R2 [in] Right hand operand.
@return True if R1 is the same as R2, False if different.
}
begin
Result := (R1.Left = R2.Left) and (R1.Top = R2.Top)
and (R1.Right = R2.Right) and (R1.Bottom = R2.Bottom);
end;
function TRectEx.GetBottomRight: TPoint;
{Read accessor for BottomRight property.
@return Co-ordinates of bottom right of rectangle.
}
begin
Result.X := Right;
Result.Y := Bottom;
end;
function TRectEx.GetTopLeft: TPoint;
{Read accessor for TopLeft property.
@return Co-ordinates of top left of rectangle.
}
begin
Result.X := Left;
Result.Y := Top;
end;
function TRectEx.Height: Longint;
{Height of rectangle.
@return Required height.
}
begin
Result := Abs(Bottom - Top);
end;
class operator TRectEx.Implicit(ARect: TRectEx): TRect;
{Implicit cast of TRectEx to a TRect.
@param ARect [in] TRectEx to be cast.
@return TRect resulting from cast.
}
begin
Result.Left := ARect.Left;
Result.Top := ARect.Top;
Result.Right := ARect.Right;
Result.Bottom := ARect.Bottom;
end;
class operator TRectEx.Implicit(ARect: TRect): TRectEx;
{Implicit cast of TRect to a TRectEx.
@param ARect [in] TRect to be cast.
@return TRectEx resulting from cast.
}
begin
Result.Left := ARect.Left;
Result.Top := ARect.Top;
Result.Right := ARect.Right;
Result.Bottom := ARect.Bottom;
end;
function TRectEx.Inflate(DeltaX, DeltaY: Integer): TRectEx;
{Returns a copy of rectangle, inflated or deflated.
@param DeltaX [in] Amount to inflate horizontally. Deflated if -ve.
@param DeltaY [in] Amount to inflate vertically. Deflated if -ve.
@return Inflated copy of rectangle.
}
begin
Result := Self;
Result.InflateBy(DeltaX, DeltaY);
end;
procedure TRectEx.InflateBy(DeltaX, DeltaY: Integer);
{Inflates or deflates the rectangle.
@param DeltaX [in] Amount to inflate horizontally. Deflated if -ve.
@param DeltaY [in] Amount to inflate vertically. Deflated if -ve.
}
begin
Dec(Left, DeltaX);
Inc(Right, DeltaX);
Dec(Top, DeltaY);
Inc(Bottom, DeltaY);
end;
function TRectEx.IsEmpty: Boolean;
{Checks if a rectangle is empty. Empty is defined as Right <= Left or
Bottom <= Top.
return True if empty, False if not.
}
begin
Result := Types.IsRectEmpty(Self);
end;
procedure TRectEx.MakeEmpty;
{Makes the rectangle empty.
}
begin
Left := 0;
Top := 0;
Right := 0;
Bottom := 0;
end;
class operator TRectEx.NotEqual(R1, R2: TRectEx): Boolean;
{Inequality test for two TRectEx rectangles.
@param R1 [in] Left hand operand.
@param R2 [in] Right hand operand.
@return True if R1 is different to R2, False if same.
}
begin
Result := not (R1 = R2);
end;
procedure TRectEx.OffsetBy(AX, AY: Integer);
{Offsets rectangle in X and Y directions.
@param AX [in] Horizontal offset.
@param AY [in] Vertical offset.
}
begin
Inc(Left, AX);
Inc(Right, AX);
Inc(Top, AY);
Inc(Bottom, AY);
end;
procedure TRectEx.SetBottomRight(const Value: TPoint);
{Write accessor for BottomRight property.
@param Value [in] Coordinates of bottom right.
}
begin
Right := Value.X;
Bottom := Value.Y;
end;
procedure TRectEx.SetTopLeft(const Value: TPoint);
{Write accessor for TopLeft property.
@param Value [in] Coordinates of top left.
}
begin
Left := Value.X;
Top := Value.Y;
end;
function TRectEx.Width: Longint;
{Width of rectangle.
@return Required width.
}
begin
Result := Abs(Right - Left);
end;
{ TRange }
function TRange.Constrain(const Value: Integer): Integer;
{Adjusts the given value to ensure it falls within the range.
@param Value [in] Value to be constrained.
@returns Value is returned unchanged if it falls within the range. Otherwise
Min is returned if Value is less than Min or Max is returned if Value is
greater than max.
}
begin
if Value < Min then
Exit(Min);
if Value > Max then
Exit(Max);
Result := Value;
end;
function TRange.Contains(const Value: Integer): Boolean;
{Checks if a value is contained in range.
@param Value [in] Value to be tested.
@return True if Value is in range, False otherwise.
}
begin
Result := Math.InRange(Value, Min, Max);
end;
constructor TRange.Create(AMin, AMax: Integer);
{Record constructor. Initialises range bounds.
@param AMin [in] Minimum value that falls in range.
@param AMax [in] Maximum value that falls in range.
}
begin
Min := AMin;
Max := AMax;
end;
function TRange.GetEnumerator: TEnumerator<Integer>;
begin
Result := TEnumerator.Create(Self);
end;
{ TRange.TEnumerator }
constructor TRange.TEnumerator.Create(const Range: TRange);
begin
inherited Create;
fMin := Range.Min;
fMax := Range.Max;
fCurrent := -MaxInt;
fStarted := False;
end;
function TRange.TEnumerator.DoGetCurrent: Integer;
begin
Result := fCurrent;
end;
function TRange.TEnumerator.DoMoveNext: Boolean;
begin
if fCurrent = fMax then
Exit(False);
if not fStarted then
begin
fCurrent := fMin;
fStarted := True;
end
else
Inc(fCurrent);
Result := True;
end;
{ TSelection }
constructor TSelection.Create(AStartPos, ALength: Cardinal);
{Record constructor. Initialises start position and length.
@param AStartPos [in] Start of selection.
@param Length [in] Length of selection. Optional.
}
begin
StartPos := AStartPos;
Length := ALength;
end;
{ TSizeEx }
constructor TSizeEx.Create(ACX, ACY: Integer);
begin
CX := ACX;
CY := ACY;
end;
class operator TSizeEx.Equal(S1, S2: TSizeEx): Boolean;
begin
// zero records are special: can be zero when only one of CX or CY is zero
if S1.IsZero and S2.IsZero then
begin
Result := True;
Exit;
end;
Result := (S1.CX = S1.CX) and (S1.CY = S2.CY);
end;
class operator TSizeEx.Implicit(S: Types.TSize): TSizeEx;
begin
Result.CX := S.cx;
Result.CY := S.cy;
end;
class operator TSizeEx.Implicit(S: TSizeEx): Types.TSize;
begin
Result.cx := S.CX;
Result.cy := S.CY;
end;
function TSizeEx.IsZero: Boolean;
begin
Result := (CX = 0) or (CY = 0);
end;
class operator TSizeEx.NotEqual(S1, S2: TSizeEx): Boolean;
begin
Result := not (S1 = S2);
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.