home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 24 / CDMM24_2.iso / data / system / hope.spj < prev    next >
Encoding:
Text File  |  1996-09-25  |  30.7 KB  |  1,258 lines

  1. STPJ - Stage Project file
  2. Version 1.01
  3.  
  4.    CURSOR
  5.       data\system\CURSOR.NUT
  6.    TRES
  7.       data\system\hope.trs
  8.    FONT 3
  9.       data\system\textfont.nut
  10.       data\system\titlfont.nut
  11.       data\system\smalfont.nut
  12.    CODE 0
  13.    CODE 0
  14.    CODE 0
  15.    CODE 0
  16.    14
  17.    VIEW Boot Room
  18.       FCODE Init Code
  19.          FCSTART -----------------
  20.  
  21.     public short MENU_TATOOINE = 0;
  22.     public short MENU_MOSEISLY = 1;
  23.     public short MENU_JABBAHAN = 2;
  24.     public short MENU_FINALBAT = 3;
  25.     public short MENU_JEDIROCK = 4;
  26.  
  27.     public short MENU_TURNTABL = 5;
  28.  
  29.     public short MENU_SKYSOUND = 6;
  30.     public short MENU_LUCASFLM    = 7;
  31.     public short MENU_ILM        = 8;
  32.     public short MENU_THX        = 9;
  33.  
  34.    public short current_menu    = 0;
  35.     public short current_submenu = 0;
  36.  
  37.     public short pan_quit_flag = FALSE;
  38.     public short menu_up_flag  = FALSE;
  39.  
  40.     //
  41.     // Routines
  42.     //
  43.  
  44.    public uchar button_down( short type )
  45.    {
  46.       sound_start( 2-type,0,127,0,0 );
  47.    }
  48.  
  49.    public short icon_reset()
  50.    {
  51.       short i;
  52.  
  53.       for ( i=ICON_FIRST; i<=ICON_LAST; i+=1 ) {
  54.          image_set( i,HIDE );
  55.       }
  56.    }
  57.  
  58.    public short icon_add( short icon, short slot )
  59.    {
  60.       image_set  ( icon, SHOW );
  61.  
  62.       if (icon==ICON_CONTROL) {
  63.             if (slot)
  64.                 image_setxy( icon, 0, 415, FALSE );
  65.             else
  66.                 image_setxy( icon, 0,   0, FALSE );
  67.         }
  68.         else {
  69.             short x=slot*56,y=0;
  70.  
  71.             if (slot >= 8) {
  72.                 x -= 8*56;
  73.                 y -= 56;
  74.             }
  75.  
  76.             image_setxy( icon, x, y, FALSE );
  77.  
  78.             // If an nseq icon, move hilite too
  79.  
  80.             if (icon<ICON_BACK || icon>ICON_UP) {
  81. /* Not for international!
  82.  
  83.                 image_setxy( icon+20, x, y, FALSE );
  84.  
  85.                 if (slot==0) button_set( "button 1", 0,icon+20 );
  86.                 if (slot==1) button_set( "button 2", 0,icon+20 );
  87.                 if (slot==2) button_set( "button 3", 0,icon+20 );
  88.                 if (slot==3) button_set( "button 4", 0,icon+20 );
  89.                 if (slot==4) button_set( "button 5", 0,icon+20 );
  90.                 if (slot==5) button_set( "button 6", 0,icon+20 );
  91.                 if (slot==6) button_set( "button 7", 0,icon+20 );
  92.                 if (slot==7) button_set( "button 8", 0,icon+20 );
  93.                 if (slot==8) button_set( "button 9", 0,icon+20 );
  94.                 if (slot==9) button_set( "button 10", 0,icon+20 );
  95.                 if (slot==10) button_set( "button 11", 0,icon+20 );
  96.                 if (slot==11) button_set( "button 12", 0,icon+20 );
  97. */
  98.                 if (slot==0) button_set( "button 1", 0,0 );
  99.                 if (slot==1) button_set( "button 2", 0,0 );
  100.                 if (slot==2) button_set( "button 3", 0,0 );
  101.                 if (slot==3) button_set( "button 4", 0,0 );
  102.                 if (slot==4) button_set( "button 5", 0,0 );
  103.                 if (slot==5) button_set( "button 6", 0,0 );
  104.                 if (slot==6) button_set( "button 7", 0,0 );
  105.                 if (slot==7) button_set( "button 8", 0,0 );
  106.                 if (slot==8) button_set( "button 9", 0,0 );
  107.                 if (slot==9) button_set( "button 10", 0,0 );
  108.                 if (slot==10) button_set( "button 11", 0,0 );
  109.                 if (slot==11) button_set( "button 12", 0,0 );
  110.  
  111.             }
  112.         }
  113.    }
  114.  
  115.     public uchar wait_and_reset()
  116.     {
  117.         icon_reset();
  118.        mouse_set(FALSE); 
  119.        sleep();
  120.        while (anim_query() && keyboard_read()!=27 ) {
  121.            if (keyboard_read()==' ') {
  122.                 display_set( 0, (display_get(0)+1)%3 );
  123.             }
  124.             sleep();
  125.         }
  126.         if (keyboard_read()==27) sound_stopall();
  127.  
  128.         mouse_set(TRUE);
  129.     }
  130.  
  131.          FCEND -------------------
  132.       FCODE Boot Code
  133.          FCSTART -----------------
  134.  
  135.     // International!  Turn on Subtitles!
  136.     display_set(1,1);
  137.  
  138.             icon_reset();
  139.           anim_start("data\title\tititlei.san",ONCE,NEWPAL);
  140.  
  141.            mouse_set(FALSE); 
  142.             {  short i;
  143.                 for (i=0; i<40; i+=1) sleep();
  144.             }
  145.            mouse_set(TRUE); 
  146.  
  147.             menu_up_flag = FALSE;
  148.            while (anim_query() && !menu_up_flag) sleep();
  149.             view_goto("Main Menu");
  150.          FCEND -------------------
  151.       CODE 0
  152.       CODE 0
  153.       1
  154.       BUTTON Start
  155.          -9 12  647 12  647 483  -8 494
  156.          0
  157.          1 0
  158.          CODE 4 Start
  159. //                sound_stopall();
  160.                 button_down(1);
  161.                 view_goto("Main Menu");
  162.                 menu_up_flag = TRUE;
  163.    VIEW Control Panel
  164.       CODE 0
  165.       FCODE Enter Code
  166.          FCSTART -----------------
  167.             short dval;
  168.             sound_stopall();
  169.             button_down(1);
  170.          icon_reset();
  171.           image_set(300,SHOW);
  172.             sleep();
  173.             while (!pan_quit_flag) {
  174.  
  175.                 print_tres( 1114, 430,87, 1,0, 1 );
  176.                 print_tres( 1115, 378,314, 1,0, 1 );
  177.                 print_tres( 1116, 487,314, 1,0, 1 );
  178.  
  179.                 draw_box(360,150,( sound_gethvol ()     *141)/127,7,251);
  180.                 draw_box(361,194,((video_getbrite()-128)*140)/256,7,251);
  181.                dval = display_get(0);
  182.                if (dval==0) draw_box( 485,239,4,5,248 );
  183.                else if (dval==1) draw_box( 392,239,4,5,248 );
  184.                else draw_box( 334,239,4,5,248 );
  185.  
  186.                draw_box(454-display_get(1)*76,287,4,5,248);
  187.                 sleep();
  188.             }
  189.          FCEND -------------------
  190.       CODE 1 
  191.           image_set(300,HIDE);
  192.       CODE 0
  193.       11
  194.       BUTTON Vol Dn
  195.          327 141  359 141  358 164  327 164
  196.          0
  197.          1 0
  198.          CODE 4 
  199.                 short vol = sound_gethvol()-20;
  200.                 if (vol<0) vol = 0;
  201.                 button_down(1);
  202.                 sound_sethvol(vol);
  203.       BUTTON Vol Up
  204.          504 142  534 142  536 163  504 162
  205.          0
  206.          1 0
  207.          FCODE 
  208.             FCSTART -----------------
  209.                 {  short newvol = sound_gethvol()+20;
  210.                     if (newvol > 127) newvol = 127;
  211.                     button_down(1);
  212.                     sound_sethvol( newvol );
  213.                 }
  214.             FCEND -------------------
  215.       BUTTON Brite Dn
  216.          328 185  357 185  360 208  328 209
  217.          0
  218.          1 0
  219.          FCODE 
  220.             FCSTART -----------------
  221.                 button_down(1);
  222.                 {
  223.                    short newval = video_getbrite()-8;
  224.                     if (newval < 128) newval = 128;
  225.                     video_setbrite( newval,FALSE );
  226.                 }
  227.             FCEND -------------------
  228.       BUTTON Brite Up
  229.          503 187  535 187  536 210  504 209
  230.          0
  231.          1 0
  232.          FCODE 
  233.             FCSTART -----------------
  234.                 button_down(1);
  235.                 {
  236.                    short newval = video_getbrite()+8;
  237.                     if (newval > 384) newval = 384;
  238.                     video_setbrite( newval,FALSE );
  239.                 }
  240.             FCEND -------------------
  241.       BUTTON Continue
  242.          437 313  534 313  534 368  437 370
  243.          0
  244.          1 0
  245.          CODE 2 
  246.                 button_down(1);
  247.                 pan_quit_flag = TRUE;
  248.       BUTTON Quit
  249.          332 313  424 313  426 371  330 369
  250.          0
  251.          1 0
  252.          CODE 3 
  253.                 button_down(1);
  254.                 exit(0);
  255.               image_set(300,HIDE);
  256.       BUTTON Small
  257.          479 231  537 231  540 251  479 253
  258.          0
  259.          1 0
  260.          CODE 2 
  261.                 button_down(1);
  262.                 display_set(0,0);
  263.       BUTTON Interlace
  264.          385 231  477 232  476 252  385 251
  265.          0
  266.          1 0
  267.          CODE 2 
  268.                 button_down(1);
  269.                 display_set(0,1);
  270.       BUTTON Large
  271.          328 233  384 234  385 250  328 250
  272.          0
  273.          1 56
  274.          CODE 2 
  275.                 button_down(1);
  276.                 display_set(0,2);
  277.       BUTTON TextOff
  278.          448 280  495 281  498 299  448 302
  279.          0
  280.          1 0
  281.          CODE 2 
  282.                 button_down(1);
  283.                 display_set(1,0);
  284.       BUTTON TextOn
  285.          371 280  420 280  419 298  371 297
  286.          0
  287.          1 0
  288.          CODE 2 
  289.                 button_down(1);
  290.                 display_set(1,1);
  291.    VIEW Main Menu
  292.       FCODE Init Code
  293.          FCSTART -----------------
  294.             uchar start_up()
  295.             {
  296.                anim_start("data\main\mn_menui.san",ONCE,NEWPAL);
  297.                pan_quit_flag = FALSE;
  298.              icon_reset();
  299.              icon_add( ICON_CONTROL, 2 );
  300.             }
  301.          FCEND -------------------
  302.       CODE 1 Entry Code
  303.          start_up();
  304.       CODE 0
  305.       CODE 0
  306.       6
  307.       BUTTON New Footage
  308.          42 137  559 147  540 219  88 215
  309.          0
  310.          1 351
  311.          CODE 2 New Footage
  312.                 view_goto("NewSeq Menu");
  313.                 button_down(1);
  314.       BUTTON Archives
  315.          101 222  578 224  582 278  80 291
  316.          0
  317.          1 352
  318.          CODE 2 
  319.                 button_down(1);
  320.                 view_goto("Archive Menu");
  321.       BUTTON Biographies
  322.          74 304  575 293  560 369  74 386
  323.          0
  324.          1 353
  325.          CODE 3 Down Code
  326.             view_goto("Crew Menu");
  327.                 sound_stopall();
  328.             button_down(1);
  329.       BUTTON George
  330.          48 29  545 41  546 128  48 125
  331.          0
  332.          1 350
  333.          CODE 4 Down Code
  334.               anim_start("data\main\mn_gl.san",ONCE,NEWPAL|HALTAUDIO);
  335.                 button_down(0);
  336.                 wait_and_reset();
  337.                start_up();
  338.       BUTTON Credits
  339.          140 380  577 387  575 442  143 453
  340.          0
  341.          1 354
  342.          CODE 4 
  343.               anim_start("data\main\mn_cred.san",ONCE,NEWPAL|HALTAUDIO);
  344.                 button_down(0);
  345.                 wait_and_reset();
  346.                start_up();
  347.       BUTTON Control
  348.          8 426  41 426  41 473  8 473
  349.          0
  350.          1 0
  351.          FCODE 
  352.             FCSTART -----------------
  353.                 view_goto("Control Panel");
  354.                 do { sleep(); } while(!pan_quit_flag);
  355.                 view_goto("Main Menu");
  356.  
  357.  
  358.             FCEND -------------------
  359.    VIEW archive menu
  360.       FCODE Init Code
  361.          FCSTART -----------------
  362.             uchar start_up()
  363.             {
  364.                anim_start("data\main\mn_archi.san",ONCE,NEWPAL);
  365.                pan_quit_flag = FALSE;
  366.              icon_reset();
  367.              icon_add( ICON_CONTROL, 0 );
  368.              icon_add( ICON_UP,      0 );
  369.             }
  370.          FCEND -------------------
  371.       CODE 1 Entry Code
  372.          start_up();
  373.       CODE 0
  374.       CODE 0
  375.       6
  376.       BUTTON Control
  377.          9 11  42 11  42 58  9 58
  378.          0
  379.          1 0
  380.          FCODE 
  381.             FCSTART -----------------
  382.                 view_goto("Control Panel");
  383.                 do { sleep(); } while(!pan_quit_flag);
  384.                 view_goto("Archive Menu");
  385.  
  386.  
  387.             FCEND -------------------
  388.       BUTTON Up
  389.          536 421  567 421  567 462  536 462
  390.          0
  391.          1 0
  392.          CODE 2 
  393.                 button_down(1);
  394.                 view_goto("Main Menu");
  395.       BUTTON Storyboards
  396.          35 215  324 248  316 447  55 459
  397.          0
  398.          1 352
  399.          CODE 2 
  400.             button_down(1);
  401.                 view_goto("Board Menu");
  402.       BUTTON Photos
  403.          347 25  575 67  570 231  333 227
  404.          0
  405.          1 351
  406.          CODE 2 
  407.             button_down(1);
  408.                 view_goto("Photo Menu");
  409.       BUTTON Press
  410.          338 236  591 270  624 402  331 418
  411.          0
  412.          1 353
  413.          CODE 3 Down Code
  414.             button_down(1);
  415.             view_goto("Press Menu");
  416.  
  417.       BUTTON Computer
  418.          49 73  273 49  301 207  37 210
  419.          0
  420.          1 350
  421.          FCODE Turns
  422.             FCSTART -----------------
  423.                 button_down(1);
  424.                 current_menu = MENU_TURNTABL;
  425.                 view_goto("SubBoard Menu");
  426.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  427.                 view_goto("Archive Menu");
  428.             FCEND -------------------
  429.    VIEW SubNseq menu
  430.       XCODE data\system\subnseq.si 
  431.       CODE 1 Entry Code
  432.             start_up();
  433.       CODE 0
  434.       FCODE Loop Code
  435.          FCSTART -----------------
  436.  
  437.             if (!anim_play_flag) {
  438.                 short button = 0,x,y,tx,ty;
  439.  
  440.                 x = mouse_x();
  441.                 y = mouse_y();
  442.  
  443.                 if      ( y > 414 && y < 464 ) {
  444.                     button = 1;
  445.                     ty = 414;
  446.                 }
  447.  
  448.                 else if ( y > 358 && y < 410 ) {
  449.                     button = 9;
  450.                     ty = 358;
  451.                 }
  452.  
  453.                 if (button && x>14 && x<453) {
  454.  
  455.                     tx = (x-14) / 56 * 56 + 14;
  456.  
  457.                     if (x-tx < 48) {
  458.  
  459.                         button += (tx/56);
  460.  
  461.                         if (button >=1 && button < NUM_BUTTONS+1) {
  462.                             button = scene_buttons[ NUM_BUTTONS * current_menu + button -1 ];
  463.         
  464.                             if (button) {
  465.                                 print_tres( scene_text[button-301],    tx+28,ty-10, 0,243, 16|1 );
  466.                             }
  467.                         }
  468.                     }
  469.                 }
  470.             }
  471.  
  472.          FCEND -------------------
  473.       16
  474.       BUTTON Button 1
  475.          14 414  62 414  62 464  14 464
  476.          0
  477.          1 0
  478.          CODE 1 
  479.                 handle_button(0);
  480.       BUTTON Button 2
  481.          71 414  119 414  119 464  71 464
  482.          0
  483.          1 0
  484.          CODE 1 
  485.                 handle_button(1);
  486.       BUTTON Button 3
  487.          126 414  174 414  174 464  126 464
  488.          0
  489.          1 0
  490.          CODE 1 
  491.                 handle_button(2);
  492.       BUTTON Button 4
  493.          182 415  230 415  230 465  182 465
  494.          0
  495.          1 0
  496.          CODE 1 
  497.                 handle_button(3);
  498.       BUTTON Button 5
  499.          239 414  287 414  287 464  239 464
  500.          0
  501.          1 0
  502.          CODE 1 
  503.                 handle_button(4);
  504.       BUTTON Button 6
  505.          295 414  343 414  343 464  295 464
  506.          0
  507.          1 0
  508.          CODE 1 
  509.                 handle_button(5);
  510.       BUTTON Button 7
  511.          350 414  398 414  398 464  350 464
  512.          0
  513.          1 0
  514.          CODE 1 
  515.                 handle_button(6);
  516.       BUTTON Button 8
  517.          405 413  453 413  453 463  405 463
  518.          0
  519.          1 0
  520.          CODE 1 
  521.                 handle_button(7);
  522.       BUTTON Button 9
  523.          14 358  62 358  62 410  14 410
  524.          0
  525.          1 0
  526.          CODE 1 
  527.                 handle_button(8);
  528.       BUTTON Button 10
  529.          71 358  119 358  119 410  71 410
  530.          0
  531.          1 0
  532.          CODE 1 
  533.                 handle_button(9);
  534.       BUTTON Button 11
  535.          126 358  174 358  174 410  126 410
  536.          0
  537.          1 0
  538.          CODE 1 
  539.                 handle_button(10);
  540.       BUTTON Button 12
  541.          182 358  230 358  230 410  182 410
  542.          1
  543.          3 0
  544.          CODE 1 
  545.                 handle_button(11);
  546.       BUTTON Control
  547.          9 11  42 11  42 58  9 58
  548.          0
  549.          1 0
  550.          CODE 3 
  551.                 view_goto("Control Panel");
  552.                 do { sleep(); } while(!pan_quit_flag);
  553.                 view_goto("SubNseq menu");
  554.       BUTTON Back
  555.          502 433  531 433  531 466  469 466
  556.          0
  557.          1 0
  558.          CODE 4 
  559.                 sound_stopall();
  560.                 button_down(1);
  561.                 current_menu -= 1;
  562.                 start_up();
  563.       BUTTON Forward
  564.          571 432  601 432  633 464  571 464
  565.          0
  566.          1 0
  567.          CODE 4 
  568.                 sound_stopall();
  569.                 button_down(1);
  570.                 current_menu += 1;
  571.                 start_up();
  572.       BUTTON Up
  573.          536 421  567 421  567 462  536 462
  574.          0
  575.          1 0
  576.          CODE 3 
  577.                 sound_stopall();
  578.                 button_down(1);
  579.                 view_goto("NewSeq Menu");
  580.    VIEW Crew Menu
  581.       FCODE 
  582.          FCSTART -----------------
  583.             uchar start_up()
  584.             {
  585.                 anim_start("data\crew\cr_menui.san",ONCE,NEWPAL);
  586.                 pan_quit_flag = FALSE;
  587.              icon_reset();
  588.              icon_add( ICON_UP,    0 );
  589.              icon_add( ICON_CONTROL, 0 );
  590.             }
  591.          FCEND -------------------
  592.       CODE 1 Entry Code
  593.             start_up();
  594.       CODE 0
  595.       CODE 0
  596.       10
  597.       BUTTON Control
  598.          9 11  42 11  42 58  9 58
  599.          0
  600.          1 0
  601.          CODE 3 
  602.                 view_goto("Control Panel");
  603.                 do { sleep(); } while(!pan_quit_flag);
  604.                 view_goto("Crew Menu");
  605.       BUTTON Up
  606.          536 421  567 421  567 462  536 462
  607.          0
  608.          1 0
  609.          CODE 3 
  610.                 sound_stopall();
  611.                 button_down(1);
  612.                 view_goto("Main Menu");
  613.       BUTTON nh
  614.          511 216  628 228  629 354  507 342
  615.          0
  616.          1 353
  617.          FCODE 
  618.             FCSTART -----------------
  619.                 sound_stopall();
  620.                 button_down(1);
  621.                 current_menu = CRW_NEWHOPE;
  622.                 view_goto("SubCrew Menu");
  623.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  624.                 view_goto("Crew Menu");
  625.             FCEND -------------------
  626.       BUTTON sw
  627.          467 6  612 18  583 113  464 98
  628.          0
  629.          1 350
  630.          FCODE 
  631.             FCSTART -----------------
  632.                 sound_stopall();
  633.                 button_down(1);
  634.                 current_menu = CRW_STARWARS;
  635.                 view_goto("SubCrew Menu");
  636.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  637.                 view_goto("Crew Menu");
  638.             FCEND -------------------
  639.       BUTTON Esb
  640.          434 97  559 103  564 213  436 215
  641.          0
  642.          1 351
  643.          FCODE 
  644.             FCSTART -----------------
  645.                 sound_stopall();
  646.                 button_down(1);
  647.                 current_menu = CRW_EMPIRE;
  648.                 view_goto("SubCrew Menu");
  649.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  650.                 view_goto("Crew Menu");
  651.             FCEND -------------------
  652.       BUTTON Rj
  653.          353 238  487 222  507 347  381 370
  654.          0
  655.          1 352
  656.          FCODE 
  657.             FCSTART -----------------
  658.                 sound_stopall();
  659.                 button_down(1);
  660.                 current_menu = CRW_JEDI;
  661.                 view_goto("SubCrew Menu");
  662.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  663.                 view_goto("Crew Menu");
  664.             FCEND -------------------
  665.       BUTTON BattleFX
  666.          6 61  129 41  142 145  18 161
  667.          0
  668.          1 354
  669.          FCODE 
  670.             FCSTART -----------------
  671.                 sound_stopall();
  672.               anim_start("data\crew\cr_jk1.san",ONCE,NEWPAL|HALTAUDIO);
  673.                 button_down(0);
  674.                 wait_and_reset();
  675.                start_up();
  676.             FCEND -------------------
  677.       BUTTON ThenNow
  678.          25 160  143 150  148 260  37 275
  679.          0
  680.          1 355
  681.          FCODE 
  682.             FCSTART -----------------
  683.                 sound_stopall();
  684.               anim_start("data\crew\cr_ph.san",ONCE,NEWPAL|HALTAUDIO);
  685.                 button_down(0);
  686.                 wait_and_reset();
  687.                start_up();
  688.             FCEND -------------------
  689.       BUTTON OnComputers
  690.          38 285  150 271  162 372  51 387
  691.          0
  692.          1 356
  693.          FCODE 
  694.             FCSTART -----------------
  695.                 sound_stopall();
  696.               anim_start("data\crew\cr_jk2.san",ONCE,NEWPAL|HALTAUDIO);
  697.                 button_down(0);
  698.                 wait_and_reset();
  699.                start_up();
  700.             FCEND -------------------
  701.       BUTTON Producer
  702.          53 390  156 377  175 459  66 480
  703.          0
  704.          1 357
  705.          FCODE 
  706.             FCSTART -----------------
  707.                 sound_stopall();
  708.               anim_start("data\crew\cr_rm.san",ONCE,NEWPAL|HALTAUDIO);
  709.                 button_down(0);
  710.                 wait_and_reset();
  711.                start_up();
  712.             FCEND -------------------
  713.    VIEW SubCrew Menu
  714.       XCODE data\system\subcrew.s 
  715.       CODE 2 Entry Code
  716.             if (!pan_quit_flag) current_submenu = 0;
  717.             start_up();
  718.       CODE 0
  719.       CODE 1 Loop Code
  720.             do_loop();
  721.       5
  722.       BUTTON Control
  723.          9 11  42 11  42 58  9 58
  724.          0
  725.          1 0
  726.          CODE 3 
  727.                 view_goto("Control Panel");
  728.                 do { sleep(); } while(!pan_quit_flag);
  729.                 view_goto("SubCrew Menu");
  730.       BUTTON Back
  731.          502 433  531 433  531 466  469 466
  732.          0
  733.          1 0
  734.          CODE 3 
  735.                 button_down(1);
  736.                 current_submenu -= 1;
  737.                 start_up();
  738.       BUTTON Forward
  739.          571 432  601 432  633 464  571 464
  740.          1
  741.          1 0
  742.          CODE 3 
  743.                 button_down(1);
  744.                 current_submenu += 1;
  745.                 start_up();
  746.       BUTTON Up
  747.          536 421  567 421  567 462  536 462
  748.          0
  749.          1 0
  750.          FCODE 
  751.             FCSTART -----------------
  752.                 button_down(1);
  753.                 if (current_submenu >= 100) {
  754.                     current_submenu -= 100;
  755.                     start_up();
  756.                 }
  757.                 else menu_up_flag = TRUE;
  758.             FCEND -------------------
  759.       BUTTON Old Photo
  760.          391 302  481 302  481 433  391 433
  761.          0
  762.          1 0
  763.          CODE 3 
  764.                 button_down(1);
  765.                 current_submenu += 100;
  766.                 start_up();
  767.    VIEW Board Menu
  768.       FCODE Init Code
  769.          FCSTART -----------------
  770.             uchar start_up()
  771.             {
  772.                 anim_start("data\boards\bd_menui.san",ONCE,NEWPAL);
  773.                 pan_quit_flag = FALSE;
  774.              icon_reset();
  775.              icon_add( ICON_UP,      0 );
  776.              icon_add( ICON_CONTROL, 0 );
  777.             }
  778.          FCEND -------------------
  779.       CODE 1 Enter Code
  780.             start_up();
  781.       CODE 0
  782.       CODE 0
  783.       6
  784.       BUTTON Control
  785.          9 11  42 11  42 58  9 58
  786.          0
  787.          1 0
  788.          CODE 3 Down Code
  789.                 view_goto("Control Panel");
  790.                 do { sleep(); } while(!pan_quit_flag);
  791.                 view_goto("Board Menu");
  792.       BUTTON Up
  793.          536 421  567 421  567 462  536 462
  794.          0
  795.          1 0
  796.          CODE 2 
  797.                 button_down(1);
  798.                 view_goto("Archive Menu");
  799.       BUTTON Mos Eisley
  800.          59 239  301 240  297 435  63 398
  801.          0
  802.          1 352
  803.          FCODE 
  804.             FCSTART -----------------
  805.                 button_down(1);
  806.                 current_menu = MENU_MOSEISLY;
  807.                 view_goto("SubBoard Menu");
  808.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  809.                 view_goto("Board Menu");
  810.             FCEND -------------------
  811.       BUTTON Tatooine
  812.          61 71  303 37  301 233  61 238
  813.          0
  814.          1 350
  815.          FCODE 
  816.             FCSTART -----------------
  817.                 button_down(1);
  818.                 current_menu = MENU_TATOOINE;
  819.                 view_goto("SubBoard Menu");
  820.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  821.                 view_goto("Board Menu");
  822.             FCEND -------------------
  823.       BUTTON JabbaHan
  824.          344 37  596 77  598 235  348 240
  825.          0
  826.          1 351
  827.          FCODE 
  828.             FCSTART -----------------
  829.                 button_down(1);
  830.                 current_menu = MENU_JABBAHAN;
  831.                 view_goto("SubBoard Menu");
  832.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  833.                 view_goto("Board Menu");
  834.             FCEND -------------------
  835.       BUTTON JediRock
  836.          351 238  611 237  600 394  353 442
  837.          0
  838.          1 353
  839.          FCODE 
  840.             FCSTART -----------------
  841.                 button_down(1);
  842.                 current_menu = MENU_JEDIROCK;
  843.                 view_goto("SubBoard Menu");
  844.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  845.                 view_goto("Board Menu");
  846.             FCEND -------------------
  847.    VIEW SubBoard Menu
  848.       XCODE data\system\subboard.s 
  849.       CODE 2 Entry Code
  850.             if (!pan_quit_flag) current_submenu = 0;
  851.             start_up();
  852.       CODE 0
  853.       CODE 0
  854.       4
  855.       BUTTON Control
  856.          9 11  42 11  42 58  9 58
  857.          0
  858.          1 0
  859.          CODE 3 
  860.                 view_goto("Control Panel");
  861.                 do { sleep(); } while(!pan_quit_flag);
  862.                 view_goto("SubBoard Menu");
  863.       BUTTON Back
  864.          502 433  531 433  531 466  469 466
  865.          1
  866.          1 0
  867.          CODE 3 
  868.                 button_down(1);
  869.                 current_submenu -= 1;
  870.                 start_up();
  871.       BUTTON Forward
  872.          571 432  601 432  633 464  571 464
  873.          0
  874.          1 0
  875.          CODE 3 
  876.                 button_down(1);
  877.                 current_submenu += 1;
  878.                 start_up();
  879.       BUTTON Up
  880.          536 421  567 421  567 462  536 462
  881.          0
  882.          1 0
  883.          CODE 2 
  884.                 button_down(1);
  885.                 menu_up_flag = TRUE;
  886.    VIEW Photo Menu
  887.       FCODE Init Code
  888.          FCSTART -----------------
  889.             uchar start_up()
  890.             {
  891.                 anim_start("data\photos\ph_menui.san",ONCE,NEWPAL);
  892.                 pan_quit_flag = FALSE;
  893.              icon_reset();
  894.              icon_add( ICON_UP,      0 );
  895.              icon_add( ICON_CONTROL, 0 );
  896.             }
  897.          FCEND -------------------
  898.       CODE 1 Enter Code
  899.             start_up();
  900.       CODE 0
  901.       CODE 0
  902.       5
  903.       BUTTON Control
  904.          9 11  42 11  42 58  9 58
  905.          0
  906.          1 0
  907.          CODE 3 Down Code
  908.                 view_goto("Control Panel");
  909.                 do { sleep(); } while(!pan_quit_flag);
  910.                 view_goto("Photo Menu");
  911.       BUTTON Up
  912.          536 421  567 421  567 462  536 462
  913.          0
  914.          1 0
  915.          CODE 2 
  916.                 button_down(1);
  917.                 view_goto("Archive Menu");
  918.       BUTTON Star Wars
  919.          25 131  255 113  279 344  54 364
  920.          0
  921.          1 350
  922.          FCODE 
  923.             FCSTART -----------------
  924.                 button_down(1);
  925.                 current_menu = PHOTO_NH;
  926.                 view_goto("SubPhoto Menu");
  927.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  928.                 view_goto("Photo Menu");
  929.             FCEND -------------------
  930.       BUTTON Empire
  931.          276 12  501 56  467 271  248 235
  932.          0
  933.          1 351
  934.          FCODE 
  935.             FCSTART -----------------
  936.                 button_down(1);
  937.                 current_menu = PHOTO_ESB;
  938.                 view_goto("SubPhoto Menu");
  939.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  940.                 view_goto("Photo Menu");
  941.             FCEND -------------------
  942.       BUTTON Jedi
  943.          311 241  525 238  520 458  306 466
  944.          0
  945.          1 352
  946.          FCODE 
  947.             FCSTART -----------------
  948.                 button_down(1);
  949.                 current_menu = PHOTO_RJ;
  950.                 view_goto("SubPhoto Menu");
  951.                 for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  952.                 view_goto("Photo Menu");
  953.             FCEND -------------------
  954.    VIEW SubPhoto Menu
  955.       XCODE data\system\subphoto.s 
  956.       CODE 2 Entry Code
  957.             if (!pan_quit_flag) current_submenu = 0;
  958.             start_up();
  959.       CODE 0
  960.       CODE 0
  961.       4
  962.       BUTTON Control
  963.          9 11  42 11  42 58  9 58
  964.          0
  965.          1 0
  966.          CODE 3 
  967.                 view_goto("Control Panel");
  968.                 do { sleep(); } while(!pan_quit_flag);
  969.                 view_goto("SubPhoto Menu");
  970.       BUTTON Back
  971.          502 433  531 433  531 466  469 466
  972.          1
  973.          1 0
  974.          CODE 3 
  975.                 button_down(1);
  976.                 current_submenu -= 1;
  977.                 start_up();
  978.       BUTTON Forward
  979.          571 432  601 432  633 464  571 464
  980.          0
  981.          1 0
  982.          CODE 3 
  983.                 button_down(1);
  984.                 current_submenu += 1;
  985.                 start_up();
  986.       BUTTON Up
  987.          536 421  567 421  567 462  536 462
  988.          0
  989.          1 0
  990.          CODE 2 
  991.                 button_down(1);
  992.                 menu_up_flag = TRUE;
  993.    VIEW NewSeq Menu
  994.       FCODE Init Code
  995.          FCSTART -----------------
  996.             uchar start_up()
  997.             {
  998.                anim_start("data\main\mn_nseqi.san",ONCE,NEWPAL);
  999.                pan_quit_flag = FALSE;
  1000.              icon_reset();
  1001.              icon_add( ICON_CONTROL, 0 );
  1002.              icon_add( ICON_UP, 0 );
  1003.             }
  1004.          FCEND -------------------
  1005.       CODE 1 Entry Code
  1006.          start_up();
  1007.       CODE 0
  1008.       CODE 0
  1009.       8
  1010.       BUTTON Control
  1011.          9 11  42 11  42 58  9 58
  1012.          0
  1013.          1 0
  1014.          CODE 3 
  1015.                 view_goto("Control Panel");
  1016.                 do { sleep(); } while(!pan_quit_flag);
  1017.                 view_goto("NewSeq Menu");
  1018.       BUTTON Up
  1019.          536 421  567 421  567 462  536 462
  1020.          0
  1021.          1 0
  1022.          CODE 2 
  1023.                 button_down(1);
  1024.                 view_goto("Main Menu");
  1025.       BUTTON Tatooine
  1026.          177 24  419 21  405 127  151 130
  1027.          0
  1028.          1 350
  1029.          CODE 3 
  1030.                 button_down(1);
  1031.                 current_menu = MENU_TATOOINE;
  1032.                 view_goto("SubNseq menu");
  1033.       BUTTON Mos Eisley
  1034.          148 137  401 134  368 234  106 236
  1035.          0
  1036.          1 351
  1037.          CODE 3 
  1038.                 button_down(1);
  1039.                 current_menu = MENU_MOSEISLY;
  1040.                 view_goto("SubNseq menu");
  1041.       BUTTON JabbaHan
  1042.          105 241  373 243  326 341  75 342
  1043.          0
  1044.          1 352
  1045.          CODE 3 
  1046.                 button_down(1);
  1047.                 current_menu = MENU_JABBAHAN;
  1048.                 view_goto("SubNseq menu");
  1049.       BUTTON LastBattle
  1050.          74 348  324 347  295 454  55 447
  1051.          0
  1052.          1 353
  1053.          CODE 3 
  1054.                 button_down(1);
  1055.                 current_menu = MENU_FINALBAT;
  1056.                 view_goto("SubNseq menu");
  1057.       BUTTON JediRocks
  1058.          416 234  563 208  596 351  449 390
  1059.          0
  1060.          1 355
  1061.          CODE 4 
  1062.               anim_start("data\jedirock\jr_gl.san",ONCE,NEWPAL|HALTAUDIO);
  1063.                 button_down(0);
  1064.                 wait_and_reset();
  1065.                start_up();
  1066.       BUTTON EsbWampa
  1067.          479 6  625 47  590 179  449 150
  1068.          0
  1069.          1 354
  1070.          CODE 4 
  1071.               anim_start("data\esbwampa\ew_rm.san",ONCE,NEWPAL|HALTAUDIO);
  1072.                 button_down(0);
  1073.                 wait_and_reset();
  1074.                start_up();
  1075.    VIEW NewSeqInfo Menu
  1076.       FCODE Init
  1077.          FCSTART -----------------
  1078.             static short inf_frames[10] = {
  1079.                 1,1,1,1,0, 0, 13,4,7,3
  1080.             };
  1081.  
  1082.             short start_up()
  1083.             {
  1084.                 icon_reset();
  1085.                 icon_add( ICON_CONTROL, 0 );
  1086.                 icon_add( ICON_UP, 0 );
  1087.  
  1088.                 if (current_submenu > 0) {
  1089.                     icon_add( ICON_BACK, 0 );
  1090.                     button_set( "back", 0,0 );
  1091.                 }
  1092.                 else {
  1093.                     button_set( "back", 1,0 );
  1094.                 }
  1095.  
  1096.  
  1097.                 if (current_submenu < inf_frames[current_menu]-1) {
  1098.                     icon_add( ICON_FORWARD, 0 );
  1099.                     button_set( "forward", 0,0 );
  1100.                 }
  1101.                 else {
  1102.                     button_set( "forward", 1,0 );
  1103.                 }
  1104.  
  1105.                 if (current_menu==MENU_SKYSOUND) {
  1106.                     if (current_submenu)
  1107.                         anim_start("data\press\pr_back.nut",ONCE,NEWPAL);
  1108.                     else
  1109.                         anim_start("data\press\ben_b.nut",ONCE,NEWPAL);
  1110.                 }
  1111.                 pan_quit_flag = FALSE;
  1112.             }
  1113.          FCEND -------------------
  1114.       FCODE Entry Code
  1115.          FCSTART -----------------
  1116.             if (!pan_quit_flag) current_submenu = 0;
  1117.  
  1118.             start_up();
  1119.  
  1120.             // Load correct background
  1121.  
  1122.             if (current_menu==MENU_TATOOINE)    {
  1123.                 anim_start("data\tatooine\ta_back.nut",ONCE,OLDPAL);
  1124.             }
  1125.  
  1126.             else if (current_menu==MENU_MOSEISLY) {
  1127.                 anim_start("data\moseisly\me_back.nut",ONCE,OLDPAL);
  1128.             }
  1129.  
  1130.             else if (current_menu==MENU_JABBAHAN) {
  1131.                 anim_start("data\jabbahan\jb_back.nut",ONCE,OLDPAL);
  1132.             }
  1133.  
  1134.             else if (current_menu==MENU_FINALBAT) {
  1135.                 anim_start("data\finalbat\fb_back.nut",ONCE,OLDPAL);
  1136.             }
  1137.  
  1138.             else if (current_menu!=MENU_SKYSOUND) {
  1139.                 anim_start("data\press\pr_back.nut",ONCE,OLDPAL);
  1140.             }
  1141.  
  1142.          FCEND -------------------
  1143.       CODE 0
  1144.       FCODE 
  1145.          FCSTART -----------------
  1146.             { short foo=current_menu*5;
  1147.                 if (current_menu==MENU_SKYSOUND) foo-=11;
  1148.                 if (current_menu==MENU_THX     ) foo+=2;
  1149.                 print_tres( 50+foo+current_submenu, 70,50, 1,0, 0 );
  1150.             }
  1151.          FCEND -------------------
  1152.       4
  1153.       BUTTON Back
  1154.          502 433  531 433  531 466  469 466
  1155.          1
  1156.          1 0
  1157.          CODE 3 
  1158.                 button_down(1);
  1159.                 current_submenu -= 1;
  1160.                 start_up();
  1161.       BUTTON Forward
  1162.          571 432  601 432  633 464  571 464
  1163.          0
  1164.          1 0
  1165.          CODE 3 
  1166.                 button_down(1);
  1167.                 current_submenu += 1;
  1168.                 start_up();
  1169.       BUTTON Control
  1170.          9 11  42 11  42 58  9 58
  1171.          0
  1172.          1 0
  1173.          CODE 4 
  1174.                while (anim_query()) sleep();
  1175.                 view_goto("Control Panel");
  1176.                 do { sleep(); } while(!pan_quit_flag);
  1177.                 view_goto("NewSeqInfo Menu");
  1178.       BUTTON Up
  1179.          536 421  567 421  567 462  536 462
  1180.          0
  1181.          1 0
  1182.          FCODE 
  1183.             FCSTART -----------------
  1184.                 button_down(1);
  1185.                 if (current_menu < MENU_SKYSOUND) 
  1186.                     view_goto("SubNSeq Menu");
  1187.                 else
  1188.                     view_goto("Press Menu");
  1189.             FCEND -------------------
  1190.    VIEW Press Menu
  1191.       FCODE Init Code
  1192.          FCSTART -----------------
  1193.             uchar start_up()
  1194.             {
  1195.                anim_start("data\press\pr_menui.san",ONCE,NEWPAL);
  1196.                pan_quit_flag = FALSE;
  1197.              icon_reset();
  1198.              icon_add( ICON_CONTROL, 0 );
  1199.              icon_add( ICON_UP,      0 );
  1200.             }
  1201.          FCEND -------------------
  1202.       CODE 1 Entry Code
  1203.          start_up();
  1204.       CODE 0
  1205.       CODE 0
  1206.       6
  1207.       BUTTON Control
  1208.          9 11  42 11  42 58  9 58
  1209.          0
  1210.          1 0
  1211.          FCODE 
  1212.             FCSTART -----------------
  1213.                 view_goto("Control Panel");
  1214.                 do { sleep(); } while(!pan_quit_flag);
  1215.                 view_goto("Press Menu");
  1216.  
  1217.  
  1218.             FCEND -------------------
  1219.       BUTTON Up
  1220.          536 421  567 421  567 462  536 462
  1221.          0
  1222.          1 0
  1223.          CODE 2 
  1224.                 button_down(1);
  1225.                 view_goto("Archive Menu");
  1226.       BUTTON Skysound
  1227.          17 50  295 48  304 129  17 140
  1228.          0
  1229.          1 350
  1230.          CODE 3 
  1231.                 button_down(1);
  1232.                 current_menu = MENU_SKYSOUND;
  1233.                 view_goto("NewSeqInfo Menu");
  1234.       BUTTON ILM
  1235.          334 43  607 45  624 239  339 234
  1236.          0
  1237.          1 352
  1238.          CODE 3 
  1239.                 button_down(1);
  1240.                 current_menu = MENU_ILM;
  1241.                 view_goto("NewSeqInfo Menu");
  1242.       BUTTON Lucasfilm
  1243.          29 181  318 180  321 275  29 271
  1244.          0
  1245.          1 351
  1246.          CODE 3 
  1247.                 button_down(1);
  1248.                 current_menu = MENU_LUCASFLM;
  1249.                 view_goto("NewSeqInfo Menu");
  1250.       BUTTON THX
  1251.          281 308  556 311  555 422  281 417
  1252.          0
  1253.          1 353
  1254.          CODE 3 
  1255.                 button_down(1);
  1256.                 current_menu = MENU_THX;
  1257.                 view_goto("NewSeqInfo Menu");
  1258.