unit1.pas

来自「delphi 最好的3D控件GLScene_Demos」· PAS 代码 · 共 138 行

PAS
138
字号
{: Showcases some of the standard texture formats & compression.<p>

   TextureFormat and Compression are directly controled by the similarly named
   properties of a TGLTexture. You can also control this globally though
   the "default" values.<p>

   For texture compression to work... it must be supported by your 3D card,
   so older boards may not see any change when applying texture compression
   (the setting is ignored by GLScene if unsupported).<br>
   Alternatively, some OpenGL ICD will use only one or two compression formats,
   and you may not see any difference between the standard/fastest/nicest
   compression modes.<p>

   Texture compression is fast, saves memory and helps maintaining a good
   fillrate (by reduceing texture trashing and required bandwidth), so,
   as long as the compression artifacts do not show up too much on your
   textures, use it!
}
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, ExtCtrls, GLScene, GLObjects, GLMisc, GLTexture, GLHUDObjects,
  GLCadencer, GLWin32Viewer;

type
  TForm1 = class(TForm)
    GLSceneViewer1: TGLSceneViewer;
    GLScene1: TGLScene;
    GLCamera1: TGLCamera;
    Panel1: TPanel;
    Label1: TLabel;
    CBFormat: TComboBox;
    Label2: TLabel;
    Label3: TLabel;
    CBCompression: TComboBox;
    Label4: TLabel;
    CBImage: TComboBox;
    LAPicSize: TLabel;
    Label5: TLabel;
    RBDefault: TRadioButton;
    RBDouble: TRadioButton;
    HUDSprite1: TGLHUDSprite;
    LAUsedMemory: TLabel;
    RBQuad: TRadioButton;
    LARGB32: TLabel;
    LACompression: TLabel;
    procedure FormCreate(Sender: TObject);
    procedure CBImageChange(Sender: TObject);
    procedure FormResize(Sender: TObject);
    procedure GLSceneViewer1AfterRender(Sender: TObject);
  private
    { D閏larations priv閑s }
  public
    { D閏larations publiques }
    newSelection : Boolean;
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

uses Jpeg;

procedure TForm1.FormCreate(Sender: TObject);
var
   sr : TSearchRec;
   i : Integer;
begin
   // collect JPeg textures from the demos' media directory
   SetCurrentDir(ExtractFilePath(Application.ExeName));
   i:=FindFirst('..\..\media\*.jpg', faAnyFile, sr);
   while i=0 do begin
      CBImage.Items.Add(sr.Name);
      i:=FindNext(sr);
   end;
   FindClose(sr);
   // default selection
   CBFormat.ItemIndex:=0;
   CBCompression.ItemIndex:=0;
   CBImage.ItemIndex:=0;
   CBImageChange(Self);
end;

procedure TForm1.CBImageChange(Sender: TObject);
begin
   // adjust settings from selection and reload the texture map
   with HUDSprite1.Material.Texture do begin
      TextureFormat:=TGLTextureFormat(Integer(tfRGB)+CBFormat.ItemIndex);
      Compression:=TGLTextureCompression(Integer(tcNone)+CBCompression.ItemIndex);
      Image.LoadFromFile('..\..\media\'+CBImage.Text);
      LAPicSize.Caption:=IntToStr(Image.Width)+' x '+IntToStr(Image.Height);
      if RBDefault.Checked then begin
         HUDSprite1.Width:=Image.Width;
         HUDSprite1.Height:=Image.Height;
      end else if RBDouble.Checked then begin
         HUDSprite1.Width:=Image.Width*2;
         HUDSprite1.Height:=Image.Height*2;
      end else begin
         HUDSprite1.Width:=Image.Width*4;
         HUDSprite1.Height:=Image.Height*4;
      end;
   end;
   FormResize(Self);
   newSelection:=True;
end;

procedure TForm1.FormResize(Sender: TObject);
begin
   // re-center the HUDSprite
   HUDSprite1.Position.X:=GLSceneViewer1.Width/2;
   HUDSprite1.Position.Y:=GLSceneViewer1.Height/2;
   GLSceneViewer1.Invalidate;
end;

procedure TForm1.GLSceneViewer1AfterRender(Sender: TObject);
var
   rgb : Integer;
begin
   // update compression stats, only the 1st time after a new selection
   if newSelection then with HUDSprite1.Material.Texture do begin
      rgb:=Image.Width*Image.Height*4;
      LARGB32.Caption:=Format('RGBA 32bits would require %d kB', [rgb div 1024]);
      LAUsedMemory.Caption:=Format('Required memory : %d kB',
                                   [TextureImageRequiredMemory div 1024]);
      LACompression.Caption:=Format('Compression ratio : %d %%',
                                    [100-100*TextureImageRequiredMemory div rgb]);
      newSelection:=False;
   end;
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?