Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/world_entities/weather_effects/cloud_effect.cc @ 9863

Last change on this file since 9863 was 9863, checked in by bensch, 18 years ago

less debug output

File size: 12.8 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: hdavid, amaechler
13
14  INSPIRED BY http://www.codesampler.com/usersrc/usersrc_6.htm#oglu_sky_dome_shader
15*/
16
17#include "cloud_effect.h"
18
19#include "util/loading/load_param.h"
20#include "util/loading/factory.h"
21
22#include "material.h"
23#include "state.h"
24#include "p_node.h"
25#include "shader.h"
26#include "shell_command.h"
27#include "t_animation.h"
28#include "script_class.h"
29
30#include "resource_shader.h"
31
32#include "class_id_DEPRECATED.h"
33
34Vector    CloudEffect::cloudColor;
35Vector    CloudEffect::skyColor;
36Vector    CloudEffect::newCloudColor;
37Vector    CloudEffect::newSkyColor;
38
39bool      CloudEffect::fadeSky;
40bool      CloudEffect::fadeCloud;
41float     CloudEffect::fadeTime;
42
43ObjectListDefinitionID(CloudEffect, CL_CLOUD_EFFECT);
44
45
46SHELL_COMMAND(activate, CloudEffect, activateCloud);
47SHELL_COMMAND(deactivate, CloudEffect, deactivateCloud);
48SHELL_COMMAND(skyColor, CloudEffect, shellSkyColor);
49SHELL_COMMAND(cloudColor, CloudEffect, shellCloudColor);
50
51
52CREATE_SCRIPTABLE_CLASS(CloudEffect,
53                        addMethod("skyColor", Executor4<CloudEffect, lua_State*,float,float,float,float>(&CloudEffect::shellSkyColor))
54                        ->addMethod("cloudColor", Executor4<CloudEffect, lua_State*,float,float,float,float>(&CloudEffect::shellCloudColor))
55                        ->addMethod("activate", Executor0<CloudEffect, lua_State*>(&CloudEffect::activate))
56                        ->addMethod("deactivate", Executor0<CloudEffect, lua_State*>(&CloudEffect::deactivate))
57                       );
58
59
60CREATE_FACTORY(CloudEffect);
61
62CloudEffect::CloudEffect(const TiXmlElement* root) {
63  this->registerObject(this, CloudEffect::_objectList);
64
65    this->init();
66
67    if (root != NULL)
68        this->loadParams(root);
69
70    if(cloudActivate)
71        this->activate();
72}
73
74CloudEffect::~CloudEffect() {
75    this->deactivate();
76
77    if (glIsTexture(noise3DTexName))
78        glDeleteTextures(1, &noise3DTexName);
79}
80
81
82void CloudEffect::init() {
83    PRINTF(4)("Initializing CloudEffect\n");
84
85    // default values
86    this->offsetZ = 0;
87    this->animationSpeed = 2;
88    this->scale = 0.0004f;
89    this->atmosphericRadius = 4000;
90    this->planetRadius = 1500;
91    this->divs = 15;
92    this->cloudActivate = false;
93    fadeSky = false;
94    fadeCloud = false;
95
96
97    skyColor = Vector(0.0f, 0.0f, 0.8f);
98    cloudColor = Vector(0.8f, 0.8f, 0.8f);
99    newSkyColor = skyColor;
100    newCloudColor = cloudColor;
101
102    this->noise3DTexSize = 128;
103    this->noise3DTexName = 0;
104
105    this->make3DNoiseTexture();
106
107    glGenTextures(1, &noise3DTexName);
108    glBindTexture(GL_TEXTURE_3D, noise3DTexName);
109
110    glTexParameterf(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_REPEAT);
111    glTexParameterf(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_REPEAT);
112    glTexParameterf(GL_TEXTURE_3D, GL_TEXTURE_WRAP_R, GL_REPEAT);
113    glTexParameterf(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
114    glTexParameterf(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
115
116    glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA,
117                 noise3DTexSize, noise3DTexSize, noise3DTexSize,
118                 0, GL_RGBA, GL_UNSIGNED_BYTE, noise3DTexPtr);
119
120    this->skydome = new Skydome();
121    this->skydome->setTexture(noise3DTexName);
122
123    this->shader = ResourceShader("/shaders/cloud.vert", "/shaders/cloud.frag");
124
125    this->shader.activateShader();
126
127    Shader::Uniform(shader, "Noise").set(0);
128
129    this->offset = new Shader::Uniform(shader, "Offset");
130    this->skycolor = new Shader::Uniform(shader, "SkyColor");
131    this->cloudcolor = new Shader::Uniform(shader, "CloudColor");
132
133    this->shader.deactivateShader();
134
135    this->skydome->setShader(&shader);
136}
137
138
139void CloudEffect::loadParams(const TiXmlElement* root) {
140    WeatherEffect::loadParams(root);
141
142    LoadParam(root, "speed", this, CloudEffect, setAnimationSpeed);
143    LoadParam(root, "scale", this, CloudEffect, setCloudScale);
144    LoadParam(root, "cloudcolor", this, CloudEffect, setCloudColor);
145    LoadParam(root, "skycolor", this, CloudEffect, setSkyColor);
146
147    LoadParam(root, "planetRadius", this, CloudEffect, setPlanetRadius);
148    LoadParam(root, "atmosphericRadius", this, CloudEffect, setAtmosphericRadius);
149    LoadParam(root, "divisions", this, CloudEffect, setDivisions);
150
151    LOAD_PARAM_START_CYCLE(root, element);
152    {
153        LoadParam_CYCLE(element, "option", this, CloudEffect, setCloudOption);
154    }
155    LOAD_PARAM_END_CYCLE(element);
156}
157
158
159void CloudEffect::activate() {
160    PRINTF(0)( "Activating\n");
161
162    // Can only be set after the loadParams call
163    this->shader.activateShader();
164    Shader::Uniform(shader, "Scale").set(this->scale);
165    this->skycolor->set
166    (skyColor.x, skyColor.y, skyColor.z);
167    this->cloudcolor->set
168    (cloudColor.x, cloudColor.y, cloudColor.z);
169    this->shader.deactivateShader();
170
171    this->skydome->generateSkyPlane(this->divs, this->planetRadius, this->atmosphericRadius, 1, 1);
172    this->skydome->activate();
173
174    this->cloudActivate = true;
175}
176
177void CloudEffect::deactivate() {
178    PRINTF(4)("Deactivating CloudEffect\n");
179
180    this->skydome->deactivate();
181    this->cloudActivate = false;
182}
183
184void CloudEffect::draw() const {}
185
186void CloudEffect::tick (float dt) {
187
188    if (this->cloudActivate) {
189
190        this->offsetZ += 0.05 * dt * this->animationSpeed;
191
192        this->shader.activateShader();
193        this->offset->set
194        (0.0f, 0.0f, offsetZ);
195
196        if(cloudColor != newCloudColor) {
197
198            if(fadeCloud) {
199
200                this->cloudColorFadeX = new tAnimation<CloudEffect>(this, &CloudEffect::setColorCloudX);
201                this->cloudColorFadeX->setInfinity(ANIM_INF_CONSTANT);
202                this->cloudColorFadeY = new tAnimation<CloudEffect>(this, &CloudEffect::setColorCloudY);
203                this->cloudColorFadeY->setInfinity(ANIM_INF_CONSTANT);
204                this->cloudColorFadeZ = new tAnimation<CloudEffect>(this, &CloudEffect::setColorCloudZ);
205                this->cloudColorFadeZ->setInfinity(ANIM_INF_CONSTANT);
206
207                this->cloudColorFadeX->addKeyFrame(cloudColor.x, fadeTime, ANIM_LINEAR);
208                this->cloudColorFadeX->addKeyFrame(newCloudColor.x, 0, ANIM_LINEAR);
209
210                this->cloudColorFadeY->addKeyFrame(cloudColor.y, fadeTime, ANIM_LINEAR);
211                this->cloudColorFadeY->addKeyFrame(newCloudColor.y, 0, ANIM_LINEAR);
212
213                this->cloudColorFadeZ->addKeyFrame(cloudColor.z, fadeTime, ANIM_LINEAR);
214                this->cloudColorFadeZ->addKeyFrame(newCloudColor.z, 0, ANIM_LINEAR);
215
216                fadeCloud = false;
217
218                this->cloudColorFadeX->replay();
219                this->cloudColorFadeY->replay();
220                this->cloudColorFadeZ->replay();
221            }
222
223            this->cloudcolor->set
224            (this->cloudColor.x, this->cloudColor.y, this->cloudColor.z);
225        }
226
227        if(skyColor != newSkyColor) {
228
229            if(fadeSky) {
230
231                this->skyColorFadeX = new tAnimation<CloudEffect>(this, &CloudEffect::setColorSkyX);
232                this->skyColorFadeX->setInfinity(ANIM_INF_CONSTANT);
233                this->skyColorFadeY = new tAnimation<CloudEffect>(this, &CloudEffect::setColorSkyY);
234                this->skyColorFadeY->setInfinity(ANIM_INF_CONSTANT);
235                this->skyColorFadeZ = new tAnimation<CloudEffect>(this, &CloudEffect::setColorSkyZ);
236                this->skyColorFadeZ->setInfinity(ANIM_INF_CONSTANT);
237
238                this->skyColorFadeX->addKeyFrame(skyColor.x, fadeTime, ANIM_LINEAR);
239                this->skyColorFadeX->addKeyFrame(newSkyColor.x, 0, ANIM_LINEAR);
240
241                this->skyColorFadeY->addKeyFrame(skyColor.y, fadeTime, ANIM_LINEAR);
242                this->skyColorFadeY->addKeyFrame(newSkyColor.y, 0, ANIM_LINEAR);
243
244                this->skyColorFadeZ->addKeyFrame(skyColor.z, fadeTime, ANIM_LINEAR);
245                this->skyColorFadeZ->addKeyFrame(newSkyColor.z, 0, ANIM_LINEAR);
246
247                fadeSky = false;
248
249                this->skyColorFadeX->replay();
250                this->skyColorFadeY->replay();
251                this->skyColorFadeZ->replay();
252            }
253
254            this->skycolor->set
255            (this->skyColor.x, this->skyColor.y, this->skyColor.z);
256        }
257
258        this->shader.deactivateShader();
259    }
260}
261
262
263void CloudEffect::setColorSkyX(float color) {
264    skyColor.x = color;
265}
266void CloudEffect::setColorSkyY(float color) {
267    skyColor.y = color;
268}
269void CloudEffect::setColorSkyZ(float color) {
270    skyColor.z = color;
271}
272void CloudEffect::setColorCloudX(float color) {
273    cloudColor.x = color;
274}
275void CloudEffect::setColorCloudY(float color) {
276    cloudColor.y = color;
277}
278void CloudEffect::setColorCloudZ(float color) {
279    cloudColor.z = color;
280}
281
282void CloudEffect::changeSkyColor(Vector color, float time) {
283    newSkyColor = color;
284    fadeSky = true;
285    fadeTime = time;
286}
287
288
289void CloudEffect::changeCloudColor(Vector color, float time) {
290    newCloudColor = color;
291    fadeCloud = true;
292    fadeTime = time;
293}
294
295void CloudEffect::shellSkyColor(float colorX, float colorY, float colorZ, float time) {
296    changeSkyColor( Vector(colorX, colorY, colorZ), time);
297}
298
299void CloudEffect::shellCloudColor(float colorX, float colorY, float colorZ, float time) {
300    changeCloudColor( Vector(colorX, colorY, colorZ), time);
301}
302
303
304
305void CloudEffect::make3DNoiseTexture() {
306    int f, i, j, k, inc;
307    int startFrequency = 4;
308    int numOctaves = 4;
309    double ni[3];
310    double inci, incj, inck;
311    int frequency = startFrequency;
312    GLubyte *ptr;
313    double amp = 0.5;
314
315    if ((noise3DTexPtr = (GLubyte *) malloc(noise3DTexSize *
316                                            noise3DTexSize *
317                                            noise3DTexSize * 4)) == NULL)
318        PRINTF(0)("ERROR: Could not allocate 3D noise texture\n");
319
320    for (f=0, inc=0; f < numOctaves;
321            ++f, frequency *= 2, ++inc, amp *= 0.5) {
322        SetNoiseFrequency(frequency);
323        ptr = noise3DTexPtr;
324        ni[0] = ni[1] = ni[2] = 0;
325
326        inci = 1.0 / (noise3DTexSize / frequency);
327        for (i=0; i<noise3DTexSize; ++i, ni[0] += inci) {
328            incj = 1.0 / (noise3DTexSize / frequency);
329            for (j=0; j<noise3DTexSize; ++j, ni[1] += incj) {
330                inck = 1.0 / (noise3DTexSize / frequency);
331                for (k=0; k<noise3DTexSize; ++k, ni[2] += inck, ptr+= 4) {
332                    *(ptr+inc) = (GLubyte) (((noise3(ni)+1.0) * amp)*128.0);
333                }
334            }
335        }
336    }
337}
338
339void CloudEffect::initNoise() {
340    int i, j, k;
341
342    srand(30757);
343    for (i = 0 ; i < B ; i++) {
344        p[i] = i;
345        g1[i] = (double)((rand() % (B + B)) - B) / B;
346
347        for (j = 0 ; j < 2 ; j++)
348            g2[i][j] = (double)((rand() % (B + B)) - B) / B;
349        normalize2(g2[i]);
350
351        for (j = 0 ; j < 3 ; j++)
352            g3[i][j] = (double)((rand() % (B + B)) - B) / B;
353        normalize3(g3[i]);
354    }
355
356    while (--i) {
357        k = p[i];
358        p[i] = p[j = rand() % B];
359        p[j] = k;
360    }
361
362    for (i = 0 ; i < B + 2 ; i++) {
363        p[B + i] = p[i];
364        g1[B + i] = g1[i];
365        for (j = 0 ; j < 2 ; j++)
366            g2[B + i][j] = g2[i][j];
367        for (j = 0 ; j < 3 ; j++)
368            g3[B + i][j] = g3[i][j];
369    }
370}
371
372void CloudEffect::SetNoiseFrequency( int frequency) {
373    start = 1;
374    B = frequency;
375    BM = B-1;
376}
377
378double CloudEffect::noise3( double vec[3]) {
379    int bx0, bx1, by0, by1, bz0, bz1, b00, b10, b01, b11;
380    double rx0, rx1, ry0, ry1, rz0, rz1, *q, sy, sz, a, b, c, d, t, u, v;
381    int i, j;
382
383    if (start) {
384        start = 0;
385        initNoise();
386    }
387
388    setup(0, bx0,bx1, rx0,rx1);
389    setup(1, by0,by1, ry0,ry1);
390    setup(2, bz0,bz1, rz0,rz1);
391
392    i = p[ bx0 ];
393    j = p[ bx1 ];
394
395    b00 = p[ i + by0 ];
396    b10 = p[ j + by0 ];
397    b01 = p[ i + by1 ];
398    b11 = p[ j + by1 ];
399
400    t  = s_curve(rx0);
401    sy = s_curve(ry0);
402    sz = s_curve(rz0);
403
404    q = g3[ b00 + bz0 ] ;
405    u = at3(rx0,ry0,rz0);
406    q = g3[ b10 + bz0 ] ;
407    v = at3(rx1,ry0,rz0);
408    a = lerp(t, u, v);
409
410    q = g3[ b01 + bz0 ] ;
411    u = at3(rx0,ry1,rz0);
412    q = g3[ b11 + bz0 ] ;
413    v = at3(rx1,ry1,rz0);
414    b = lerp(t, u, v);
415
416    c = lerp(sy, a, b);
417
418    q = g3[ b00 + bz1 ] ;
419    u = at3(rx0,ry0,rz1);
420    q = g3[ b10 + bz1 ] ;
421    v = at3(rx1,ry0,rz1);
422    a = lerp(t, u, v);
423
424    q = g3[ b01 + bz1 ] ;
425    u = at3(rx0,ry1,rz1);
426    q = g3[ b11 + bz1 ] ;
427    v = at3(rx1,ry1,rz1);
428    b = lerp(t, u, v);
429
430    d = lerp(sy, a, b);
431
432    return lerp(sz, c, d);
433}
434
435void CloudEffect::normalize2( double v[2]) {
436    double s;
437
438    s = sqrt(v[0] * v[0] + v[1] * v[1]);
439    v[0] = v[0] / s;
440    v[1] = v[1] / s;
441}
442
443void CloudEffect::normalize3( double v[3]) {
444    double s;
445
446    s = sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]);
447    v[0] = v[0] / s;
448    v[1] = v[1] / s;
449    v[2] = v[2] / s;
450}
451
Note: See TracBrowser for help on using the repository browser.