12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "Unit1.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #pragma link "GLS.BaseClasses"
- #pragma link "GLS.Cadencer"
- #pragma link "GLS.Coordinates"
- #pragma link "GLS.GeomObjects"
- #pragma link "GLS.Material"
- #pragma link "GLS.Objects"
- #pragma link "GLS.Scene"
- #pragma link "GLS.ShadowPlane"
- #pragma link "GLS.SceneViewer"
- #pragma resource "*.dfm"
- TForm1 *Form1;
- //---------------------------------------------------------------------------
- __fastcall TForm1::TForm1(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::FormCreate(TObject *Sender)
- {
- SetGLSceneMediaDir();
- GLMaterialLibrary->Materials->Items[0]->Material->Texture->Image->LoadFromFile("BeigeMarble.jpg");
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::GLCadencer1Progress(TObject *Sender, const double deltaTime,
- const double newTime)
- {
- DCLight->PitchAngle = Sin(newTime)*60;
- DCShadowing->TurnAngle = newTime*10;
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::CBShadowsClick(TObject *Sender)
- {
- if (CBShadows->Checked)
- GLShadowPlane1->ShadowedLight = GLLightSource1;
- else
- GLShadowPlane1->ShadowedLight = NULL;
- GLShadowPlane2->ShadowedLight = GLShadowPlane1->ShadowedLight;
- GLShadowPlane3->ShadowedLight = GLShadowPlane1->ShadowedLight;
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::CBStencilClick(TObject *Sender)
- {
- if (CBStencil->Checked)
- GLShadowPlane1->ShadowOptions = GLShadowPlane1->ShadowOptions << spoUseStencil, spoScissor;
- else
- GLShadowPlane1->ShadowOptions = GLShadowPlane1->ShadowOptions << spoScissor;
- GLShadowPlane2->ShadowOptions = GLShadowPlane1->ShadowOptions;
- GLShadowPlane3->ShadowOptions = GLShadowPlane1->ShadowOptions;
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::Timer1Timer(TObject *Sender)
- {
- Caption = "Shadow Plane - " + Format("%.1f FPS",
- ARRAYOFCONST ((GLSceneViewer1->FramesPerSecond())));
- GLSceneViewer1->ResetPerformanceMonitor();
- }
- //---------------------------------------------------------------------------
|