2010-01-25 08:59:44 -05:00
|
|
|
{
|
|
|
|
This file is part of the Mufasa Macro Library (MML)
|
|
|
|
Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer
|
|
|
|
|
|
|
|
MML is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
MML 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. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with MML. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
See the file COPYING, included in this distribution,
|
|
|
|
for details about the copyright.
|
|
|
|
|
|
|
|
DTM class for the Mufasa Macro Library
|
|
|
|
}
|
|
|
|
|
|
|
|
unit dtm;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Classes, SysUtils, MufasaTypes;
|
|
|
|
|
|
|
|
type
|
2010-04-03 08:05:15 -04:00
|
|
|
|
|
|
|
{ TMDTM }
|
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
{ TMDTM }
|
|
|
|
|
2010-01-25 08:59:44 -05:00
|
|
|
TMDTM = class(TObject)
|
2010-05-19 10:01:01 -04:00
|
|
|
private
|
|
|
|
FPoints : TMDTMPointArray;
|
|
|
|
FLen : integer;
|
|
|
|
function GetPointerPoints: PMDTMPoint;
|
|
|
|
procedure SetPointCount(const AValue: integer);
|
|
|
|
public
|
|
|
|
Name : string;
|
|
|
|
Index : integer;
|
|
|
|
function ToString : string;
|
|
|
|
function Valid : boolean;
|
|
|
|
property PPoints : PMDTMPoint read GetPointerPoints;
|
|
|
|
property Count : integer read FLen write SetPointCount;
|
|
|
|
property Points : TMDTMPointArray read FPoints;
|
|
|
|
end;
|
|
|
|
TMDTMS = class(TObject) //Manages the DTMs TMufasaDTMs
|
2010-01-25 08:59:44 -05:00
|
|
|
private
|
2010-04-02 11:55:54 -04:00
|
|
|
Client: TObject;
|
2010-05-19 10:01:01 -04:00
|
|
|
DTMList: Array Of TMDTM;
|
2010-04-02 11:55:54 -04:00
|
|
|
FreeSpots: Array Of Integer;
|
2010-04-03 08:05:15 -04:00
|
|
|
procedure CheckIndex(index : integer);
|
2010-04-02 11:55:54 -04:00
|
|
|
public
|
2010-05-19 10:01:01 -04:00
|
|
|
function AddDTM(const d: TSDTM): Integer;overload;
|
|
|
|
function AddDTM(const d: TMDTM): Integer;overload;
|
|
|
|
function GetDTM(index: Integer) :TMDTM;
|
2010-04-02 11:55:54 -04:00
|
|
|
procedure FreeDTM(DTM: Integer);
|
2010-05-19 10:01:01 -04:00
|
|
|
function StringToDTM(const S: String): TMDTM;
|
|
|
|
property DTM[Index : integer]: TMDTM read GetDTM; default;
|
2010-04-02 11:55:54 -04:00
|
|
|
constructor Create(Owner: TObject);
|
|
|
|
destructor Destroy; override;
|
2010-01-25 08:59:44 -05:00
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
2010-03-02 16:27:49 -05:00
|
|
|
dtmutil, paszlib,
|
2010-03-07 10:57:10 -05:00
|
|
|
client,
|
2010-01-25 08:59:44 -05:00
|
|
|
graphics, // for TColor
|
|
|
|
math // for max
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
constructor TMDTMS.Create(Owner: TObject);
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
Self.Client := Owner;
|
|
|
|
|
|
|
|
SetLength(DTMList, 0);
|
|
|
|
SetLength(FreeSpots, 0);
|
|
|
|
end;
|
|
|
|
|
|
|
|
{$DEFINE DTM_DEBUG}
|
2010-05-19 10:01:01 -04:00
|
|
|
destructor TMDTMS.Destroy;
|
2010-01-25 08:59:44 -05:00
|
|
|
var
|
2010-04-18 11:14:19 -04:00
|
|
|
i, j: integer;
|
|
|
|
b:boolean;
|
|
|
|
WriteStr : string;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
2010-04-18 11:14:19 -04:00
|
|
|
WriteStr := '[';
|
2010-01-25 08:59:44 -05:00
|
|
|
for i := 0 to high(DTMList) do
|
|
|
|
begin
|
|
|
|
b := false;
|
|
|
|
for j := 0 to high(freespots) do
|
|
|
|
if i = freespots[j] then
|
|
|
|
begin
|
|
|
|
b := true;
|
|
|
|
break;
|
|
|
|
end;
|
|
|
|
if not b then
|
|
|
|
begin;
|
2010-05-19 10:01:01 -04:00
|
|
|
if DTMList[i].name <> '' then
|
|
|
|
WriteStr := WriteStr + DTMList[i].name + ', '
|
2010-01-25 08:59:44 -05:00
|
|
|
else
|
2010-04-18 11:14:19 -04:00
|
|
|
WriteStr := WriteStr + inttostr(i) + ', ';
|
2010-02-06 19:55:52 -05:00
|
|
|
FreeDTM(i);
|
2010-01-25 08:59:44 -05:00
|
|
|
end;
|
|
|
|
end;
|
2010-04-18 11:14:19 -04:00
|
|
|
if WriteStr <> '[' then //Has unfreed DTMs
|
|
|
|
begin
|
|
|
|
SetLength(WriteStr,length(WriteStr)-1);
|
|
|
|
WriteStr[Length(writeStr)] := ']';
|
|
|
|
TClient(Client).Writeln(Format('The following DTMs were not freed: %s',[WriteStr]));
|
|
|
|
end;
|
2010-01-25 08:59:44 -05:00
|
|
|
SetLength(DTMList, 0);
|
|
|
|
SetLength(FreeSpots, 0);
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
// Rotates the given point (p) by A (in radians) around the point defined by cx, cy.
|
|
|
|
|
2010-04-02 11:55:54 -04:00
|
|
|
function RotatePoint(const p: TPoint;const angle, mx, my: Extended): TPoint; inline;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result.X := Round(mx + cos(angle) * (p.x - mx) - sin(angle) * (p.y - my));
|
|
|
|
Result.Y := Round(my + sin(angle) * (p.x - mx) + cos(angle) * (p.y- my));
|
|
|
|
end;
|
|
|
|
|
2010-04-02 11:55:54 -04:00
|
|
|
function HexToInt(const HexNum: string): LongInt;inline;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result:=StrToInt('$' + HexNum);
|
|
|
|
end;
|
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
function TMDTMS.StringToDTM(const S: String): TMDTM;
|
2010-01-25 08:59:44 -05:00
|
|
|
var
|
|
|
|
b: PBufferByteArray;
|
|
|
|
Source : String;
|
|
|
|
DestLen : longword;
|
|
|
|
i,ii,c : integer;
|
2010-05-19 10:01:01 -04:00
|
|
|
DPoints : PMDTMPoint;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
2010-05-19 10:01:01 -04:00
|
|
|
Result := TMDTM.Create;
|
2010-01-25 08:59:44 -05:00
|
|
|
ii := Length(S);
|
|
|
|
if (ii = 0) or (ii mod 2 <> 0) then
|
|
|
|
Exit;
|
|
|
|
ii := ii div 2;
|
|
|
|
SetLength(Source,ii);
|
|
|
|
for i := 1 to ii do
|
|
|
|
Source[i] := Chr(HexToInt(S[i * 2 - 1] + S[i * 2]));
|
|
|
|
DestLen := BufferLen;
|
|
|
|
if uncompress(Bufferstring,Destlen,pchar(Source), ii) = Z_OK then
|
|
|
|
begin;
|
|
|
|
if (Destlen mod 36) > 0 then
|
2010-03-07 10:57:10 -05:00
|
|
|
raise Exception.CreateFmt('Invalid DTM passed to StringToDTM: %s',[s]);
|
2010-01-25 08:59:44 -05:00
|
|
|
DestLen := DestLen div 36;
|
2010-05-19 10:01:01 -04:00
|
|
|
Result.Count:= DestLen;
|
|
|
|
DPoints := result.PPoints;
|
2010-01-25 08:59:44 -05:00
|
|
|
b := PBufferByteArray(BufferString);
|
|
|
|
for i := 0 to DestLen - 1 do
|
|
|
|
begin;
|
|
|
|
c := i * 36;
|
2010-05-19 10:01:01 -04:00
|
|
|
DPoints[i].x := PInteger(@b^[c+1])^;
|
|
|
|
DPoints[i].y := PInteger(@b^[c+5])^;
|
|
|
|
DPoints[i].asz := PInteger(@b^[c+12])^;
|
|
|
|
// Result.ash[i] := PInteger(@b^[c+16])^;
|
|
|
|
DPoints[i].c := PInteger(@b^[c+20])^;
|
|
|
|
DPoints[i].t := PInteger(@b^[c+24])^;
|
|
|
|
DPoints[i].bp := False;
|
2010-01-25 08:59:44 -05:00
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2010-05-19 05:44:25 -04:00
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
procedure TMDTMS.CheckIndex(index: integer);
|
2010-04-03 08:05:15 -04:00
|
|
|
begin
|
2010-04-30 08:37:01 -04:00
|
|
|
if (index < 0) or (index >= Length(DTMList)) or (DTMList[Index] = nil) then
|
2010-04-03 08:05:15 -04:00
|
|
|
raise Exception.CreateFmt('The given DTM Index[%d] doesn''t exist',[index]);
|
|
|
|
end;
|
2010-01-25 08:59:44 -05:00
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
function TMDTMS.AddDTM(const d: TSDTM): Integer;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
2010-05-19 10:01:01 -04:00
|
|
|
Result := AddDTM(SDTMToMDTM(d));
|
2010-01-25 08:59:44 -05:00
|
|
|
end;
|
|
|
|
|
|
|
|
{/\
|
|
|
|
Adds the given pDTM to the DTM Array, and returns it's index.
|
|
|
|
/\}
|
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
function TMDTMS.AddDTM(const d: TMDTM): Integer;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
2010-04-30 08:37:01 -04:00
|
|
|
|
2010-01-25 08:59:44 -05:00
|
|
|
if Length(FreeSpots) > 0 then
|
|
|
|
begin
|
|
|
|
Result := FreeSpots[High(FreeSpots)];
|
|
|
|
SetLength(FreeSpots, High(FreeSpots));
|
|
|
|
end
|
2010-04-03 08:05:15 -04:00
|
|
|
else
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
SetLength(DTMList, Length(DTMList) + 1);
|
|
|
|
Result := High(DTMList);
|
|
|
|
end;
|
2010-05-19 10:01:01 -04:00
|
|
|
DTMList[Result] := d;
|
|
|
|
DTMList[Result].Index:= Result;
|
|
|
|
NormalizeDTM(DTMList[result]);
|
2010-01-25 08:59:44 -05:00
|
|
|
end;
|
|
|
|
|
|
|
|
{/\
|
|
|
|
Returns the DTM (pDTM type) in the variable dtm at the given index.
|
|
|
|
Returns true is succesfull, false if the dtm does not exist.
|
|
|
|
/\}
|
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
function TMDTMS.GetDTM(index: Integer) :TMDTM;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
2010-04-03 08:05:15 -04:00
|
|
|
CheckIndex(index);
|
2010-05-19 05:44:25 -04:00
|
|
|
result := DTMList[index];
|
2010-01-25 08:59:44 -05:00
|
|
|
end;
|
|
|
|
|
|
|
|
{/\
|
|
|
|
Unloads the DTM at the given index from the DTM Array.
|
|
|
|
Notes:
|
|
|
|
Will keep track of not used index, so it is very memory efficient.
|
|
|
|
/\}
|
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
procedure TMDTMS.FreeDTM(DTM: Integer);
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
2010-04-03 08:05:15 -04:00
|
|
|
CheckIndex(DTM);
|
2010-05-19 10:01:01 -04:00
|
|
|
DTMList[DTM].Free;
|
2010-04-30 08:37:01 -04:00
|
|
|
DTMList[DTM] := nil;
|
2010-01-25 08:59:44 -05:00
|
|
|
SetLength(FreeSpots, Length(FreeSpots) + 1);
|
|
|
|
FreeSpots[High(FreeSpots)] := DTM;
|
|
|
|
end;
|
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
{ TMDTM }
|
2010-01-25 08:59:44 -05:00
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
function TMDTM.GetPointerPoints: PMDTMPoint;
|
|
|
|
begin
|
|
|
|
if count < 1 then
|
|
|
|
result := nil
|
2010-04-03 08:05:15 -04:00
|
|
|
else
|
2010-05-19 10:01:01 -04:00
|
|
|
result := @FPoints[0];
|
|
|
|
end;
|
2010-01-25 08:59:44 -05:00
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
procedure TMDTM.SetPointCount(const AValue: integer);
|
|
|
|
begin
|
|
|
|
SetLength(FPoints,AValue);
|
|
|
|
FLen := AValue;
|
|
|
|
end;
|
2010-01-25 08:59:44 -05:00
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
function TMDTM.ToString: string;
|
|
|
|
begin
|
2010-01-25 08:59:44 -05:00
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
end;
|
2010-01-25 08:59:44 -05:00
|
|
|
|
2010-05-19 10:01:01 -04:00
|
|
|
function TMDTM.Valid: boolean;
|
|
|
|
begin
|
|
|
|
result := false;
|
|
|
|
if Count < 1 then
|
|
|
|
exit;
|
|
|
|
result := true;
|
|
|
|
end;
|
2010-01-25 08:59:44 -05:00
|
|
|
|
|
|
|
end.
|
|
|
|
|