// 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 #endif #ifdef SG_MATH_EXCEPTION_CLASH # include #endif #ifdef HAVE_WINDOWS_H # include #endif #include #include #include #include SG_GLU_H #include #include #include #include #include "globals.hxx" #include "fg_props.hxx" #include "splash.hxx" #include "fg_os.hxx" static const int fontsize = 19; static const char fontname[] = "default.txf"; static const char *progress_text = 0; static SGTexture splash; static fntTexFont font; static fntRenderer info; // Initialize the splash screen void fgSplashInit ( const char *splash_texture ) { fgRequestRedraw(); if (!fgGetBool("/sim/startup/splash-screen")) return; SG_LOG( SG_GENERAL, SG_INFO, "Initializing splash screen" ); 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); font.load((char *)path.c_str()); info.setFont(&font); info.setPointSize(fontsize); splash.bind(); 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 ); splash.read_rgb_texture(tpath.c_str()); if (!splash.usable()) { // Try compressed SGPath fg_tpath = tpath; fg_tpath.concat( ".gz" ); 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); } } splash.select(); } void fgSplashProgress ( const char *s ) { 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); if (!screen_width || !screen_height) return; int size = screen_width < (screen_height - 5 * fontsize) ? screen_width : screen_height - 5 * fontsize; if (size > 512) size = 512; int xmin, ymin, xmax, ymax; xmin = (screen_width - size) / 2; xmax = xmin + size; ymin = (screen_height - size) / 2; ymax = ymin + size; glMatrixMode(GL_PROJECTION); glPushMatrix(); glLoadIdentity(); gluOrtho2D(0, screen_width, 0, screen_height); glMatrixMode(GL_MODELVIEW); glPushMatrix(); glLoadIdentity(); 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(); } if (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(); glColor4f(1.0, 0.9, 0.0, alpha); font.getBBox(progress_text, fontsize, 0, &left, &right, &bot, &top); info.start2f((screen_width - right) / 2.0, 10.0 - bot); 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); glMatrixMode(GL_PROJECTION); glPopMatrix(); glMatrixMode(GL_MODELVIEW); glPopMatrix(); }