1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <Vcl.Controls.hpp>
- #include <Vcl.StdCtrls.hpp>
- #include <Vcl.Forms.hpp>
- #include <Vcl.ExtCtrls.hpp>
- #include <Vcl.Graphics.hpp>
- #include "GLS.BaseClasses.hpp"
- #include "GLS.Behaviours.hpp"
- #include "GLS.BitmapFont.hpp"
- #include "GLS.Blur.hpp"
- #include "GLS.Cadencer.hpp"
- #include "GLS.Coordinates.hpp"
- #include "GLS.HUDObjects.hpp"
- #include "GLS.Navigator.hpp"
- #include "GLS.Objects.hpp"
- #include "GLS.ParticleFX.hpp"
- #include "GLS.PerlinPFX.hpp"
- #include "GLS.Scene.hpp"
- #include "GLS.SpaceText.hpp"
- #include "GLS.SceneViewer.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TGLSceneViewer *GLSceneViewer1;
- TPanel *Panel1;
- TLabel *Label1;
- TCheckBox *chkMouseLook;
- TCheckBox *chkFloor;
- TCheckBox *chkBlur;
- TGLCadencer *GLCadencer1;
- TGLPerlinPFXManager *PFXElectro;
- TGLPerlinPFXManager *PFXRail;
- TGLPerlinPFXManager *PFXBurning;
- TGLPerlinPFXManager *PFXSmoke;
- TGLBitmapFont *BitmapFont1;
- TGLScene *GLScene1;
- TGLDummyCube *WorldRoot;
- TGLLightSource *GLLightSource1;
- TGLPlane *GLPlane1;
- TGLSpaceText *ICE;
- TGLSpaceText *MAGMA;
- TGLSpaceText *SMOKE;
- TGLSpaceText *FOG;
- TGLSpaceText *FIRE;
- TGLSpaceText *RAIL;
- TGLSpaceText *ELECTRIC;
- TGLSpaceText *WATER;
- TGLParticleFXRenderer *PfxRenderer;
- TGLBlur *GLBlur1;
- TGLCamera *GLCamera1;
- TGLPerlinPFXManager *PFXBlueArea;
- TTimer *Timer1;
- TGLNavigator *GLNavigator1;
- TGLUserInterface *GLUserInterface1;
- TGLPerlinPFXManager *PFXRedArea;
- TGLPerlinPFXManager *PFXFog;
- TGLPerlinPFXManager *PFXWaterfall;
- void __fastcall chkFloorClick(TObject *Sender);
- void __fastcall chkBlurClick(TObject *Sender);
- void __fastcall chkMouseLookClick(TObject *Sender);
- void __fastcall Timer1Timer(TObject *Sender);
- void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
- void __fastcall FormCreate(TObject *Sender);
- private: // User declarations
- void __fastcall HandleKeys(double deltaTime);
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|