rnd-19980930-1
[rocksndiamonds.git] / src / screens.h
1 /***********************************************************
2 *  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
3 *----------------------------------------------------------*
4 *  (c) 1995-98 Artsoft Entertainment                       *
5 *              Holger Schemel                              *
6 *              Oststrasse 11a                              *
7 *              33604 Bielefeld                             *
8 *              phone: ++49 +521 290471                     *
9 *              email: aeglos@valinor.owl.de                *
10 *----------------------------------------------------------*
11 *  screens.h                                               *
12 ***********************************************************/
13
14 #ifndef SCREENS_H
15 #define SCREENS_H
16
17 #include "main.h"
18
19 #define SETUP_SCREEN_POS_START          2
20 #define SETUP_SCREEN_POS_END            16
21 #define SETUP_SCREEN_POS_EMPTY          (SETUP_SCREEN_POS_END - 2)
22
23 void DrawHeadline(void);
24 void DrawMainMenu(void);
25 void HandleMainMenu(int, int, int, int, int);
26 void DrawHelpScreenElAction(int);
27 void DrawHelpScreenElText(int);
28 void DrawHelpScreenMusicText(int);
29 void DrawHelpScreenCreditsText(void);
30 void DrawHelpScreen(void);
31 void HandleHelpScreen(int);
32 void HandleTypeName(int, KeySym);
33 void DrawChooseLevel(void);
34 void HandleChooseLevel(int, int, int, int, int);
35 void DrawHallOfFame(int);
36 void HandleHallOfFame(int);
37 void DrawSetupScreen(void);
38 void HandleSetupScreen(int, int, int, int, int);
39 void CalibrateJoystick(void);
40 void HandleGameActions(int);
41 void HandleVideoButtons(int, int, int);
42 void HandleSoundButtons(int, int, int);
43 void HandleGameButtons(int, int, int);
44
45 #endif