X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fshared%2FMAPDEF.pas;h=8f6a3cefbc4a080e54a1dacc20b173b7ae1f7059;hb=679461cd7908bd408cf384840ef1c7af78e5c597;hp=6400264bb438dd69ca6907eb7dbf52f362a66ff4;hpb=662b1b0c24197c50a92078b4daa1a69ae8085fe1;p=d2df-sdl.git diff --git a/src/shared/MAPDEF.pas b/src/shared/MAPDEF.pas index 6400264..8f6a3ce 100644 --- a/src/shared/MAPDEF.pas +++ b/src/shared/MAPDEF.pas @@ -40,6 +40,8 @@ type public constructor Create (ax, ay: LongInt); + + function isZero (): Boolean; inline; end; Char16 = packed array[0..15] of Char; @@ -90,6 +92,10 @@ type function Alpha (): Byte; inline; function Flags (): Byte; inline; + function moveSpeed (): TDFPoint; inline; + function moveStart (): TDFPoint; inline; + function moveEnd (): TDFPoint; inline; + // texture function Resource (): AnsiString; inline; function Anim (): Boolean; inline; @@ -145,6 +151,7 @@ uses // ////////////////////////////////////////////////////////////////////////// // constructor TDFPoint.Create (ax, ay: LongInt); begin X := ax; Y := ay; end; +function TDFPoint.isZero (): Boolean; inline; begin result := (X = 0) and (Y = 0); end; // ////////////////////////////////////////////////////////////////////////// // @@ -180,6 +187,12 @@ begin end; +// ////////////////////////////////////////////////////////////////////////// // +function TDynRecordHelper.moveSpeed (): TDFPoint; inline; begin result := getPointField('move_speed'); end; +function TDynRecordHelper.moveStart (): TDFPoint; inline; begin result := getPointField('move_start'); end; +function TDynRecordHelper.moveEnd (): TDFPoint; inline; begin result := getPointField('move_end'); end; + + // ////////////////////////////////////////////////////////////////////////// // function TDynRecordHelper.getFieldWithType (const aname: AnsiString; atype: TDynField.TType): TDynField; inline; begin