OSDN Git Service

0a6e3e909d554dc18129d881ed7c7f2aee02b46c
[hengband/hengband.git] / src / system / h-config.h
1 /*!
2  * @file h-config.h
3  * @brief 主に変愚/Zang時追加された基本事項のヘッダーファイル /
4  * The most basic "include" file. This file simply includes other low level header files.
5  * @date 2014/08/15
6  * @author
7  * 不明(馬鹿馬鹿蛮怒スタッフ?)
8  * @details
9  * <pre>
10  * Choose the hardware, operating system, and compiler.
11  * Also, choose various "system level" compilation options.
12  * A lot of these definitions take effect in "h-system.h"
13  * Note that you may find it simpler to define some of these
14  * options in the "Makefile", especially any options describing
15  * what "system" is being used.
16  * no system definitions are needed for 4.3BSD, SUN OS, DG/UX
17  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
18  *
19  * This software may be copied and distributed for educational, research,
20  * and not for profit purposes provided that this copyright and statement
21  * are included in all such copies.  Other copyrights may also apply.
22 */
23
24 #ifndef INCLUDED_H_CONFIG_H
25 #define INCLUDED_H_CONFIG_H
26
27 /*
28  * OPTION: Compile on Windows (automatic)
29  */
30 #ifndef WINDOWS
31 /* #define WINDOWS */
32 #endif
33
34 /*
35  * Extract the "WINDOWS" flag from the compiler
36  */
37 #if defined(_Windows) || defined(__WINDOWS__) || \
38     defined(__WIN32__) || defined(WIN32) || \
39     defined(__WINNT__) || defined(__NT__)
40 # ifndef WINDOWS
41 #  define WINDOWS
42 # endif
43 #endif
44
45 /*
46  * OPTION: Define "L64" if a "long" is 64-bits.  See "h-types.h".
47  * The only such platform that angband is ported to is currently
48  * DEC Alpha AXP running OSF/1 (OpenVMS uses 32-bit longs).
49  */
50 #if defined(__alpha) && defined(__osf__)
51 # define L64
52 #endif
53
54 /*
55  * OPTION: set "SET_UID" if the machine is a "multi-user" machine.
56  * This option is used to verify the use of "uids" and "gids" for
57  * various "Unix" calls, and of "pids" for getting a random seed,
58  * and of the "umask()" call for various reasons, and to guess if
59  * the "kill()" function is available, and for permission to use
60  * functions to extract user names and expand "tildes" in filenames.
61  * It is also used for "locking" and "unlocking" the score file.
62  * Basically, SET_UID should *only* be set for "Unix" machines,
63  * or for the "Atari" platform which is Unix-like, apparently
64  */
65 #if !defined(WINDOWS) && !defined(VM)
66 # define SET_UID
67 #endif
68
69 /*
70  * Every system seems to use its own symbol as a path separator.
71  * Default to the standard Unix slash, but attempt to change this
72  * for various other systems.  Note that any system that uses the
73  * "period" as a separator will have to pretend that it uses the
74  * slash, and do its own mapping of period <-> slash.
75  * Note that the VM system uses a "flat" directory, and thus uses
76  * the empty string for "PATH_SEP".
77  */
78 #undef PATH_SEP
79 #define PATH_SEP "/"
80
81 #if defined(WINDOWS) || defined(WINNT)
82 # undef PATH_SEP
83 # define PATH_SEP "\\"
84 #endif
85
86 /*
87  * Linux has "stricmp()" with a different name
88  */
89 #if defined(linux)
90 # define stricmp strcasecmp
91 #endif
92
93 /*
94  * OPTION: Define "HAVE_USLEEP" only if "usleep()" exists.
95  *
96  * Note that this is only relevant for "SET_UID" machines.
97  */
98 #if defined(SET_UID) && !defined(HAVE_CONFIG_H)
99 # if !defined(ISC)
100 #  define HAVE_USLEEP
101 # endif
102 #endif
103
104 #ifdef JP
105 # if defined(EUC)
106 #  define iskanji(x) (((unsigned char)(x) >= 0xa1 && (unsigned char)(x) <= 0xfe) || (unsigned char)(x) == 0x8e)
107 #  define iskana(x)  (0)
108 # elif defined(SJIS)
109 #  define iskanji(x) ((0x81 <= (unsigned char)(x) && (unsigned char)(x) <= 0x9f) || (0xe0 <= (unsigned char)(x) && (unsigned char)(x) <= 0xfc))
110 #  define iskana(x)  (((unsigned char)(x) >= 0xA0) && ((unsigned char)(x) <= 0xDF))
111 # else
112 #  error Oops! Please define "EUC" or "SJIS" for kanji-code of your system.
113 # endif
114 #endif
115
116 #endif /* INCLUDED_H_CONFIG_H */
117
118 #ifndef HAVE_CONFIG_H
119
120 #ifdef JP
121 #define USE_XIM
122 #endif
123
124 #if defined(USE_XIM)
125 #define USE_LOCALE
126 #endif
127
128 #endif /* HAVE_CONFIG_H */
129
130 /*
131  * Look through the following lines, and where a comment includes the
132  * tag "OPTION:", examine the associated "#define" statements, and decide
133  * whether you wish to keep, comment, or uncomment them.  You should not
134  * have to modify any lines not indicated by "OPTION".
135  *
136  * Note: Also examine the "system" configuration file "h-config.h"
137  * and the variable initialization file "variable.c".  If you change
138  * anything in "variable.c", you only need to recompile that file.
139  *
140  * And finally, remember that the "Makefile" will specify some rather
141  * important compile time options, like what visual module to use.
142  */
143
144 /*
145  * OPTION: for multi-user machines running the game setuid to some other
146  * user (like 'games') this SAFE_SETUID option allows the program to drop
147  * its privileges when saving files that allow for user specified pathnames.
148  * This lets the game be installed system wide without major security
149  * concerns.  There should not be any side effects on any machines.
150  *
151  * This will handle "gids" correctly once the permissions are set right.
152  */
153 #define SAFE_SETUID
154
155 /*
156  * This flag enables the "POSIX" methods for "SAFE_SETUID".
157  */
158 #ifdef _POSIX_SAVED_IDS
159 # define SAFE_SETUID_POSIX
160 #endif
161
162  /*
163  * OPTION: Handle signals
164  */
165 #define HANDLE_SIGNALS
166
167 /*
168  * OPTION: Set the "default" path to the angband "lib" directory.
169  *
170  * See "main.c" for usage, and note that this value is only used on
171  * certain machines, primarily Unix machines.  If this value is used,
172  * it will be over-ridden by the "ANGBAND_PATH" environment variable,
173  * if that variable is defined and accessable.  The final slash is
174  * optional, but it may eventually be required.
175  *
176  * Using the value "./lib/" below tells Angband that, by default,
177  * the user will run "angband" from the same directory that contains
178  * the "lib" directory.  This is a reasonable (but imperfect) default.
179  *
180  * If at all possible, you should change this value to refer to the
181  * actual location of the "lib" folder, for example, "/tmp/angband/lib/"
182  * or "/usr/games/lib/angband/", or "/pkg/angband/lib".
183  */
184 #ifndef DEFAULT_PATH
185 # define DEFAULT_PATH "./lib/"
186 #endif
187
188 /*
189  * OPTION: Create and use a hidden directory in the users home directory
190  * for storing pref-files and character-dumps.
191  */
192 #ifdef SET_UID
193 #define PRIVATE_USER_PATH "~/.angband"
194 #endif /* SET_UID */
195
196 /*
197  * On multiuser systems, add the "uid" to savefile names
198  */
199 #ifdef SET_UID
200 # define SAVEFILE_USE_UID
201 #endif
202
203 /*
204  * OPTION: Person to bother if something goes wrong.
205  */
206 /* #define MAINTAINER   "rr9@angband.org" */
207 #define MAINTAINER "echizen@users.sourceforge.jp"
208
209 #ifdef JP
210 #ifdef USE_XFT
211 #define DEFAULT_X11_FONT "monospace-24:lang=ja:spacing=90"
212 #define DEFAULT_X11_FONT_SUB "sans-serif-16:lang=ja"
213 #else
214 /*
215  * OPTION: Default font (when using X11).
216  */
217 #define DEFAULT_X11_FONT \
218         "-*-*-medium-r-normal--24-*-*-*-*-*-iso8859-1" \
219         ",-*-*-medium-r-normal--24-*-*-*-*-*-jisx0208.1983-0"
220 /*      "12x24" \
221         ",kanji24"*/
222 #define DEFAULT_X11_FONT_SUB \
223         "-*-*-medium-r-normal--16-*-*-*-*-*-iso8859-1" \
224         ",-*-*-medium-r-normal--16-*-*-*-*-*-jisx0208.1983-0"
225 #endif
226 /*      "8x16" \
227         ",kanji16"*/
228
229 /*
230  * OPTION: Default fonts (when using X11)
231  */
232 #define DEFAULT_X11_FONT_0              DEFAULT_X11_FONT
233 #define DEFAULT_X11_FONT_1              DEFAULT_X11_FONT_SUB
234 #define DEFAULT_X11_FONT_2              DEFAULT_X11_FONT_SUB
235 #define DEFAULT_X11_FONT_3              DEFAULT_X11_FONT_SUB
236 #define DEFAULT_X11_FONT_4              DEFAULT_X11_FONT_SUB
237 #define DEFAULT_X11_FONT_5              DEFAULT_X11_FONT_SUB
238 #define DEFAULT_X11_FONT_6              DEFAULT_X11_FONT_SUB
239 #define DEFAULT_X11_FONT_7              DEFAULT_X11_FONT_SUB
240
241 #else
242 /*
243  * OPTION: Default font (when using X11).
244  */
245 #define DEFAULT_X11_FONT                "9x15"
246
247 /*
248  * OPTION: Default fonts (when using X11)
249  */
250 #define DEFAULT_X11_FONT_0              "10x20"
251 #define DEFAULT_X11_FONT_1              "9x15"
252 #define DEFAULT_X11_FONT_2              "9x15"
253 #define DEFAULT_X11_FONT_3              "5x8"
254 #define DEFAULT_X11_FONT_4              "5x8"
255 #define DEFAULT_X11_FONT_5              "5x8"
256 #define DEFAULT_X11_FONT_6              "5x8"
257 #define DEFAULT_X11_FONT_7              "5x8"
258 #endif
259
260 #ifndef HAVE_CONFIG_H
261 #define WORLD_SCORE
262 #endif /* HAVE_CONFIG_H */