Unit1.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <ExtCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include "GLS.BaseClasses.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.FileJPEG.hpp"
  14. #include "GLS.FPSMovement.hpp"
  15. #include "GLS.Material.hpp"
  16. #include "GLS.Navigator.hpp"
  17. #include "GLS.Objects.hpp"
  18. #include "GLS.Scene.hpp"
  19. #include "GLS.Screen.hpp"
  20. #include "GLS.SimpleNavigation.hpp"
  21. #include "GLS.VectorFileObjects.hpp"
  22. #include "GLS.SceneViewer.hpp"
  23. #include "GLS.Keyboard.hpp"
  24. #include "GLS.GeomObjects.hpp"
  25. #include "GLS.VectorGeometry.hpp"
  26. #include "GLS.Octree.hpp"
  27. #include "GLS.VectorLists.hpp"
  28. #include "GLS.Collision.hpp"
  29. #include "GLS.Texture.hpp"
  30. //---------------------------------------------------------------------------
  31. class TForm1:public TForm
  32. {
  33. __published: // IDE-managed Components
  34. TGLScene * GLScene1;
  35. TGLSceneViewer *GLSceneViewer1;
  36. TGLCadencer *GLCadencer1;
  37. TGLCamera *FirstPersonCamera;
  38. TGLFreeForm *Map1;
  39. TGLMaterialLibrary *GLMaterialLibrary1;
  40. TGLLightSource *GLLight;
  41. TGLDummyCube *World;
  42. TGLCamera *ThirdPersonCamera;
  43. TGLSphere *PlayerSphere;
  44. TGLLightSource *GLLightSource1;
  45. TGLSphere *PlayerCentre;
  46. TGLDummyCube *Player;
  47. TGLFreeForm *Map2;
  48. TGLDummyCube *Bot;
  49. TGLSphere *BotCenter;
  50. TGLSphere *BotSphere;
  51. TGLNavigator *Navigator1;
  52. TGLFPSMovementManager *MovManager;
  53. TGLSimpleNavigation *GLSimpleNavigation1;
  54. void __fastcall FormKeyDown(TObject * Sender, WORD & Key, TShiftState Shift);
  55. void __fastcall GLCadencer1Progress(TObject * Sender, const double deltaTime,
  56. const double newTime);
  57. private: // User declarations
  58. public: // User declarations
  59. __fastcall TForm1(TComponent * Owner);
  60. };
  61. //---------------------------------------------------------------------------
  62. extern PACKAGE TForm1 *Form1;
  63. //---------------------------------------------------------------------------
  64. #endif