1
0
Fork 0
flightgear/src/Main/splash.cxx

228 lines
6 KiB
C++
Raw Normal View History

1998-07-06 02:42:36 +00:00
// splash.cxx -- draws the initial splash screen
//
// Written by Curtis Olson, started July 1998. (With a little looking
// at Freidemann's panel code.) :-)
//
// Copyright (C) 1997 Michele F. America - nomimarketing@mail.telepac.pt
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// $Id$
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
2001-03-23 22:42:49 +00:00
#ifdef SG_MATH_EXCEPTION_CLASH
# include <math.h>
#endif
#ifdef HAVE_WINDOWS_H
1998-07-06 02:42:36 +00:00
# include <windows.h>
#endif
#include <string.h>
#include <plib/pu.h>
#include <simgear/compiler.h>
#include SG_GLU_H
2000-02-16 23:01:03 +00:00
#include <simgear/debug/logstream.hxx>
#include <simgear/screen/texture.hxx>
#include <simgear/math/sg_random.h>
#include <simgear/misc/sg_path.hxx>
1998-07-06 02:42:36 +00:00
#include <GUI/new_gui.hxx>
#include "globals.hxx"
#include "fg_props.hxx"
1998-07-06 02:42:36 +00:00
#include "splash.hxx"
#include "fg_os.hxx"
static const int fontsize = 19;
static const char fontname[] = "default.txf";
2005-05-06 15:48:48 +00:00
static const char *progress_text = 0;
1998-07-06 02:42:36 +00:00
2003-04-09 20:28:42 +00:00
static SGTexture splash;
static fntTexFont font;
static fntRenderer info;
1998-07-06 02:42:36 +00:00
// Initialize the splash screen
void fgSplashInit ( const char *splash_texture ) {
fgRequestRedraw();
2001-03-24 06:03:11 +00:00
SG_LOG( SG_GENERAL, SG_INFO, "Initializing splash screen" );
1998-07-06 02:42:36 +00:00
SGPath fontpath;
char* envp = ::getenv("FG_FONTS");
if (envp != NULL) {
fontpath.set(envp);
} else {
fontpath.set(globals->get_fg_root());
fontpath.append("Fonts");
}
SGPath path(fontpath);
path.append(fontname);
if (!font.load((char *)path.c_str())) {
SG_LOG( SG_GENERAL, SG_ALERT, "Error loading font " << path.str() );
return;
}
info.setFont(&font);
info.setPointSize(fontsize);
if (!fgGetBool("/sim/startup/splash-screen"))
return;
2003-04-09 20:28:42 +00:00
splash.bind();
1998-07-06 02:42:36 +00:00
SGPath tpath( globals->get_fg_root() );
if (splash_texture == NULL || !strcmp(splash_texture, "")) {
// load in the texture data
int num = (int)(sg_random() * 5.0 + 1.0);
char num_str[5];
snprintf(num_str, 4, "%d", num);
tpath.append( "Textures/Splash" );
tpath.concat( num_str );
tpath.concat( ".rgb" );
} else
tpath.append( splash_texture );
1998-07-06 02:42:36 +00:00
2003-04-09 20:28:42 +00:00
splash.read_rgb_texture(tpath.c_str());
if (!splash.usable())
{
// Try compressed
SGPath fg_tpath = tpath;
fg_tpath.concat( ".gz" );
2003-04-09 20:28:42 +00:00
splash.read_rgb_texture(fg_tpath.c_str());
if ( !splash.usable() )
{
SG_LOG( SG_GENERAL, SG_ALERT,
"Error in loading splash screen texture " << tpath.str() );
exit(-1);
}
}
1998-07-06 02:42:36 +00:00
2003-04-09 20:28:42 +00:00
splash.select();
1998-07-06 02:42:36 +00:00
}
void fgSplashProgress ( const char *s )
{
2005-05-06 15:48:48 +00:00
progress_text = s;
fgRequestRedraw();
}
// Update the splash screen with alpha specified from 0.0 to 1.0
void fgSplashUpdate ( float alpha ) {
int screen_width = fgGetInt("/sim/startup/xsize", 0);
int screen_height = fgGetInt("/sim/startup/ysize", 0);
1998-07-06 02:42:36 +00:00
if (!screen_width || !screen_height)
return;
1999-06-28 18:19:26 +00:00
int size = screen_width < (screen_height - 5 * fontsize)
? screen_width : screen_height - 5 * fontsize;
if (size > 512)
size = 512;
1998-07-06 02:42:36 +00:00
int xmin, ymin, xmax, ymax;
xmin = (screen_width - size) / 2;
xmax = xmin + size;
ymin = (screen_height - size) / 2;
ymax = ymin + size;
1998-07-06 02:42:36 +00:00
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
gluOrtho2D(0, screen_width, 0, screen_height);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
1998-07-06 02:42:36 +00:00
glDisable(GL_DEPTH_TEST);
glDisable(GL_LIGHTING);
// draw the background
glColor4f( 0.0, 0.0, 0.0, alpha );
glBegin(GL_POLYGON);
glVertex2f(0.0, 0.0);
glVertex2f(screen_width, 0.0);
glVertex2f(screen_width, screen_height);
glVertex2f(0.0, screen_height);
glEnd();
// now draw the logo
if (fgGetBool("/sim/startup/splash-screen", true)) {
glEnable(GL_TEXTURE_2D);
splash.bind();
glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
glColor4f( 1.0, 1.0, 1.0, alpha );
glBegin(GL_POLYGON);
glTexCoord2f(0.0, 0.0); glVertex2f(xmin, ymin);
glTexCoord2f(1.0, 0.0); glVertex2f(xmax, ymin);
glTexCoord2f(1.0, 1.0); glVertex2f(xmax, ymax);
glTexCoord2f(0.0, 1.0); glVertex2f(xmin, ymax);
glEnd();
}
1998-07-06 02:42:36 +00:00
if (info.getFont() && progress_text && fgGetBool("/sim/startup/splash-progress", true)) {
glEnable(GL_ALPHA_TEST);
glEnable(GL_BLEND);
glAlphaFunc(GL_GREATER, 0.1f);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glDisable(GL_CULL_FACE);
float left, right, bot, top;
info.begin();
FGColor c(1.0, 0.9, 0.0);
c.merge(fgGetNode("/sim/gui/colors/splash"));
glColor4f(c.red(), c.green(), c.blue(), alpha);
2005-05-06 15:48:48 +00:00
font.getBBox(progress_text, fontsize, 0, &left, &right, &bot, &top);
info.start2f((screen_width - right) / 2.0, 10.0 - bot);
2005-05-06 15:48:48 +00:00
info.puts(progress_text);
const char *s = fgGetString("/sim/startup/splash-title", "");
font.getBBox(s, fontsize, 0, &left, &right, &bot, &top);
info.start2f((screen_width - right) / 2.0, screen_height - top - bot - 10.0);
info.puts(s);
info.end();
}
glEnable(GL_DEPTH_TEST);
glEnable(GL_LIGHTING);
glDisable(GL_TEXTURE_2D);
1998-07-06 02:42:36 +00:00
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
1998-07-06 02:42:36 +00:00
}