aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/fmv/movieplayer.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-06 13:13:25 +0000
committerEugene Sandulenko2010-10-12 22:35:55 +0000
commit47904bc7b2992189bb554833f00a79ff0fea9fb8 (patch)
tree1cec51758c6741b970bd064fafee77607b9f884f /engines/sword25/fmv/movieplayer.h
parentca17def625154e5f758b797e4fc48c76b0566320 (diff)
downloadscummvm-rg350-47904bc7b2992189bb554833f00a79ff0fea9fb8.tar.gz
scummvm-rg350-47904bc7b2992189bb554833f00a79ff0fea9fb8.tar.bz2
scummvm-rg350-47904bc7b2992189bb554833f00a79ff0fea9fb8.zip
SWORD25: Mass-astyle.
svn-id: r53222
Diffstat (limited to 'engines/sword25/fmv/movieplayer.h')
-rw-r--r--engines/sword25/fmv/movieplayer.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/engines/sword25/fmv/movieplayer.h b/engines/sword25/fmv/movieplayer.h
index be841c51a9..08d0012388 100644
--- a/engines/sword25/fmv/movieplayer.h
+++ b/engines/sword25/fmv/movieplayer.h
@@ -23,7 +23,7 @@
*
*/
-/*
+/*
* This code is based on Broken Sword 2.5 engine
*
* Copyright (c) Malte Thiesen, Daniel Queteschiner and Michael Elsdoerfer
@@ -67,16 +67,16 @@ public:
* This method loads a movie file and prepares it for playback.
* There can be oly one movie file loaded at a time. If you already have loaded a
* movie file, it will be unloaded and, if necessary, stopped playing.
- * @param Filename The filename of the movie file to be loaded
- * @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.
+ * @param Filename The filename of the movie file to be loaded
+ * @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, unsigned int 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.
+ * @return Returns false if an error occurred while unloading, otherwise true.
+ * @remark This method can only be called when IsMovieLoaded() returns true.
*/
bool UnloadMovie();
@@ -85,8 +85,8 @@ public:
*
* The film will be keeping the aspect ratio of the screen.
* If the film was previously paused with Pause(), then the film will resume playing.
- * @return Returns false if an error occurred while starting, otherwise true.
- * @remark This method can only be called when IsMovieLoaded() returns true.
+ * @return Returns false if an error occurred while starting, otherwise true.
+ * @remark This method can only be called when IsMovieLoaded() returns true.
*/
bool Play();
@@ -94,8 +94,8 @@ public:
* Pauses movie playback.
*
* A paused movie can later be resumed by calling the Play() method again.
- * @return Returns false if an error occurred while pausing, otherwise true.
- * @remark This method can only be called when IsMovieLoaded() returns true.
+ * @return Returns false if an error occurred while pausing, otherwise true.
+ * @remark This method can only be called when IsMovieLoaded() returns true.
*/
bool Pause();
@@ -111,7 +111,7 @@ public:
/**
* Returns whether the movie playback is paused.
- * @remark This method can only be called when IsMovieLoaded() returns true.
+ * @remark This method can only be called when IsMovieLoaded() returns true.
*/
bool IsPaused();
@@ -120,21 +120,21 @@ public:
*
* When a movie is loaded, the scaling factor is automatically selected so that the film
* takes the maximum screen space, without the film being distorted.
- * @return Returns the scaling factor of the film.
- * @remark This method can only be called when IsMovieLoaded() returns true.
+ * @return Returns the scaling factor of the film.
+ * @remark This method can only be called when IsMovieLoaded() returns true.
*/
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.
+ * @param ScaleFactor The desired scale factor.
+ * @remark This method can only be called when IsMovieLoaded() returns true.
*/
void SetScaleFactor(float ScaleFactor);
/**
* Returns the current playing position in seconds.
- * @remark This method can only be called when IsMovieLoaded() returns true.
+ * @remark This method can only be called when IsMovieLoaded() returns true.
*/
double GetTime();