OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / main.cpp
1 /*
2  * Copyright (c) 1997 Ben Harrison, and others
3  *
4  * This software may be copied and distributed for educational, research,
5  * and not for profit purposes provided that this copyright and statement
6  * are included in all such copies.
7  */
8
9 #include "core/asking-player.h"
10 #include "core/game-play.h"
11 #include "core/scores.h"
12 #include "game-option/runtime-arguments.h"
13 #include "io/files-util.h"
14 #include "io/record-play-movie.h"
15 #include "io/signal-handlers.h"
16 #include "io/uid-checker.h"
17 #include "main-unix/unix-user-ids.h"
18 #include "main/angband-initializer.h"
19 #include "player/process-name.h"
20 #include "system/angband-version.h"
21 #include "system/angband.h"
22 #include "system/player-type-definition.h"
23 #include "system/system-variables.h"
24 #include "term/gameterm.h"
25 #include "term/term-color-types.h"
26 #include "util/angband-files.h"
27 #include "util/string-processor.h"
28 #include "view/display-scores.h"
29 #include "wizard/spoiler-util.h"
30 #include "wizard/wizard-spoiler.h"
31 #include <string>
32
33 /*
34  * Available graphic modes
35  */
36 #define GRAPHICS_NONE 0
37 #define GRAPHICS_ORIGINAL 1
38 #define GRAPHICS_ADAM_BOLT 2
39 #define GRAPHICS_HENGBAND 3
40
41 /*
42  * Some machines have a "main()" function in their "main-xxx.c" file,
43  * all the others use this file for their "main()" function.
44  */
45
46 #if !defined(WINDOWS) && !defined(MACH_O_COCOA)
47 /*
48  * A hook for "quit()".
49  *
50  * Close down, then fall back into "quit()".
51  */
52 static void quit_hook(concptr s)
53 {
54     /* Unused */
55     (void)s;
56
57     /* Scan windows */
58     for (auto it = angband_terms.rbegin(); it != angband_terms.rend(); ++it) {
59         auto term = *it;
60         /* Unused */
61         if (term == nullptr) {
62             continue;
63         }
64
65         /* Nuke it */
66         term_nuke(term);
67     }
68 }
69
70 static void init_stuff()
71 {
72     char libpath[1024]{};
73     const auto tail = getenv("ANGBAND_PATH");
74     strncpy(libpath, tail ? tail : DEFAULT_LIB_PATH, 511);
75     if (!suffix(libpath, PATH_SEP)) {
76         strcat(libpath, PATH_SEP);
77     }
78
79     init_file_paths(libpath, libpath);
80 }
81
82 /*
83  * Handle a "-d<what>=<path>" option
84  *
85  * The "<what>" can be any string starting with the same letter as the
86  * name of a subdirectory of the "lib" folder (i.e. "i" or "info").
87  *
88  * The "<path>" can be any legal path for the given system, and should
89  * not end in any special path separator (i.e. "/tmp" or "~/.ang-info").
90  */
91 static void change_path(concptr info)
92 {
93     const auto s = angband_strchr(info, '=');
94
95     /* Verify equal sign */
96     if (!s) {
97         quit_fmt("Try '-d<what>=<path>' not '-d%s'", info);
98     }
99
100     switch (tolower(info[0])) {
101     case 'a':
102         ANGBAND_DIR_APEX = s + 1;
103         break;
104     case 'f':
105         ANGBAND_DIR_FILE = s + 1;
106         break;
107     case 'h':
108         ANGBAND_DIR_HELP = s + 1;
109         break;
110     case 'i':
111         ANGBAND_DIR_INFO = s + 1;
112         break;
113     case 'u':
114         ANGBAND_DIR_USER = s + 1;
115         break;
116     case 'x':
117         ANGBAND_DIR_XTRA = s + 1;
118         break;
119     case 'b':
120         ANGBAND_DIR_BONE = s + 1;
121         break;
122     case 'd':
123         ANGBAND_DIR_DATA = s + 1;
124         break;
125     case 'e':
126         ANGBAND_DIR_EDIT = s + 1;
127         break;
128     case 's':
129         ANGBAND_DIR_SAVE = s + 1;
130         break;
131     case 'z':
132         ANGBAND_DIR_SCRIPT = s + 1;
133         break;
134     default:
135         quit_fmt("Bad semantics in '-d%s'", info);
136     }
137 }
138
139 static void display_usage(const char *program)
140 {
141     /* Dump usage information */
142     printf("Usage: %s [options] [-- subopts]\n", program);
143     puts("  -n       Start a new character");
144     puts("  -f       Request fiddle mode");
145     puts("  -w       Request wizard mode");
146     puts("  -b       Request BGM mode");
147     puts("  -v       Request sound mode");
148     puts("  -g       Request graphics mode");
149     puts("  -o       Request original keyset");
150     puts("  -r       Request rogue-like keyset");
151     puts("  -M       Request monochrome mode");
152     puts("  -s<num>  Show <num> high scores");
153     puts("  -u<who>  Use your <who> savefile");
154     puts("  -m<sys>  Force 'main-<sys>.c' usage");
155     puts("  -d<def>  Define a 'lib' dir sub-path");
156     puts("  --output-spoilers");
157     puts("           Output auto generated spoilers and exit");
158     puts("");
159
160 #ifdef USE_X11
161     puts("  -mx11    To use X11");
162     puts("  --       Sub options");
163     puts("  -- -d    Set display name");
164     puts("  -- -o    Request old 8x8 tile graphics");
165     puts("  -- -a    Request Adam Bolt 16x16 tile graphics");
166     puts("  -- -b    Request Bigtile graphics mode");
167     puts("  -- -s    Turn off smoothscaling graphics");
168     puts("  -- -n#   Number of terms to use");
169     puts("");
170 #endif /* USE_X11 */
171
172 #ifdef USE_GCU
173     puts("  -mgcu    To use GCU (GNU Curses)");
174     puts("  --       Sub options");
175     puts("  -- -o    old subwindow layout (no bigscreen)");
176 #endif /* USE_GCU */
177
178 #ifdef USE_CAP
179     puts("  -mcap    To use CAP (\"Termcap\" calls)");
180 #endif /* USE_CAP */
181
182     /* Actually abort the process */
183     quit(nullptr);
184 }
185
186 /*
187  * @brief 2文字以上のコマンドライン引数 (オプション)を実行する
188  * @param opt コマンドライン引数
189  * @return Usageを表示する必要があるか否か
190  * @details v3.0.0 Alpha21時点では、スポイラー出力モードの判定及び実行を行う
191  */
192 static bool parse_long_opt(const char *opt)
193 {
194     if (strcmp(opt + 2, "output-spoilers") != 0) {
195         return true;
196     }
197
198     init_stuff();
199     init_angband(p_ptr, true);
200     switch (output_all_spoilers()) {
201     case SpoilerOutputResultType::SUCCESSFUL:
202         puts("Successfully created a spoiler file.");
203         quit(nullptr);
204         break;
205     case SpoilerOutputResultType::FILE_OPEN_FAILED:
206         quit("Cannot create spoiler file.");
207         break;
208     case SpoilerOutputResultType::FILE_CLOSE_FAILED:
209         quit("Cannot close spoiler file.");
210         break;
211     default:
212         break;
213     }
214
215     return false;
216 }
217
218 /*
219  * Simple "main" function for multiple platforms.
220  *
221  * Note the special "--" option which terminates the processing of
222  * standard options.  All non-standard options (if any) are passed
223  * directly to the "init_xxx()" function.
224  */
225 int main(int argc, char *argv[])
226 {
227     auto done = false;
228     auto new_game = false;
229     auto show_score = 0;
230     concptr mstr = nullptr;
231     auto args = true;
232     argv0 = argv[0];
233
234 #ifdef SET_UID
235     /* Default permissions on files */
236     (void)umask(022);
237 #endif
238
239     init_stuff();
240     auto &ids = UnixUserIds::get_instance();
241 #ifdef SET_UID
242     ids.set_user_id(getuid());
243 #ifdef VMS
244     ids.mod_user_id(getgid() * 1000);
245 #endif
246
247 #if defined(SAFE_SETUID) && defined(_POSIX_SAVED_IDS)
248     ids.set_effective_user_id(geteuid());
249     ids.set_effective_group_id(getegid());
250 #endif
251
252 #endif /* SET_UID */
253
254     safe_setuid_drop();
255 #ifdef SET_UID
256     user_name(p_ptr->name, ids.get_user_id());
257 #ifdef PRIVATE_USER_PATH
258     /* Create a directory for the user's files; handled by init.c. */
259     create_needed_dirs();
260 #endif /* PRIVATE_USER_PATH */
261 #endif /* SET_UID */
262
263     auto browsing_movie = false;
264     for (auto i = 1; args && (i < argc); i++) {
265         if (argv[i][0] != '-') {
266             display_usage(argv[0]);
267             continue;
268         }
269
270         auto is_usage_needed = false;
271         switch (argv[i][1]) {
272         case 'N':
273         case 'n':
274             new_game = true;
275             break;
276         case 'B':
277         case 'b':
278             arg_music = true;
279             break;
280         case 'V':
281         case 'v':
282             arg_sound = true;
283             break;
284         case 'G':
285         case 'g':
286             arg_graphics = GRAPHICS_ORIGINAL;
287             break;
288         case 'R':
289         case 'r':
290             arg_force_roguelike = true;
291             break;
292         case 'O':
293         case 'o':
294             arg_force_original = true;
295             break;
296         case 'S':
297         case 's':
298             show_score = atoi(&argv[i][2]);
299             if (show_score <= 0) {
300                 show_score = 10;
301             }
302
303             break;
304         case 'u':
305         case 'U':
306             if (!argv[i][2]) {
307                 is_usage_needed = true;
308                 break;
309             }
310
311             strcpy(p_ptr->name, &argv[i][2]);
312             break;
313         case 'm':
314             if (!argv[i][2]) {
315                 is_usage_needed = true;
316                 break;
317             }
318
319             mstr = &argv[i][2];
320             break;
321         case 'M':
322             arg_monochrome = true;
323             break;
324         case 'd':
325         case 'D':
326             change_path(&argv[i][2]);
327             break;
328         case 'x':
329             if (!argv[i][2]) {
330                 is_usage_needed = true;
331                 break;
332             }
333
334             prepare_browse_movie_with_path_build(&argv[i][2]);
335             browsing_movie = true;
336             break;
337         case '-':
338             if (argv[i][2] == '\0') {
339                 argv[i] = argv[0];
340                 argc = argc - i;
341                 argv = argv + i;
342                 args = false;
343             } else {
344                 is_usage_needed = parse_long_opt(argv[i]);
345             }
346
347             break;
348         default:
349             is_usage_needed = true;
350             break;
351         }
352
353         if (!is_usage_needed) {
354             continue;
355         }
356
357         display_usage(argv[0]);
358     }
359
360     if (args) {
361         argc = 1;
362         argv[1] = nullptr;
363     }
364
365     process_player_name(p_ptr, true);
366     quit_aux = quit_hook;
367
368 #ifdef USE_X11
369     if (!done && (!mstr || (streq(mstr, "x11")))) {
370         extern errr init_x11(int, char **);
371         if (0 == init_x11(argc, argv)) {
372             ANGBAND_SYS = "x11";
373             done = true;
374         }
375     }
376 #endif
377
378 #ifdef USE_GCU
379     if (!done && (!mstr || (streq(mstr, "gcu")))) {
380         extern errr init_gcu(int, char **);
381         if (0 == init_gcu(argc, argv)) {
382             ANGBAND_SYS = "gcu";
383             done = true;
384         }
385     }
386 #endif
387
388 #ifdef USE_CAP
389     if (!done && (!mstr || (streq(mstr, "cap")))) {
390         extern errr init_cap(int, char **);
391         if (0 == init_cap(argc, argv)) {
392             ANGBAND_SYS = "cap";
393             done = true;
394         }
395     }
396 #endif
397
398     if (!done) {
399         quit("Unable to prepare any 'display module'!");
400     }
401
402     if (show_score > 0) {
403         display_scores(0, show_score);
404     }
405
406     signals_init();
407
408     {
409         TermCenteredOffsetSetter tcos(MAIN_TERM_MIN_COLS, MAIN_TERM_MIN_ROWS);
410         init_angband(p_ptr, false);
411         pause_line(MAIN_TERM_MIN_ROWS - 1);
412     }
413
414     play_game(p_ptr, new_game, browsing_movie);
415     quit(nullptr);
416     return 0;
417 }
418
419 #endif