Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/skybox2/src/modules/designtools/CreateStars.cc @ 6936

Last change on this file since 6936 was 6936, checked in by gionc, 14 years ago

updated StarCreator

File size: 4.1 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Gion-Andri Cantieni
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "CreateStars.h"
30
31#include "core/ConsoleCommand.h"
32#include "core/CoreIncludes.h"
33#include "core/ConfigValueIncludes.h"
34#include "core/ScopedSingletonManager.h"
35#include "core/BaseObject.h"
36
37
38#include "core/XMLPort.h"
39
40#include "graphics/Billboard.h"
41
42#include <OgreVector3.h>
43#include <math.h>
44 
45namespace orxonox
46{
47
48    CreateFactory(CreateStars);
49
50    CreateStars::CreateStars(BaseObject* creator) : BaseObject(creator)
51
52    {
53        RegisterObject(CreateStars);
54        this->material_ = "Examples/Flare";
55        this->alpha_ = 0.7;
56        this->alphaDiff_ = 0.5;
57        this->radiusDiff_ = 0.9;
58        this->colour_.r = 1;
59        this->colour_.g = 1;
60        this->colour_.b = 1;
61        this->colourDiff_ = 0.1;
62    }
63
64    CreateStars::~CreateStars()
65    {
66        while( billboards_.size()!=0 ) 
67        {
68            delete(billboards_.back());
69            billboards_.pop_back();
70
71        }
72
73        billboards_.clear();
74    }
75
76    void CreateStars::createBillboards()
77    {
78
79        for(int i=0; i < numStars_; i++) 
80        {
81            Billboard* bb = new Billboard(this);
82
83            float r = rnd(-colourDiff_,colourDiff_);
84            float g = rnd(-colourDiff_,colourDiff_);
85            float b = rnd(-colourDiff_,colourDiff_);
86            orxonox::ColourValue thisColour = colour_;
87            float alpha = alpha_+rnd(-alphaDiff_,alphaDiff_);
88            thisColour.r=clamp(thisColour.r*alpha+r, 0.0f, 1.0f);
89            thisColour.g=clamp(thisColour.g*alpha+g, 0.0f, 1.0f);
90            thisColour.b=clamp(thisColour.b*alpha+b, 0.0f, 1.0f);
91
92            bb->setMaterial(material_);
93            bb->setColour(thisColour);
94
95            float phi;
96            float teta;
97
98            while(1) 
99            {
100                phi = rnd(2*M_PI);
101                teta = rnd(M_PI);
102                float random = rnd(1);
103                if(sin(teta)>random) break;
104            }
105            float radius = rnd(radiusDiff_,1)*radius_;
106            bb->setPosition( PolarToCartesian(phi, teta, radius) );
107            billboards_.push_back(bb);
108        }
109    }
110
111    Vector3 CreateStars::PolarToCartesian(float phi, float teta, float radius) 
112    {
113        float x = radius * cos(phi) * sin(teta);
114        float y = radius * sin(phi) * sin(teta);
115        float z = radius * cos(teta);
116        return Vector3(x,y,z);
117    }
118
119    void CreateStars::XMLPort(Element& xmlelement, XMLPort::Mode mode)
120    {
121        SUPER(CreateStars, XMLPort, xmlelement, mode);
122
123        XMLPortParam(CreateStars, "numStars", setNumStars, getNumStars, xmlelement, mode);
124        XMLPortParam(CreateStars, "material", setMaterial, getMaterial, xmlelement, mode);
125        XMLPortParam(CreateStars, "colour", setColour, getColour, xmlelement, mode);
126        XMLPortParam(CreateStars, "alpha", setAlpha, getAlpha, xmlelement, mode);
127        XMLPortParam(CreateStars, "colourDiff", setColourDiff, getColourDiff, xmlelement, mode);
128        XMLPortParam(CreateStars, "alphaDiff", setAlphaDiff, getAlphaDiff, xmlelement, mode);
129        XMLPortParam(CreateStars, "radiusDiff", setRadiusDiff, getRadiusDiff, xmlelement, mode);
130        XMLPortParam(CreateStars, "radius", setRadius, getRadius, xmlelement, mode);
131        }
132
133}
Note: See TracBrowser for help on using the repository browser.