Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/avi_play/src/lib/graphics/importer/movie_player.cc @ 5939

Last change on this file since 5939 was 5939, checked in by hdavid, 18 years ago

branches/avi_file: created movie_player files

File size: 1.2 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: David Hasenfratz, Stephan Lienhard
13   co-programmer:
14*/
15
16
17
18/* this is for debug output. It just says, that all calls to PRINT() belong to the DEBUG_MODULE_MEDIA module
19   For more information refere to https://www.orxonox.net/cgi-bin/trac.cgi/wiki/DebugOutput
20*/
21#define DEBUG_MODULE_MEDIA
22
23
24/* include your own header */
25#include "movie_player.h"
26
27/* header for debug output */
28#include "debug.h"
29
30
31/**
32 * Default constructor
33 */
34MoviePlayer::MoviePlayer(const char* filename)
35{
36
37}
38
39/**
40 * Default destructor
41 */
42MoviePlayer::~MoviePlayer()
43{
44
45}
46
47void MoviePlayer::start(unsigned int start_frame)
48{
49
50}
51
52void MoviePlayer::resume()
53{
54
55}
56
57void MoviePlayer::pause()
58{
59
60}
61
62void MoviePlayer::stop()
63{
64
65}
66
67void MoviePlayer::tick(float time)
68{
69
70}
71
72const void MoviePlayer::draw()
73{
74
75}
76
77void MoviePlayer::setSpeed(float speed)
78{
79
80}
81
82float MoviePlayer::getSpeed()
83{
84
85}
Note: See TracBrowser for help on using the repository browser.