]> git.mxchange.org Git - flightgear.git/blob - src/Main/splash.cxx
Add --fg-aircraft option, and aircraft dir path list. Partial support in places that...
[flightgear.git] / src / Main / splash.cxx
1 // splash.cxx -- draws the initial splash screen
2 //
3 // Written by Curtis Olson, started July 1998.  (With a little looking
4 // at Freidemann's panel code.) :-)
5 //
6 // Copyright (C) 1997  Michele F. America  - nomimarketing@mail.telepac.pt
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 as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // 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 // $Id$
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include <osg/BlendFunc>
30 #include <osg/Camera>
31 #include <osg/Depth>
32 #include <osg/Geometry>
33 #include <osg/Node>
34 #include <osg/NodeCallback>
35 #include <osg/NodeVisitor>
36 #include <osg/StateSet>
37 #include <osg/Switch>
38 #include <osg/Texture2D>
39 #include <osgUtil/CullVisitor>
40 #include <osgText/Text>
41 #include <osgDB/ReadFile>
42
43 #include <simgear/compiler.h>
44
45 #include <simgear/debug/logstream.hxx>
46 #include <simgear/math/sg_random.h>
47 #include <simgear/misc/sg_path.hxx>
48
49 #include <GUI/new_gui.hxx>
50
51 #include "globals.hxx"
52 #include "fg_props.hxx"
53 #include "splash.hxx"
54 #include "renderer.hxx"
55 #include "fg_os.hxx"
56
57 class FGSplashUpdateCallback : public osg::Drawable::UpdateCallback {
58 public:
59   FGSplashUpdateCallback(osg::Vec4Array* colorArray, SGPropertyNode* prop) :
60     _colorArray(colorArray),
61     _colorProperty(prop),
62     _alphaProperty(fgGetNode("/sim/startup/splash-alpha", true))
63   { }
64   virtual void update(osg::NodeVisitor*, osg::Drawable*)
65   {
66     FGColor c(0, 0, 0);
67     if (_colorProperty) {
68       c.merge(_colorProperty);
69       (*_colorArray)[0][0] = c.red();
70       (*_colorArray)[0][1] = c.green();
71       (*_colorArray)[0][2] = c.blue();
72     }
73     (*_colorArray)[0][3] = _alphaProperty->getFloatValue();
74     _colorArray->dirty();
75   }
76 private:
77   osg::ref_ptr<osg::Vec4Array> _colorArray;
78   SGSharedPtr<const SGPropertyNode> _colorProperty;
79   SGSharedPtr<const SGPropertyNode> _alphaProperty;
80 };
81
82 class FGSplashTextUpdateCallback : public osg::Drawable::UpdateCallback {
83 public:
84   FGSplashTextUpdateCallback(const SGPropertyNode* prop) :
85     _textProperty(prop),
86     _alphaProperty(fgGetNode("/sim/startup/splash-alpha", true)),
87     _styleProperty(fgGetNode("/sim/gui/style[0]", true))
88   {}
89   virtual void update(osg::NodeVisitor*, osg::Drawable* drawable)
90   {
91     assert(dynamic_cast<osgText::Text*>(drawable));
92     osgText::Text* text = static_cast<osgText::Text*>(drawable);
93
94     FGColor c(1.0, 0.9, 0.0);
95     c.merge(_styleProperty->getNode("colors/splash-font"));
96     float alpha = _alphaProperty->getFloatValue();
97     text->setColor(osg::Vec4(c.red(), c.green(), c.blue(), alpha));
98
99     const char* s = _textProperty->getStringValue();
100     if (s && fgGetBool("/sim/startup/splash-progress", true))
101       text->setText(s);
102     else
103       text->setText("");
104   }
105 private:
106   SGSharedPtr<const SGPropertyNode> _textProperty;
107   SGSharedPtr<const SGPropertyNode> _alphaProperty;
108   SGSharedPtr<const SGPropertyNode> _styleProperty;
109 };
110
111
112
113 class FGSplashContentProjectionCalback : public osg::NodeCallback {
114 public:
115   virtual void operator()(osg::Node* node, osg::NodeVisitor* nv)
116   { 
117     assert(dynamic_cast<osgUtil::CullVisitor*>(nv));
118     osgUtil::CullVisitor* cullVisitor = static_cast<osgUtil::CullVisitor*>(nv);
119
120     // adjust the projection matrix in a way that preserves the aspect ratio
121     // of the content ...
122     const osg::Viewport* viewport = cullVisitor->getViewport();
123     float viewportAspect = float(viewport->height())/float(viewport->width());
124
125     float height, width;
126     if (viewportAspect < 1) {
127       height = 1;
128       width = 1/viewportAspect;
129     } else {
130       height = viewportAspect;
131       width = 1;
132     }
133
134     osg::RefMatrix* matrix = new osg::RefMatrix;
135     matrix->makeOrtho2D(-width, width, -height, height);
136
137     // The trick is to have the projection matrix adapted independent
138     // of the scenegraph but dependent on the viewport of this current
139     // camera we cull for. Therefore we do not put that projection matrix into
140     // an additional camera rather than from within that cull callback.
141     cullVisitor->pushProjectionMatrix(matrix);
142     traverse(node, nv);
143     cullVisitor->popProjectionMatrix();
144   }
145 };
146
147 char *genNameString()
148 {
149     string website = "http://www.flightgear.org";
150     string programName = "FlightGear";
151     char *name = new char[26];
152     name[20] = 114;
153     name[8] = 119;
154     name[5] = 47;
155     name[12] = 108;
156     name[2] = 116;
157     name[1] = 116;
158     name[16] = 116;
159     name[13] = 105;
160     name[17] = 103;
161     name[19] = 97;
162     name[25] = 0;
163     name[0] = 104;
164     name[24] = 103;
165     name[21] = 46;
166     name[15] = 104;
167     name[3] = 112;
168     name[22] = 111;
169     name[18] = 101;
170     name[7] = 119;
171     name[14] = 103;
172     name[23] = 114;
173     name[4] = 58;
174     name[11] = 102;
175     name[9] = 119;
176     name[10] = 46;
177     name[6] = 47;
178     return name;
179 }
180
181 static osg::Node* fgCreateSplashCamera()
182 {
183   const char* splash_texture = fgGetString("/sim/startup/splash-texture");
184   SGSharedPtr<SGPropertyNode> style = fgGetNode("/sim/gui/style[0]", true);
185
186   char *namestring = genNameString();
187   fgSetString("/sim/startup/program-name", namestring);
188   delete[] namestring;
189
190   SGPath tpath( globals->get_fg_root() );
191   if (splash_texture == NULL || !strcmp(splash_texture, "")) {
192     // load in the texture data
193     int num = (int)(sg_random() * 5.0 + 1.0);
194     char num_str[5];
195     snprintf(num_str, 4, "%d", num);
196
197     tpath.append( "Textures/Splash" );
198     tpath.concat( num_str );
199     tpath.concat( ".png" );
200   } else {
201     tpath = globals->resolve_maybe_aircraft_path(splash_texture);
202   }
203   
204   osg::Texture2D* splashTexture = new osg::Texture2D;
205   splashTexture->setImage(osgDB::readImageFile(tpath.c_str()));
206
207   osg::Camera* camera = new osg::Camera;
208   camera->setReferenceFrame(osg::Transform::ABSOLUTE_RF);
209   camera->setProjectionMatrix(osg::Matrix::ortho2D(-1, 1, -1, 1));
210   camera->setViewMatrix(osg::Matrix::identity());
211   camera->setRenderOrder(osg::Camera::POST_RENDER, 10000);
212   camera->setClearMask(0);
213   camera->setAllowEventFocus(false);
214   camera->setCullingActive(false);
215
216   osg::StateSet* stateSet = camera->getOrCreateStateSet();
217   stateSet->setMode(GL_ALPHA_TEST, osg::StateAttribute::OFF);
218   stateSet->setMode(GL_BLEND, osg::StateAttribute::ON);
219   stateSet->setAttribute(new osg::BlendFunc);
220   stateSet->setMode(GL_CULL_FACE, osg::StateAttribute::OFF);
221   stateSet->setMode(GL_DEPTH_TEST, osg::StateAttribute::OFF);
222   stateSet->setAttribute(new osg::Depth(osg::Depth::ALWAYS, 0, 1, false));
223   stateSet->setMode(GL_LIGHTING, osg::StateAttribute::OFF);
224
225
226   osg::Geometry* geometry = new osg::Geometry;
227   geometry->setSupportsDisplayList(false);
228
229   osg::Vec3Array* vertexArray = new osg::Vec3Array;
230   vertexArray->push_back(osg::Vec3(-1, -1, 0));
231   vertexArray->push_back(osg::Vec3( 1, -1, 0));
232   vertexArray->push_back(osg::Vec3( 1,  1, 0));
233   vertexArray->push_back(osg::Vec3(-1,  1, 0));
234   geometry->setVertexArray(vertexArray);
235   osg::Vec4Array* colorArray = new osg::Vec4Array;
236   colorArray->push_back(osg::Vec4(0, 0, 0, 1));
237   geometry->setColorArray(colorArray);
238   geometry->setColorBinding(osg::Geometry::BIND_OVERALL);
239   geometry->addPrimitiveSet(new osg::DrawArrays(GL_POLYGON, 0, 4));
240   geometry->setUpdateCallback(new FGSplashUpdateCallback(colorArray,
241                               style->getNode("colors/splash-screen")));
242
243   osg::Geode* geode = new osg::Geode;
244   geode->addDrawable(geometry);
245
246   stateSet = geode->getOrCreateStateSet();
247   stateSet->setRenderBinDetails(1, "RenderBin");
248   camera->addChild(geode);
249
250
251   // The group is needed because of osg is handling the cull callbacks in a
252   // different way for groups than for a geode. It does not hurt here ...
253   osg::Group* group = new osg::Group;
254   group->setCullCallback(new FGSplashContentProjectionCalback);
255   camera->addChild(group);
256
257   geode = new osg::Geode;
258   stateSet = geode->getOrCreateStateSet();
259   stateSet->setRenderBinDetails(2, "RenderBin");
260   group->addChild(geode);
261
262
263   geometry = new osg::Geometry;
264   geometry->setSupportsDisplayList(false);
265
266   vertexArray = new osg::Vec3Array;
267   vertexArray->push_back(osg::Vec3(-0.84, -0.84, 0));
268   vertexArray->push_back(osg::Vec3( 0.84, -0.84, 0));
269   vertexArray->push_back(osg::Vec3( 0.84,  0.84, 0));
270   vertexArray->push_back(osg::Vec3(-0.84,  0.84, 0));
271   geometry->setVertexArray(vertexArray);
272   osg::Vec2Array* texCoordArray = new osg::Vec2Array;
273   texCoordArray->push_back(osg::Vec2(0, 0));
274   texCoordArray->push_back(osg::Vec2(1, 0));
275   texCoordArray->push_back(osg::Vec2(1, 1));
276   texCoordArray->push_back(osg::Vec2(0, 1));
277   geometry->setTexCoordArray(0, texCoordArray);
278   colorArray = new osg::Vec4Array;
279   colorArray->push_back(osg::Vec4(1, 1, 1, 1));
280   geometry->setColorArray(colorArray);
281   geometry->setColorBinding(osg::Geometry::BIND_OVERALL);
282   geometry->addPrimitiveSet(new osg::DrawArrays(GL_POLYGON, 0, 4));
283   geometry->setUpdateCallback(new FGSplashUpdateCallback(colorArray, 0));
284   stateSet = geometry->getOrCreateStateSet();
285   stateSet->setTextureMode(0, GL_TEXTURE_2D, osg::StateAttribute::ON);
286   stateSet->setTextureAttribute(0, splashTexture);
287   geode->addDrawable(geometry);
288
289
290   osgText::Text* text = new osgText::Text;
291   std::string fn = style->getStringValue("fonts/splash", "");
292   text->setFont(globals->get_fontcache()->getfntpath(fn.c_str()).str());
293   text->setCharacterSize(0.06);
294   text->setColor(osg::Vec4(1, 1, 1, 1));
295   text->setPosition(osg::Vec3(0, -0.92, 0));
296   text->setAlignment(osgText::Text::CENTER_CENTER);
297   SGPropertyNode* prop = fgGetNode("/sim/startup/splash-progress-text", true);
298   text->setUpdateCallback(new FGSplashTextUpdateCallback(prop));
299   geode->addDrawable(text);
300
301   text = new osgText::Text;
302   text->setFont(globals->get_fontcache()->getfntpath(fn.c_str()).str());
303   text->setCharacterSize(0.08);
304   text->setColor(osg::Vec4(1, 1, 1, 1));
305   text->setPosition(osg::Vec3(0, 0.92, 0));
306   text->setAlignment(osgText::Text::CENTER_CENTER);
307   prop = fgGetNode("/sim/startup/program-name", "FlightGear");
308   text->setUpdateCallback(new FGSplashTextUpdateCallback(prop));
309   geode->addDrawable(text);
310
311
312   text = new osgText::Text;
313   text->setFont(globals->get_fontcache()->getfntpath(fn.c_str()).str());
314   text->setCharacterSize(0.06);
315   text->setColor(osg::Vec4(1, 1, 1, 1));
316   text->setPosition(osg::Vec3(0, 0.82, 0));
317   text->setAlignment(osgText::Text::CENTER_CENTER);
318   prop = fgGetNode("/sim/startup/splash-title", true);
319   text->setUpdateCallback(new FGSplashTextUpdateCallback(prop));
320   geode->addDrawable(text);
321
322   return camera;
323 }
324
325 // update callback for the switch node guarding that splash
326 class FGSplashGroupUpdateCallback : public osg::NodeCallback {
327 public:
328   FGSplashGroupUpdateCallback() :
329     _splashAlphaNode(fgGetNode("/sim/startup/splash-alpha", true))
330   { }
331   virtual void operator()(osg::Node* node, osg::NodeVisitor* nv)
332   {
333     assert(dynamic_cast<osg::Group*>(node));
334     osg::Group* group = static_cast<osg::Group*>(node);
335
336     double alpha = _splashAlphaNode->getDoubleValue();
337     if (alpha <= 0 || !fgGetBool("/sim/startup/splash-screen"))
338       group->removeChild(0, group->getNumChildren());
339     else if (group->getNumChildren() == 0)
340       group->addChild(fgCreateSplashCamera());
341
342     traverse(node, nv);
343   }
344 private:
345   SGSharedPtr<const SGPropertyNode> _splashAlphaNode;
346 };
347
348 osg::Node* fgCreateSplashNode() {
349   osg::Group* group = new osg::Group;
350   group->setUpdateCallback(new FGSplashGroupUpdateCallback);
351   return group;
352 }
353
354 // Initialize the splash screen
355 void fgSplashInit () {
356   SG_LOG( SG_GENERAL, SG_INFO, "Initializing splash screen" );
357   globals->get_renderer()->splashinit();
358   fgRequestRedraw();
359 }
360
361 void fgSplashProgress ( const char *text ) {
362   SG_LOG( SG_GENERAL, SG_INFO, "Splash screen progress " << text );
363   fgSetString("/sim/startup/splash-progress-text", text);
364   fgRequestRedraw();
365 }