Unit1.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.ExtCtrls.hpp>
  10. #include "GLS.BaseClasses.hpp"
  11. #include "GLS.BitmapFont.hpp"
  12. #include "GLS.Cadencer.hpp"
  13. #include "GLS.Coordinates.hpp"
  14. #include "GLS.HeightData.hpp"
  15. #include "GLS.HUDObjects.hpp"
  16. #include "GLLensFlare.hpp"
  17. #include "GLS.Material.hpp"
  18. #include "GLS.Navigator.hpp"
  19. #include "GLS.Objects.hpp"
  20. #include "Physics.ODEManager.hpp"
  21. #include "GLS.Scene.hpp"
  22. #include "GLS.SkyDome.hpp"
  23. #include "GLS.TerrainRenderer.hpp"
  24. #include "GLS.SceneViewer.hpp"
  25. #include "GLS.Utils.hpp"
  26. #include "JPeg.hpp"
  27. #include "GLS.Keyboard.hpp"
  28. #include "Physics.ODEManager.hpp"
  29. //---------------------------------------------------------------------------
  30. class TForm1 : public TForm
  31. {
  32. __published: // IDE-managed Components
  33. TGLSceneViewer *GLSceneViewer1;
  34. TGLBitmapHDS *GLBitmapHDS1;
  35. TGLScene *GLScene1;
  36. TGLLightSource *GLLightSource1;
  37. TGLSkyDome *SkyDome1;
  38. TGLSprite *SPMoon;
  39. TGLSprite *SPSun;
  40. TGLTerrainRenderer *TerrainRenderer1;
  41. TGLDummyCube *ODEObjects;
  42. TGLRenderPoint *ODERenderPoint;
  43. TGLHUDText *HUDText1;
  44. TGLLensFlare *GLLensFlare;
  45. TGLDummyCube *GLDummyCube1;
  46. TGLCamera *GLCamera1;
  47. TGLDummyCube *ODEDrop;
  48. TTimer *Timer1;
  49. TGLCadencer *GLCadencer1;
  50. TGLMaterialLibrary *GLMaterialLibrary1;
  51. TGLBitmapFont *BitmapFont1;
  52. TGLODEManager *GLODEManager1;
  53. TGLNavigator *GLNavigator1;
  54. TGLUserInterface *GLUserInterface1;
  55. void __fastcall FormCreate(TObject *Sender);
  56. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  57. void __fastcall Timer1Timer(TObject *Sender);
  58. void __fastcall FormKeyPress(TObject *Sender, System::WideChar &Key);
  59. void __fastcall GLSceneViewer1BeforeRender(TObject *Sender);
  60. private: // User declarations
  61. public: // User declarations
  62. __fastcall TForm1(TComponent* Owner);
  63. };
  64. //---------------------------------------------------------------------------
  65. extern PACKAGE TForm1 *Form1;
  66. //---------------------------------------------------------------------------
  67. #endif