fOdeMachineC.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //---------------------------------------------------------------------------
  2. #ifndef fOdeMachineCH
  3. #define fOdeMachineCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GLS.BaseClasses.hpp"
  10. #include "GLS.BitmapFont.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.GeomObjects.hpp"
  14. #include "GLS.HUDObjects.hpp"
  15. #include "GLS.Objects.hpp"
  16. #include "Physics.ODEManager.hpp"
  17. #include "GLS.Scene.hpp"
  18. #include "GLS.SceneViewer.hpp"
  19. #include "GLS.WindowsFont.hpp"
  20. //---------------------------------------------------------------------------
  21. class TForm1 : public TForm
  22. {
  23. __published: // IDE-managed Components
  24. TGLSceneViewer *GLSceneViewer1;
  25. TGLScene *GLScene1;
  26. TGLDummyCube *GLDummyCube1;
  27. TGLCamera *GLCamera1;
  28. TGLLightSource *GLLightSource1;
  29. TGLDummyCube *Machine;
  30. TGLCylinder *Wheel;
  31. TGLCylinder *Axle;
  32. TGLCylinder *Pin1;
  33. TGLCube *Arm;
  34. TGLCylinder *Pin2;
  35. TGLCube *Slider;
  36. TGLRenderPoint *ODERenderPoint;
  37. TGLHUDText *GLHUDText1;
  38. TGLODEManager *GLODEManager1;
  39. TGLODEJointList *GLODEJointList1;
  40. TGLCadencer *GLCadencer1;
  41. TGLWindowsBitmapFont *GLWindowsBitmapFont1;
  42. void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  43. int X, int Y);
  44. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  45. int Y);
  46. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  47. private: // User declarations
  48. int my, mx;
  49. public: // User declarations
  50. __fastcall TForm1(TComponent* Owner);
  51. };
  52. //---------------------------------------------------------------------------
  53. extern PACKAGE TForm1 *Form1;
  54. //---------------------------------------------------------------------------
  55. #endif