aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/fmv/movieplayer.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-09-29 10:40:06 +0000
committerEugene Sandulenko2010-10-13 00:06:37 +0000
commitbf22def884986e4bd5bec2b42dea7f91b5417ccc (patch)
tree6a0e1c29f3993e3a0ef2c5ef3156bf98021a6e5d /engines/sword25/fmv/movieplayer.h
parent7bcfe1f195671057ecb028e3bf353f475cebb379 (diff)
downloadscummvm-rg350-bf22def884986e4bd5bec2b42dea7f91b5417ccc.tar.gz
scummvm-rg350-bf22def884986e4bd5bec2b42dea7f91b5417ccc.tar.bz2
scummvm-rg350-bf22def884986e4bd5bec2b42dea7f91b5417ccc.zip
SWORD25: Enforce code naming conventions in fmv/*
svn-id: r53388
Diffstat (limited to 'engines/sword25/fmv/movieplayer.h')
-rw-r--r--engines/sword25/fmv/movieplayer.h31
1 files changed, 12 insertions, 19 deletions
diff --git a/engines/sword25/fmv/movieplayer.h b/engines/sword25/fmv/movieplayer.h
index f72178a707..96beb648c0 100644
--- a/engines/sword25/fmv/movieplayer.h
+++ b/engines/sword25/fmv/movieplayer.h
@@ -35,10 +35,6 @@
#ifndef SWORD25_MOVIEPLAYER_H
#define SWORD25_MOVIEPLAYER_H
-// -----------------------------------------------------------------------------
-// Includes
-// -----------------------------------------------------------------------------
-
#include "sword25/kernel/common.h"
#include "sword25/kernel/service.h"
#include "sword25/fmv/theora_decoder.h"
@@ -46,10 +42,6 @@
namespace Sword25 {
-// -----------------------------------------------------------------------------
-// Class definitions
-// -----------------------------------------------------------------------------
-
class MoviePlayer : public Service {
public:
// -----------------------------------------------------------------------------
@@ -73,14 +65,14 @@ public:
* @param Z Z indicates the position of the film on the main graphics layer
* @return Returns false if an error occured while loading, otherwise true.
*/
- bool LoadMovie(const Common::String &Filename, uint Z);
+ bool loadMovie(const Common::String &filename, uint z);
/**
* Unloads the currently loaded movie file.
* @return Returns false if an error occurred while unloading, otherwise true.
* @remark This method can only be called when IsMovieLoaded() returns true.
*/
- bool UnloadMovie();
+ bool unloadMovie();
/**
* Plays the loaded movie.
@@ -90,7 +82,7 @@ public:
* @return Returns false if an error occurred while starting, otherwise true.
* @remark This method can only be called when IsMovieLoaded() returns true.
*/
- bool Play();
+ bool play();
/**
* Pauses movie playback.
@@ -99,23 +91,23 @@ public:
* @return Returns false if an error occurred while pausing, otherwise true.
* @remark This method can only be called when IsMovieLoaded() returns true.
*/
- bool Pause();
+ bool pause();
/**
* This function must be called once per frame.
*/
- void Update();
+ void update();
/**
* Returns whether a film is loaded for playback.
*/
- bool IsMovieLoaded();
+ bool isMovieLoaded();
/**
* Returns whether the movie playback is paused.
* @remark This method can only be called when IsMovieLoaded() returns true.
*/
- bool IsPaused();
+ bool isPaused();
/**
* Returns the scaling factor for the loaded film.
@@ -125,22 +117,23 @@ public:
* @return Returns the scaling factor of the film.
* @remark This method can only be called when IsMovieLoaded() returns true.
*/
- float GetScaleFactor();
+ float getScaleFactor();
/**
* Sets the factor by which the loaded film is to be scaled.
* @param ScaleFactor The desired scale factor.
* @remark This method can only be called when IsMovieLoaded() returns true.
*/
- void SetScaleFactor(float ScaleFactor);
+ void setScaleFactor(float scaleFactor);
/**
* Returns the current playing position in seconds.
* @remark This method can only be called when IsMovieLoaded() returns true.
*/
- double GetTime();
+ double getTime();
+
private:
- bool _RegisterScriptBindings();
+ bool registerScriptBindings();
TheoraDecoder _decoder;