Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/avi_play/src/story_entities/movie_loader.cc @ 6599

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

avi_play: movie plays (not fullscreen)

File size: 2.7 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, Stefan Lienhard
13   co-programmer:
14*/
15
16#include "movie_loader.h"
17
18#include "movie_player.h"
19#include "factory.h"
20#include "graphics_engine.h"
21#include "load_param.h"
22#include "resource_manager.h"
23
24
25using namespace std;
26
27CREATE_FACTORY(MovieLoader, CL_MOVIE_LOADER);
28
29MovieLoader::MovieLoader(const TiXmlElement* root)
30{
31  this->setClassID(CL_MOVIE_LOADER, "MovieLoader");
32
33  movie_player = new MoviePlayer();
34  this->loadParams(root);
35}
36
37MovieLoader::~MovieLoader()
38{
39  PRINTF(4)("Deleted MoviePlayer\n");
40}
41
42
43
44void MovieLoader::loadParams(const TiXmlElement* root)
45{
46  StoryEntity::loadParams(root);
47
48  LoadParam(root, "name", this, MovieLoader, loadMovie);
49}
50
51void MovieLoader::loadMovie(const char* filename)
52{
53  movie_player->loadMovie(filename);
54
55  PRINTF(0)("\nloaded Movie %s\n\n", filename);
56}
57
58
59ErrorMessage MovieLoader::init()
60{
61
62}
63
64
65ErrorMessage MovieLoader::loadData()
66{
67
68}
69
70
71ErrorMessage MovieLoader::unloadData()
72{
73
74}
75
76bool MovieLoader::start()
77{
78  PRINTF(0)("\nMovieLoader INFO:\n");
79  movie_player->printInformation();
80  PRINTF(0)("\n");
81
82  this->isRunning = true;
83
84  this->run();
85}
86
87bool MovieLoader::stop()
88{
89  this->isRunning = false;
90}
91
92bool MovieLoader::pause() { }
93bool MovieLoader::resume() { }
94
95void MovieLoader::run()
96{
97  // first timestamp for t = 0
98  this->lastFrame = SDL_GetTicks ();
99  this->movie_player->start(0);
100
101  while( this->isRunning)
102  {
103
104    this->tick();
105    this->draw();
106
107  }
108}
109
110void MovieLoader::draw() const
111{
112  glClear( GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
113
114
115  GraphicsEngine::enter2DMode();
116
117  glEnable(GL_TEXTURE_2D);
118  glBindTexture(GL_TEXTURE_2D, movie_player->getTexture());
119
120  glColor3f(1.0, 1.0, 1.0);
121
122  glBegin(GL_QUADS);
123    glTexCoord2f(1.0f, 0.0f); glVertex2f( 0, 0);
124    glTexCoord2f(1.0f, 1.0f); glVertex2f( 0, 100);
125    glTexCoord2f(0.0f, 1.0f); glVertex2f( 100, 100);
126    glTexCoord2f(0.0f, 0.0f); glVertex2f( 100, 0);
127  glEnd();
128
129  GraphicsEngine::leave2DMode();
130
131  SDL_GL_SwapBuffers();
132}
133
134
135void MovieLoader::tick()
136{
137  // get timestamp
138  currentFrame = SDL_GetTicks();
139
140  // calculate time difference in milliseconds (Uint32)
141  this->dt = currentFrame - this->lastFrame;
142  // calculate time difference in seconds (float)
143  this->dts = (float)this->dt / 1000.0f;
144
145  movie_player->tick(dts);
146
147  if (movie_player->getStatus() == STOP)
148    this->isRunning = false;
149
150  this->lastFrame = currentFrame;
151}
Note: See TracBrowser for help on using the repository browser.