//--------------------------------------------------------------------------- #ifndef fSkyBoxCH #define fSkyBoxCH //--------------------------------------------------------------------------- #include #include #include #include #include "GLS.BaseClasses.hpp" #include "GLS.Cadencer.hpp" #include "GLS.Coordinates.hpp" #include "GLS.LensFlare.hpp" #include "GLS.Material.hpp" #include "GLS.Navigator.hpp" #include "GLS.Objects.hpp" #include "GLS.Scene.hpp" #include "GLS.SimpleNavigation.hpp" #include "GLS.SkyDome.hpp" #include "GLS.SceneViewer.hpp" #include "GLS.Keyboard.hpp" #include "JPeg.hpp" #include "GLS.FileJPEG.hpp" #include "GLS.Utils.hpp" //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TGLSceneViewer *GLSceneViewer1; TGLScene *GLScene1; TGLSkyBox *GLSkyBox1; TGLSphere *GLSphere1; TGLSphere *GLSphere2; TGLSkyBox *GLSkyBox2; TGLDummyCube *Castle; TGLCube *GLCube1; TGLCube *GLCube2; TGLCube *GLCube11; TGLCube *GLCube21; TGLCube *GLCube111; TGLCube *GLCube211; TGLCube *GLCube112; TGLCube *GLCube212; TGLLightSource *GLLightSource1; TGLLensFlare *GLLensFlare1; TGLCamera *GLCamera1; TGLMaterialLibrary *GLMaterialLibrary1; TGLNavigator *GLNavigator1; TGLCadencer *GLCadencer1; TGLUserInterface *GLUserInterface1; TGLSimpleNavigation *GLSimpleNavigation1; void __fastcall FormCreate(TObject *Sender); void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime); private: // User declarations int mx, my; void __fastcall HandleKeys(double d); TGLLibMaterial* __fastcall LoadTexture(String Matname, String Filename); public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif