| 1 | // Work in progress...
|
|---|
| 2 |
|
|---|
| 3 | {$IFDEF INTERFACE}
|
|---|
| 4 |
|
|---|
| 5 | // TGMatrix<TGMatrixIndex, TGMatrixIndex, TGMatrixItem> = class
|
|---|
| 6 | TGMatrix = class
|
|---|
| 7 | public
|
|---|
| 8 | type
|
|---|
| 9 | TSortCompare = function(const Item1, Item2: TGMatrixItem): Integer of object;
|
|---|
| 10 | TToStringConverter = function(Item: TGMatrixItem): string;
|
|---|
| 11 | TFromStringConverter = function(Text: string): TGMatrixItem;
|
|---|
| 12 | TRow = array of TGMatrixItem;
|
|---|
| 13 | TMerge = function(Item1, Item2: TGMatrixItem): TGMatrixItem of object;
|
|---|
| 14 |
|
|---|
| 15 | TIndex = record
|
|---|
| 16 | X: TGMatrixIndexX;
|
|---|
| 17 | Y: TGMatrixIndexY;
|
|---|
| 18 | end;
|
|---|
| 19 | private
|
|---|
| 20 | FItems: array of array of TGMatrixItem;
|
|---|
| 21 | FCount: TIndex;
|
|---|
| 22 | function GetItemXY(X: TGMatrixIndexX; Y: TGMatrixIndexY): TGMatrixItem;
|
|---|
| 23 | function GetItem(Index: TIndex): TGMatrixItem;
|
|---|
| 24 | function GetCapacity: TIndex;
|
|---|
| 25 | function GetLast: TGMatrixItem;
|
|---|
| 26 | function GetFirst: TGMatrixItem;
|
|---|
| 27 | procedure SetCapacity(const AValue: TIndex);
|
|---|
| 28 | procedure SetLast(AValue: TGMatrixItem);
|
|---|
| 29 | procedure SetFirst(AValue: TGMatrixItem);
|
|---|
| 30 | procedure PutItemXY(X: TGMatrixIndexX; Y: TGMatrixIndexY; const AValue: TGMatrixItem); virtual;
|
|---|
| 31 | procedure PutItem(Index: TIndex; const AValue: TGMatrixItem); virtual;
|
|---|
| 32 | procedure SetCount(const AValue: TIndex);
|
|---|
| 33 | public
|
|---|
| 34 | function Add(Item: TGMatrixItem): TIndex;
|
|---|
| 35 | procedure AddMatrix(Values: array of TRow);
|
|---|
| 36 | procedure AddList(List: TGMatrix);
|
|---|
| 37 | procedure Assign(Source: TGMatrix);
|
|---|
| 38 | procedure Clear; virtual;
|
|---|
| 39 | procedure Contract;
|
|---|
| 40 | function CreateIndex(X: TGMatrixIndexY; Y: TGMatrixIndexX): TIndex;
|
|---|
| 41 | procedure Delete(Index: TIndex); virtual;
|
|---|
| 42 | procedure DeleteItems(Index, Count: TIndex);
|
|---|
| 43 | function EqualTo(List: TGMatrix): Boolean;
|
|---|
| 44 | procedure Expand;
|
|---|
| 45 | function Extract(Item: TGMatrixItem): TGMatrixItem;
|
|---|
| 46 | procedure Exchange(Index1, Index2: TIndex);
|
|---|
| 47 | property First: TGMatrixItem read GetFirst write SetFirst;
|
|---|
| 48 | procedure FillAll(Value: TGMatrixItem);
|
|---|
| 49 | procedure Fill(Start, Count: TIndex; Value: TGMatrixItem);
|
|---|
| 50 | function Implode(RowSeparator, ColSeparator: string; Converter: TToStringConverter): string;
|
|---|
| 51 | procedure Explode(Text, Separator: string; Converter: TFromStringConverter; SlicesCount: Integer = -1);
|
|---|
| 52 | function IndexOf(Item: TGMatrixItem; Start: TIndex): TIndex;
|
|---|
| 53 | function IndexOfList(List: TGMatrix; Start: TIndex): TIndex;
|
|---|
| 54 | procedure Insert(Index: TIndex; Item: TGMatrixItem);
|
|---|
| 55 | procedure InsertList(Index: TIndex; List: TGMatrix);
|
|---|
| 56 | procedure InsertArray(Index: TIndex; Values: array of TGMatrixItem);
|
|---|
| 57 | procedure Move(CurIndex, NewIndex: TIndex);
|
|---|
| 58 | procedure MoveItems(CurIndex, NewIndex, Count: TIndex);
|
|---|
| 59 | procedure Merge(Index: TIndex; Source: TGMatrix; Proc: TMerge);
|
|---|
| 60 | procedure Replace(Index: TIndex; Source: TGMatrix);
|
|---|
| 61 | function Remove(Item: TGMatrixItem): TIndex;
|
|---|
| 62 | procedure Reverse;
|
|---|
| 63 | procedure ReverseHorizontal;
|
|---|
| 64 | procedure ReverseVertical;
|
|---|
| 65 | procedure Sort(Compare: TSortCompare);
|
|---|
| 66 | procedure SetArray(Values: array of TGMatrixItem);
|
|---|
| 67 | property Count: TIndex read FCount write SetCount;
|
|---|
| 68 | property Capacity: TIndex read GetCapacity write SetCapacity;
|
|---|
| 69 | property ItemsXY[X: TGMatrixIndexX; Y: TGMatrixIndexY]: TGMatrixItem
|
|---|
| 70 | read GetItemXY write PutItemXY; default;
|
|---|
| 71 | property Items[Index: TIndex]: TGMatrixItem
|
|---|
| 72 | read GetItem write PutItem;
|
|---|
| 73 | property Last: TGMatrixItem read GetLast write SetLast;
|
|---|
| 74 | end;
|
|---|
| 75 |
|
|---|
| 76 | {$UNDEF INTERFACE}
|
|---|
| 77 | {$ENDIF}
|
|---|
| 78 |
|
|---|
| 79 | {$IFDEF IMPLEMENTATION_USES}
|
|---|
| 80 |
|
|---|
| 81 | uses
|
|---|
| 82 | RtlConsts;
|
|---|
| 83 |
|
|---|
| 84 | resourcestring
|
|---|
| 85 | SMatrixIndexError = 'Matrix index error [X: %d, Y: %d]';
|
|---|
| 86 |
|
|---|
| 87 | {$UNDEF IMPLEMENTATION_USES}
|
|---|
| 88 | {$ENDIF}
|
|---|
| 89 |
|
|---|
| 90 | {$IFDEF IMPLEMENTATION}
|
|---|
| 91 |
|
|---|
| 92 | { TGMatrix }
|
|---|
| 93 |
|
|---|
| 94 | procedure TGMatrix.Replace(Index: TIndex; Source: TGMatrix);
|
|---|
| 95 | var
|
|---|
| 96 | X: TGMatrixIndexX;
|
|---|
| 97 | Y: TGMatrixIndexY;
|
|---|
| 98 | begin
|
|---|
| 99 | Y := 0;
|
|---|
| 100 | while Y < Source.Count.Y do begin
|
|---|
| 101 | X := 0;
|
|---|
| 102 | while X < Source.Count.X do begin
|
|---|
| 103 | ItemsXY[Index.X + X, Index.Y + Y] := Source.ItemsXY[X, Y];
|
|---|
| 104 | X := X + 1;
|
|---|
| 105 | end;
|
|---|
| 106 | Y := Y + 1;
|
|---|
| 107 | end;
|
|---|
| 108 | end;
|
|---|
| 109 |
|
|---|
| 110 | procedure TGMatrix.Merge(Index: TIndex; Source: TGMatrix; Proc: TMerge);
|
|---|
| 111 | var
|
|---|
| 112 | X: TGMatrixIndexX;
|
|---|
| 113 | Y: TGMatrixIndexY;
|
|---|
| 114 | begin
|
|---|
| 115 | Y := 0;
|
|---|
| 116 | while Y < Source.Count.Y do begin
|
|---|
| 117 | X := 0;
|
|---|
| 118 | while X < Source.Count.X do begin
|
|---|
| 119 | ItemsXY[Index.X + X, Index.Y + Y] := Proc(ItemsXY[Index.X + X, Index.Y + Y], Source.ItemsXY[X, Y]);
|
|---|
| 120 | X := X + 1;
|
|---|
| 121 | end;
|
|---|
| 122 | Y := Y + 1;
|
|---|
| 123 | end;
|
|---|
| 124 | end;
|
|---|
| 125 |
|
|---|
| 126 | function TGMatrix.CreateIndex(X: TGMatrixIndexY; Y: TGMatrixIndexX): TIndex;
|
|---|
| 127 | begin
|
|---|
| 128 | Result.X := X;
|
|---|
| 129 | Result.Y := Y;
|
|---|
| 130 | end;
|
|---|
| 131 |
|
|---|
| 132 | function TGMatrix.GetCapacity: TIndex;
|
|---|
| 133 | begin
|
|---|
| 134 | Result.Y := Length(FItems);
|
|---|
| 135 | if Result.Y > 0 then Result.X := Length(FItems[0]) else Result.X := 0;
|
|---|
| 136 | end;
|
|---|
| 137 |
|
|---|
| 138 | procedure TGMatrix.SetCapacity(const AValue: TIndex);
|
|---|
| 139 | var
|
|---|
| 140 | Y: TGMatrixIndexY;
|
|---|
| 141 | begin
|
|---|
| 142 | if (Capacity.X <> AValue.X) and (Capacity.Y <> AValue.Y) then begin
|
|---|
| 143 | (* SetLength(FItems, AValue.Y);
|
|---|
| 144 | Y := 0;
|
|---|
| 145 | while Y < Length(FItems) do begin
|
|---|
| 146 | SetLength(FItems[Y], AValue.X);
|
|---|
| 147 | Y := Y + 1;
|
|---|
| 148 | end;
|
|---|
| 149 | end;
|
|---|
| 150 | *)
|
|---|
| 151 | SetLength(FItems, AValue.Y, AValue.X);
|
|---|
| 152 | end;
|
|---|
| 153 | end;
|
|---|
| 154 |
|
|---|
| 155 | function TGMatrix.GetItemXY(X: TGMatrixIndexX; Y: TGMatrixIndexY): TGMatrixItem;
|
|---|
| 156 | begin
|
|---|
| 157 | if (X < 0) or (X >= Count.X) or
|
|---|
| 158 | (Y < 0) or (Y >= Count.Y) then
|
|---|
| 159 | raise EListError.CreateFmt(SMatrixIndexError, [X, Y]);
|
|---|
| 160 | Result := FItems[Y, X];
|
|---|
| 161 | end;
|
|---|
| 162 |
|
|---|
| 163 | function TGMatrix.GetItem(Index: TIndex): TGMatrixItem;
|
|---|
| 164 | begin
|
|---|
| 165 | if (Index.X < 0) or (Index.X >= Count.X) or
|
|---|
| 166 | (Index.Y < 0) or (Index.Y >= Count.Y) then
|
|---|
| 167 | raise EListError.CreateFmt(SMatrixIndexError, [Index.X, Index.Y]);
|
|---|
| 168 | Result := FItems[Index.Y, Index.X];
|
|---|
| 169 | end;
|
|---|
| 170 |
|
|---|
| 171 | procedure TGMatrix.PutItemXY(X: TGMatrixIndexX; Y: TGMatrixIndexY; const AValue: TGMatrixItem);
|
|---|
| 172 | begin
|
|---|
| 173 | if (X < 0) or (X >= Count.X) or
|
|---|
| 174 | (Y < 0) or (Y >= Count.Y) then
|
|---|
| 175 | raise EListError.CreateFmt(SMatrixIndexError, [X, Y]);
|
|---|
| 176 | FItems[Y, X] := AValue;
|
|---|
| 177 | end;
|
|---|
| 178 |
|
|---|
| 179 | procedure TGMatrix.PutItem(Index: TIndex; const AValue: TGMatrixItem);
|
|---|
| 180 | begin
|
|---|
| 181 | if (Index.X < 0) or (Index.X >= Count.X) or
|
|---|
| 182 | (Index.Y < 0) or (Index.Y >= Count.Y) then
|
|---|
| 183 | raise EListError.CreateFmt(SMatrixIndexError, [Index.X, Index.Y]);
|
|---|
| 184 | FItems[Index.Y, Index.X] := AValue;
|
|---|
| 185 | end;
|
|---|
| 186 |
|
|---|
| 187 | procedure TGMatrix.SetCount(const AValue: TIndex);
|
|---|
| 188 | begin
|
|---|
| 189 | Capacity := AValue;
|
|---|
| 190 | FCount := AValue;
|
|---|
| 191 | end;
|
|---|
| 192 |
|
|---|
| 193 | procedure TGMatrix.Assign(Source: TGMatrix);
|
|---|
| 194 | var
|
|---|
| 195 | Index: TIndex;
|
|---|
| 196 | begin
|
|---|
| 197 | Count := Source.Count;
|
|---|
| 198 | Index.Y := 0;
|
|---|
| 199 | while Index.Y < Count.Y do begin
|
|---|
| 200 | Index.X := 0;
|
|---|
| 201 | while Index.X < Count.X do begin
|
|---|
| 202 | Items[Index] := Source.Items[Index];
|
|---|
| 203 | Index.X := Index.X + 1;
|
|---|
| 204 | end;
|
|---|
| 205 | Index.Y := Index.Y + 1;
|
|---|
| 206 | end;
|
|---|
| 207 | end;
|
|---|
| 208 |
|
|---|
| 209 | procedure TGMatrix.Expand;
|
|---|
| 210 | var
|
|---|
| 211 | IncSize: TIndex;
|
|---|
| 212 | NewCapacity: TIndex;
|
|---|
| 213 | begin
|
|---|
| 214 | if (FCount.X = Capacity.X) then begin
|
|---|
| 215 | IncSize.X := 4;
|
|---|
| 216 | if Capacity.X > 3 then IncSize.X := IncSize.X + 4;
|
|---|
| 217 | if Capacity.X > 8 then IncSize.X := IncSize.X + 8;
|
|---|
| 218 | if Capacity.X > 63 then IncSize.X := IncSize.X + Capacity.X shr 2;
|
|---|
| 219 | NewCapacity.X := Capacity.X + IncSize.X;
|
|---|
| 220 | end;
|
|---|
| 221 | if (FCount.Y = Capacity.Y) then begin
|
|---|
| 222 | IncSize.Y := 4;
|
|---|
| 223 | if Capacity.Y > 3 then IncSize.Y := IncSize.Y + 4;
|
|---|
| 224 | if Capacity.Y > 8 then IncSize.Y := IncSize.Y + 8;
|
|---|
| 225 | if Capacity.Y > 63 then IncSize.Y := IncSize.Y + Capacity.Y shr 2;
|
|---|
| 226 | NewCapacity.Y := Capacity.Y + IncSize.Y;
|
|---|
| 227 | end;
|
|---|
| 228 | Capacity := NewCapacity;
|
|---|
| 229 | end;
|
|---|
| 230 |
|
|---|
| 231 | procedure TGMatrix.Contract;
|
|---|
| 232 | var
|
|---|
| 233 | NewCapacity: TIndex;
|
|---|
| 234 | begin
|
|---|
| 235 | if (Capacity.X > 256) and (FCount.X < Capacity.X shr 2) then
|
|---|
| 236 | begin
|
|---|
| 237 | NewCapacity.X := Capacity.X shr 1;
|
|---|
| 238 | end;
|
|---|
| 239 | if (Capacity.Y > 256) and (FCount.Y < Capacity.Y shr 2) then
|
|---|
| 240 | begin
|
|---|
| 241 | NewCapacity.Y := Capacity.Y shr 1;
|
|---|
| 242 | end;
|
|---|
| 243 | Capacity := NewCapacity;
|
|---|
| 244 | end;
|
|---|
| 245 |
|
|---|
| 246 | function TGMatrix.Extract(Item: TGMatrixItem): TGMatrixItem;
|
|---|
| 247 | var
|
|---|
| 248 | I: TIndex;
|
|---|
| 249 | begin
|
|---|
| 250 | (* I := IndexOf(Item);
|
|---|
| 251 | if I >= 0 then begin
|
|---|
| 252 | Result := Item;
|
|---|
| 253 | Delete(I);
|
|---|
| 254 | end else
|
|---|
| 255 | raise EListError.CreateFmt(SListIndexError, [0]);
|
|---|
| 256 | *)
|
|---|
| 257 | end;
|
|---|
| 258 |
|
|---|
| 259 | function TGMatrix.IndexOf(Item: TGMatrixItem; Start: TIndex): TIndex;
|
|---|
| 260 | begin
|
|---|
| 261 | (* Result := Start;
|
|---|
| 262 | while (Result < FCount) and
|
|---|
| 263 | not CompareMem(Addr(FItems[Result]), Addr(Item), SizeOf(TGMatrixItem)) do
|
|---|
| 264 | Result := Result + 1;
|
|---|
| 265 | if Result = FCount then Result := -1;
|
|---|
| 266 | *)
|
|---|
| 267 | end;
|
|---|
| 268 |
|
|---|
| 269 | procedure TGMatrix.Insert(Index: TIndex; Item: TGMatrixItem);
|
|---|
| 270 | begin
|
|---|
| 271 | (* if (Index < 0) or (Index > FCount ) then
|
|---|
| 272 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
|---|
| 273 | if FCount = Capacity then Expand;
|
|---|
| 274 | if Index < FCount then
|
|---|
| 275 | System.Move(FItems[Index], FItems[Index + 1], (FCount - Index) * SizeOf(TGMatrixItem));
|
|---|
| 276 | FItems[Index] := Item;
|
|---|
| 277 | FCount := FCount + 1;
|
|---|
| 278 | *)
|
|---|
| 279 | end;
|
|---|
| 280 |
|
|---|
| 281 | procedure TGMatrix.InsertList(Index: TIndex; List: TGMatrix);
|
|---|
| 282 | var
|
|---|
| 283 | I: TIndex;
|
|---|
| 284 | begin
|
|---|
| 285 | (* I := 0;
|
|---|
| 286 | while (I < List.Count) do begin
|
|---|
| 287 | Insert(Index + I, List[I]);
|
|---|
| 288 | I := I + 1;
|
|---|
| 289 | end;
|
|---|
| 290 | *)
|
|---|
| 291 | end;
|
|---|
| 292 |
|
|---|
| 293 | function TGMatrix.IndexOfList(List: TGMatrix; Start: TIndex): TIndex;
|
|---|
| 294 | var
|
|---|
| 295 | I: TIndex;
|
|---|
| 296 | begin
|
|---|
| 297 | (* if List.Count > 0 then begin
|
|---|
| 298 | Result := IndexOf(List[0], Start);
|
|---|
| 299 | if Result <> -1 then begin
|
|---|
| 300 | I := 1;
|
|---|
| 301 | while I < List.Count do begin
|
|---|
| 302 | if not CompareMem(Addr(FItems[Result + I]), Addr(List.FItems[I]), SizeOf(TGMatrixItem)) then begin
|
|---|
| 303 | Result := -1;
|
|---|
| 304 | Break;
|
|---|
| 305 | end;
|
|---|
| 306 | I := I + 1;
|
|---|
| 307 | end;
|
|---|
| 308 | end;
|
|---|
| 309 | end else Result := -1;
|
|---|
| 310 | *)
|
|---|
| 311 | end;
|
|---|
| 312 |
|
|---|
| 313 | function TGMatrix.GetLast: TGMatrixItem;
|
|---|
| 314 | begin
|
|---|
| 315 | (* if FCount = 0 then
|
|---|
| 316 | raise EListError.CreateFmt(SListIndexError, [0])
|
|---|
| 317 | else
|
|---|
| 318 | Result := Items[FCount - 1];
|
|---|
| 319 | *)
|
|---|
| 320 | end;
|
|---|
| 321 |
|
|---|
| 322 | procedure TGMatrix.SetLast(AValue: TGMatrixItem);
|
|---|
| 323 | begin
|
|---|
| 324 | (* if FCount = 0 then
|
|---|
| 325 | raise EListError.CreateFmt(SListIndexError, [0])
|
|---|
| 326 | else
|
|---|
| 327 | Items[FCount - 1] := AValue;
|
|---|
| 328 | *)
|
|---|
| 329 | end;
|
|---|
| 330 |
|
|---|
| 331 | function TGMatrix.GetFirst: TGMatrixItem;
|
|---|
| 332 | begin
|
|---|
| 333 | (* if FCount = 0 then
|
|---|
| 334 | raise EListError.CreateFmt(SListIndexError, [0])
|
|---|
| 335 | else
|
|---|
| 336 | Result := Items[0];
|
|---|
| 337 | *)
|
|---|
| 338 | end;
|
|---|
| 339 |
|
|---|
| 340 | procedure TGMatrix.SetFirst(AValue: TGMatrixItem);
|
|---|
| 341 | begin
|
|---|
| 342 | (* if FCount = 0 then
|
|---|
| 343 | raise EListError.CreateFmt(SListIndexError, [0])
|
|---|
| 344 | else
|
|---|
| 345 | Items[0] := AValue;
|
|---|
| 346 | *)
|
|---|
| 347 | end;
|
|---|
| 348 |
|
|---|
| 349 | procedure TGMatrix.Move(CurIndex, NewIndex: TIndex);
|
|---|
| 350 | var
|
|---|
| 351 | Temp: TGMatrixItem;
|
|---|
| 352 | begin
|
|---|
| 353 | (* if ((CurIndex < 0) or (CurIndex > Count - 1)) then
|
|---|
| 354 | raise EListError.CreateFmt(SListIndexError, [CurIndex]);
|
|---|
| 355 | if ((NewIndex < 0) or (NewIndex > Count -1)) then
|
|---|
| 356 | raise EListError.CreateFmt(SlistIndexError, [NewIndex]);
|
|---|
| 357 | Temp := FItems[CurIndex];
|
|---|
| 358 | if NewIndex > CurIndex then begin
|
|---|
| 359 | System.Move(FItems[CurIndex + 1], FItems[CurIndex], (NewIndex - CurIndex) * SizeOf(TGMatrixItem));
|
|---|
| 360 | end else
|
|---|
| 361 | if NewIndex < CurIndex then begin
|
|---|
| 362 | System.Move(FItems[NewIndex], FItems[NewIndex + 1], (CurIndex - NewIndex) * SizeOf(TGMatrixItem));
|
|---|
| 363 | end;
|
|---|
| 364 | FItems[NewIndex] := Temp;
|
|---|
| 365 | //Delete(CurIndex);
|
|---|
| 366 | //Insert(NewIndex, Temp);*)
|
|---|
| 367 | end;
|
|---|
| 368 |
|
|---|
| 369 | procedure TGMatrix.MoveItems(CurIndex, NewIndex, Count: TIndex);
|
|---|
| 370 | var
|
|---|
| 371 | S: Integer;
|
|---|
| 372 | D: Integer;
|
|---|
| 373 | begin
|
|---|
| 374 | (* if CurIndex < NewIndex then begin
|
|---|
| 375 | S := CurIndex + Count - 1;
|
|---|
| 376 | D := NewIndex + Count - 1;
|
|---|
| 377 | while S >= CurIndex do begin
|
|---|
| 378 | Move(S, D);
|
|---|
| 379 | S := S - 1;
|
|---|
| 380 | D := D - 1;
|
|---|
| 381 | end;
|
|---|
| 382 | end else
|
|---|
| 383 | if CurIndex > NewIndex then begin
|
|---|
| 384 | S := CurIndex;
|
|---|
| 385 | D := NewIndex;
|
|---|
| 386 | while S < (CurIndex + Count) do begin
|
|---|
| 387 | Move(S, D);
|
|---|
| 388 | S := S + 1;
|
|---|
| 389 | D := D + 1;
|
|---|
| 390 | end;
|
|---|
| 391 | end;*)
|
|---|
| 392 | end;
|
|---|
| 393 |
|
|---|
| 394 | function TGMatrix.Remove(Item: TGMatrixItem): TIndex;
|
|---|
| 395 | begin
|
|---|
| 396 | (* Result := IndexOf(Item);
|
|---|
| 397 | if Result <> -1 then
|
|---|
| 398 | Delete(Result); *)
|
|---|
| 399 | end;
|
|---|
| 400 |
|
|---|
| 401 | function TGMatrix.EqualTo(List: TGMatrix): Boolean;
|
|---|
| 402 | var
|
|---|
| 403 | I: TIndex;
|
|---|
| 404 | begin
|
|---|
| 405 | (* Result := Count = List.Count;
|
|---|
| 406 | if Result then begin
|
|---|
| 407 | I := 0;
|
|---|
| 408 | while I < Count do begin
|
|---|
| 409 | if not CompareMem(Addr(FItems[I]), Addr(List.FItems[I]), SizeOf(TGMatrixItem)) then begin
|
|---|
| 410 | Result := False;
|
|---|
| 411 | Break;
|
|---|
| 412 | end;
|
|---|
| 413 | I := I + 1;
|
|---|
| 414 | end;
|
|---|
| 415 | end; *)
|
|---|
| 416 | end;
|
|---|
| 417 |
|
|---|
| 418 | procedure TGMatrix.Reverse;
|
|---|
| 419 | var
|
|---|
| 420 | X: TGMatrixIndexX;
|
|---|
| 421 | Y: TGMatrixIndexY;
|
|---|
| 422 | begin
|
|---|
| 423 | Y := 0;
|
|---|
| 424 | while Y < (Count.Y - 1) do begin
|
|---|
| 425 | X := 1 + Y;
|
|---|
| 426 | while X < Count.X do begin
|
|---|
| 427 | Exchange(CreateIndex(X, Y), CreateIndex(Y, X));
|
|---|
| 428 | X := X + 1;
|
|---|
| 429 | end;
|
|---|
| 430 | Y := Y + 1;
|
|---|
| 431 | end;
|
|---|
| 432 | end;
|
|---|
| 433 |
|
|---|
| 434 | procedure TGMatrix.ReverseHorizontal;
|
|---|
| 435 | var
|
|---|
| 436 | X: TGMatrixIndexX;
|
|---|
| 437 | Y: TGMatrixIndexY;
|
|---|
| 438 | begin
|
|---|
| 439 | Y := 0;
|
|---|
| 440 | while Y < Count.Y do begin
|
|---|
| 441 | X := 0;
|
|---|
| 442 | while X < (Count.X div 2) do begin
|
|---|
| 443 | Exchange(CreateIndex(X, Y), CreateIndex(Count.X - 1 - X, Y));
|
|---|
| 444 | X := X + 1;
|
|---|
| 445 | end;
|
|---|
| 446 | Y := Y + 1;
|
|---|
| 447 | end;
|
|---|
| 448 | end;
|
|---|
| 449 |
|
|---|
| 450 | procedure TGMatrix.ReverseVertical;
|
|---|
| 451 | var
|
|---|
| 452 | X: TGMatrixIndexX;
|
|---|
| 453 | Y: TGMatrixIndexY;
|
|---|
| 454 | begin
|
|---|
| 455 | X := 0;
|
|---|
| 456 | while X < Count.X do begin
|
|---|
| 457 | Y := 0;
|
|---|
| 458 | while Y < (Count.Y div 2) do begin
|
|---|
| 459 | Exchange(CreateIndex(X, Y), CreateIndex(X, Count.Y - 1 - Y));
|
|---|
| 460 | Y := Y + 1;
|
|---|
| 461 | end;
|
|---|
| 462 | X := X + 1;
|
|---|
| 463 | end;
|
|---|
| 464 | end;
|
|---|
| 465 |
|
|---|
| 466 | procedure TGMatrix.Sort(Compare: TSortCompare);
|
|---|
| 467 | begin
|
|---|
| 468 | (* if FCount > 1 then
|
|---|
| 469 | QuickSort(0, FCount - 1, Compare); *)
|
|---|
| 470 | end;
|
|---|
| 471 |
|
|---|
| 472 | procedure TGMatrix.AddMatrix(Values: array of TRow);
|
|---|
| 473 | var
|
|---|
| 474 | I: TIndex;
|
|---|
| 475 | begin
|
|---|
| 476 | (* I := 0;
|
|---|
| 477 | while I <= High(Values) do begin
|
|---|
| 478 | Add(Values[I]);
|
|---|
| 479 | I := I + 1;
|
|---|
| 480 | end; *)
|
|---|
| 481 | end;
|
|---|
| 482 |
|
|---|
| 483 | procedure TGMatrix.SetArray(Values: array of TGMatrixItem);
|
|---|
| 484 | var
|
|---|
| 485 | I: TIndex;
|
|---|
| 486 | begin
|
|---|
| 487 | (* Clear;
|
|---|
| 488 | I := 0;
|
|---|
| 489 | while I <= High(Values) do begin
|
|---|
| 490 | Add(Values[I]);
|
|---|
| 491 | I := I + 1;
|
|---|
| 492 | end; *)
|
|---|
| 493 | end;
|
|---|
| 494 |
|
|---|
| 495 | procedure TGMatrix.InsertArray(Index: TIndex; Values: array of TGMatrixItem);
|
|---|
| 496 | var
|
|---|
| 497 | I: TIndex;
|
|---|
| 498 | begin
|
|---|
| 499 | (* I := 0;
|
|---|
| 500 | while I <= High(Values) do begin
|
|---|
| 501 | Insert(Index + I, Values[I]);
|
|---|
| 502 | I := I + 1;
|
|---|
| 503 | end; *)
|
|---|
| 504 | end;
|
|---|
| 505 |
|
|---|
| 506 | function TGMatrix.Implode(RowSeparator, ColSeparator: string; Converter: TToStringConverter): string;
|
|---|
| 507 | var
|
|---|
| 508 | Y: TGMatrixIndexY;
|
|---|
| 509 | X: TGMatrixIndexX;
|
|---|
| 510 | begin
|
|---|
| 511 | Result := '';
|
|---|
| 512 | Y := 0;
|
|---|
| 513 | while Y < Count.Y do begin
|
|---|
| 514 | X := 0;
|
|---|
| 515 | while X < Count.X do begin
|
|---|
| 516 | Result := Result + Converter(ItemsXY[X, Y]);
|
|---|
| 517 | if X < (Count.X - 1) then
|
|---|
| 518 | Result := Result + ColSeparator;
|
|---|
| 519 | X := X + 1;
|
|---|
| 520 | end;
|
|---|
| 521 | if Y < (Count.Y - 1) then
|
|---|
| 522 | Result := Result + RowSeparator;
|
|---|
| 523 | Y := Y + 1;
|
|---|
| 524 | end;
|
|---|
| 525 | end;
|
|---|
| 526 |
|
|---|
| 527 | procedure TGMatrix.Explode(Text, Separator: string; Converter: TFromStringConverter; SlicesCount: Integer = -1);
|
|---|
| 528 | begin
|
|---|
| 529 | (* Clear;
|
|---|
| 530 | while (Pos(Separator, Text) > 0) and
|
|---|
| 531 | ((Count < (SlicesCount - 1)) or (SlicesCount = -1)) do begin
|
|---|
| 532 | Add(Converter(Copy(Text, 1, Pos(Separator, Text) - 1)));
|
|---|
| 533 | System.Delete(Text, 1, Pos(Separator, Text) + Length(Separator) - 1);
|
|---|
| 534 | end;
|
|---|
| 535 | Add(Converter(Text)); *)
|
|---|
| 536 | end;
|
|---|
| 537 |
|
|---|
| 538 | function TGMatrix.Add(Item: TGMatrixItem): TIndex;
|
|---|
| 539 | begin
|
|---|
| 540 | (* if FCount = Capacity then
|
|---|
| 541 | Self.Expand;
|
|---|
| 542 | FItems[FCount] := Item;
|
|---|
| 543 | Result := FCount;
|
|---|
| 544 | FCount := FCount + 1; *)
|
|---|
| 545 | end;
|
|---|
| 546 |
|
|---|
| 547 | procedure TGMatrix.AddList(List: TGMatrix);
|
|---|
| 548 | var
|
|---|
| 549 | I: TIndex;
|
|---|
| 550 | begin
|
|---|
| 551 | (* I := 0;
|
|---|
| 552 | while I < List.Count do begin
|
|---|
| 553 | Add(List[I]);
|
|---|
| 554 | I := I + 1;
|
|---|
| 555 | end; *)
|
|---|
| 556 | end;
|
|---|
| 557 |
|
|---|
| 558 | procedure TGMatrix.Clear;
|
|---|
| 559 | begin
|
|---|
| 560 | Count := CreateIndex(0, 0);
|
|---|
| 561 | Capacity := CreateIndex(0, 0);
|
|---|
| 562 | end;
|
|---|
| 563 |
|
|---|
| 564 | procedure TGMatrix.Delete(Index: TIndex);
|
|---|
| 565 | begin
|
|---|
| 566 | (* if (Index < 0) or (Index >= FCount) then
|
|---|
| 567 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
|---|
| 568 | FCount := FCount - 1;
|
|---|
| 569 | System.Move(FItems[Index + 1], FItems[Index], (FCount - Index) * SizeOf(TGMatrixItem));
|
|---|
| 570 | Contract;
|
|---|
| 571 | *)
|
|---|
| 572 | end;
|
|---|
| 573 |
|
|---|
| 574 | procedure TGMatrix.DeleteItems(Index, Count: TIndex);
|
|---|
| 575 | var
|
|---|
| 576 | I: TIndex;
|
|---|
| 577 | begin
|
|---|
| 578 | (* I := Index;
|
|---|
| 579 | while I < (Index + Count) do begin
|
|---|
| 580 | Delete(Index);
|
|---|
| 581 | I := I + 1;
|
|---|
| 582 | end;
|
|---|
| 583 | *)
|
|---|
| 584 | end;
|
|---|
| 585 |
|
|---|
| 586 | procedure TGMatrix.Fill(Start, Count: TIndex; Value: TGMatrixItem);
|
|---|
| 587 | var
|
|---|
| 588 | X: TGMatrixIndexX;
|
|---|
| 589 | Y: TGMatrixIndexY;
|
|---|
| 590 | begin
|
|---|
| 591 | Y := Start.Y;
|
|---|
| 592 | while Y < Count.Y do begin
|
|---|
| 593 | X := Start.X;
|
|---|
| 594 | while X < Count.X do begin
|
|---|
| 595 | ItemsXY[X, Y] := Value;
|
|---|
| 596 | X := X + 1;
|
|---|
| 597 | end;
|
|---|
| 598 | Y := Y + 1;
|
|---|
| 599 | end;
|
|---|
| 600 | end;
|
|---|
| 601 |
|
|---|
| 602 | procedure TGMatrix.FillAll(Value: TGMatrixItem);
|
|---|
| 603 | begin
|
|---|
| 604 | Fill(CreateIndex(0, 0), CreateIndex(Count.X - 1, Count.Y - 1), Value);
|
|---|
| 605 | end;
|
|---|
| 606 |
|
|---|
| 607 | procedure TGMatrix.Exchange(Index1, Index2: TIndex);
|
|---|
| 608 | var
|
|---|
| 609 | Temp: TGMatrixItem;
|
|---|
| 610 | begin
|
|---|
| 611 | if (Index1.X < 0) or (Index1.X >= Count.X) or
|
|---|
| 612 | (Index1.Y < 0) or (Index1.Y >= Count.Y) then
|
|---|
| 613 | raise EListError.CreateFmt(SMatrixIndexError, [Index1.X, Index1.Y]);
|
|---|
| 614 | if (Index2.X < 0) or (Index2.X >= Count.X) or
|
|---|
| 615 | (Index2.Y < 0) or (Index2.Y >= Count.Y) then
|
|---|
| 616 | raise EListError.CreateFmt(SMatrixIndexError, [Index2.X, Index2.Y]);
|
|---|
| 617 | Temp := FItems[Index1.Y, Index1.X];
|
|---|
| 618 | FItems[Index1.Y, Index1.X] := FItems[Index2.Y, Index2.X];
|
|---|
| 619 | FItems[Index2.Y, Index2.X] := Temp;
|
|---|
| 620 | end;
|
|---|
| 621 |
|
|---|
| 622 | {$UNDEF IMPLEMENTATION}
|
|---|
| 623 | {$ENDIF}
|
|---|