57 lines
1.3 KiB
C
57 lines
1.3 KiB
C
/*
|
|
* This software is licensed under the terms of the MIT-License
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (c) 2011-2017, Lukas Weber <laochailan@web.de>.
|
|
* Copyright (c) 2012-2017, Andrei Alexeyev <akari@alienslab.net>.
|
|
*/
|
|
|
|
#include "spellpractice.h"
|
|
#include "common.h"
|
|
#include "options.h"
|
|
#include "global.h"
|
|
|
|
void draw_spell_menu(MenuData *m) {
|
|
draw_options_menu_bg(m);
|
|
draw_menu_title(m, "Spell Practice");
|
|
animate_menu_list(m);
|
|
draw_menu_list(m, 100, 100, NULL);
|
|
}
|
|
|
|
void create_spell_menu(MenuData *m) {
|
|
char title[128];
|
|
Difficulty lastdiff = D_Any;
|
|
|
|
create_menu(m);
|
|
m->draw = draw_spell_menu;
|
|
m->flags = MF_Abortable;
|
|
m->transition = TransMenuDark;
|
|
|
|
for(StageInfo *stg = stages; stg->procs; ++stg) {
|
|
if(stg->type != STAGE_SPELL) {
|
|
continue;
|
|
}
|
|
|
|
if(stg->difficulty < lastdiff) {
|
|
add_menu_separator(m);
|
|
}
|
|
|
|
StageProgress *p = stage_get_progress_from_info(stg, D_Any, false);
|
|
if(p && p->unlocked) {
|
|
snprintf(title, sizeof(title), "%s: %s", stg->title, stg->subtitle);
|
|
add_menu_entry(m, title, start_game, stg);
|
|
} else {
|
|
snprintf(title, sizeof(title), "%s: ???????", stg->title);
|
|
add_menu_entry(m, title, NULL, NULL);
|
|
}
|
|
|
|
lastdiff = stg->difficulty;
|
|
}
|
|
|
|
add_menu_separator(m);
|
|
add_menu_entry(m, "Back", menu_commonaction_close, NULL);
|
|
|
|
while(!m->entries[m->cursor].action) {
|
|
++m->cursor;
|
|
}
|
|
}
|