home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 24 / CDMM24_2.iso / data / system / subnseq.s < prev    next >
Encoding:
Text File  |  1996-08-26  |  6.9 KB  |  276 lines

  1. //
  2. // Defines (kinda)
  3. //
  4.  
  5. static short ICON_INFO      = 301;
  6. static short ICON_OLD       = 302;
  7. static short ICON_BEHIND    = 303;
  8. static short ICON_STORY     = 304;
  9. static short ICON_MODEL     = 305;
  10. static short ICON_ANIMATIC  = 306;
  11. static short ICON_NEW       = 307;
  12. static short ICON_BEHIND2   = 315;
  13. static short ICON_BEHIND3   = 316;
  14. static short ICON_ANIMATIC2 = 317;
  15. static short ICON_MODEL2    = 318;
  16. static short ICON_BEHIND4   = 319;
  17.  
  18. public short ICON_BACK     = 311;
  19. public short ICON_CONTROL  = 312;
  20. public short ICON_FORWARD  = 313;
  21. public short ICON_UP       = 314;
  22.  
  23. public short ICON_FIRST = ICON_INFO;
  24. public short ICON_LAST  = ICON_BEHIND4;
  25.  
  26. static short NUM_SCREENS    = 4;
  27. static short NUM_BUTTONS    = 12;
  28.  
  29. static short RETVAL_INFO    = -1;
  30. static short RETVAL_STORY    = -2;
  31. static short RETVAL_FINAL    = -3;
  32.  
  33. //-----------------------
  34. //
  35. // Button Descriptors
  36. //
  37. //-----------------------
  38.  
  39. short scene_buttons[ NUM_SCREENS * NUM_BUTTONS ] = {
  40.  
  41.     ICON_INFO, ICON_OLD,        ICON_STORY,        ICON_ANIMATIC,  ICON_BEHIND,    ICON_NEW,        0,                 0,    0,    0,0,0,
  42.     ICON_MODEL,ICON_MODEL2,    ICON_ANIMATIC,    ICON_ANIMATIC2, ICON_BEHIND,  ICON_BEHIND2,    ICON_BEHIND3, ICON_NEW, ICON_INFO, ICON_OLD, ICON_STORY,0,
  43.     ICON_INFO, ICON_OLD,        ICON_STORY,        ICON_BEHIND,     ICON_BEHIND2,    ICON_NEW,         0,                    0,    0,    0,0,0,
  44.     ICON_INFO, ICON_OLD,        ICON_BEHIND,    ICON_BEHIND2,     ICON_BEHIND3,    ICON_BEHIND4,    ICON_NEW,        0,    0,    0,0,0
  45. };
  46.  
  47. //-----------------------
  48. //
  49. // handle_button()
  50. //
  51. //-----------------------
  52.  
  53. uchar handle_button( short selection )
  54. {
  55.     short error;
  56.  
  57.     anim_setrate(15);
  58.  
  59.     sound_stopall();
  60.     button_down(0);
  61.  
  62.     if (current_menu==MENU_TATOOINE)    {
  63.         error = ta_play( selection );
  64.     }
  65.  
  66.     else if (current_menu==MENU_MOSEISLY) {
  67.         error = me_play( selection );
  68.     }
  69.  
  70.     else if (current_menu==MENU_JABBAHAN) {
  71.         error = jb_play( selection );
  72.     }
  73.  
  74.     else if (current_menu==MENU_FINALBAT) {
  75.         error = fb_play( selection );
  76.     }
  77.  
  78.     //
  79.     // Do Special-Case submenus
  80.     //
  81.  
  82.     if (error==RETVAL_INFO) {
  83.         view_goto( "NewSeqInfo Menu" );
  84.         return 0;
  85.     }
  86.  
  87.     if (error==RETVAL_STORY) {
  88.         view_goto("SubBoard Menu");
  89.         for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  90.         view_goto("SubNseq Menu");
  91.         return 0;
  92.     }
  93.  
  94.     if (error==RETVAL_FINAL) {
  95.         view_goto("Finals Menu");
  96.         for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  97.         view_goto("SubNseq Menu");
  98.         return 0;
  99.     }
  100.  
  101.     //
  102.     // Else play animation and wait for it
  103.     //
  104.  
  105.     if (!error) {
  106.         icon_reset();
  107.        mouse_set(FALSE); 
  108.        sleep();
  109.         while (anim_query() && keyboard_read()!=27 ) {
  110.             if (keyboard_read()==' ') {
  111.                 display_set( 0, (display_get(0)+1)%3 );
  112.             }
  113.             sleep();
  114.         }
  115.         if (keyboard_read()==27) sound_stopall();
  116.  
  117.         mouse_set(TRUE);
  118.     }
  119.  
  120.     //
  121.     // Refresh menus and stuff
  122.     //
  123.  
  124.     anim_setrate(15);
  125.     start_up();
  126. }
  127.  
  128. //-----------------------
  129. //
  130. // start_up()
  131. //
  132. //-----------------------
  133.  
  134. uchar start_up()
  135. {
  136.     short i,k;
  137.  
  138.  
  139.     //
  140.     // Set icons appropriately
  141.     //
  142.  
  143.    icon_reset();
  144.  
  145.    icon_add( ICON_CONTROL, 0 );
  146.     icon_add( ICON_UP,      0 );
  147.  
  148.     if (current_menu!=MENU_TATOOINE)    {
  149.         icon_add( ICON_BACK, 0 );
  150.         button_set( "back", 0,0 );
  151.     } else {
  152.         button_set( "back", 1,0 );
  153.     }
  154.  
  155.     if (current_menu!=MENU_FINALBAT)    {
  156.         icon_add( ICON_FORWARD, 0 );
  157.         button_set( "forward", 0,0 );
  158.     } else {
  159.         button_set( "forward", 1,0 );
  160.     }
  161.  
  162.     k = NUM_BUTTONS * current_menu;
  163.  
  164.     button_set( "button 1", 1,0 );
  165.     button_set( "button 2", 1,0 );
  166.     button_set( "button 3", 1,0 );
  167.     button_set( "button 4", 1,0 );
  168.     button_set( "button 5", 1,0 );
  169.     button_set( "button 6", 1,0 );
  170.     button_set( "button 7", 1,0 );
  171.     button_set( "button 8", 1,0 );
  172.  
  173.     button_set( "button 9", 1,0 );
  174.     button_set( "button 10", 1,0 );
  175.     button_set( "button 11", 1,0 );
  176.     button_set( "button 12", 1,0 );
  177.  
  178.     for (i=0; i<NUM_BUTTONS && scene_buttons[k+i]; i+=1) {
  179.         
  180.       icon_add( scene_buttons[k+i], i );
  181.  
  182.     }
  183.  
  184.     //
  185.     // If not returning from control panel...
  186.     //
  187.  
  188. //   if (!pan_quit_flag) {
  189.  
  190.         //
  191.         // Restart background animation
  192.         //
  193.  
  194.         if (current_menu==MENU_TATOOINE)    {
  195.             anim_start("data\tatooine\ta_menu.san",ONCE,NEWPAL);
  196.         }
  197.  
  198.         else if (current_menu==MENU_MOSEISLY) {
  199.             anim_start("data\moseisly\me_menu.san",ONCE,NEWPAL);
  200.         }
  201.  
  202.         else if (current_menu==MENU_JABBAHAN) {
  203.             anim_start("data\jabbahan\jb_menu.san",ONCE,NEWPAL);
  204.         }
  205.  
  206.         else if (current_menu==MENU_FINALBAT) {
  207.             anim_start("data\finalbat\fb_menu.san",ONCE,NEWPAL);
  208.         }
  209.  
  210. //    }
  211.     pan_quit_flag = FALSE;
  212. }
  213.  
  214.  
  215. short ta_play( short choice )
  216. {
  217.     if (choice==0) { return RETVAL_INFO;  }
  218.     if (choice==2) { return RETVAL_STORY; }
  219.  
  220.     if      (choice==1) anim_start("data\tatooine\ta_bef.san",ONCE,NEWPAL|HALTAUDIO);
  221.     else if (choice==3) anim_start("data\tatooine\ta_an.san", ONCE,NEWPAL|HALTAUDIO);
  222.     else if (choice==4) anim_start("data\tatooine\ta_bs.san", ONCE,NEWPAL|HALTAUDIO);
  223.     else if (choice==5) anim_start("data\tatooine\ta_fin.san",ONCE,NEWPAL|HALTAUDIO);
  224.     else return -1;
  225.     return 0;
  226. }
  227.  
  228. short me_play( short choice )
  229. {
  230.     if (choice==8 ) { return RETVAL_INFO;  }
  231.     if (choice==10) { return RETVAL_STORY; }
  232.  
  233.     if (choice==9 ) anim_start("data\moseisly\me_bef.san",ONCE,NEWPAL|HALTAUDIO);
  234.  
  235.     else if (choice==0) anim_start("data\moseisly\me_an5.san",ONCE,NEWPAL|HALTAUDIO);
  236.     else if (choice==1) anim_start("data\moseisly\me_an7.san",ONCE,NEWPAL|HALTAUDIO);
  237.     else if (choice==2) anim_start("data\moseisly\me_an.san", ONCE,NEWPAL|HALTAUDIO);
  238.     else if (choice==3) anim_start("data\moseisly\me_an6.san",ONCE,NEWPAL|HALTAUDIO);
  239.     else if (choice==4) anim_start("data\moseisly\me_gl.san" ,ONCE,NEWPAL|HALTAUDIO);
  240.     else if (choice==5) anim_start("data\moseisly\me_bs2.san",ONCE,NEWPAL|HALTAUDIO);
  241.     else if (choice==6) anim_start("data\moseisly\me_gdo.san",ONCE,NEWPAL|HALTAUDIO);
  242.     else if (choice==7) anim_start("data\moseisly\me_fin.san",ONCE,NEWPAL|HALTAUDIO);
  243.     else return -1;
  244.     return 0;
  245. }
  246.  
  247. short jb_play( short choice )
  248. {
  249.     if (choice==0) { return RETVAL_INFO;  }
  250.     if (choice==2) { return RETVAL_STORY; }
  251.  
  252.     if      (choice==1) anim_start("data\jabbahan\jb_bef.san",ONCE,NEWPAL|HALTAUDIO);
  253.     else if (choice==3) anim_start("data\jabbahan\jb_gl.san", ONCE,NEWPAL|HALTAUDIO);
  254.     else if (choice==4) anim_start("data\jabbahan\jb_bs.san", ONCE,NEWPAL|HALTAUDIO);
  255.     else if (choice==5) anim_start("data\jabbahan\jb_fin.san",ONCE,NEWPAL|HALTAUDIO);
  256.     else return -1;
  257.     return 0;
  258. }
  259.  
  260.  
  261.  
  262. short fb_play( short choice )
  263. {
  264.     if (choice==0) { return RETVAL_INFO;  }
  265.  
  266.     if       (choice==1) anim_start("data\finalbat\fb_bef.san",  ONCE,NEWPAL|HALTAUDIO);
  267.     else if (choice==2) anim_start("data\tatooine\ta_trans.san",ONCE,NEWPAL|HALTAUDIO);
  268.     else if (choice==3) anim_start("data\finalbat\fb_gl.san",  ONCE,NEWPAL|HALTAUDIO);
  269.     else if (choice==4) anim_start("data\finalbat\fb_bs1.san", ONCE,NEWPAL|HALTAUDIO);
  270.     else if (choice==5) anim_start("data\finalbat\fb_bs2.san", ONCE,NEWPAL|HALTAUDIO);
  271.     else if (choice==6) anim_start("data\finalbat\fb_fin.san", ONCE,NEWPAL|HALTAUDIO);
  272.     else return -1;
  273.     return 0;
  274. }
  275.  
  276.