aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/fmv/oggtheora/oggtheora.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/fmv/oggtheora/oggtheora.h')
-rwxr-xr-xengines/sword25/fmv/oggtheora/oggtheora.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/engines/sword25/fmv/oggtheora/oggtheora.h b/engines/sword25/fmv/oggtheora/oggtheora.h
new file mode 100755
index 0000000000..0b43ba698d
--- /dev/null
+++ b/engines/sword25/fmv/oggtheora/oggtheora.h
@@ -0,0 +1,109 @@
+// -----------------------------------------------------------------------------
+// This file is part of Broken Sword 2.5
+// Copyright (c) Malte Thiesen, Daniel Queteschiner and Michael Elsdörfer
+//
+// Broken Sword 2.5 is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// Broken Sword 2.5 is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Broken Sword 2.5; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+// -----------------------------------------------------------------------------
+
+#ifndef BS_OGGTHEORA_H
+#define BS_OGGTHEORA_H
+
+// -----------------------------------------------------------------------------
+// Includes
+// -----------------------------------------------------------------------------
+
+#include "kernel/memlog_off.h"
+#include <vector>
+#include <memory>
+#include <queue>
+#include "kernel/memlog_on.h"
+
+#include "kernel/common.h"
+#include "kernel/bs_stdint.h"
+#include "gfx/bitmap.h"
+#include "gfx/renderobjectptr.h"
+#include "fmv/movieplayer.h"
+#include "vorbisstate.h"
+#include "theorastate.h"
+#include "oggstate.h"
+#include "oggstreamstate.h"
+#include "moviefile.h"
+#include "audiobuffer.h"
+
+// -----------------------------------------------------------------------------
+// Klassendefinition
+// -----------------------------------------------------------------------------
+
+class BS_OggTheora : public BS_MoviePlayer
+{
+public:
+ // -----------------------------------------------------------------------------
+ // Konstruktion / Destruktion
+ // -----------------------------------------------------------------------------
+
+ BS_OggTheora(BS_Kernel * pKernel);
+ virtual ~BS_OggTheora();
+
+ // -----------------------------------------------------------------------------
+ // BS_MoviePlayer Interface
+ // -----------------------------------------------------------------------------
+
+ virtual bool LoadMovie(const std::string & Filename, unsigned int Z);
+ virtual bool UnloadMovie();
+ virtual bool Play();
+ virtual bool Pause();
+ virtual void Update();
+ virtual bool IsMovieLoaded();
+ virtual bool IsPaused();
+ virtual float GetScaleFactor();
+ virtual void SetScaleFactor(float ScaleFactor);
+ virtual double GetTime();
+
+private:
+ bool DecodeTheora();
+ void DecodeVorbis();
+ void RefillOggBuffer();
+ void ReadData();
+ static void DynamicSoundCallBack(void * UserData, void * Data, unsigned int DataLength);
+
+ bool m_MovieLoaded;
+ bool m_Paused;
+
+ std::auto_ptr<BS_OggStreamState> m_VorbisStreamState;
+ bool m_VorbisPresent;
+ std::auto_ptr<BS_VorbisState> m_VorbisState;
+ unsigned int m_SoundHandle;
+ bool m_AudioEnded;
+ std::auto_ptr<BS_AudioBuffer> m_AudioBuffer;
+
+ std::auto_ptr<BS_OggStreamState> m_TheoraStreamState;
+ bool m_TheoraPresent;
+ std::auto_ptr<BS_TheoraState> m_TheoraState;
+ bool m_VideoEnded;
+
+ std::auto_ptr<BS_OggState> m_OggState;
+
+ std::auto_ptr<BS_MovieFile> m_File;
+
+ uint64_t m_StartTime;
+ double m_LastFrameTime;
+
+ float m_Timer;
+
+ std::vector<unsigned char> m_Pixels;
+ BS_RenderObjectPtr<BS_Bitmap> m_OutputBitmap;
+};
+
+#endif