2014-12-08 19:32:05 +01:00
|
|
|
#ifndef RS_GMENU_H
|
|
|
|
#define RS_GMENU_H
|
|
|
|
|
|
|
|
#include "rsgame.h"
|
|
|
|
#include "rs/rsplatform.h"
|
|
|
|
|
|
|
|
|
2014-12-31 04:20:23 +01:00
|
|
|
#define MENUS_COUNT 5
|
2014-12-08 19:32:05 +01:00
|
|
|
|
|
|
|
#define MENU_MAIN 0
|
|
|
|
#define MENU_SETTINGS 1
|
|
|
|
#define MENU_ABOUT 2
|
2014-12-31 04:20:23 +01:00
|
|
|
#define MENU_GAME_OVER 3
|
|
|
|
#define MENU_PAUSE 4
|
2014-12-08 19:32:05 +01:00
|
|
|
|
|
|
|
#define MENU_ITEM_WINDOW_SCALE 1
|
|
|
|
|
|
|
|
extern char* menu_main_titles[];
|
|
|
|
extern char* menu_settings_titles[];
|
|
|
|
extern char* menu_about_titles[];
|
|
|
|
extern char **menu_titles[];
|
|
|
|
extern PRSFUNC0 menu_actions[];
|
|
|
|
|
|
|
|
extern char window_scale_str[];
|
2014-12-29 23:59:51 +01:00
|
|
|
extern char level_passed_score_str[];
|
2014-12-08 19:32:05 +01:00
|
|
|
|
|
|
|
void menu_cursor_down();
|
|
|
|
void menu_cursor_up();
|
|
|
|
void menu_open(int i);
|
|
|
|
void menu_cursor_click();
|
|
|
|
|
|
|
|
void menu_action_start();
|
|
|
|
void menu_action_exit();
|
|
|
|
void menu_action_change_window_scale();
|
2014-12-31 01:32:03 +01:00
|
|
|
void menu_action_resume();
|
2014-12-08 19:32:05 +01:00
|
|
|
|
|
|
|
#endif
|