Clean-up recently added code in share/solid.c.
[neverball] / share / base_config.h
1 /*
2  * Copyright (C) 2003 Robert Kooima
3  *
4  * NEVERBALL is  free software; you can redistribute  it and/or modify
5  * it under the  terms of the GNU General  Public License as published
6  * by the Free  Software Foundation; either version 2  of the License,
7  * or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
11  * MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
12  * General Public License for more details.
13  */
14
15 #ifndef BASE_CONFIG_H
16 #define BASE_CONFIG_H
17
18 /*
19  * This file contains some constants
20  * And the way to access to directories
21  */
22
23 #include <stdio.h>
24 #include "i18n.h"
25
26 /*---------------------------------------------------------------------------*/
27
28 #define VERSION       "1.4.1svn"      /* Game version */
29
30 #define CONFIG_DATA   "./data"        /* Game data directory */
31 #define CONFIG_LOCALE "./locale"      /* Game localisation */
32 #define CONFIG_USER   ".neverball-dev"    /* User config directory */
33
34 /*
35  * Global settings are stored in USER_CONFIG_FILE.  Replays are stored
36  * in  USER_REPLAY_FILE.  These files  are placed  in the  user's home
37  * directory as given by the HOME environment var.  If the config file
38  * is deleted, it will be recreated using the defaults.
39  */
40
41 #define USER_CONFIG_FILE    "neverballrc"
42 #define USER_REPLAY_FILE    _("Last")
43 #define REPLAY_EXT          ".nbr"
44 #define ALLOW_CHEAT         1
45
46 /*---------------------------------------------------------------------------*/
47
48 #if SDL_BYTEORDER == SDL_BIG_ENDIAN
49 #define RMASK 0xFF000000
50 #define GMASK 0x00FF0000
51 #define BMASK 0x0000FF00
52 #define AMASK 0x000000FF
53 #else
54 #define RMASK 0x000000FF
55 #define GMASK 0x0000FF00
56 #define BMASK 0x00FF0000
57 #define AMASK 0xFF000000
58 #endif
59
60 #ifdef _WIN32
61 #define FMODE_RB "rb"
62 #define FMODE_WB "wb"
63 #else
64 #define FMODE_RB "r"
65 #define FMODE_WB "w"
66 #endif
67
68 #define AUDIO_BUFF_HI 2048
69 #define AUDIO_BUFF_LO 1024
70
71 #define JOY_MAX 32767
72 #define JOY_MID 16383
73
74 #define MAXSTR 256
75 #define PATHMAX 64
76 #define MAXNAM 9
77
78 #define GUI_FACE                    _("ttf/DejaVuSans-Bold.ttf")
79
80 /*---------------------------------------------------------------------------*/
81
82 const char *config_data(const char *);
83 const char *config_user(const char *);
84
85 int  config_data_path(const char *, const char *);
86 int  config_user_path(const char *);
87
88 /*---------------------------------------------------------------------------*/
89
90 #endif