Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/avi_play/src/subprojects/importer/movie_player_test.cc @ 6289

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

branches/avi_play: begin of the media_player implementation

File size: 1.0 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
13   co-programmer: ...
14
15   this file extends the framework file, so it renders what i want.
16*/
17
18#include "framework.h"
19
20#include "light.h"
21
22#include "texture_sequence.h"
23#include "material.h"
24
25#include "objModel.h"
26
27#include "primitive_model.h"
28#include <stdlib.h>
29
30#include "resource_manager.h"
31#include "movie_player.h";
32
33MoviePlayer* movie_player;
34
35void Framework::moduleInit(int argc, char** argv)
36{
37  movie_player = new MoviePlayer(argv[1]);
38
39  movie_player->printInformation();
40
41}
42
43void Framework::moduleEventHandler(SDL_Event* event)
44{
45
46}
47
48void Framework::moduleTick(float dt)
49{
50
51}
52
53void Framework::moduleDraw(void) const
54{
55
56}
57
58
59void Framework::moduleHelp(void) const
60{
61
62}
Note: See TracBrowser for help on using the repository browser.