home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-03 | 29.0 KB | 1,190 lines |
- STPJ - Stage Project file
- Version 1.01
-
- CURSOR
- data\system\CURSOR.NUT
- TRES
- data\system\hope.trs
- FONT 2
- data\system\textfont.nut
- data\system\titlfont.nut
- CODE 0
- CODE 0
- CODE 0
- CODE 0
- 14
- VIEW Boot Room
- FCODE Init Code
- FCSTART -----------------
-
- public short MENU_TATOOINE = 0;
- public short MENU_MOSEISLY = 1;
- public short MENU_JABBAHAN = 2;
- public short MENU_FINALBAT = 3;
- public short MENU_JEDIROCK = 4;
-
- public short MENU_TURNTABL = 5;
-
- public short MENU_SKYSOUND = 6;
- public short MENU_LUCASFLM = 7;
- public short MENU_ILM = 8;
- public short MENU_THX = 9;
-
- public short current_menu = 0;
- public short current_submenu = 0;
-
- public short pan_quit_flag = FALSE;
- public short menu_up_flag = FALSE;
-
- //
- // Routines
- //
-
- public uchar button_down( short type )
- {
- sound_start( 2-type,0,127,0,0 );
- }
-
- public short icon_reset()
- {
- short i;
-
- for ( i=ICON_FIRST; i<=ICON_LAST; i+=1 ) {
- image_set( i,HIDE );
- }
- }
-
- public short icon_add( short icon, short slot )
- {
- image_set ( icon, SHOW );
-
- if (icon==ICON_CONTROL) {
- if (slot)
- image_setxy( icon, 0, 415, FALSE );
- else
- image_setxy( icon, 0, 0, FALSE );
- }
- else {
- short x=slot*56,y=0;
-
- if (slot >= 8) {
- x -= 8*56;
- y -= 56;
- }
-
- image_setxy( icon, x, y, FALSE );
-
- // If an nseq icon, move hilite too
-
- if (icon<ICON_BACK || icon>ICON_UP) {
- image_setxy( icon+20, x, y, FALSE );
-
- if (slot==0) button_set( "button 1", 0,icon+20 );
- if (slot==1) button_set( "button 2", 0,icon+20 );
- if (slot==2) button_set( "button 3", 0,icon+20 );
- if (slot==3) button_set( "button 4", 0,icon+20 );
- if (slot==4) button_set( "button 5", 0,icon+20 );
- if (slot==5) button_set( "button 6", 0,icon+20 );
- if (slot==6) button_set( "button 7", 0,icon+20 );
- if (slot==7) button_set( "button 8", 0,icon+20 );
- if (slot==8) button_set( "button 9", 0,icon+20 );
- if (slot==9) button_set( "button 10", 0,icon+20 );
- if (slot==10) button_set( "button 11", 0,icon+20 );
- if (slot==11) button_set( "button 12", 0,icon+20 );
- }
- }
- }
-
- public uchar wait_and_reset()
- {
- icon_reset();
- mouse_set(FALSE);
- sleep();
- while (anim_query() && keyboard_read()!=27 ) {
- if (keyboard_read()==' ') {
- display_set( 0, (display_get(0)+1)%3 );
- }
- sleep();
- }
- if (keyboard_read()==27) sound_stopall();
-
- mouse_set(TRUE);
- }
-
- FCEND -------------------
- FCODE Boot Code
- FCSTART -----------------
- icon_reset();
- anim_start("data\title\ti_title.san",ONCE,NEWPAL);
-
- mouse_set(FALSE);
- { short i;
- for (i=0; i<40; i+=1) sleep();
- }
- mouse_set(TRUE);
-
- while (anim_query() && !menu_up_flag) sleep();
- menu_up_flag = FALSE;
- view_goto("Main Menu");
- FCEND -------------------
- CODE 0
- CODE 0
- 1
- BUTTON Start
- -9 12 647 12 647 483 -8 494
- 0
- 1 0
- CODE 4 Start
- // sound_stopall();
- button_down(1);
- view_goto("Main Menu");
- menu_up_flag = TRUE;
- VIEW Control Panel
- CODE 0
- FCODE Enter Code
- FCSTART -----------------
- short dval;
- sound_stopall();
- button_down(1);
- icon_reset();
- image_set(300,SHOW);
- sleep();
- while (!pan_quit_flag) {
- draw_box(360,150,( sound_gethvol () *141)/127,7,251);
- draw_box(361,194,((video_getbrite()-128)*140)/256,7,251);
- dval = display_get(0);
- if (dval==0) draw_box( 485,239,4,5,248 );
- else if (dval==1) draw_box( 392,239,4,5,248 );
- else draw_box( 334,239,4,5,248 );
-
- draw_box(454-display_get(1)*76,287,4,5,248);
- sleep();
- }
- FCEND -------------------
- CODE 1
- image_set(300,HIDE);
- CODE 0
- 11
- BUTTON Vol Dn
- 327 141 359 141 358 164 327 164
- 0
- 1 0
- CODE 4
- short vol = sound_gethvol()-20;
- if (vol<0) vol = 0;
- button_down(1);
- sound_sethvol(vol);
- BUTTON Vol Up
- 504 142 534 142 536 163 504 162
- 0
- 1 0
- FCODE
- FCSTART -----------------
- { short newvol = sound_gethvol()+20;
- if (newvol > 127) newvol = 127;
- button_down(1);
- sound_sethvol( newvol );
- }
- FCEND -------------------
- BUTTON Brite Dn
- 328 185 357 185 360 208 328 209
- 0
- 1 0
- FCODE
- FCSTART -----------------
- button_down(1);
- {
- short newval = video_getbrite()-8;
- if (newval < 128) newval = 128;
- video_setbrite( newval,FALSE );
- }
- FCEND -------------------
- BUTTON Brite Up
- 503 187 535 187 536 210 504 209
- 0
- 1 0
- FCODE
- FCSTART -----------------
- button_down(1);
- {
- short newval = video_getbrite()+8;
- if (newval > 384) newval = 384;
- video_setbrite( newval,FALSE );
- }
- FCEND -------------------
- BUTTON Continue
- 437 313 534 313 534 368 437 370
- 0
- 1 0
- CODE 2
- button_down(1);
- pan_quit_flag = TRUE;
- BUTTON Quit
- 332 313 424 313 426 371 330 369
- 0
- 1 0
- CODE 3
- button_down(1);
- exit(0);
- image_set(300,HIDE);
- BUTTON Small
- 479 231 537 231 540 251 479 253
- 0
- 1 0
- CODE 2
- button_down(1);
- display_set(0,0);
- BUTTON Interlace
- 385 231 477 232 476 252 385 251
- 0
- 1 0
- CODE 2
- button_down(1);
- display_set(0,1);
- BUTTON Large
- 328 233 384 234 385 250 328 250
- 0
- 1 56
- CODE 2
- button_down(1);
- display_set(0,2);
- BUTTON TextOff
- 448 280 495 281 498 299 448 302
- 0
- 1 0
- CODE 2
- button_down(1);
- display_set(1,0);
- BUTTON TextOn
- 371 280 420 280 419 298 371 297
- 0
- 1 0
- CODE 2
- button_down(1);
- display_set(1,1);
- VIEW Main Menu
- FCODE Init Code
- FCSTART -----------------
- uchar start_up()
- {
- anim_start("data\main\mn_menu.san",ONCE,NEWPAL);
- pan_quit_flag = FALSE;
- icon_reset();
- icon_add( ICON_CONTROL, 2 );
- }
- FCEND -------------------
- CODE 1 Entry Code
- start_up();
- CODE 0
- CODE 0
- 6
- BUTTON New Footage
- 42 137 559 147 540 219 88 215
- 0
- 1 351
- CODE 2 New Footage
- view_goto("NewSeq Menu");
- button_down(1);
- BUTTON Archives
- 101 222 578 224 582 278 80 291
- 0
- 1 352
- CODE 2
- button_down(1);
- view_goto("Archive Menu");
- BUTTON Biographies
- 74 304 575 293 560 369 74 386
- 0
- 1 353
- CODE 3 Down Code
- view_goto("Crew Menu");
- sound_stopall();
- button_down(1);
- BUTTON George
- 48 29 545 41 546 128 48 125
- 0
- 1 350
- CODE 4 Down Code
- anim_start("data\main\mn_gl.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- BUTTON Credits
- 140 380 577 387 575 442 143 453
- 0
- 1 354
- CODE 4
- anim_start("data\main\mn_cred.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- BUTTON Control
- 8 426 41 426 41 473 8 473
- 0
- 1 0
- FCODE
- FCSTART -----------------
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("Main Menu");
-
-
- FCEND -------------------
- VIEW archive menu
- FCODE Init Code
- FCSTART -----------------
- uchar start_up()
- {
- anim_start("data\main\mn_arch.san",ONCE,NEWPAL);
- pan_quit_flag = FALSE;
- icon_reset();
- icon_add( ICON_CONTROL, 0 );
- icon_add( ICON_UP, 0 );
- }
- FCEND -------------------
- CODE 1 Entry Code
- start_up();
- CODE 0
- CODE 0
- 6
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- FCODE
- FCSTART -----------------
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("Archive Menu");
-
-
- FCEND -------------------
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 2
- button_down(1);
- view_goto("Main Menu");
- BUTTON Storyboards
- 35 215 324 248 316 447 55 459
- 0
- 1 352
- CODE 2
- button_down(1);
- view_goto("Board Menu");
- BUTTON Photos
- 347 25 575 67 570 231 333 227
- 0
- 1 351
- CODE 2
- button_down(1);
- view_goto("Photo Menu");
- BUTTON Press
- 338 236 591 270 624 402 331 418
- 0
- 1 353
- CODE 3 Down Code
- button_down(1);
- view_goto("Press Menu");
-
- BUTTON Computer
- 49 73 273 49 301 207 37 210
- 0
- 1 350
- FCODE Turns
- FCSTART -----------------
- button_down(1);
- current_menu = MENU_TURNTABL;
- view_goto("SubBoard Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Archive Menu");
- FCEND -------------------
- VIEW SubNseq menu
- XCODE data\system\subnseq.s
- CODE 1 Entry Code
- start_up();
- CODE 0
- CODE 0
- 16
- BUTTON Button 1
- 14 414 62 414 62 464 14 464
- 0
- 1 325
- CODE 1
- handle_button(0);
- BUTTON Button 2
- 71 414 119 414 119 464 71 464
- 0
- 1 326
- CODE 1
- handle_button(1);
- BUTTON Button 3
- 126 414 174 414 174 464 126 464
- 0
- 1 337
- CODE 1
- handle_button(2);
- BUTTON Button 4
- 182 415 230 415 230 465 182 465
- 0
- 1 323
- CODE 1
- handle_button(3);
- BUTTON Button 5
- 239 414 287 414 287 464 239 464
- 0
- 1 335
- CODE 1
- handle_button(4);
- BUTTON Button 6
- 295 414 343 414 343 464 295 464
- 0
- 1 336
- CODE 1
- handle_button(5);
- BUTTON Button 7
- 350 414 398 414 398 464 350 464
- 0
- 1 336
- CODE 1
- handle_button(6);
- BUTTON Button 8
- 405 413 453 413 453 463 405 463
- 0
- 1 327
- CODE 1
- handle_button(7);
- BUTTON Button 9
- 14 358 62 358 62 410 14 410
- 0
- 1 321
- CODE 1
- handle_button(8);
- BUTTON Button 10
- 71 358 119 358 119 410 71 410
- 0
- 1 324
- CODE 1
- handle_button(9);
- BUTTON Button 11
- 126 358 174 358 174 410 126 410
- 0
- 1 322
- CODE 1
- handle_button(10);
- BUTTON Button 12
- 182 358 230 358 230 410 182 410
- 1
- 3 0
- CODE 1
- handle_button(11);
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("SubNseq menu");
- BUTTON Back
- 502 433 531 433 531 466 469 466
- 0
- 1 0
- CODE 4
- sound_stopall();
- button_down(1);
- current_menu -= 1;
- start_up();
- BUTTON Forward
- 571 432 601 432 633 464 571 464
- 0
- 1 0
- CODE 4
- sound_stopall();
- button_down(1);
- current_menu += 1;
- start_up();
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 3
- sound_stopall();
- button_down(1);
- view_goto("NewSeq Menu");
- VIEW Crew Menu
- FCODE
- FCSTART -----------------
- uchar start_up()
- {
- anim_start("data\crew\cr_menu.san",ONCE,NEWPAL);
- pan_quit_flag = FALSE;
- icon_reset();
- icon_add( ICON_UP, 0 );
- icon_add( ICON_CONTROL, 0 );
- }
- FCEND -------------------
- CODE 1 Entry Code
- start_up();
- CODE 0
- CODE 0
- 10
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("Crew Menu");
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 3
- sound_stopall();
- button_down(1);
- view_goto("Main Menu");
- BUTTON nh
- 511 216 628 228 629 354 507 342
- 0
- 1 353
- FCODE
- FCSTART -----------------
- sound_stopall();
- button_down(1);
- current_menu = CRW_NEWHOPE;
- view_goto("SubCrew Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Crew Menu");
- FCEND -------------------
- BUTTON sw
- 467 6 612 18 583 113 464 98
- 0
- 1 350
- FCODE
- FCSTART -----------------
- sound_stopall();
- button_down(1);
- current_menu = CRW_STARWARS;
- view_goto("SubCrew Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Crew Menu");
- FCEND -------------------
- BUTTON Esb
- 434 97 559 103 564 213 436 215
- 0
- 1 351
- FCODE
- FCSTART -----------------
- sound_stopall();
- button_down(1);
- current_menu = CRW_EMPIRE;
- view_goto("SubCrew Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Crew Menu");
- FCEND -------------------
- BUTTON Rj
- 353 238 487 222 507 347 381 370
- 0
- 1 352
- FCODE
- FCSTART -----------------
- sound_stopall();
- button_down(1);
- current_menu = CRW_JEDI;
- view_goto("SubCrew Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Crew Menu");
- FCEND -------------------
- BUTTON BattleFX
- 6 61 129 41 142 145 18 161
- 0
- 1 354
- FCODE
- FCSTART -----------------
- sound_stopall();
- anim_start("data\crew\cr_jk1.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- FCEND -------------------
- BUTTON ThenNow
- 25 160 143 150 148 260 37 275
- 0
- 1 355
- FCODE
- FCSTART -----------------
- sound_stopall();
- anim_start("data\crew\cr_ph.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- FCEND -------------------
- BUTTON OnComputers
- 38 285 150 271 162 372 51 387
- 0
- 1 356
- FCODE
- FCSTART -----------------
- sound_stopall();
- anim_start("data\crew\cr_jk2.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- FCEND -------------------
- BUTTON Producer
- 53 390 156 377 175 459 66 480
- 0
- 1 357
- FCODE
- FCSTART -----------------
- sound_stopall();
- anim_start("data\crew\cr_rm.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- FCEND -------------------
- VIEW SubCrew Menu
- XCODE data\system\subcrew.s
- CODE 2 Entry Code
- if (!pan_quit_flag) current_submenu = 0;
- start_up();
- CODE 0
- CODE 1 Loop Code
- do_loop();
- 5
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("SubCrew Menu");
- BUTTON Back
- 502 433 531 433 531 466 469 466
- 0
- 1 0
- CODE 3
- button_down(1);
- current_submenu -= 1;
- start_up();
- BUTTON Forward
- 571 432 601 432 633 464 571 464
- 1
- 1 0
- CODE 3
- button_down(1);
- current_submenu += 1;
- start_up();
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- FCODE
- FCSTART -----------------
- button_down(1);
- if (current_submenu >= 100) {
- current_submenu -= 100;
- start_up();
- }
- else menu_up_flag = TRUE;
- FCEND -------------------
- BUTTON Old Photo
- 391 302 481 302 481 433 391 433
- 0
- 1 0
- CODE 3
- button_down(1);
- current_submenu += 100;
- start_up();
- VIEW Board Menu
- FCODE Init Code
- FCSTART -----------------
- uchar start_up()
- {
- anim_start("data\boards\bd_menu.san",ONCE,NEWPAL);
- pan_quit_flag = FALSE;
- icon_reset();
- icon_add( ICON_UP, 0 );
- icon_add( ICON_CONTROL, 0 );
- }
- FCEND -------------------
- CODE 1 Enter Code
- start_up();
- CODE 0
- CODE 0
- 6
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3 Down Code
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("Board Menu");
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 2
- button_down(1);
- view_goto("Archive Menu");
- BUTTON Mos Eisley
- 59 239 301 240 297 435 63 398
- 0
- 1 352
- FCODE
- FCSTART -----------------
- button_down(1);
- current_menu = MENU_MOSEISLY;
- view_goto("SubBoard Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Board Menu");
- FCEND -------------------
- BUTTON Tatooine
- 61 71 303 37 301 233 61 238
- 0
- 1 350
- FCODE
- FCSTART -----------------
- button_down(1);
- current_menu = MENU_TATOOINE;
- view_goto("SubBoard Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Board Menu");
- FCEND -------------------
- BUTTON JabbaHan
- 344 37 596 77 598 235 348 240
- 0
- 1 351
- FCODE
- FCSTART -----------------
- button_down(1);
- current_menu = MENU_JABBAHAN;
- view_goto("SubBoard Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Board Menu");
- FCEND -------------------
- BUTTON JediRock
- 351 238 611 237 600 394 353 442
- 0
- 1 353
- FCODE
- FCSTART -----------------
- button_down(1);
- current_menu = MENU_JEDIROCK;
- view_goto("SubBoard Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Board Menu");
- FCEND -------------------
- VIEW SubBoard Menu
- XCODE data\system\subboard.s
- CODE 2 Entry Code
- if (!pan_quit_flag) current_submenu = 0;
- start_up();
- CODE 0
- CODE 0
- 4
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("SubBoard Menu");
- BUTTON Back
- 502 433 531 433 531 466 469 466
- 1
- 1 0
- CODE 3
- button_down(1);
- current_submenu -= 1;
- start_up();
- BUTTON Forward
- 571 432 601 432 633 464 571 464
- 0
- 1 0
- CODE 3
- button_down(1);
- current_submenu += 1;
- start_up();
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 2
- button_down(1);
- menu_up_flag = TRUE;
- VIEW Photo Menu
- FCODE Init Code
- FCSTART -----------------
- uchar start_up()
- {
- anim_start("data\photos\ph_menu.san",ONCE,NEWPAL);
- pan_quit_flag = FALSE;
- icon_reset();
- icon_add( ICON_UP, 0 );
- icon_add( ICON_CONTROL, 0 );
- }
- FCEND -------------------
- CODE 1 Enter Code
- start_up();
- CODE 0
- CODE 0
- 5
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3 Down Code
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("Photo Menu");
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 2
- button_down(1);
- view_goto("Archive Menu");
- BUTTON Star Wars
- 25 131 255 113 279 344 54 364
- 0
- 1 350
- FCODE
- FCSTART -----------------
- button_down(1);
- current_menu = PHOTO_NH;
- view_goto("SubPhoto Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Photo Menu");
- FCEND -------------------
- BUTTON Empire
- 276 12 501 56 467 271 248 235
- 0
- 1 351
- FCODE
- FCSTART -----------------
- button_down(1);
- current_menu = PHOTO_ESB;
- view_goto("SubPhoto Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Photo Menu");
- FCEND -------------------
- BUTTON Jedi
- 311 241 525 238 520 458 306 466
- 0
- 1 352
- FCODE
- FCSTART -----------------
- button_down(1);
- current_menu = PHOTO_RJ;
- view_goto("SubPhoto Menu");
- for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
- view_goto("Photo Menu");
- FCEND -------------------
- VIEW SubPhoto Menu
- XCODE data\system\subphoto.s
- CODE 2 Entry Code
- if (!pan_quit_flag) current_submenu = 0;
- start_up();
- CODE 0
- CODE 0
- 4
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("SubPhoto Menu");
- BUTTON Back
- 502 433 531 433 531 466 469 466
- 1
- 1 0
- CODE 3
- button_down(1);
- current_submenu -= 1;
- start_up();
- BUTTON Forward
- 571 432 601 432 633 464 571 464
- 0
- 1 0
- CODE 3
- button_down(1);
- current_submenu += 1;
- start_up();
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 2
- button_down(1);
- menu_up_flag = TRUE;
- VIEW NewSeq Menu
- FCODE Init Code
- FCSTART -----------------
- uchar start_up()
- {
- anim_start("data\main\mn_nseq.san",ONCE,NEWPAL);
- pan_quit_flag = FALSE;
- icon_reset();
- icon_add( ICON_CONTROL, 0 );
- icon_add( ICON_UP, 0 );
- }
- FCEND -------------------
- CODE 1 Entry Code
- start_up();
- CODE 0
- CODE 0
- 8
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 3
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("NewSeq Menu");
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 2
- button_down(1);
- view_goto("Main Menu");
- BUTTON Tatooine
- 177 24 419 21 405 127 151 130
- 0
- 1 350
- CODE 3
- button_down(1);
- current_menu = MENU_TATOOINE;
- view_goto("SubNseq menu");
- BUTTON Mos Eisley
- 148 137 401 134 368 234 106 236
- 0
- 1 351
- CODE 3
- button_down(1);
- current_menu = MENU_MOSEISLY;
- view_goto("SubNseq menu");
- BUTTON JabbaHan
- 105 241 373 243 326 341 75 342
- 0
- 1 352
- CODE 3
- button_down(1);
- current_menu = MENU_JABBAHAN;
- view_goto("SubNseq menu");
- BUTTON LastBattle
- 74 348 324 347 295 454 55 447
- 0
- 1 353
- CODE 3
- button_down(1);
- current_menu = MENU_FINALBAT;
- view_goto("SubNseq menu");
- BUTTON JediRocks
- 416 234 563 208 596 351 449 390
- 0
- 1 355
- CODE 4
- anim_start("data\jedirock\jr_gl.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- BUTTON EsbWampa
- 479 6 625 47 590 179 449 150
- 0
- 1 354
- CODE 4
- anim_start("data\esbwampa\ew_rm.san",ONCE,NEWPAL|HALTAUDIO);
- button_down(0);
- wait_and_reset();
- start_up();
- VIEW NewSeqInfo Menu
- FCODE Init
- FCSTART -----------------
- static short inf_frames[10] = {
- 1,1,1,1,0, 0, 13,4,7,3
- };
-
- short start_up()
- {
- icon_reset();
- icon_add( ICON_CONTROL, 0 );
- icon_add( ICON_UP, 0 );
-
- if (current_submenu > 0) {
- icon_add( ICON_BACK, 0 );
- button_set( "back", 0,0 );
- }
- else {
- button_set( "back", 1,0 );
- }
-
-
- if (current_submenu < inf_frames[current_menu]-1) {
- icon_add( ICON_FORWARD, 0 );
- button_set( "forward", 0,0 );
- }
- else {
- button_set( "forward", 1,0 );
- }
-
- if (current_menu==MENU_SKYSOUND) {
- if (current_submenu)
- anim_start("data\press\pr_back.nut",ONCE,NEWPAL);
- else
- anim_start("data\press\ben_b.nut",ONCE,NEWPAL);
- }
- pan_quit_flag = FALSE;
- }
- FCEND -------------------
- FCODE Entry Code
- FCSTART -----------------
- if (!pan_quit_flag) current_submenu = 0;
-
- start_up();
-
- // Load correct background
-
- if (current_menu==MENU_TATOOINE) {
- anim_start("data\tatooine\ta_back.nut",ONCE,OLDPAL);
- }
-
- else if (current_menu==MENU_MOSEISLY) {
- anim_start("data\moseisly\me_back.nut",ONCE,OLDPAL);
- }
-
- else if (current_menu==MENU_JABBAHAN) {
- anim_start("data\jabbahan\jb_back.nut",ONCE,OLDPAL);
- }
-
- else if (current_menu==MENU_FINALBAT) {
- anim_start("data\finalbat\fb_back.nut",ONCE,OLDPAL);
- }
-
- else if (current_menu!=MENU_SKYSOUND) {
- anim_start("data\press\pr_back.nut",ONCE,OLDPAL);
- }
-
- FCEND -------------------
- CODE 0
- CODE 5
- { short foo=current_menu*5;
- if (current_menu==MENU_SKYSOUND) foo-=11;
- if (current_menu==MENU_THX ) foo+=2;
- print_tres( 50+foo+current_submenu, 70,50, 1,0, 0 );
- }
- 4
- BUTTON Back
- 502 433 531 433 531 466 469 466
- 1
- 1 0
- CODE 3
- button_down(1);
- current_submenu -= 1;
- start_up();
- BUTTON Forward
- 571 432 601 432 633 464 571 464
- 0
- 1 0
- CODE 3
- button_down(1);
- current_submenu += 1;
- start_up();
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- CODE 4
- while (anim_query()) sleep();
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("NewSeqInfo Menu");
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 5
- button_down(1);
- if (current_menu < MENU_SKYSOUND)
- view_goto("SubNSeq Menu");
- else
- view_goto("Press Menu");
- VIEW Press Menu
- FCODE Init Code
- FCSTART -----------------
- uchar start_up()
- {
- anim_start("data\press\pr_menu.san",ONCE,NEWPAL);
- pan_quit_flag = FALSE;
- icon_reset();
- icon_add( ICON_CONTROL, 0 );
- icon_add( ICON_UP, 0 );
- }
- FCEND -------------------
- CODE 1 Entry Code
- start_up();
- CODE 0
- CODE 0
- 6
- BUTTON Control
- 9 11 42 11 42 58 9 58
- 0
- 1 0
- FCODE
- FCSTART -----------------
- view_goto("Control Panel");
- do { sleep(); } while(!pan_quit_flag);
- view_goto("Press Menu");
-
-
- FCEND -------------------
- BUTTON Up
- 536 421 567 421 567 462 536 462
- 0
- 1 0
- CODE 2
- button_down(1);
- view_goto("Archive Menu");
- BUTTON Skysound
- 17 50 295 48 304 129 17 140
- 0
- 1 350
- CODE 3
- button_down(1);
- current_menu = MENU_SKYSOUND;
- view_goto("NewSeqInfo Menu");
- BUTTON ILM
- 334 43 607 45 624 239 339 234
- 0
- 1 352
- CODE 3
- button_down(1);
- current_menu = MENU_ILM;
- view_goto("NewSeqInfo Menu");
- BUTTON Lucasfilm
- 29 181 318 180 321 275 29 271
- 0
- 1 351
- CODE 3
- button_down(1);
- current_menu = MENU_LUCASFLM;
- view_goto("NewSeqInfo Menu");
- BUTTON THX
- 281 308 556 311 555 422 281 417
- 0
- 1 353
- CODE 3
- button_down(1);
- current_menu = MENU_THX;
- view_goto("NewSeqInfo Menu");