/* $Id: credits.c,v 1.1.1.1 2006/03/17 19:56:57 zicodxx Exp $ */ /* THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE. COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. */ /* * * Routines to display the credits. * */ #ifdef HAVE_CONFIG_H #include #endif #ifdef RCS static char rcsid[] = "$Id: credits.c,v 1.1.1.1 2006/03/17 19:56:57 zicodxx Exp $"; #endif #include #include #include #include #include #include "error.h" #include "pstypes.h" #include "gr.h" #include "mono.h" #include "key.h" #include "palette.h" #include "game.h" #include "gamepal.h" #include "timer.h" #include "newmenu.h" #include "gamefont.h" #ifdef NETWORK #include "network.h" #endif #include "iff.h" #include "pcx.h" #include "u_mem.h" #include "mouse.h" #include "joy.h" #include "screens.h" #include "digi.h" #include "cfile.h" #include "text.h" #include "songs.h" #include "menu.h" // for MenuHires #ifdef OGL #include "ogl_init.h" #endif #define ROW_SPACING (SHEIGHT / 17) #define NUM_LINES 20 //14 #define CREDITS_FILE (cfexist("mcredits.tex")?"mcredits.tex":cfexist("ocredits.tex")?"ocredits.tex":"credits.tex") #ifdef RELEASE #define CREDITS_BACKGROUND_FILENAME (MenuHires?"\x01starsb.pcx":"\x01stars.pcx") //only read from hog file #else #define CREDITS_BACKGROUND_FILENAME (MenuHires?"starsb.pcx":"stars.pcx") #endif #ifdef SHAREWARE #define ALLOWED_CHAR 'S' #else #define ALLOWED_CHAR 'R' #endif ubyte fade_values_hires[480] = { 1,1,1,2,2,2,2,2,3,3,3,3,3,4,4,4,4,4,5,5,5, 5,5,5,6,6,6,6,6,7,7,7,7,7,8,8,8,8,8,9,9,9,9,9,10,10,10,10,10,10,11,11,11,11,11,12,12,12,12,12,12, 13,13,13,13,13,14,14,14,14,14,14,15,15,15,15,15,15,16,16,16,16,16,17,17,17,17,17,17,18,18, 18,18,18,18,18,19,19,19,19,19,19,20,20,20,20,20,20,20,21,21,21,21,21,21,22,22,22,22,22,22, 22,22,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,25,26,26,26,26, 26,26,26,26,26,27,27,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,28,28,28,28,29,29,29, 29,29,29,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, 30,30,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,30,30,30, 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29,29,29,29,29,29,29,29,29,29,29,29, 29,29,28,28,28,28,28,28,28,28,28,28,28,28,27,27,27,27,27,27,27,27,27,27,26,26,26,26,26,26, 26,26,26,25,25,25,25,25,25,25,25,25,24,24,24,24,24,24,24,24,23,23,23,23,23,23,23,22,22,22, 22,22,22,22,22,21,21,21,21,21,21,20,20,20,20,20,20,20,19,19,19,19,19,19,18,18,18,18,18,18, 18,17,17,17,17,17,17,16,16,16,16,16,15,15,15,15,15,15,14,14,14,14,14,14,13,13,13,13,13,12, 12,12,12,12,12,11,11,11,11,11,10,10,10,10,10,10,9,9,9,9,9,8,8,8,8,8,7,7,7,7,7,6,6,6,6,6,5,5,5,5, 5,5,4,4,4,4,4,3,3,3,3,3,2,2,2,2,2,1,1}; extern ubyte *gr_bitblt_fade_table; grs_font * header_font; grs_font * title_font; grs_font * names_font; typedef struct box { int left, top, width, height; } box; extern inline void scale_line(unsigned char *in, unsigned char *out, int ilen, int olen); //if filename passed is NULL, show normal credits void credits_show(char *credits_filename) { CFILE * file; int i, j, l, done; int pcx_error; int buffer_line = 0; int first_line_offset; int extra_inc=0; int have_bin_file = 0; char * tempp; char filename[32]; char buffer[NUM_LINES][80]; ubyte *fade_values_scalled; ubyte backdrop_palette[768]; fix last_time; fix time_delay = 2800; grs_bitmap backdrop; grs_canvas *CreditsOffscreenBuf=NULL; grs_canvas *save_canv; box dirty_box[NUM_LINES]; save_canv = grd_curcanv; // Clear out all tex buffer lines. for (i=0; icv_bitmap->bm_type. pcx_error = pcx_read_bitmap(CREDITS_BACKGROUND_FILENAME,&backdrop, BM_LINEAR,backdrop_palette); if (pcx_error != PCX_ERROR_NONE) { cfclose(file); return; } songs_play_song( SONG_CREDITS, 1 ); gr_remap_bitmap_good( &backdrop,backdrop_palette, -1, -1 ); gr_set_current_canvas(NULL); #ifdef OGL ogl_ubitmapm_cs(0,0,-1,-1,&backdrop,-1,F1_0); #else show_fullscr(&backdrop); #endif gr_update(); gr_palette_fade_in( gr_palette, 32, 0 ); #ifndef OGL CreditsOffscreenBuf = gr_create_canvas(GWIDTH,GHEIGHT); #else CreditsOffscreenBuf = gr_create_sub_canvas(grd_curcanv,0,0,GWIDTH,GHEIGHT); #endif if (!CreditsOffscreenBuf) Error("Not enough memory to allocate Credits Buffer."); key_flush(); last_time = timer_get_fixed_seconds(); done = 0; first_line_offset = 0; while( 1 ) { int k; do { buffer_line = (buffer_line+1) % NUM_LINES; get_line:; if (cfgets( buffer[buffer_line], 80, file )) { char *p; if (have_bin_file) // is this a binary tbl file decode_text_line (buffer[buffer_line]); p = buffer[buffer_line]; if (p[0] == ';') goto get_line; if (p[0] == '%') { if (p[1] == ALLOWED_CHAR) strcpy(p,p+2); else goto get_line; } } else { //fseek( file, 0, SEEK_SET); buffer[buffer_line][0] = 0; done++; } } while (extra_inc--); extra_inc = 0; for (i=0; icv_font = header_font; s++; } else if ( s[0] == '*' ) { grd_curcanv->cv_font = title_font; s++; } else grd_curcanv->cv_font = names_font; gr_bitblt_fade_table = fade_values_scalled; tempp = strchr( s, '\t' ); if ( !tempp ) { // Wacky Fast Credits thing int w, h, aw; gr_get_string_size( s, &w, &h, &aw); dirty_box[j].width = w; dirty_box[j].height = h; dirty_box[j].top = y; dirty_box[j].left = (GWIDTH - w) / 2; gr_printf( 0x8000, y, s ); } gr_bitblt_fade_table = NULL; y += ROW_SPACING; } #ifndef OGL // Wacky Fast Credits Thing for (j=0; jcv_bitmap); gr_bm_bitblt( new_box->width + 1, new_box->height + 5, new_box->left, new_box->top, new_box->left, new_box->top, tempbmp, &(grd_curscreen->sc_canvas.cv_bitmap) ); } for (j=0; jcv_bitmap); gr_bm_bitblt( new_box->width, new_box->height+2, new_box->left, new_box->top, new_box->left, new_box->top, &backdrop, tempbmp ); } #endif gr_update(); while( timer_get_fixed_seconds() < last_time+time_delay ); last_time = timer_get_fixed_seconds(); //see if redbook song needs to be restarted songs_check_redbook_repeat(); k = key_inkey(); #ifndef NDEBUG if (k == KEY_BACKSP) { Int3(); k=0; } #endif if (k == KEY_PRINT_SCREEN) { save_screen_shot(0); k = 0; } if ((k>0)||(done>NUM_LINES)) { gr_close_font(header_font); gr_close_font(title_font); gr_close_font(names_font); gr_palette_fade_out( gr_palette, 32, 0 ); gr_use_palette_table( DEFAULT_PALETTE ); d_free(backdrop.bm_data); cfclose(file); gr_set_current_canvas(save_canv); songs_play_song( SONG_TITLE, 1 ); gr_palette_load( gr_palette ); #ifdef OGL gr_free_sub_canvas(CreditsOffscreenBuf); #else gr_free_canvas(CreditsOffscreenBuf); #endif return; } } } }