rnd-19981021-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 /* for DrawSetupScreen(), HandleSetupScreen() */
20 #define SETUP_SCREEN_POS_START          2
21 #define SETUP_SCREEN_POS_END            16
22 #define SETUP_SCREEN_POS_EMPTY          (SETUP_SCREEN_POS_END - 2)
23
24 void DrawHeadline(void);
25 void DrawMainMenu(void);
26 void HandleMainMenu(int, int, int, int, int);
27 void DrawHelpScreenElAction(int);
28 void DrawHelpScreenElText(int);
29 void DrawHelpScreenMusicText(int);
30 void DrawHelpScreenCreditsText(void);
31 void DrawHelpScreen(void);
32 void HandleHelpScreen(int);
33 void HandleTypeName(int, KeySym);
34 void DrawChooseLevel(void);
35 void HandleChooseLevel(int, int, int, int, int);
36 void DrawHallOfFame(int);
37 void HandleHallOfFame(int);
38 void DrawSetupScreen(void);
39 void HandleSetupScreen(int, int, int, int, int);
40 void CustomizeKeyboard(void);
41 void CalibrateJoystick(void);
42 void HandleGameActions(byte);
43 void HandleVideoButtons(int, int, int);
44 void HandleSoundButtons(int, int, int);
45 void HandleGameButtons(int, int, int);
46
47 #endif