fSoundAroundC.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //---------------------------------------------------------------------------
  2. #ifndef fSoundAroundCH
  3. #define fSoundAroundCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.ComCtrls.hpp>
  10. #include <Vcl.ExtCtrls.hpp>
  11. #include "GLS.BaseClasses.hpp"
  12. #include "GLS.Cadencer.hpp"
  13. #include "GLS.Coordinates.hpp"
  14. #include "GLS.GeomObjects.hpp"
  15. #include "GLS.Objects.hpp"
  16. #include "GLS.Scene.hpp"
  17. #include "GLS.SceneViewer.hpp"
  18. #include "Stage.Utils.hpp"
  19. #include "GLS.FileWAV.hpp"
  20. #include "GLS.FileMP3.hpp"
  21. #include "GLS.SoundManager.hpp"
  22. #include "GLS.Sounds.BASS.hpp"
  23. #include "GLS.Sounds.FMOD.hpp"
  24. #include "GLS.Sounds.OpenAL.hpp"
  25. //---------------------------------------------------------------------------
  26. class TForm1 : public TForm
  27. {
  28. __published: // IDE-managed Components
  29. TGLSceneViewer *GLSceneViewer;
  30. TTrackBar *TrackBar;
  31. TTrackBar *TrackBar1;
  32. TPanel *Panel1;
  33. TLabel *Label1;
  34. TLabel *LabelFPS;
  35. TRadioButton *RBBass;
  36. TRadioButton *RBFMOD;
  37. TButton *Button1;
  38. TButton *btnHowl;
  39. TRadioButton *RBOpenAL;
  40. TGLSMFMOD *GLSMFMOD;
  41. TGLSMBASS *GLSMBASS;
  42. TGLSMOpenAL *GLSMOpenAL;
  43. TGLSoundLibrary *GLSoundLibrary;
  44. TGLScene *GLScene;
  45. TGLDummyCube *DummyCube;
  46. TGLTorus *Torus1;
  47. TGLSphere *Mickey;
  48. TGLSphere *Sphere2;
  49. TGLSphere *Sphere3;
  50. TGLCone *Cone1;
  51. TGLPlane *Plane1;
  52. TGLSphere *Sphere;
  53. TGLDisk *Disk1;
  54. TGLLightSource *GLLightSource;
  55. TGLCamera *GLCamera1;
  56. TGLCadencer *GLCadencer1;
  57. TTimer *Timer;
  58. void __fastcall FormCreate(TObject *Sender);
  59. void __fastcall TrackBar1Change(TObject *Sender);
  60. void __fastcall SphereProgress(TObject *Sender, const double deltaTime, const double newTime);
  61. void __fastcall TrackBarChange(TObject *Sender);
  62. void __fastcall Button1Click(TObject *Sender);
  63. void __fastcall btnHowlClick(TObject *Sender);
  64. void __fastcall TimerTimer(TObject *Sender);
  65. void __fastcall RBFMODClick(TObject *Sender);
  66. void __fastcall GLSceneViewerMouseMove(TObject *Sender, TShiftState Shift, int X,
  67. int Y);
  68. void __fastcall GLSceneViewerMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  69. int X, int Y);
  70. private: // User declarations
  71. public: // User declarations
  72. __fastcall TForm1(TComponent* Owner);
  73. };
  74. //---------------------------------------------------------------------------
  75. extern PACKAGE TForm1 *Form1;
  76. //---------------------------------------------------------------------------
  77. #endif