Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > bb8113fe14406042944874285ff4eac1 > files > 220

lib64allegro-devel-4.4.2-6.mga5.x86_64.rpm

#include <allegro.h>
#include "../include/defines.h"
#include "../include/global.h"
#include "../include/menu.h"
#include "../include/menus.h"


static int _id = DEMO_STATE_SOUND;


static int id(void)
{
   return _id;
}


static char *choice_volume[] =
   { "0%%", "10%%", "20%%", "30%%", "40%%", "50%%", "60%%", "70%%",
   "80%%", "90%%", "100%%", 0
};


static void on_sound(DEMO_MENU * item)
{
   sound_volume = item->extra;
   set_volume(sound_volume * 25, music_volume * 25);
}


static void on_music(DEMO_MENU * item)
{
   music_volume = item->extra;
   set_volume(sound_volume * 25, music_volume * 25);
}


static DEMO_MENU menu[] = {
   {demo_text_proc, "SOUND LEVELS", 0, 0, 0, 0},
   {demo_choice_proc, "Sound", DEMO_MENU_SELECTABLE, 0,
    (void *)choice_volume, on_sound},
   {demo_choice_proc, "Music", DEMO_MENU_SELECTABLE, 0,
    (void *)choice_volume, on_music},
   {demo_button_proc, "Back", DEMO_MENU_SELECTABLE,
    DEMO_STATE_OPTIONS, 0,
    0},
   {0, 0, 0, 0, 0, 0}
};


static void init(void)
{
   init_demo_menu(menu, TRUE);
   menu[1].extra = sound_volume;
   menu[2].extra = music_volume;
}


static int update(void)
{
   int ret = update_demo_menu(menu);

   switch (ret) {
      case DEMO_MENU_CONTINUE:
         return id();

      case DEMO_MENU_BACK:
         return DEMO_STATE_OPTIONS;

      default:
         return ret;
   }
}


static void draw(BITMAP *canvas)
{
   draw_demo_menu(canvas, menu);
}


void create_sound_menu(GAMESTATE * state)
{
   state->id = id;
   state->init = init;
   state->update = update;
   state->draw = draw;
}