//------------------------------------------------------------------------- /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2017-2019 Nuke.YKT This file is part of Duke Nukem 3D version 1.5 - Atomic Edition Duke Nukem 3D 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Original Source: 1996 - Todd Replogle Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms */ //------------------------------------------------------------------------- // this file collects all 2D content of the game that was scattered across multiple sources originally. // All this should transition to a more modern, preferably localization friendly, approach later. #include "ns.h" #include "duke3d.h" #include "names_rr.h" #include "animtexture.h" #include "animlib.h" #include "raze_music.h" #include "mapinfo.h" #include "screenjob.h" #include "texturemanager.h" //#include "zz_text.h" #undef gametext //#undef menutext BEGIN_DUKE_NS //========================================================================== // // Sets up the game fonts. // This is a duplicate of the _d function but needed since the tile numbers differ. // //========================================================================== void InitFonts_r() { GlyphSet fontdata; // Small font for (int i = 0; i < 95; i++) { auto tile = tileGetTexture(STARTALPHANUM + i); if (tile && tile->GetTexelWidth() > 0 && tile->GetTexelHeight() > 0) fontdata.Insert('!' + i, tile); } SmallFont = new ::FFont("SmallFont", nullptr, "defsmallfont", 0, 0, 0, -1, -1, false, false, false, &fontdata); fontdata.Clear(); // Big font // This font is VERY messy... fontdata.Insert('_', tileGetTexture(BIGALPHANUM - 11)); fontdata.Insert('-', tileGetTexture(BIGALPHANUM - 11)); for (int i = 0; i < 10; i++) fontdata.Insert('0' + i, tileGetTexture(BIGALPHANUM - 10 + i)); for (int i = 0; i < 26; i++) fontdata.Insert('A' + i, tileGetTexture(BIGALPHANUM + i)); fontdata.Insert('.', tileGetTexture(BIGPERIOD)); fontdata.Insert(',', tileGetTexture(BIGCOMMA)); fontdata.Insert('!', tileGetTexture(BIGX)); fontdata.Insert('?', tileGetTexture(BIGQ)); fontdata.Insert(';', tileGetTexture(BIGSEMI)); fontdata.Insert(':', tileGetTexture(BIGCOLIN)); fontdata.Insert('\\', tileGetTexture(BIGALPHANUM + 68)); fontdata.Insert('/', tileGetTexture(BIGALPHANUM + 68)); fontdata.Insert('%', tileGetTexture(BIGALPHANUM + 69)); fontdata.Insert('`', tileGetTexture(BIGAPPOS)); fontdata.Insert('"', tileGetTexture(BIGAPPOS)); fontdata.Insert('\'', tileGetTexture(BIGAPPOS)); BigFont = new ::FFont("BigFont", nullptr, "defbigfont", 0, 0, 0, -1, -1, false, false, false, &fontdata); fontdata.Clear(); // Tiny font for (int i = 0; i < 95; i++) { auto tile = tileGetTexture(MINIFONT + i); if (tile && tile->GetTexelWidth() > 0 && tile->GetTexelHeight() > 0) fontdata.Insert('!' + i, tile); } fontdata.Insert(1, TexMan.FindGameTexture("TINYBLAK")); // this is only here to widen the color range of the font to produce a better translation. SmallFont2 = new ::FFont("SmallFont2", nullptr, "defsmallfont2", 0, 0, 0, -1, -1, false, false, false, &fontdata); fontdata.Clear(); // SBAR index font for (int i = 0; i < 10; i++) fontdata.Insert('0' + i, tileGetTexture(THREEBYFIVE + i)); fontdata.Insert(':', tileGetTexture(THREEBYFIVE + 10)); fontdata.Insert('/', tileGetTexture(THREEBYFIVE + 11)); fontdata.Insert('%', tileGetTexture(MINIFONT + '%' - '!')); fontdata.Insert(1, TexMan.FindGameTexture("TINYBLAK")); // this is only here to widen the color range of the font to produce a better translation. IndexFont = new ::FFont("IndexFont", nullptr, nullptr, 0, 0, 0, -1, -1, false, false, false, &fontdata); fontdata.Clear(); // digital font for (int i = 0; i < 10; i++) fontdata.Insert('0' + i, tileGetTexture(DIGITALNUM + i)); fontdata.Insert(1, TexMan.FindGameTexture("TINYBLAK")); // this is only here to widen the color range of the font to produce a better translation. DigiFont = new ::FFont("DigiFont", nullptr, nullptr, 0, 0, 0, -1, -1, false, false, false, &fontdata); } static int gametext(int x,int y,char *t,char s) { short ac,newx; char centre, *oldt; centre = ( x == (320>>1) ); newx = 0; oldt = t; if(centre) { while(*t) { if(*t == 32) {newx+=5;t++;continue;} else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; if(*t >= '0' && *t <= '9') newx += 8; else newx += tilesiz[ac].x / 2; t++; } t = oldt; x = (320>>1)-(newx>>1); } while(*t) { if(*t == 32) {x+=5;t++;continue;} else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; rotatesprite(x<<16,y<<16,32768L,0,ac,s,0,2+8+16,0,0,xdim-1,ydim-1); if(*t >= '0' && *t <= '9') x += 8; else x += tilesiz[ac].x / 2; t++; } return (x); } static int gametext2(int x,int y,char *t,char s) { short ac,newx; char centre, *oldt; centre = ( x == (320>>1) ); newx = 0; oldt = t; if(centre) { while(*t) { if(*t == 32) {newx+=5;t++;continue;} else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; if(*t >= '0' && *t <= '9') newx += 8; else newx += tilesiz[ac].x / 2; t++; } t = oldt; x = (320>>1)-(newx>>1); } while(*t) { if(*t == 32) {x+=5;t++;continue;} else if(*t == '\'') ac = '`' - '!' + STARTALPHANUM; else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; rotatesprite(x<<16,y<<16,32768L,0,ac,s,s,2+8+16,0,0,xdim-1,ydim-1); if(*t >= '0' && *t <= '9') x += 8; else x += tilesiz[ac].x / 2; t++; } return (x); } static int gametextpal(int x,int y,char *t,char s,char p) { short ac,newx; char centre, *oldt; centre = ( x == (320>>1) ); newx = 0; oldt = t; if(centre) { while(*t) { if(*t == 32) {newx+=5;t++;continue;} else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; if(*t >= '0' && *t <= '9') newx += 8; else newx += tilesiz[ac].x; t++; } t = oldt; x = (320>>1)-(newx>>1); } while(*t) { if(*t == 32) {x+=5;t++;continue;} else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; rotatesprite(x<<16,y<<16,65536L,0,ac,s,p,2+8+16,0,0,xdim-1,ydim-1); if(*t >= '0' && *t <= '9') x += 8; else x += tilesiz[ac].x; t++; } return (x); } static int gametextpart(int x,int y,char *t,char s,short p) { short ac,newx, cnt; char centre, *oldt; centre = ( x == (320>>1) ); newx = 0; oldt = t; cnt = 0; if(centre) { while(*t) { if(cnt == p) break; if(*t == 32) {newx+=5;t++;continue;} else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; newx += tilesiz[ac].x; t++; cnt++; } t = oldt; x = (320>>1)-(newx>>1); } cnt = 0; while(*t) { if(*t == 32) {x+=5;t++;continue;} else ac = *t - '!' + STARTALPHANUM; if( ac < STARTALPHANUM || ac > ENDALPHANUM ) break; if(cnt == p) { rotatesprite(x<<16,y<<16,65536L,0,ac,s,1,2+8+16,0,0,xdim-1,ydim-1); break; } else rotatesprite(x<<16,y<<16,65536L,0,ac,s,0,2+8+16,0,0,xdim-1,ydim-1); x += tilesiz[ac].x; t++; cnt++; } return (x); } static void gamenumber(long x,long y,long n,char s) { char b[10]; ltoa(n,b,10); gametext(x,y,b,s); } void endanimsounds(long fr) { switch(ud.volume_number) { case 0:break; case 1: switch(fr) { case 1: sound(390); break; case 26: sound(390); break; case 36: sound(390); break; case 54: sound(390); break; case 62: sound(390); break; case 75: sound(390); break; case 81: sound(390); break; case 115: sound(390); break; case 124: sound(390); break; } break; case 2: switch(fr) { case 1: sound(390); break; case 98: sound(390); break; case 82+20: sound(390); sound(390); break; case 104+20: sound(390); break; case 114+20: sound(390); break; case 158: sound(390); break; } break; } } void logoanimsounds(long fr, short s) { #ifdef RRRA switch (s) { case 1: if (fr == 1) sound(256); break; case 2: if (fr == 1) sound(257); break; case 3: if (fr == 1) sound(258); break; case 4: if (fr == 1) sound(259); break; case 5: break; case 6: if (fr == 1) sound(479); break; } #else switch(s) { case -1: if (fr == 1) sound(29); break; case 0: if (fr == 1) sound(478); break; case 1: if (fr == 1) sound(479); break; case 4: if (fr == 1) sound(35); break; case 5: if (fr == 1) sound(82); break; } #endif } #if 0 #ifdef RRRA short playanm(char *fn,char t, short s) #else void playanm(char *fn,char t, short s) #endif { char *animbuf, *palptr; long i, j, k, length, numframes; int handle; #ifdef RRRA char *windir = getenv("windir"); if (windir) { cddrives = 0; cdon = 0; sound(390); return -1; } handle = kopen4load(fn,0); if(handle == -1) return -1; length = kfilelength(handle); #else handle = kopen4load(fn,0); if(handle == -1) return; length = kfilelength(handle); #endif walock[MAXTILES-3-t] = 219+t; if(anim == 0) allocache((long *)&anim,length+sizeof(anim_t),&walock[MAXTILES-3-t]); animbuf = (char *)(FP_OFF(anim)+sizeof(anim_t)); tilesizx[MAXTILES-3-t] = 200; tilesizy[MAXTILES-3-t] = 320; kread(handle,animbuf,length); kclose(handle); setview(0, 0, xdim, ydim); clearview(0); nextpage(); ANIM_LoadAnim (animbuf); numframes = ANIM_NumFrames(); palptr = ANIM_GetPalette(); for(i=0;i<256;i++) { j = (i<<2); k = j-i; tempbuf[j+0] = (palptr[k+2]>>2); tempbuf[j+1] = (palptr[k+1]>>2); tempbuf[j+2] = (palptr[k+0]>>2); tempbuf[j+3] = 0; } VBE_setPalette(0L,256L,tempbuf); ototalclock = totalclock + 10; KB_FlushKeyboardQueue(); for(i=1;i>2); tempbuf[j+1] = (palptr[k+1]>>2); tempbuf[j+2] = (palptr[k+0]>>2); tempbuf[j+3] = 0; } VBE_setPalette(0L,256L,tempbuf); ototalclock = totalclock + 10; KB_FlushKeyboardQueue(); for(i=1;i(TENSCREEN), nullptr }; break; case 1: jobs[job++] = { PlayVideo("rr_outro.anm", rr_outro, framespeed), nullptr }; jobs[job++] = { Create(TENSCREEN), nullptr }; break; default: break; } RunScreenJob(jobs, job, completion); } #if 0 CCMD(testbonus) { if (argv.argc() > 1) { bonussequence_r(strtol(argv[1], nullptr, 0), nullptr); } } #endif #if 0 #ifdef RRRA void dobonus2(char bonusonly) { short t, r, tinc,gfx_offset,bg_tile; long i, y,xfragtotal,yfragtotal,var24; short bonuscnt; var24 = 0; bonuscnt = 0; for(t=0;t<64;t++) palto(0,0,0,t); setview(0,0,xdim-1,ydim-1); clearview(0L); nextpage(); flushperms(); FX_StopAllSounds(); clearsoundlocks(); FX_SetReverb(0L); if (boardfilename[0] == 0 && numplayers < 2) { if ((ud.eog == 0 || ud.volume_number != 1) && ud.volume_number <= 1) { var24 = 1; MUSIC_StopSong(); KB_FlushKeyboardQueue(); ShowMapFrame(); } } if(bonusonly) goto FRAGBONUS; FRAGBONUS: ps[myconnectindex].palette = palette; KB_FlushKeyboardQueue(); totalclock = 0; tinc = 0; bonuscnt = 0; MUSIC_StopSong(); if(playerswhenstarted > 1 && ud.coop != 1 ) { if(!(MusicToggle == 0 || MusicDevice == NumSoundCards)) sound(249); rotatesprite(0,0,65536L,0,MENUSCREEN,16,0,2+8+16+64+128,0,0,xdim-1,ydim-1); rotatesprite(160<<16,57<<16,16592L,0,THREEDEE,0,0,2+8,0,0,xdim-1,ydim-1); gametext(160,58,"MULTIPLAYER TOTALS",0); gametext(160,58+10,level_names[(ud.volume_number*7)+ud.last_level-1],0); gametext(160,175,"PRESS ANY KEY TO CONTINUE",0); t = 0; minitext(23,80," NAME KILLS",8,2+8+16+128); for(i=0;i 1) return; for(t=0;t<64;t++) palto(0,0,0,t); } if(bonusonly || ud.multimode > 1) return; if(!(MusicToggle == 0 || MusicDevice == NumSoundCards)) sound(249); gfx_offset = (ud.volume_number&1)*5; bg_tile = RRTILE403; if (ud.volume_number == 0) bg_tile = ud.level_number+RRTILE403-1; else bg_tile = ud.level_number+RRTILE409-1; if (lastlevel || vixenlevel) bg_tile = RRTILE409+7; if (boardfilename[0]) { if (!var24) { rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); endlvlmenutext(80,16,0,0,boardfilename); } } else if (!var24) { rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if ((lastlevel && ud.volume_number == 2) || vixenlevel) endlvlmenutext(80,16,0,0,"CLOSE ENCOUNTERS"); else if (turdlevel) endlvlmenutext(80,16,0,0,"SMELTING PLANT"); else endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } else { endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } endlvlmenutext(15,192,0,0,"PRESS ANY KEY TO CONTINUE"); KB_FlushKeyboardQueue(); if (!var24) { nextpage(); for(t=0;t<64;t++) palto(0,0,0,63-t); } bonuscnt = 0; totalclock = 0; tinc = 0; while( 1 ) { if(ps[myconnectindex].gm&MODE_EOL) { if (boardfilename[0]) { if (!var24) rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); } else if (!var24) rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if( totalclock > (1000000000L) && totalclock < (1000000320L) ) { switch( ((unsigned long)totalclock>>4)%15 ) { case 0: if(bonuscnt == 6) { bonuscnt++; sound(425); switch(rand()&3) { case 0: sound(195); break; case 1: sound(196); break; case 2: sound(197); break; case 3: sound(199); break; } } case 1: case 4: case 5: case 2: case 3: break; } } else if( totalclock > (10240+120L) ) break; else { switch( (totalclock>>5)&3 ) { case 1: case 3: break; case 2: break; } } if (boardfilename[0]) { if (!var24) { rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); endlvlmenutext(80,16,0,0,boardfilename); } } else if (!var24) { rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if ((lastlevel && ud.volume_number == 2) || vixenlevel) endlvlmenutext(80,16,0,0,"CLOSE ENCOUNTERS"); else if (turdlevel) endlvlmenutext(80,16,0,0,"SMELTING PLANT"); else endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } else { endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } endlvlmenutext(15,192,0,0,"PRESS ANY KEY TO CONTINUE"); if( totalclock > (60*3) ) { endlvlmenutext(30,48,0,0,"Yer Time:"); endlvlmenutext(30,64,0,0,"Par time:"); endlvlmenutext(30,80,0,0,"Xatrix Time:"); if(bonuscnt == 0) bonuscnt++; if( totalclock > (60*4) ) { if(bonuscnt == 1) { bonuscnt++; sound(404); } sprintf(tempbuf,"%02ld : %02ld", (ps[myconnectindex].player_par/(26*60))%60, (ps[myconnectindex].player_par/26)%60); endlvlmenutext(191,48,0,0,tempbuf); if(!boardfilename[0]) { sprintf(tempbuf,"%02ld : %02ld", (partime[ud.volume_number*7+ud.last_level-1]/(26*60))%60, (partime[ud.volume_number*7+ud.last_level-1]/26)%60); endlvlmenutext(191,64,0,0,tempbuf); sprintf(tempbuf,"%02ld : %02ld", (designertime[ud.volume_number*7+ud.last_level-1]/(26*60))%60, (designertime[ud.volume_number*7+ud.last_level-1]/26)%60); endlvlmenutext(191,80,0,0,tempbuf); } } } if( totalclock > (60*6) ) { endlvlmenutext(30,112,0,0,"Varmints Killed:"); endlvlmenutext(30,128,0,0,"Varmints Left:"); if(bonuscnt == 2) bonuscnt++; if( totalclock > (60*7) ) { if(bonuscnt == 3) { bonuscnt++; sound(422); } sprintf(tempbuf,"%-3ld",ps[myconnectindex].actors_killed); endlvlmenutext(231,112,0,0,tempbuf); if(ud.player_skill > 3 ) { sprintf(tempbuf,"N/A"); endlvlmenutext(231,128,0,0,tempbuf); } else { if( (ps[myconnectindex].max_actors_killed-ps[myconnectindex].actors_killed) < 0 ) sprintf(tempbuf,"%-3ld",0); else sprintf(tempbuf,"%-3ld",ps[myconnectindex].max_actors_killed-ps[myconnectindex].actors_killed); endlvlmenutext(231,128,0,0,tempbuf); } } } if( totalclock > (60*9) ) { endlvlmenutext(30,144,0,0,"Secrets Found:"); endlvlmenutext(30,160,0,0,"Secrets Missed:"); if(bonuscnt == 4) bonuscnt++; if( totalclock > (60*10) ) { if(bonuscnt == 5) { bonuscnt++; sound(404); } sprintf(tempbuf,"%-3ld",ps[myconnectindex].secret_rooms); endlvlmenutext(231,144,0,0,tempbuf); if( ps[myconnectindex].secret_rooms > 0 ) sprintf(tempbuf,"%-3ld%",(100*ps[myconnectindex].secret_rooms/ps[myconnectindex].max_secret_rooms)); sprintf(tempbuf,"%-3ld",ps[myconnectindex].max_secret_rooms-ps[myconnectindex].secret_rooms); endlvlmenutext(231,160,0,0,tempbuf); } } if(totalclock > 10240 && totalclock < 10240+10240) totalclock = 1024; if( KB_KeyWaiting() && totalclock > (60*2) ) { if (var24) { if (bonuscnt == 7) { bonuscnt++; MUSIC_StopSong(); KB_FlushKeyboardQueue(); PlayMapAnim(); } else if (bonuscnt == 8) { KB_FlushKeyboardQueue(); totalclock = 10361; break; } } if( KB_KeyPressed( sc_F12 ) ) { KB_ClearKeyDown( sc_F12 ); screencapture("rdnk0000.pcx",0); } if (var24) { if( totalclock < (60*13) ) { KB_FlushKeyboardQueue(); totalclock = (60*13); } else if( totalclock < (1000000000L)) totalclock = (1000000000L); } else { if( totalclock < (60*13) ) { KB_FlushKeyboardQueue(); totalclock = (60*13); } else if( totalclock < (1000000000L)) totalclock = (1000000000L); } } } else break; if (!var24 || bonuscnt) nextpage(); } if (ud.eog) { for (t = 0; t < 64; t++) palto(0, 0, 0, t); clearview(0); nextpage(); spritesound(35,ps[0].i); palto(0, 0, 0, 0); ps[myconnectindex].palette = palette; while (1) { int var40; switch ((totalclock >> 4) & 1) { case 0: rotatesprite(0,0,65536,0,0,RRTILE8677,0,2+8+16+64+128,0,0,xdim-1,ydim-1); nextpage(); palto(0, 0, 0, 0); ps[myconnectindex].palette = palette; getpackets(); break; case 1: rotatesprite(0,0,65536,0,0,RRTILE8677+1,0,2+8+16+64+128,0,0,xdim-1,ydim-1); nextpage(); palto(0, 0, 0, 0); ps[myconnectindex].palette = palette; getpackets(); break; } if (Sound[35].num == 0) break; } } if (word_119BE4) { word_119BE4 = 0; ud.m_volume_number = ud.volume_number = 1; ud.m_level_number = ud.level_number = 0; ud.eog = 0; } if (turdlevel) turdlevel = 0; if (vixenlevel) vixenlevel = 0; } #else void dobonus(char bonusonly) { short t, r, tinc,gfx_offset; long i, y,xfragtotal,yfragtotal; short bonuscnt; short bg_tile; bonuscnt = 0; for(t=0;t<64;t++) palto(0,0,0,t); setview(0,0,xdim-1,ydim-1); clearview(0L); nextpage(); flushperms(); FX_StopAllSounds(); clearsoundlocks(); FX_SetReverb(0L); if(bonusonly) goto FRAGBONUS; if(numplayers < 2 && ud.eog && ud.from_bonus == 0) switch(ud.volume_number) { case 0: MUSIC_StopSong(); clearview(0L); nextpage(); if(ud.lockout == 0) { playanm("turdmov.anm",5,5); KB_FlushKeyboardQueue(); clearview(0L); nextpage(); } ud.level_number = 0; ud.volume_number = 1; ud.eog = 0; for(t=0;t<64;t++) palto(0,0,0,t); KB_FlushKeyboardQueue(); ps[myconnectindex].palette = palette; rotatesprite(0,0,65536L,0,1685,0,0,2+8+16+64,0,0,xdim-1,ydim-1); nextpage(); for(t=63;t>0;t--) palto(0,0,0,t); while( !KB_KeyWaiting() ) getpackets(); for(t=0;t<64;t++) palto(0,0,0,t); MUSIC_StopSong(); FX_StopAllSounds(); clearsoundlocks(); break; case 1: MUSIC_StopSong(); clearview(0L); nextpage(); if(ud.lockout == 0) { playanm("rr_outro.anm",5,4); KB_FlushKeyboardQueue(); clearview(0L); nextpage(); } lastlevel = 0; vixenlevel = 1; ud.level_number = 0; ud.volume_number = 0; for(t=0;t<64;t++) palto(0,0,0,t); setview(0,0,xdim-1,ydim-1); KB_FlushKeyboardQueue(); ps[myconnectindex].palette = palette; rotatesprite(0,0,65536L,0,1685,0,0,2+8+16+64, 0,0,xdim-1,ydim-1); nextpage(); for(t=63;t>0;t--) palto(0,0,0,t); while( !KB_KeyWaiting() ) getpackets(); for(t=0;t<64;t++) palto(0,0,0,t); break; case 2: KB_FlushKeyboardQueue(); while( !KB_KeyWaiting() ) getpackets(); FX_StopAllSounds(); clearsoundlocks(); KB_FlushKeyboardQueue(); clearview(0L); nextpage(); playanm("LNRDTEAM.ANM",4,3); KB_FlushKeyboardQueue(); while( !KB_KeyWaiting() ) getpackets(); FX_StopAllSounds(); clearsoundlocks(); KB_FlushKeyboardQueue(); break; } FRAGBONUS: ps[myconnectindex].palette = palette; KB_FlushKeyboardQueue(); totalclock = 0; tinc = 0; bonuscnt = 0; MUSIC_StopSong(); FX_StopAllSounds(); clearsoundlocks(); if(playerswhenstarted > 1 && ud.coop != 1 ) { if(!(MusicToggle == 0 || MusicDevice == NumSoundCards)) sound(249); rotatesprite(0,0,65536L,0,MENUSCREEN,16,0,2+8+16+64+128,0,0,xdim-1,ydim-1); rotatesprite(160<<16,24<<16,23592L,0,INGAMEDUKETHREEDEE,0,0,2+8,0,0,xdim-1,ydim-1); gametext(160,58,"MULTIPLAYER TOTALS",0); gametext(160,58+10,level_names[(ud.volume_number*7)+ud.last_level-1],0); gametext(160,175,"PRESS ANY KEY TO CONTINUE",0); t = 0; minitext(23,80," NAME KILLS",8,2+8+16+128); for(i=0;i 1) return; for(t=0;t<64;t++) palto(0,0,0,t); } if(bonusonly || ud.multimode > 1) return; if(!(MusicToggle == 0 || MusicDevice == NumSoundCards)) sound(249); gfx_offset = (ud.volume_number&1)*5; bg_tile = RRTILE403; if (ud.volume_number == 0) bg_tile = ud.level_number+RRTILE403-1; else bg_tile = ud.level_number+RRTILE409-1; if (lastlevel || vixenlevel) bg_tile = RRTILE409+7; if (boardfilename[0]) { rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); endlvlmenutext(80,16,0,0,boardfilename); } else { rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if ((lastlevel && ud.volume_number == 2) || vixenlevel) endlvlmenutext(80,16,0,0,"CLOSE ENCOUNTERS"); else if (turdlevel) endlvlmenutext(80,16,0,0,"SMELTING PLANT"); else endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } endlvlmenutext(15,192,0,0,"PRESS ANY KEY TO CONTINUE"); nextpage(); KB_FlushKeyboardQueue(); for(t=0;t<64;t++) palto(0,0,0,63-t); bonuscnt = 0; totalclock = 0; tinc = 0; while( 1 ) { if(ps[myconnectindex].gm&MODE_EOL) { if (boardfilename[0]) rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); else rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if( totalclock > (1000000000L) && totalclock < (1000000320L) ) { switch( ((unsigned long)totalclock>>4)%15 ) { case 0: if(bonuscnt == 6) { bonuscnt++; sound(425); switch(rand()&3) { case 0: sound(195); break; case 1: sound(196); break; case 2: sound(197); break; case 3: sound(199); break; } } case 1: case 4: case 5: case 2: case 3: break; } } else if( totalclock > (10240+120L) ) break; else { switch( (totalclock>>5)&3 ) { case 1: case 3: break; case 2: break; } } if (boardfilename[0]) { rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); endlvlmenutext(80,16,0,0,boardfilename); } else { rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if ((lastlevel && ud.volume_number == 2) || vixenlevel) endlvlmenutext(80,16,0,0,"CLOSE ENCOUNTERS"); else if (turdlevel) endlvlmenutext(80,16,0,0,"SMELTING PLANT"); else endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } endlvlmenutext(15,192,0,0,"PRESS ANY KEY TO CONTINUE"); if( totalclock > (60*3) ) { endlvlmenutext(30,48,0,0,"Yer Time:"); endlvlmenutext(30,64,0,0,"Par time:"); endlvlmenutext(30,80,0,0,"Xatrix Time:"); if(bonuscnt == 0) bonuscnt++; if( totalclock > (60*4) ) { if(bonuscnt == 1) { bonuscnt++; sound(404); } sprintf(tempbuf,"%02ld : %02ld", (ps[myconnectindex].player_par/(26*60))%60, (ps[myconnectindex].player_par/26)%60); endlvlmenutext(191,48,0,0,tempbuf); if(!boardfilename[0]) { sprintf(tempbuf,"%02ld : %02ld", (partime[ud.volume_number*7+ud.last_level-1]/(26*60))%60, (partime[ud.volume_number*7+ud.last_level-1]/26)%60); endlvlmenutext(191,64,0,0,tempbuf); sprintf(tempbuf,"%02ld : %02ld", (designertime[ud.volume_number*7+ud.last_level-1]/(26*60))%60, (designertime[ud.volume_number*7+ud.last_level-1]/26)%60); endlvlmenutext(191,80,0,0,tempbuf); } } } if( totalclock > (60*6) ) { endlvlmenutext(30,112,0,0,"Varmints Killed:"); endlvlmenutext(30,128,0,0,"Varmints Left:"); if(bonuscnt == 2) bonuscnt++; if( totalclock > (60*7) ) { if(bonuscnt == 3) { bonuscnt++; sound(422); } sprintf(tempbuf,"%-3ld",ps[myconnectindex].actors_killed); endlvlmenutext(231,112,0,0,tempbuf); if(ud.player_skill > 3 ) { sprintf(tempbuf,"N/A"); endlvlmenutext(231,128,0,0,tempbuf); } else { if( (ps[myconnectindex].max_actors_killed-ps[myconnectindex].actors_killed) < 0 ) sprintf(tempbuf,"%-3ld",0); else sprintf(tempbuf,"%-3ld",ps[myconnectindex].max_actors_killed-ps[myconnectindex].actors_killed); endlvlmenutext(231,128,0,0,tempbuf); } } } if( totalclock > (60*9) ) { endlvlmenutext(30,144,0,0,"Secrets Found:"); endlvlmenutext(30,160,0,0,"Secrets Missed:"); if(bonuscnt == 4) bonuscnt++; if( totalclock > (60*10) ) { if(bonuscnt == 5) { bonuscnt++; sound(404); } sprintf(tempbuf,"%-3ld",ps[myconnectindex].secret_rooms); endlvlmenutext(231,144,0,0,tempbuf); if( ps[myconnectindex].secret_rooms > 0 ) sprintf(tempbuf,"%-3ld%",(100*ps[myconnectindex].secret_rooms/ps[myconnectindex].max_secret_rooms)); sprintf(tempbuf,"%-3ld",ps[myconnectindex].max_secret_rooms-ps[myconnectindex].secret_rooms); endlvlmenutext(231,160,0,0,tempbuf); } } if(totalclock > 10240 && totalclock < 10240+10240) totalclock = 1024; if( KB_KeyWaiting() && totalclock > (60*2) ) { if( KB_KeyPressed( sc_F12 ) ) { KB_ClearKeyDown( sc_F12 ); screencapture("rdnk0000.pcx",0); } if( totalclock < (60*13) ) { KB_FlushKeyboardQueue(); totalclock = (60*13); } else if( totalclock < (1000000000L)) totalclock = (1000000000L); } } else break; nextpage(); } if (turdlevel) turdlevel = 0; if (vixenlevel) vixenlevel = 0; } #endif #ifdef RRRA void dobonus(char bonusonly) { short t, r, tinc,gfx_offset,bg_tile; long i, y,xfragtotal,yfragtotal; short bonuscnt; bonuscnt = 0; for(t=0;t<64;t++) palto(0,0,0,t); setview(0,0,xdim-1,ydim-1); clearview(0L); nextpage(); flushperms(); FX_StopAllSounds(); clearsoundlocks(); FX_SetReverb(0L); if(bonusonly) goto FRAGBONUS; FRAGBONUS: ps[myconnectindex].palette = palette; KB_FlushKeyboardQueue(); totalclock = 0; tinc = 0; bonuscnt = 0; MUSIC_StopSong(); FX_StopAllSounds(); clearsoundlocks(); if(playerswhenstarted > 1 && ud.coop != 1 ) { if(!(MusicToggle == 0 || MusicDevice == NumSoundCards)) sound(249); rotatesprite(0,0,65536L,0,MENUSCREEN,16,0,2+8+16+64+128,0,0,xdim-1,ydim-1); rotatesprite(160<<16,24<<16,23592L,0,INGAMEDUKETHREEDEE,0,0,2+8,0,0,xdim-1,ydim-1); gametext(160,58,"MULTIPLAYER TOTALS",0); gametext(160,58+10,level_names[(ud.volume_number*7)+ud.last_level-1],0); gametext(160,175,"PRESS ANY KEY TO CONTINUE",0); t = 0; minitext(23,80," NAME KILLS",8,2+8+16+128); for(i=0;i 1) return; for(t=0;t<64;t++) palto(0,0,0,t); } if(bonusonly || ud.multimode > 1) return; if(!(MusicToggle == 0 || MusicDevice == NumSoundCards)) sound(249); gfx_offset = (ud.volume_number&1)*5; bg_tile = RRTILE403; if (ud.volume_number == 0) bg_tile = ud.level_number+RRTILE403-1; else bg_tile = ud.level_number+RRTILE409-1; if (lastlevel || vixenlevel) bg_tile = RRTILE409+7; if (boardfilename[0]) { rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); endlvlmenutext(80,16,0,0,boardfilename); } else { rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if ((lastlevel && ud.volume_number == 2) || vixenlevel) endlvlmenutext(80,16,0,0,"CLOSE ENCOUNTERS"); else if (turdlevel) endlvlmenutext(80,16,0,0,"SMELTING PLANT"); else endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } endlvlmenutext(15,192,0,0,"PRESS ANY KEY TO CONTINUE"); nextpage(); KB_FlushKeyboardQueue(); for(t=0;t<64;t++) palto(0,0,0,63-t); bonuscnt = 0; totalclock = 0; tinc = 0; while( 1 ) { if(ps[myconnectindex].gm&MODE_EOL) { if (boardfilename[0]) rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); else rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if( totalclock > (1000000000L) && totalclock < (1000000320L) ) { switch( ((unsigned long)totalclock>>4)%15 ) { case 0: if(bonuscnt == 6) { bonuscnt++; sound(425); switch(rand()&3) { case 0: sound(195); break; case 1: sound(196); break; case 2: sound(197); break; case 3: sound(199); break; } } case 1: case 4: case 5: case 2: case 3: break; } } else if( totalclock > (10240+120L) ) break; else { switch( (totalclock>>5)&3 ) { case 1: case 3: break; case 2: break; } } if (boardfilename[0]) { rotatesprite(0,0,65536L,0,403,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); endlvlmenutext(80,16,0,0,boardfilename); } else { rotatesprite(0,0,65536L,0,bg_tile,0,0,2+8+16+64+128,0,0,xdim-1,ydim-1); if ((lastlevel && ud.volume_number == 2) || vixenlevel) endlvlmenutext(80,16,0,0,"CLOSE ENCOUNTERS"); else if (turdlevel) endlvlmenutext(80,16,0,0,"SMELTING PLANT"); else endlvlmenutext(80,16,0,0,level_names[(ud.volume_number*7)+ud.last_level-1]); } endlvlmenutext(15,192,0,0,"PRESS ANY KEY TO CONTINUE"); if( totalclock > (60*3) ) { endlvlmenutext(30,48,0,0,"Yer Time:"); endlvlmenutext(30,64,0,0,"Par time:"); endlvlmenutext(30,80,0,0,"Xatrix Time:"); if(bonuscnt == 0) bonuscnt++; if( totalclock > (60*4) ) { if(bonuscnt == 1) { bonuscnt++; sound(404); } sprintf(tempbuf,"%02ld : %02ld", (ps[myconnectindex].player_par/(26*60))%60, (ps[myconnectindex].player_par/26)%60); endlvlmenutext(191,48,0,0,tempbuf); if(!boardfilename[0]) { sprintf(tempbuf,"%02ld : %02ld", (partime[ud.volume_number*7+ud.last_level-1]/(26*60))%60, (partime[ud.volume_number*7+ud.last_level-1]/26)%60); endlvlmenutext(191,64,0,0,tempbuf); sprintf(tempbuf,"%02ld : %02ld", (designertime[ud.volume_number*7+ud.last_level-1]/(26*60))%60, (designertime[ud.volume_number*7+ud.last_level-1]/26)%60); endlvlmenutext(191,80,0,0,tempbuf); } } } if( totalclock > (60*6) ) { endlvlmenutext(30,112,0,0,"Varmints Killed:"); endlvlmenutext(30,128,0,0,"Varmints Left:"); if(bonuscnt == 2) bonuscnt++; if( totalclock > (60*7) ) { if(bonuscnt == 3) { bonuscnt++; sound(422); } sprintf(tempbuf,"%-3ld",ps[myconnectindex].actors_killed); endlvlmenutext(231,112,0,0,tempbuf); if(ud.player_skill > 3 ) { sprintf(tempbuf,"N/A"); endlvlmenutext(231,128,0,0,tempbuf); } else { if( (ps[myconnectindex].max_actors_killed-ps[myconnectindex].actors_killed) < 0 ) sprintf(tempbuf,"%-3ld",0); else sprintf(tempbuf,"%-3ld",ps[myconnectindex].max_actors_killed-ps[myconnectindex].actors_killed); endlvlmenutext(231,128,0,0,tempbuf); } } } if( totalclock > (60*9) ) { endlvlmenutext(30,144,0,0,"Secrets Found:"); endlvlmenutext(30,160,0,0,"Secrets Missed:"); if(bonuscnt == 4) bonuscnt++; if( totalclock > (60*10) ) { if(bonuscnt == 5) { bonuscnt++; sound(404); } sprintf(tempbuf,"%-3ld",ps[myconnectindex].secret_rooms); endlvlmenutext(231,144,0,0,tempbuf); if( ps[myconnectindex].secret_rooms > 0 ) sprintf(tempbuf,"%-3ld%",(100*ps[myconnectindex].secret_rooms/ps[myconnectindex].max_secret_rooms)); sprintf(tempbuf,"%-3ld",ps[myconnectindex].max_secret_rooms-ps[myconnectindex].secret_rooms); endlvlmenutext(231,160,0,0,tempbuf); } } if(totalclock > 10240 && totalclock < 10240+10240) totalclock = 1024; if( KB_KeyWaiting() && totalclock > (60*2) ) { if( KB_KeyPressed( sc_F12 ) ) { KB_ClearKeyDown( sc_F12 ); screencapture("rdnk0000.pcx",0); } if( totalclock < (60*13) ) { KB_FlushKeyboardQueue(); totalclock = (60*13); } else if( totalclock < (1000000000L)) totalclock = (1000000000L); } } else break; nextpage(); } if (turdlevel) turdlevel = 0; if (vixenlevel) vixenlevel = 0; } #endif #endif END_DUKE_NS