[6741] | 1 | /* |
---|
[7810] | 2 | orxonox - the future of 3D-vertical-scrollers |
---|
[6741] | 3 | |
---|
[7810] | 4 | Copyright (C) 2004 orx |
---|
[6741] | 5 | |
---|
[7810] | 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. |
---|
[6741] | 10 | |
---|
| 11 | ### File Specific: |
---|
[7810] | 12 | main-programmer: hdavid, amaechler |
---|
[6741] | 13 | */ |
---|
| 14 | |
---|
| 15 | #include "fog_effect.h" |
---|
| 16 | |
---|
[7193] | 17 | #include "util/loading/load_param.h" |
---|
| 18 | #include "util/loading/factory.h" |
---|
[6741] | 19 | |
---|
[6772] | 20 | #include "glincl.h" |
---|
[6741] | 21 | |
---|
[7810] | 22 | /*#include "shell_command.h" |
---|
| 23 | SHELL_COMMAND(activateFog, FogEffect, FogEffect::activate) |
---|
| 24 | ->setAlias("aFog"); |
---|
| 25 | SHELL_COMMAND(deactivateFog, FogEffect, FogEffect::deactivate) |
---|
| 26 | ->setAlias("dFog");*/ |
---|
[6772] | 27 | |
---|
[6741] | 28 | using namespace std; |
---|
| 29 | |
---|
[6772] | 30 | CREATE_FACTORY(FogEffect, CL_FOG_EFFECT); |
---|
[6741] | 31 | |
---|
[7810] | 32 | FogEffect::FogEffect(const TiXmlElement* root) |
---|
[6741] | 33 | { |
---|
[7810] | 34 | this->setClassID(CL_FOG_EFFECT, "FogEffect"); |
---|
[6741] | 35 | |
---|
[7810] | 36 | this->init(); |
---|
[6772] | 37 | |
---|
[7810] | 38 | if (root != NULL) |
---|
| 39 | this->loadParams(root); |
---|
[7107] | 40 | |
---|
[7810] | 41 | this->activate(); |
---|
[6741] | 42 | } |
---|
| 43 | |
---|
| 44 | |
---|
| 45 | FogEffect::~FogEffect() |
---|
[6980] | 46 | { |
---|
[7810] | 47 | this->deactivate(); |
---|
[6980] | 48 | } |
---|
[6741] | 49 | |
---|
| 50 | |
---|
| 51 | void FogEffect::loadParams(const TiXmlElement* root) |
---|
| 52 | { |
---|
[7810] | 53 | WeatherEffect::loadParams(root); |
---|
[6741] | 54 | |
---|
[7810] | 55 | LoadParam(root, "mode", this, FogEffect, setFogMode); |
---|
| 56 | LoadParam(root, "density", this, FogEffect, setFogDensity); |
---|
| 57 | LoadParam(root, "range", this, FogEffect, setFogRange); |
---|
| 58 | LoadParam(root, "color", this, FogEffect, setFogColor); |
---|
| 59 | } |
---|
[6772] | 60 | |
---|
[7810] | 61 | bool FogEffect::init() |
---|
| 62 | { |
---|
| 63 | //default values |
---|
| 64 | this->fogMode = GL_EXP2; |
---|
| 65 | this->fogDensity = 0.001; |
---|
| 66 | this->fogStart = 0; |
---|
| 67 | this->fogEnd = 5000; |
---|
| 68 | this->colorVector = Vector(0.7, 0.7, 0.7); |
---|
[6741] | 69 | } |
---|
| 70 | |
---|
| 71 | |
---|
| 72 | |
---|
| 73 | bool FogEffect::activate() |
---|
[6752] | 74 | { |
---|
[7810] | 75 | PRINTF(0)( "Enabling FogEffect, mode: %i, density: %f, start: %f, end: %f, color %f, %f, %f\n", this->fogMode, this->fogDensity, this->fogStart, this->fogEnd, this->colorVector.x, this->colorVector.y, this->colorVector.z); |
---|
[6772] | 76 | |
---|
[7810] | 77 | glEnable(GL_FOG); |
---|
| 78 | { |
---|
| 79 | GLfloat fogColor[4] = { colorVector.x, colorVector.y, colorVector.z, 1.0}; |
---|
[6741] | 80 | |
---|
[7810] | 81 | glFogi(GL_FOG_MODE, this->fogMode); |
---|
| 82 | glFogfv(GL_FOG_COLOR, fogColor); |
---|
| 83 | glFogf(GL_FOG_DENSITY, this->fogDensity); |
---|
| 84 | glHint(GL_FOG_HINT, GL_DONT_CARE); |
---|
| 85 | glFogf(GL_FOG_START, this->fogStart); |
---|
| 86 | glFogf(GL_FOG_END, this->fogEnd); |
---|
| 87 | } |
---|
| 88 | glClearColor(0.5, 0.5, 0.5, 1.0); |
---|
[6752] | 89 | } |
---|
| 90 | |
---|
| 91 | |
---|
[6741] | 92 | bool FogEffect::deactivate() |
---|
[6772] | 93 | { |
---|
[7810] | 94 | PRINTF(0)("Deactivating FogEffect\n"); |
---|
| 95 | glDisable(GL_FOG); |
---|
[6772] | 96 | } |
---|
| 97 | |
---|
| 98 | |
---|
[7221] | 99 | GLint FogEffect::stringToFogMode(const std::string& mode) |
---|
[6772] | 100 | { |
---|
[7810] | 101 | if(mode == "GL_LINEAR") |
---|
| 102 | return GL_LINEAR; |
---|
| 103 | else if(mode == "GL_EXP") |
---|
| 104 | return GL_EXP; |
---|
| 105 | else if(mode == "GL_EXP2" ) |
---|
| 106 | return GL_EXP2; |
---|
| 107 | else |
---|
| 108 | return -1; |
---|
[6772] | 109 | } |
---|
| 110 | |
---|
[7810] | 111 | |
---|