OSDN Git Service

[Refactor] #37353 SECURE のプリプロを削除 / Removed preprocessor SECURE
[hengband/hengband.git] / src / 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  * OPTION: Compile on a HPUX version of UNIX
36  */
37 #ifndef HPUX
38 /* #define HPUX */
39 #endif
40
41 /*
42  * OPTION: Compile on an SGI running IRIX
43  */
44 #ifndef SGI
45 /* #define SGI */
46 #endif
47
48 /*
49  * OPTION: Compile on an ultrix/4.2BSD/Dynix/etc. version of UNIX,
50  * Do not define this if you are on any kind of SunOS.
51  */
52 #ifndef ULTRIX
53 /* #define ULTRIX */
54 #endif
55
56
57 /*
58  * Extract the "ULTRIX" flag from the compiler
59  */
60 #if defined(ultrix) || defined(Pyramid)
61 # ifndef ULTRIX
62 #  define ULTRIX
63 # endif
64 #endif
65
66 /*
67  * Extract the "SGI" flag from the compiler
68  */
69 #ifdef sgi
70 # ifndef SGI
71 #  define SGI
72 # endif
73 #endif
74
75 /*
76  * Extract the "WINDOWS" flag from the compiler
77  */
78 #if defined(_Windows) || defined(__WINDOWS__) || \
79     defined(__WIN32__) || defined(WIN32) || \
80     defined(__WINNT__) || defined(__NT__)
81 # ifndef WINDOWS
82 #  define WINDOWS
83 # endif
84 #endif
85
86
87
88 /*
89  * OPTION: Define "L64" if a "long" is 64-bits.  See "h-types.h".
90  * The only such platform that angband is ported to is currently
91  * DEC Alpha AXP running OSF/1 (OpenVMS uses 32-bit longs).
92  */
93 #if defined(__alpha) && defined(__osf__)
94 # define L64
95 #endif
96
97
98
99 /*
100  * OPTION: set "SET_UID" if the machine is a "multi-user" machine.
101  * This option is used to verify the use of "uids" and "gids" for
102  * various "Unix" calls, and of "pids" for getting a random seed,
103  * and of the "umask()" call for various reasons, and to guess if
104  * the "kill()" function is available, and for permission to use
105  * functions to extract user names and expand "tildes" in filenames.
106  * It is also used for "locking" and "unlocking" the score file.
107  * Basically, SET_UID should *only* be set for "Unix" machines,
108  * or for the "Atari" platform which is Unix-like, apparently
109  */
110 #if !defined(WINDOWS) && !defined(VM)
111 # define SET_UID
112 #endif
113
114
115 /*
116  * OPTION: Set "USG" for "System V" versions of Unix
117  * This is used to choose a "lock()" function, and to choose
118  * which header files ("string.h" vs "strings.h") to include.
119  * It is also used to allow certain other options, such as options
120  * involving userid's, or multiple users on a single machine, etc.
121  */
122 #ifdef SET_UID
123 # if defined(HPUX) || defined(SGI)
124 #  ifndef USG
125 #   define USG
126 #  endif
127 # endif
128 #endif
129
130
131 /*
132  * Every system seems to use its own symbol as a path separator.
133  * Default to the standard Unix slash, but attempt to change this
134  * for various other systems.  Note that any system that uses the
135  * "period" as a separator will have to pretend that it uses the
136  * slash, and do its own mapping of period <-> slash.
137  * Note that the VM system uses a "flat" directory, and thus uses
138  * the empty string for "PATH_SEP".
139  */
140 #undef PATH_SEP
141 #define PATH_SEP "/"
142 #if defined(WINDOWS) || defined(WINNT)
143 # undef PATH_SEP
144 # define PATH_SEP "\\"
145 #endif
146 #if defined(OS2)
147 # undef PATH_SEP
148 # define PATH_SEP "\\"
149 #endif
150 #ifdef __GO32__
151 # undef PATH_SEP
152 # define PATH_SEP "/"
153 #endif
154
155
156 /*
157  * The Macintosh allows the use of a "file type" when creating a file
158  */
159 #if defined(MACH_O_CARBON)
160 # define FILE_TYPE_TEXT 'TEXT'
161 # define FILE_TYPE_DATA 'DATA'
162 # define FILE_TYPE_SAVE 'SAVE'
163 # define FILE_TYPE(X) (_ftype = (X))
164 #else
165 # define FILE_TYPE(X) ((void)0)
166 #endif
167
168
169 /*
170  * OPTION: Define "HAS_STRICMP" only if "stricmp()" exists.
171  * Note that "stricmp()" is not actually used by Angband.
172  */
173 /* #define HAS_STRICMP */
174
175 /*
176  * Linux has "stricmp()" with a different name
177  */
178 #if defined(linux)
179 # define HAS_STRICMP
180 # define stricmp strcasecmp
181 #endif
182
183
184 /*
185  * OPTION: Define "HAVE_USLEEP" only if "usleep()" exists.
186  *
187  * Note that this is only relevant for "SET_UID" machines.
188  * Note that new "SGI" machines have "usleep()".
189  */
190 #if defined(SET_UID) && !defined(HAVE_CONFIG_H)
191 # if !defined(HPUX) && !defined(ULTRIX) && !defined(ISC)
192 #  define HAVE_USLEEP
193 # endif
194 #endif
195
196 #ifdef JP
197 # if defined(EUC)
198 #  define iskanji(x) (((unsigned char)(x) >= 0xa1 && (unsigned char)(x) <= 0xfe) || (unsigned char)(x) == 0x8e)
199 #  define iskana(x)  (0)
200 # elif defined(SJIS)
201 #  define iskanji(x) ((0x81 <= (unsigned char)(x) && (unsigned char)(x) <= 0x9f) || (0xe0 <= (unsigned char)(x) && (unsigned char)(x) <= 0xfc))
202 #  define iskana(x)  (((unsigned char)(x) >= 0xA0) && ((unsigned char)(x) <= 0xDF))
203 # else
204 #  error Oops! Please define "EUC" or "SJIS" for kanji-code of your system.
205 # endif
206 #endif
207
208 #endif /* INCLUDED_H_CONFIG_H */
209
210 /* Allow various special stuff (sound, graphics, etc.) */
211 #define USE_SPECIAL
212
213 #ifndef HAVE_CONFIG_H
214
215 /*
216  * USE_FONTSET and/or USE_XIM can be commented out
217  * when you don't want to use it.
218  */
219 #define USE_FONTSET
220
221 #ifdef JP
222 #define USE_XIM
223 #endif
224
225 #if defined(USE_FONTSET) || defined(USE_XIM)
226 #define USE_LOCALE
227 #endif
228
229 #if defined(JP) && !defined(USE_FONTSET)
230 #define USE_JP_FONTSTRUCT
231 #endif
232
233 #endif /* HAVE_CONFIG_H */
234
235
236 /*
237  * Look through the following lines, and where a comment includes the
238  * tag "OPTION:", examine the associated "#define" statements, and decide
239  * whether you wish to keep, comment, or uncomment them.  You should not
240  * have to modify any lines not indicated by "OPTION".
241  *
242  * Note: Also examine the "system" configuration file "h-config.h"
243  * and the variable initialization file "variable.c".  If you change
244  * anything in "variable.c", you only need to recompile that file.
245  *
246  * And finally, remember that the "Makefile" will specify some rather
247  * important compile time options, like what visual module to use.
248  */
249
250
251 /*
252  * OPTION: define "SPECIAL_BSD" for using certain versions of UNIX
253  * that use the 4.4BSD Lite version of Curses in "main-gcu.c"
254  */
255 /* #define SPECIAL_BSD */
256
257
258 /*
259  * OPTION: Use the POSIX "termios" methods in "main-gcu.c"
260  */
261 /* #define USE_TPOSIX */
262
263 /*
264  * OPTION: Use the "termio" methods in "main-gcu.c"
265  */
266 /* #define USE_TERMIO */
267
268 /*
269  * OPTION: Use the icky BSD "tchars" methods in "main-gcu.c"
270  */
271 /* #define USE_TCHARS */
272
273 /*
274  * OPTION: Include "ncurses.h" instead of "curses.h" in "main-gcu.c"
275  */
276 /* #define USE_NCURSES */
277
278
279 /*
280  * OPTION: for multi-user machines running the game setuid to some other
281  * user (like 'games') this SAFE_SETUID option allows the program to drop
282  * its privileges when saving files that allow for user specified pathnames.
283  * This lets the game be installed system wide without major security
284  * concerns.  There should not be any side effects on any machines.
285  *
286  * This will handle "gids" correctly once the permissions are set right.
287  */
288 #define SAFE_SETUID
289
290
291 /*
292  * This flag enables the "POSIX" methods for "SAFE_SETUID".
293  */
294 #ifdef _POSIX_SAVED_IDS
295 # define SAFE_SETUID_POSIX
296 #endif
297
298
299 /*
300  * OPTION: Forbid the use of "fiddled" savefiles.  As far as I can tell,
301  * a fiddled savefile is one with an internal timestamp different from
302  * the actual timestamp.  Thus, turning this option on forbids one from
303  * copying a savefile to a different name.  Combined with disabling the
304  * ability to save the game without quitting, and with some method of
305  * stopping the user from killing the process at the tombstone screen,
306  * this should prevent the use of backup savefiles.  It may also stop
307  * the use of savefiles from other platforms, so be careful.
308  */
309 /* #define VERIFY_TIMESTAMP */
310
311
312 /*
313  * OPTION: Forbid the "savefile over-write" cheat, in which you simply
314  * run another copy of the game, loading a previously saved savefile,
315  * and let that copy over-write the "dead" savefile later.  This option
316  * either locks the savefile, or creates a fake "xxx.lok" file to prevent
317  * the use of the savefile until the file is deleted.  Not ready yet.
318  */
319 /* #define VERIFY_SAVEFILE */
320
321  /*
322  * OPTION: Handle signals
323  */
324 #define HANDLE_SIGNALS
325
326
327 /*
328  * Allow "Wizards" to yield "high scores"
329  */
330 /* #define SCORE_WIZARDS */
331
332 /*
333  * Allow "Cheaters" to yield "high scores"
334  */
335 /* #define SCORE_CHEATERS */
336
337
338 #ifdef USE_SPECIAL
339
340 /*
341  * OPTION: Allow the use of "sound" in various places.
342  */
343 #define USE_SOUND
344
345 /*
346  * OPTION: Allow the use of "graphics" in various places
347  */
348 #define USE_GRAPHICS
349
350 /*
351  * OPTION: Allow the use of "music" in various places
352  */
353 #define USE_MUSIC
354
355 #endif /* USE_SPECIAL */
356
357
358 /*
359  * OPTION: Set the "default" path to the angband "lib" directory.
360  *
361  * See "main.c" for usage, and note that this value is only used on
362  * certain machines, primarily Unix machines.  If this value is used,
363  * it will be over-ridden by the "ANGBAND_PATH" environment variable,
364  * if that variable is defined and accessable.  The final slash is
365  * optional, but it may eventually be required.
366  *
367  * Using the value "./lib/" below tells Angband that, by default,
368  * the user will run "angband" from the same directory that contains
369  * the "lib" directory.  This is a reasonable (but imperfect) default.
370  *
371  * If at all possible, you should change this value to refer to the
372  * actual location of the "lib" folder, for example, "/tmp/angband/lib/"
373  * or "/usr/games/lib/angband/", or "/pkg/angband/lib".
374  */
375 #ifndef DEFAULT_PATH
376 # define DEFAULT_PATH "./lib/"
377 #endif
378
379
380 /*
381  * OPTION: Create and use a hidden directory in the users home directory
382  * for storing pref-files and character-dumps.
383  */
384 #ifdef SET_UID
385 #define PRIVATE_USER_PATH "~/.angband"
386 #endif /* SET_UID */
387
388 /*
389  * On multiuser systems, add the "uid" to savefile names
390  */
391 #ifdef SET_UID
392 # define SAVEFILE_USE_UID
393 #endif
394
395 /*
396  * OPTION: Person to bother if something goes wrong.
397  */
398 /* #define MAINTAINER   "rr9@angband.org" */
399 #define MAINTAINER      "echizen@users.sourceforge.jp"
400
401
402 #ifdef JP
403 #ifndef USE_FONTSET
404 /*
405  * OPTION: Default font (when using X11).
406  */
407 #define DEFAULT_X11_FONT  "a24"
408 #define DEFAULT_X11_KFONT "kanji24"
409 #define DEFAULT_X11_FONT_SUB  "a16"
410 #define DEFAULT_X11_KFONT_SUB "kanji16"
411
412
413 /*
414  * OPTION: Default fonts (when using X11)
415  */
416 #define DEFAULT_X11_FONT_0  DEFAULT_X11_FONT
417 #define DEFAULT_X11_KFONT_0 DEFAULT_X11_KFONT
418 #define DEFAULT_X11_FONT_1  DEFAULT_X11_FONT_SUB
419 #define DEFAULT_X11_KFONT_1 DEFAULT_X11_KFONT_SUB
420 #define DEFAULT_X11_FONT_2  DEFAULT_X11_FONT_SUB
421 #define DEFAULT_X11_KFONT_2 DEFAULT_X11_KFONT_SUB
422 #define DEFAULT_X11_FONT_3  DEFAULT_X11_FONT_SUB
423 #define DEFAULT_X11_KFONT_3 DEFAULT_X11_KFONT_SUB
424 #define DEFAULT_X11_FONT_4  DEFAULT_X11_FONT_SUB
425 #define DEFAULT_X11_KFONT_4 DEFAULT_X11_KFONT_SUB
426 #define DEFAULT_X11_FONT_5  DEFAULT_X11_FONT_SUB
427 #define DEFAULT_X11_KFONT_5 DEFAULT_X11_KFONT_SUB
428 #define DEFAULT_X11_FONT_6  DEFAULT_X11_FONT_SUB
429 #define DEFAULT_X11_KFONT_6 DEFAULT_X11_KFONT_SUB
430 #define DEFAULT_X11_FONT_7  DEFAULT_X11_FONT_SUB
431 #define DEFAULT_X11_KFONT_7 DEFAULT_X11_KFONT_SUB
432
433 #else
434 /*
435  * OPTION: Default font (when using X11).
436  */
437 #define DEFAULT_X11_FONT \
438         "-*-*-medium-r-normal--24-*-*-*-*-*-iso8859-1" \
439         ",-*-*-medium-r-normal--24-*-*-*-*-*-jisx0208.1983-0"
440 /*      "12x24" \
441         ",kanji24"*/
442 #define DEFAULT_X11_FONT_SUB \
443         "-*-*-medium-r-normal--16-*-*-*-*-*-iso8859-1" \
444         ",-*-*-medium-r-normal--16-*-*-*-*-*-jisx0208.1983-0"
445 /*      "8x16" \
446         ",kanji16"*/
447
448 /*
449  * OPTION: Default fonts (when using X11)
450  */
451 #define DEFAULT_X11_FONT_0              DEFAULT_X11_FONT
452 #define DEFAULT_X11_FONT_1              DEFAULT_X11_FONT_SUB
453 #define DEFAULT_X11_FONT_2              DEFAULT_X11_FONT_SUB
454 #define DEFAULT_X11_FONT_3              DEFAULT_X11_FONT_SUB
455 #define DEFAULT_X11_FONT_4              DEFAULT_X11_FONT_SUB
456 #define DEFAULT_X11_FONT_5              DEFAULT_X11_FONT_SUB
457 #define DEFAULT_X11_FONT_6              DEFAULT_X11_FONT_SUB
458 #define DEFAULT_X11_FONT_7              DEFAULT_X11_FONT_SUB
459 #endif
460
461 #else
462 /*
463  * OPTION: Default font (when using X11).
464  */
465 #define DEFAULT_X11_FONT                "9x15"
466
467 /*
468  * OPTION: Default fonts (when using X11)
469  */
470 #define DEFAULT_X11_FONT_0              "10x20"
471 #define DEFAULT_X11_FONT_1              "9x15"
472 #define DEFAULT_X11_FONT_2              "9x15"
473 #define DEFAULT_X11_FONT_3              "5x8"
474 #define DEFAULT_X11_FONT_4              "5x8"
475 #define DEFAULT_X11_FONT_5              "5x8"
476 #define DEFAULT_X11_FONT_6              "5x8"
477 #define DEFAULT_X11_FONT_7              "5x8"
478 #endif
479
480
481 /*
482  * Hack -- Mach-O (native binary format of OS X) is basically a Un*x
483  * but has Mac OS/Windows-like user interface
484  */
485 #ifdef MACH_O_CARBON
486 # ifdef PRIVATE_USER_PATH
487 #  undef PRIVATE_USER_PATH
488 # endif
489 # ifdef SAVEFILE_USE_UID
490 #  undef SAVEFILE_USE_UID
491 # endif
492 #endif
493
494 /*
495  * OPTION: Attempt to prevent all "cheating"
496  */
497 /* #define VERIFY_HONOR */
498
499
500 /*
501  * React to the "VERIFY_HONOR" flag
502  */
503 #ifdef VERIFY_HONOR
504 # define VERIFY_SAVEFILE
505 # define VERIFY_TIMESTAMPS
506 #endif
507
508 #ifndef HAVE_CONFIG_H
509 #define WORLD_SCORE
510 #endif /* HAVE_CONFIG_H */