| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633 |
- //
- // This unit is part of the GLScene Engine, http://glscene.org
- //
- unit GLS.Utils;
- (* Miscellaneous support utilities & classes *)
- interface
- {$I GLScene.inc}
- uses
- System.Classes,
- System.SysUtils,
- System.UITypes,
- VCL.Graphics,
- VCL.Controls,
- VCL.Dialogs,
- VCL.ExtDlgs,
- GLCrossPlatform,
- GLS.Strings,
- GLVectorGeometry;
- type
- EGLUtilsException = class(Exception);
- TSqrt255Array = array[0..255] of Byte;
- PSqrt255Array = ^TSqrt255Array;
- // Copies the values of Source to Dest (converting word values to integer values)
- procedure WordToIntegerArray(Source: PWordArray; Dest: PIntegerArray; Count: Cardinal);
- // Round ups to the nearest power of two, value must be positive
- function RoundUpToPowerOf2(value: Integer): Integer;
- // Round down to the nearest power of two, value must be strictly positive
- function RoundDownToPowerOf2(value: Integer): Integer;
- // Returns True if value is a true power of two
- function IsPowerOf2(value: Integer): Boolean;
- // Read a CRLF terminated string from a stream. The CRLF is NOT in the returned string.
- function ReadCRLFString(aStream: TStream): String;
- // Write the string and a CRLF in the stream
- procedure WriteCRLFString(aStream: TStream; const aString: String);
- // Similar to SysUtils.TryStrToFloat, but ignores user's locale
- function TryStrToFloat(const strValue: string; var val: Extended): Boolean;
- // Similar to SysUtils.StrToFloatDef, but ignores user's locale
- function StrToFloatDef(const strValue: string; defValue: Extended = 0): Extended;
- // Converts a string into color
- function StringToColorAdvancedSafe(const Str: string; const Default: TColor): TColor;
- // Converts a string into color
- function TryStringToColorAdvanced(const Str: string; var OutColor: TColor): Boolean;
- // Converts a string into color
- function StringToColorAdvanced(const Str: string): TColor;
- (*Parses the next integer in the string.
- Initial non-numeric characters are skipper, p is altered, returns 0 if none
- found. '+' and '-' are acknowledged. *)
- function ParseInteger(var p: PChar): Integer;
- (* Parses the next integer in the string.
- Initial non-numeric characters are skipper, p is altered, returns 0 if none
- found. Both '.' and ',' are accepted as decimal separators. *)
- function ParseFloat(var p: PChar): Extended;
- //Saves ansistring "data" to "filename".
- procedure SaveAnsiStringToFile(const fileName: string; const data: AnsiString);
- //Returns the ansistring content of "filename".
- function LoadAnsiStringFromFile(const fileName: string): AnsiString;
- //Saves string "data" to "filename".
- procedure SaveStringToFile(const fileName: string; const data: String);
- //Returns the string content of "filename".
- function LoadStringFromFile(const fileName: string): String;
- //Saves component to a file.
- procedure SaveComponentToFile(const Component: TComponent; const FileName: string; const AsText: Boolean = True);
- // Loads component from a file.
- procedure LoadComponentFromFile(const Component: TComponent; const FileName: string; const AsText: Boolean = True);
- (* Returns the size of "filename".
- Returns 0 (zero) is file does not exists. *)
- function SizeOfFile(const fileName: string): Int64;
- // Returns a pointer to an array containing the results of "255*sqrt(i/255)".
- function GetSqrt255Array: PSqrt255Array;
- // Pops up a simple dialog with msg and an Ok button.
- procedure InformationDlg(const msg: string);
- (* Pops up a simple question dialog with msg and yes/no buttons.
- Returns True if answer was "yes". *)
- function QuestionDlg(const msg: string): Boolean;
- // Posp a simple dialog with a string input.
- function InputDlg(const aCaption, aPrompt, aDefault: string): string;
- // Pops up a simple save picture dialog.
- function SavePictureDialog(var aFileName: string; const aTitle: string = ''): Boolean;
- // Pops up a simple open picture dialog.
- function OpenPictureDialog(var aFileName: string; const aTitle: string = ''): Boolean;
- procedure SetGLSceneMediaDir();
- //------------------------------------------------------
- implementation
- //------------------------------------------------------
- var
- vSqrt255: TSqrt255Array;
- procedure WordToIntegerArray(Source: PWordArray; Dest: PIntegerArray; Count: Cardinal);
- var
- i: integer;
- begin
- for i := 0 to Count - 1 do
- Dest^[i] := Source^[i];
- end;
- function RoundUpToPowerOf2(value: Integer): Integer;
- begin
- Result := 1;
- while (Result < value) do
- Result := Result shl 1;
- end;
- function RoundDownToPowerOf2(value: Integer): Integer;
- begin
- if value > 0 then
- begin
- Result := 1 shl 30;
- while Result > value do
- Result := Result shr 1;
- end
- else
- Result := 1;
- end;
- function IsPowerOf2(value: Integer): Boolean;
- begin
- Result := (RoundUpToPowerOf2(value) = value);
- end;
- function ReadCRLFString(aStream: TStream): String;
- var
- c: Char;
- begin
- Result := '';
- while Copy(Result, Length(Result) - 1, 2) <> #13#10 do
- begin
- aStream.Read(c, 1);
- Result := Result + c;
- end;
- Result := Copy(Result, 1, Length(Result) - 2);
- end;
- procedure WriteCRLFString(aStream: TStream; const aString: String);
- const
- cCRLF: Integer = $0A0D;
- begin
- with aStream do
- begin
- Write(aString[1], Length(aString));
- Write(cCRLF, 2);
- end;
- end;
- function TryStrToFloat(const strValue: string; var val: Extended): Boolean;
- var
- i, j, divider, lLen, exponent: Integer;
- c: Char;
- v: Extended;
- begin
- if strValue = '' then
- begin
- Result := False;
- Exit;
- end
- else
- v := 0;
- lLen := Length(strValue);
- while (lLen > 0) and (strValue[lLen] = ' ') do
- Dec(lLen);
- divider := lLen + 1;
- exponent := 0;
- for i := 1 to lLen do
- begin
- c := strValue[i];
- case c of
- ' ': if v <> 0 then
- begin
- Result := False;
- Exit;
- end;
- '0'..'9': v := (v * 10) + Integer(c) - Integer('0');
- ',', '.':
- begin
- if (divider > lLen) then
- divider := i + 1
- else
- begin
- Result := False;
- Exit;
- end;
- end;
- '-', '+': if i > 1 then
- begin
- Result := False;
- Exit;
- end;
- 'e', 'E':
- begin
- if i + 1 > lLen then
- begin
- Result := False;
- Exit;
- end;
- for j := i + 1 to lLen do
- begin
- c := strValue[j];
- case c of
- '-', '+': if j <> i + 1 then
- begin
- Result := False;
- Exit;
- end;
- '0'..'9': exponent := (exponent * 10) + Integer(c) - Integer('0');
- else
- Result := False;
- Exit;
- end;
- end;
- if strValue[i + 1] <> '-' then
- exponent := -exponent;
- exponent := exponent - 1;
- lLen := i;
- if divider > lLen then
- divider := lLen;
- Break;
- end;
- else
- Result := False;
- Exit;
- end;
- end;
- divider := lLen - divider + exponent + 1;
- if strValue[1] = '-' then
- begin
- v := -v;
- end;
- if divider <> 0 then
- v := v * Exp(-divider * Ln(10));
- val := v;
- Result := True;
- end;
- function StrToFloatDef(const strValue: string; defValue: Extended = 0): Extended;
- begin
- if not TryStrToFloat(strValue, Result) then
- result := defValue;
- end;
- function StringToColorAdvancedSafe(const Str: string; const Default: TColor): TColor;
- begin
- if not TryStringToColorAdvanced(Str, Result) then
- Result := Default;
- end;
- function StringToColorAdvanced(const Str: string): TColor;
- begin
- if not TryStringToColorAdvanced(Str, Result) then
- raise EGLUtilsException.CreateResFmt(@strInvalidColor, [Str]);
- end;
- function TryStringToColorAdvanced(const Str: string; var OutColor: TColor): Boolean;
- var
- Code, I: Integer;
- Temp: string;
- begin
- Result := True;
- Temp := Str;
- Val(Temp, I, Code); //to see if it is a number
- if Code = 0 then
- OutColor := TColor(I) //Str = $0000FF
- else
- begin
- if not IdentToColor(Temp, Longint(OutColor)) then //Str = clRed
- begin
- if AnsiStartsText('clr', Temp) then //Str = clrRed
- begin
- Delete(Temp, 3, 1);
- if not IdentToColor(Temp, Longint(OutColor)) then
- Result := False;
- end
- else if not IdentToColor('cl' + Temp, Longint(OutColor)) then //Str = Red
- Result := False;
- end;
- end;
- end;
- function ParseInteger(var p: PChar): Integer;
- var
- neg: Boolean;
- c: Char;
- begin
- Result := 0;
- if p = nil then
- Exit;
- neg := False;
- // skip non-numerics
- while not CharInSet(p^, [#0, '0'..'9', '+', '-']) do
- Inc(p);
- c := p^;
- if c = '+' then
- Inc(p)
- else if c = '-' then
- begin
- neg := True;
- Inc(p);
- end;
- // Parse numerics
- while True do
- begin
- c := p^;
- if not CharInSet(c, ['0'..'9']) then
- Break;
- Result := Result * 10 + Integer(c) - Integer('0');
- Inc(p);
- end;
- if neg then
- Result := -Result;
- end;
- function ParseFloat(var p: PChar): Extended;
- var
- decimals, expSign, exponent: Integer;
- c: Char;
- neg: Boolean;
- begin
- Result := 0;
- if p = nil then
- Exit;
- // skip non-numerics
- while not CharInSet(p^, [#0, '0'..'9', '+', '-']) do
- Inc(p);
- c := p^;
- if c = '+' then
- begin
- neg := False;
- Inc(p);
- end
- else if c = '-' then
- begin
- neg := True;
- Inc(p);
- end
- else
- neg := False;
- // parse numbers
- while CharInSet(p^, ['0'..'9']) do
- begin
- Result := Result * 10 + (Integer(p^) - Integer('0'));
- Inc(p);
- end;
- // parse dot, then decimals, if any
- decimals := 0;
- if (p^ = '.') then
- begin
- Inc(p);
- while CharInSet(p^, ['0'..'9']) do
- begin
- Result := Result * 10 + (Integer(p^) - Integer('0'));
- Inc(p);
- Dec(decimals);
- end;
- end;
- // parse exponent, if any
- if CharInSet(p^, ['e', 'E']) then
- begin
- Inc(p);
- // parse exponent sign
- c := p^;
- if c = '-' then
- begin
- expSign := -1;
- Inc(p);
- end
- else if c = '+' then
- begin
- expSign := 1;
- Inc(p);
- end
- else
- expSign := 1;
- // parse exponent
- exponent := 0;
- while CharInSet(p^, ['0'..'9']) do
- begin
- exponent := exponent * 10 + (Integer(p^) - Integer('0'));
- Inc(p);
- end;
- decimals := decimals + expSign * exponent;
- end;
- if decimals <> 0 then
- Result := Result * Exp(decimals * Ln(10));
- if neg then
- Result := -Result;
- end;
- procedure SaveAnsiStringToFile(const fileName: string; const data: AnsiString);
- var
- n: Cardinal;
- fs: TStream;
- begin
- fs := TFileStream.Create(fileName, fmCreate);
- try
- n := Length(data);
- if n > 0 then
- fs.Write(data[1], n);
- finally
- fs.Free;
- end;
- end;
- function LoadAnsiStringFromFile(const fileName: string): AnsiString;
- var
- n: Cardinal;
- fs: TStream;
- begin
- if FileExists(fileName) then
- begin
- fs := TFileStream.Create(fileName, fmOpenRead + fmShareDenyNone);
- try
- n := fs.Size;
- SetLength(Result, n);
- if n > 0 then
- fs.Read(Result[1], n);
- finally
- fs.Free;
- end;
- end
- else
- Result := '';
- end;
- procedure SaveStringToFile(const fileName: string; const data: String);
- var
- n: Cardinal;
- fs: TStream;
- begin
- fs := TFileStream.Create(fileName, fmCreate);
- try
- n := Length(data);
- if n > 0 then
- fs.Write(data[1], n);
- finally
- fs.Free;
- end;
- end;
- function LoadStringFromFile(const fileName: string): String;
- var
- n: Cardinal;
- fs: TStream;
- begin
- if FileExists(fileName) then
- begin
- fs := TFileStream.Create(fileName, fmOpenRead + fmShareDenyNone);
- try
- n := fs.Size;
- SetLength(Result, n);
- if n > 0 then
- fs.Read(Result[1], n);
- finally
- fs.Free;
- end;
- end
- else
- Result := '';
- end;
- procedure SaveComponentToFile(const Component: TComponent; const FileName: string; const AsText: Boolean);
- var
- Stream: TStream;
- MemStream: TMemoryStream;
- begin
- Stream := TFileStream.Create(FileName, fmCreate);
- try
- if AsText then
- begin
- MemStream := TMemoryStream.Create;
- try
- MemStream.WriteComponent(Component);
- MemStream.Position := 0;
- ObjectBinaryToText(MemStream, Stream);
- finally
- MemStream.Free;
- end;
- end
- else
- Stream.WriteComponent(Component);
- finally
- Stream.Free;
- end;
- end;
- procedure LoadComponentFromFile(const Component: TComponent; const FileName: string; const AsText: Boolean = True);
- var
- Stream: TStream;
- MemStream: TMemoryStream;
- begin
- Stream := TFileStream.Create(FileName, fmOpenRead);
- try
- if AsText then
- begin
- MemStream := TMemoryStream.Create;
- try
- ObjectTextToBinary(Stream, MemStream);
- MemStream.Position := 0;
- MemStream.ReadComponent(Component);
- finally
- MemStream.Free;
- end;
- end
- else
- Stream.ReadComponent(Component);
- finally
- Stream.Free;
- end;
- end;
- function SizeOfFile(const fileName: string): Int64;
- var
- fs: TStream;
- begin
- if FileExists(fileName) then
- begin
- fs := TFileStream.Create(fileName, fmOpenRead + fmShareDenyNone);
- try
- Result := fs.Size;
- finally
- fs.Free;
- end;
- end
- else
- Result := 0;
- end;
- function GetSqrt255Array: PSqrt255Array;
- const
- cOneDiv255 = 1 / 255;
- var
- i: Integer;
- begin
- if vSqrt255[255] <> 255 then
- begin
- for i := 0 to 255 do
- vSqrt255[i] := Integer(Trunc(255 * Sqrt(i * cOneDiv255)));
- end;
- Result := @vSqrt255;
- end;
- procedure InformationDlg(const msg: string);
- begin
- ShowMessage(msg);
- end;
- function QuestionDlg(const msg: string): Boolean;
- begin
- Result := (MessageDlg(msg, mtConfirmation, [mbYes, mbNo], 0) = mrYes);
- end;
- function InputDlg(const aCaption, aPrompt, aDefault: string): string;
- begin
- Result := InputBox(aCaption, aPrompt, aDefault);
- end;
- function SavePictureDialog(var aFileName: string; const aTitle: string = ''): Boolean;
- var
- saveDialog: TSavePictureDialog;
- begin
- saveDialog := TSavePictureDialog.Create(nil);
- try
- with saveDialog do
- begin
- Options := [ofHideReadOnly, ofNoReadOnlyReturn];
- if aTitle <> '' then
- Title := aTitle;
- FileName := aFileName;
- Result := Execute;
- if Result then
- aFileName := FileName;
- end;
- finally
- saveDialog.Free;
- end;
- end;
- function OpenPictureDialog(var aFileName: string; const aTitle: string = ''): Boolean;
- var
- openDialog: TOpenPictureDialog;
- begin
- openDialog := TOpenPictureDialog.Create(nil);
- try
- with openDialog do
- begin
- Options := [ofHideReadOnly, ofNoReadOnlyReturn];
- if aTitle <> '' then
- Title := aTitle;
- FileName := aFileName;
- Result := Execute;
- if Result then
- aFileName := FileName;
- end;
- finally
- openDialog.Free;
- end;
- end;
- procedure SetGLSceneMediaDir();
- var
- path: String;
- p: Integer;
- begin
- path := ParamStr(0);
- path := LowerCase(ExtractFilePath(path));
- p := Pos('demos', path);
- Delete(path, p+5, Length(path));
- path := IncludeTrailingPathDelimiter(path) + 'media';
- SetCurrentDir(path);
- end;
- end.
|