Last change
on this file since 8253 was
7193,
checked in by bensch, 19 years ago
|
orxonox/trunk: new style for resources (prework/movement)
|
File size:
1.3 KB
|
Rev | Line | |
---|
[6741] | 1 | |
---|
| 2 | |
---|
| 3 | /* |
---|
| 4 | orxonox - the future of 3D-vertical-scrollers |
---|
| 5 | |
---|
| 6 | Copyright (C) 2004 orx |
---|
| 7 | |
---|
| 8 | This program is free software; you can redistribute it and/or modify |
---|
| 9 | it under the terms of the GNU General Public License as published by |
---|
| 10 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 11 | any later version. |
---|
| 12 | |
---|
| 13 | ### File Specific: |
---|
| 14 | main-programmer: Patrick Boenzli |
---|
| 15 | */ |
---|
| 16 | |
---|
| 17 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GRAPHICS |
---|
| 18 | |
---|
| 19 | |
---|
| 20 | #include "graphics_effect.h" |
---|
| 21 | |
---|
[7193] | 22 | #include "util/loading/load_param.h" |
---|
[6741] | 23 | |
---|
| 24 | |
---|
| 25 | using namespace std; |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | /** |
---|
| 30 | * @param root The XML-element to load the GraphicsEffect from |
---|
| 31 | |
---|
| 32 | @todo what to do, if no GraphicsEffect-Slots are open anymore ??? |
---|
| 33 | */ |
---|
| 34 | GraphicsEffect::GraphicsEffect(const TiXmlElement* root) |
---|
| 35 | { |
---|
[6977] | 36 | this->setClassID(CL_GRAPHICS_EFFECT, "GraphicsEffect"); |
---|
[6772] | 37 | this->bActivated = false; |
---|
[6741] | 38 | } |
---|
| 39 | |
---|
| 40 | |
---|
| 41 | /** |
---|
| 42 | * destroys a GraphicsEffect |
---|
| 43 | */ |
---|
| 44 | GraphicsEffect::~GraphicsEffect() |
---|
[6772] | 45 | { |
---|
[6979] | 46 | |
---|
[6772] | 47 | } |
---|
[6741] | 48 | |
---|
| 49 | |
---|
| 50 | /** |
---|
| 51 | * @param root The XML-element to load the GraphicsEffect from |
---|
| 52 | */ |
---|
| 53 | void GraphicsEffect::loadParams(const TiXmlElement* root) |
---|
| 54 | { |
---|
| 55 | BaseObject::loadParams(root); |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | |
---|
| 59 | /** |
---|
| 60 | * initializes the graphics effect |
---|
| 61 | */ |
---|
| 62 | bool GraphicsEffect::init() |
---|
[6772] | 63 | {} |
---|
[6815] | 64 | |
---|
| 65 | |
---|
| 66 | |
---|
| 67 | /** |
---|
| 68 | * draws the effect, if needed |
---|
| 69 | */ |
---|
| 70 | void GraphicsEffect::draw() const |
---|
| 71 | {} |
---|
| 72 | |
---|
| 73 | |
---|
| 74 | |
---|
| 75 | /** |
---|
| 76 | * ticks the effect if there is any time dependancy |
---|
| 77 | */ |
---|
| 78 | void GraphicsEffect::tick(float dt) |
---|
[6873] | 79 | {} |
---|
Note: See
TracBrowser
for help on using the repository browser.