home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 24 / CDMM24_2.iso / data / system / subnseq.si < prev    next >
Encoding:
Text File  |  1996-09-25  |  7.1 KB  |  288 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. 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. public short nseq_icon_type[12];
  34. public short anim_play_flag = FALSE;
  35.  
  36. //-----------------------
  37. //
  38. // Button Descriptors
  39. //
  40. //-----------------------
  41.  
  42. short scene_buttons[ NUM_SCREENS * NUM_BUTTONS ] = {
  43.  
  44.     ICON_INFO, ICON_OLD,        ICON_STORY,        ICON_ANIMATIC,  ICON_BEHIND,    ICON_NEW,        0,                 0,    0,    0,0,0,
  45.     ICON_MODEL,ICON_MODEL2,    ICON_ANIMATIC,    ICON_ANIMATIC2, ICON_BEHIND,  ICON_BEHIND2,    ICON_BEHIND3, ICON_NEW, ICON_INFO, ICON_OLD, ICON_STORY,0,
  46.     ICON_INFO, ICON_OLD,        ICON_STORY,        ICON_BEHIND,     ICON_BEHIND2,    ICON_NEW,         0,                    0,    0,    0,0,0,
  47.     ICON_INFO, ICON_OLD,        ICON_BEHIND,    ICON_BEHIND2,     ICON_BEHIND3,    ICON_BEHIND4,    ICON_NEW,        0,    0,    0,0,0
  48. };
  49.  
  50. short scene_text[12+7] = {
  51.     1120, 1121, 1125, 1122, 1123, 1124, 1126,
  52.     0,0,0,0,0,0,0,
  53.     1125, 1125, 1124, 1123, 1125
  54. };
  55.  
  56. //-----------------------
  57. //
  58. // handle_button()
  59. //
  60. //-----------------------
  61.  
  62. uchar handle_button( short selection )
  63. {
  64.     short error;
  65.  
  66.     anim_setrate(15);
  67.  
  68.     sound_stopall();
  69.     button_down(0);
  70.  
  71.     if (current_menu==MENU_TATOOINE)    {
  72.         error = ta_play( selection );
  73.     }
  74.  
  75.     else if (current_menu==MENU_MOSEISLY) {
  76.         error = me_play( selection );
  77.     }
  78.  
  79.     else if (current_menu==MENU_JABBAHAN) {
  80.         error = jb_play( selection );
  81.     }
  82.  
  83.     else if (current_menu==MENU_FINALBAT) {
  84.         error = fb_play( selection );
  85.     }
  86.  
  87.     //
  88.     // Do Special-Case submenus
  89.     //
  90.  
  91.     if (error==RETVAL_INFO) {
  92.         view_goto( "NewSeqInfo Menu" );
  93.         return 0;
  94.     }
  95.  
  96.     if (error==RETVAL_STORY) {
  97.         view_goto("SubBoard Menu");
  98.         for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  99.         view_goto("SubNseq Menu");
  100.         return 0;
  101.     }
  102.  
  103.     if (error==RETVAL_FINAL) {
  104.         view_goto("Finals Menu");
  105.         for ( menu_up_flag = FALSE; !menu_up_flag; sleep() );
  106.         view_goto("SubNseq Menu");
  107.         return 0;
  108.     }
  109.  
  110.     //
  111.     // Else play animation and wait for it
  112.     //
  113.  
  114.     if (!error) {
  115.         icon_reset();
  116.        mouse_set(FALSE); 
  117.         anim_play_flag = TRUE;
  118.  
  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.         anim_play_flag = FALSE;
  129.         mouse_set(TRUE);
  130.     }
  131.  
  132.     //
  133.     // Refresh menus and stuff
  134.     //
  135.  
  136.     anim_setrate(15);
  137.     start_up();
  138. }
  139.  
  140. //-----------------------
  141. //
  142. // start_up()
  143. //
  144. //-----------------------
  145.  
  146. uchar start_up()
  147. {
  148.     short i,k;
  149.  
  150.  
  151.     //
  152.     // Set icons appropriately
  153.     //
  154.  
  155.    icon_reset();
  156.  
  157.    icon_add( ICON_CONTROL, 0 );
  158.     icon_add( ICON_UP,      0 );
  159.  
  160.     if (current_menu!=MENU_TATOOINE)    {
  161.         icon_add( ICON_BACK, 0 );
  162.         button_set( "back", 0,0 );
  163.     } else {
  164.         button_set( "back", 1,0 );
  165.     }
  166.  
  167.     if (current_menu!=MENU_FINALBAT)    {
  168.         icon_add( ICON_FORWARD, 0 );
  169.         button_set( "forward", 0,0 );
  170.     } else {
  171.         button_set( "forward", 1,0 );
  172.     }
  173.  
  174.     k = NUM_BUTTONS * current_menu;
  175.  
  176.     button_set( "button 1", 1,0 );
  177.     button_set( "button 2", 1,0 );
  178.     button_set( "button 3", 1,0 );
  179.     button_set( "button 4", 1,0 );
  180.     button_set( "button 5", 1,0 );
  181.     button_set( "button 6", 1,0 );
  182.     button_set( "button 7", 1,0 );
  183.     button_set( "button 8", 1,0 );
  184.  
  185.     button_set( "button 9", 1,0 );
  186.     button_set( "button 10", 1,0 );
  187.     button_set( "button 11", 1,0 );
  188.     button_set( "button 12", 1,0 );
  189.  
  190.     for (i=0; i<NUM_BUTTONS && scene_buttons[k+i]; i+=1) {
  191.         
  192.       icon_add( scene_buttons[k+i], i );
  193.  
  194.     }
  195.  
  196.     //
  197.     // If not returning from control panel...
  198.     //
  199.  
  200. //   if (!pan_quit_flag) {
  201.  
  202.         //
  203.         // Restart background animation
  204.         //
  205.  
  206.         if (current_menu==MENU_TATOOINE)    {
  207.             anim_start("data\tatooine\ta_menui.san",ONCE,NEWPAL);
  208.         }
  209.  
  210.         else if (current_menu==MENU_MOSEISLY) {
  211.             anim_start("data\moseisly\me_menui.san",ONCE,NEWPAL);
  212.         }
  213.  
  214.         else if (current_menu==MENU_JABBAHAN) {
  215.             anim_start("data\jabbahan\jb_menui.san",ONCE,NEWPAL);
  216.         }
  217.  
  218.         else if (current_menu==MENU_FINALBAT) {
  219.             anim_start("data\finalbat\fb_menui.san",ONCE,NEWPAL);
  220.         }
  221.  
  222. //    }
  223.     pan_quit_flag = FALSE;
  224. }
  225.  
  226.  
  227. short ta_play( short choice )
  228. {
  229.     if (choice==0) { return RETVAL_INFO;  }
  230.     if (choice==2) { return RETVAL_STORY; }
  231.  
  232.     if      (choice==1) anim_start("data\tatooine\ta_bef.san",ONCE,NEWPAL|HALTAUDIO);
  233.     else if (choice==3) anim_start("data\tatooine\ta_an.san", ONCE,NEWPAL|HALTAUDIO);
  234.     else if (choice==4) anim_start("data\tatooine\ta_bs.san", ONCE,NEWPAL|HALTAUDIO);
  235.     else if (choice==5) anim_start("data\tatooine\ta_fin.san",ONCE,NEWPAL|HALTAUDIO);
  236.     else return -1;
  237.     return 0;
  238. }
  239.  
  240. short me_play( short choice )
  241. {
  242.     if (choice==8 ) { return RETVAL_INFO;  }
  243.     if (choice==10) { return RETVAL_STORY; }
  244.  
  245.     if (choice==9 ) anim_start("data\moseisly\me_bef.san",ONCE,NEWPAL|HALTAUDIO);
  246.  
  247.     else if (choice==0) anim_start("data\moseisly\me_an5.san",ONCE,NEWPAL|HALTAUDIO);
  248.     else if (choice==1) anim_start("data\moseisly\me_an7.san",ONCE,NEWPAL|HALTAUDIO);
  249.     else if (choice==2) anim_start("data\moseisly\me_an.san", ONCE,NEWPAL|HALTAUDIO);
  250.     else if (choice==3) anim_start("data\moseisly\me_an6.san",ONCE,NEWPAL|HALTAUDIO);
  251.     else if (choice==4) anim_start("data\moseisly\me_gl.san" ,ONCE,NEWPAL|HALTAUDIO);
  252.     else if (choice==5) anim_start("data\moseisly\me_bs2.san",ONCE,NEWPAL|HALTAUDIO);
  253.     else if (choice==6) anim_start("data\moseisly\me_gdo.san",ONCE,NEWPAL|HALTAUDIO);
  254.     else if (choice==7) anim_start("data\moseisly\me_fin.san",ONCE,NEWPAL|HALTAUDIO);
  255.     else return -1;
  256.     return 0;
  257. }
  258.  
  259. short jb_play( short choice )
  260. {
  261.     if (choice==0) { return RETVAL_INFO;  }
  262.     if (choice==2) { return RETVAL_STORY; }
  263.  
  264.     if      (choice==1) anim_start("data\jabbahan\jb_bef.san",ONCE,NEWPAL|HALTAUDIO);
  265.     else if (choice==3) anim_start("data\jabbahan\jb_gl.san", ONCE,NEWPAL|HALTAUDIO);
  266.     else if (choice==4) anim_start("data\jabbahan\jb_bs.san", ONCE,NEWPAL|HALTAUDIO);
  267.     else if (choice==5) anim_start("data\jabbahan\jb_fin.san",ONCE,NEWPAL|HALTAUDIO);
  268.     else return -1;
  269.     return 0;
  270. }
  271.  
  272.  
  273.  
  274. short fb_play( short choice )
  275. {
  276.     if (choice==0) { return RETVAL_INFO;  }
  277.  
  278.     if       (choice==1) anim_start("data\finalbat\fb_bef.san",  ONCE,NEWPAL|HALTAUDIO);
  279.     else if (choice==2) anim_start("data\tatooine\ta_trans.san",ONCE,NEWPAL|HALTAUDIO);
  280.     else if (choice==3) anim_start("data\finalbat\fb_gl.san",  ONCE,NEWPAL|HALTAUDIO);
  281.     else if (choice==4) anim_start("data\finalbat\fb_bs1.san", ONCE,NEWPAL|HALTAUDIO);
  282.     else if (choice==5) anim_start("data\finalbat\fb_bs2.san", ONCE,NEWPAL|HALTAUDIO);
  283.     else if (choice==6) anim_start("data\finalbat\fb_fin.san", ONCE,NEWPAL|HALTAUDIO);
  284.     else return -1;
  285.     return 0;
  286. }
  287.  
  288.