OSDN Git Service

branch-hexの変更をコミット。
[hengband/hengband.git] / src / util.c
1 /* File: util.c */
2
3 /*
4  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
5  *
6  * This software may be copied and distributed for educational, research,
7  * and not for profit purposes provided that this copyright and statement
8  * are included in all such copies.  Other copyrights may also apply.
9  */
10
11 /* Purpose: Angband utilities -BEN- */
12
13 #include "angband.h"
14
15
16 static int num_more = 0;
17
18 /* Save macro trigger string for use in inkey_special() */
19 static char inkey_macro_trigger_string[1024];
20
21 #if 0
22 #ifndef HAS_STRICMP
23
24 /*
25  * For those systems that don't have "stricmp()"
26  *
27  * Compare the two strings "a" and "b" ala "strcmp()" ignoring case.
28  */
29 int stricmp(cptr a, cptr b)
30 {
31         cptr s1, s2;
32         char z1, z2;
33
34         /* Scan the strings */
35         for (s1 = a, s2 = b; TRUE; s1++, s2++)
36         {
37                 z1 = FORCEUPPER(*s1);
38                 z2 = FORCEUPPER(*s2);
39                 if (z1 < z2) return (-1);
40                 if (z1 > z2) return (1);
41                 if (!z1) return (0);
42         }
43 }
44
45 #endif /* HAS_STRICMP */
46 #endif /* 0 */
47
48 #ifdef SET_UID
49
50 # ifndef HAVE_USLEEP
51
52 /*
53  * For those systems that don't have "usleep()" but need it.
54  *
55  * Fake "usleep()" function grabbed from the inl netrek server -cba
56  */
57 int usleep(huge usecs)
58 {
59         struct timeval      Timer;
60
61         int                 nfds = 0;
62
63 #ifdef FD_SET
64         fd_set          *no_fds = NULL;
65 #else
66         int                     *no_fds = NULL;
67 #endif
68
69
70         /* Was: int readfds, writefds, exceptfds; */
71         /* Was: readfds = writefds = exceptfds = 0; */
72
73
74         /* Paranoia -- No excessive sleeping */
75 #ifdef JP
76         if (usecs > 4000000L) core("ÉÔÅö¤Ê usleep() ¸Æ¤Ó½Ð¤·");
77 #else
78         if (usecs > 4000000L) core("Illegal usleep() call");
79 #endif
80
81
82
83         /* Wait for it */
84         Timer.tv_sec = (usecs / 1000000L);
85         Timer.tv_usec = (usecs % 1000000L);
86
87         /* Wait for it */
88         if (select(nfds, no_fds, no_fds, no_fds, &Timer) < 0)
89         {
90                 /* Hack -- ignore interrupts */
91                 if (errno != EINTR) return -1;
92         }
93
94         /* Success */
95         return 0;
96 }
97
98 # endif
99
100
101 /*
102  * Hack -- External functions
103  */
104 #ifdef SET_UID
105 extern struct passwd *getpwuid(uid_t uid);
106 extern struct passwd *getpwnam(const char *name);
107 #endif
108
109
110 /*
111  * Find a default user name from the system.
112  */
113 void user_name(char *buf, int id)
114 {
115         struct passwd *pw;
116
117         /* Look up the user name */
118         if ((pw = getpwuid(id)))
119         {
120                 (void)strcpy(buf, pw->pw_name);
121                 buf[16] = '\0';
122
123 #ifdef CAPITALIZE_USER_NAME
124                 /* Hack -- capitalize the user name */
125 #ifdef JP
126                 if (!iskanji(buf[0]))
127 #endif
128                         if (islower(buf[0]))
129                                 buf[0] = toupper(buf[0]);
130 #endif /* CAPITALIZE_USER_NAME */
131
132                 return;
133         }
134
135         /* Oops.  Hack -- default to "PLAYER" */
136         strcpy(buf, "PLAYER");
137 }
138
139 #endif /* SET_UID */
140
141
142
143
144 /*
145  * The concept of the "file" routines below (and elsewhere) is that all
146  * file handling should be done using as few routines as possible, since
147  * every machine is slightly different, but these routines always have the
148  * same semantics.
149  *
150  * In fact, perhaps we should use the "path_parse()" routine below to convert
151  * from "canonical" filenames (optional leading tilde's, internal wildcards,
152  * slash as the path seperator, etc) to "system" filenames (no special symbols,
153  * system-specific path seperator, etc).  This would allow the program itself
154  * to assume that all filenames are "Unix" filenames, and explicitly "extract"
155  * such filenames if needed (by "path_parse()", or perhaps "path_canon()").
156  *
157  * Note that "path_temp" should probably return a "canonical" filename.
158  *
159  * Note that "my_fopen()" and "my_open()" and "my_make()" and "my_kill()"
160  * and "my_move()" and "my_copy()" should all take "canonical" filenames.
161  *
162  * Note that "canonical" filenames use a leading "slash" to indicate an absolute
163  * path, and a leading "tilde" to indicate a special directory, and default to a
164  * relative path, but MSDOS uses a leading "drivename plus colon" to indicate the
165  * use of a "special drive", and then the rest of the path is parsed "normally",
166  * and MACINTOSH uses a leading colon to indicate a relative path, and an embedded
167  * colon to indicate a "drive plus absolute path", and finally defaults to a file
168  * in the current working directory, which may or may not be defined.
169  *
170  * We should probably parse a leading "~~/" as referring to "ANGBAND_DIR". (?)
171  */
172
173
174 #ifdef ACORN
175
176
177 /*
178  * Most of the "file" routines for "ACORN" should be in "main-acn.c"
179  */
180
181
182 #else /* ACORN */
183
184
185 #ifdef SET_UID
186
187 /*
188  * Extract a "parsed" path from an initial filename
189  * Normally, we simply copy the filename into the buffer
190  * But leading tilde symbols must be handled in a special way
191  * Replace "~user/" by the home directory of the user named "user"
192  * Replace "~/" by the home directory of the current user
193  */
194 errr path_parse(char *buf, int max, cptr file)
195 {
196         cptr            u, s;
197         struct passwd   *pw;
198         char            user[128];
199
200
201         /* Assume no result */
202         buf[0] = '\0';
203
204         /* No file? */
205         if (!file) return (-1);
206
207         /* File needs no parsing */
208         if (file[0] != '~')
209         {
210                 (void)strnfmt(buf, max, "%s", file);
211                 return (0);
212         }
213
214         /* Point at the user */
215         u = file+1;
216
217         /* Look for non-user portion of the file */
218         s = my_strstr(u, PATH_SEP);
219
220         /* Hack -- no long user names */
221         if (s && (s >= u + sizeof(user))) return (1);
222
223         /* Extract a user name */
224         if (s)
225         {
226                 int i;
227                 for (i = 0; u < s; ++i) user[i] = *u++;
228                 user[i] = '\0';
229                 u = user;
230         }
231
232         /* Look up the "current" user */
233         if (u[0] == '\0') u = getlogin();
234
235         /* Look up a user (or "current" user) */
236         if (u) pw = getpwnam(u);
237         else pw = getpwuid(getuid());
238
239         /* Nothing found? */
240         if (!pw) return (1);
241
242         /* Make use of the info */
243         if (s) strnfmt(buf, max, "%s%s", pw->pw_dir, s);
244         else strnfmt(buf, max, "%s", pw->pw_dir);
245
246         /* Success */
247         return (0);
248 }
249
250
251 #else /* SET_UID */
252
253
254 /*
255  * Extract a "parsed" path from an initial filename
256  *
257  * This requires no special processing on simple machines,
258  * except for verifying the size of the filename.
259  */
260 errr path_parse(char *buf, int max, cptr file)
261 {
262         /* Accept the filename */
263         (void)strnfmt(buf, max, "%s", file);
264
265 #if defined(MAC_MPW) && defined(CARBON)
266      /* Fix it according to the current operating system */
267     convert_pathname(buf);
268 #endif /* MAC_MPW && CARBON */
269
270         /* Success */
271         return (0);
272 }
273
274
275 #endif /* SET_UID */
276
277
278 #ifndef HAVE_MKSTEMP
279
280 /*
281  * Hack -- acquire a "temporary" file name if possible
282  *
283  * This filename is always in "system-specific" form.
284  */
285 static errr path_temp(char *buf, int max)
286 {
287         cptr s;
288
289         /* Temp file */
290         s = tmpnam(NULL);
291
292         /* Oops */
293         if (!s) return (-1);
294
295         /* Format to length */
296 #ifndef WIN32
297         (void)strnfmt(buf, max, "%s", s);
298 #else
299         (void)strnfmt(buf, max, ".%s", s);
300 #endif
301
302         /* Success */
303         return (0);
304 }
305
306 #endif
307
308 /*
309  * Create a new path by appending a file (or directory) to a path.
310  *
311  * This requires no special processing on simple machines, except
312  * for verifying the size of the filename, but note the ability to
313  * bypass the given "path" with certain special file-names.
314  *
315  * Note that the "file" may actually be a "sub-path", including
316  * a path and a file.
317  *
318  * Note that this function yields a path which must be "parsed"
319  * using the "parse" function above.
320  */
321 errr path_build(char *buf, int max, cptr path, cptr file)
322 {
323         /* Special file */
324         if (file[0] == '~')
325         {
326                 /* Use the file itself */
327                 (void)strnfmt(buf, max, "%s", file);
328         }
329
330         /* Absolute file, on "normal" systems */
331         else if (prefix(file, PATH_SEP) && !streq(PATH_SEP, ""))
332         {
333                 /* Use the file itself */
334                 (void)strnfmt(buf, max, "%s", file);
335         }
336
337         /* No path given */
338         else if (!path[0])
339         {
340                 /* Use the file itself */
341                 (void)strnfmt(buf, max, "%s", file);
342         }
343
344         /* Path and File */
345         else
346         {
347                 /* Build the new path */
348                 (void)strnfmt(buf, max, "%s%s%s", path, PATH_SEP, file);
349         }
350
351         /* Success */
352         return (0);
353 }
354
355
356 /*
357  * Hack -- replacement for "fopen()"
358  */
359 FILE *my_fopen(cptr file, cptr mode)
360 {
361         char buf[1024];
362
363 #if defined(MAC_MPW) || defined(MACH_O_CARBON)
364         FILE *tempfff;
365 #endif
366
367         /* Hack -- Try to parse the path */
368         if (path_parse(buf, 1024, file)) return (NULL);
369
370 #if defined(MAC_MPW) || defined(MACH_O_CARBON)
371         if (my_strchr(mode, 'w'))
372         {
373                 /* setting file type/creator */
374                 tempfff = fopen(buf, mode);
375                 fsetfileinfo(buf, _fcreator, _ftype);
376                 fclose(tempfff);
377         }
378 #endif
379
380         /* Attempt to fopen the file anyway */
381         return (fopen(buf, mode));
382 }
383
384
385 /*
386  * Hack -- replacement for "fclose()"
387  */
388 errr my_fclose(FILE *fff)
389 {
390         /* Require a file */
391         if (!fff) return (-1);
392
393         /* Close, check for error */
394         if (fclose(fff) == EOF) return (1);
395
396         /* Success */
397         return (0);
398 }
399
400
401 #endif /* ACORN */
402
403
404 #ifdef HAVE_MKSTEMP
405
406 FILE *my_fopen_temp(char *buf, int max)
407 {
408         int fd;
409
410         /* Prepare the buffer for mkstemp */
411         strncpy(buf, "/tmp/anXXXXXX", max);
412
413         /* Secure creation of a temporary file */
414         fd = mkstemp(buf);
415
416         /* Check the file-descriptor */
417         if (fd < 0) return (NULL);
418
419         /* Return a file stream */
420         return (fdopen(fd, "w"));
421 }
422
423 #else /* HAVE_MKSTEMP */
424
425 FILE *my_fopen_temp(char *buf, int max)
426 {
427         /* Generate a temporary filename */
428         if (path_temp(buf, max)) return (NULL);
429
430         /* Open the file */
431         return (my_fopen(buf, "w"));
432 }
433
434 #endif /* HAVE_MKSTEMP */
435
436
437 /*
438  * Hack -- replacement for "fgets()"
439  *
440  * Read a string, without a newline, to a file
441  *
442  * Process tabs, strip internal non-printables
443  */
444 errr my_fgets(FILE *fff, char *buf, huge n)
445 {
446         huge i = 0;
447
448         char *s;
449
450         char tmp[1024];
451
452         /* Read a line */
453         if (fgets(tmp, 1024, fff))
454         {
455                 /* Convert weirdness */
456                 for (s = tmp; *s; s++)
457                 {
458 #if defined(MACINTOSH) || defined(MACH_O_CARBON)
459
460                         /*
461                          * Be nice to the Macintosh, where a file can have Mac or Unix
462                          * end of line, especially since the introduction of OS X.
463                          * MPW tools were also very tolerant to the Unix EOL.
464                          */
465                         if (*s == '\r') *s = '\n';
466
467 #endif /* MACINTOSH || MACH_O_CARBON */
468
469                         /* Handle newline */
470                         if (*s == '\n')
471                         {
472                                 /* Terminate */
473                                 buf[i] = '\0';
474
475                                 /* Success */
476                                 return (0);
477                         }
478
479                         /* Handle tabs */
480                         else if (*s == '\t')
481                         {
482                                 /* Hack -- require room */
483                                 if (i + 8 >= n) break;
484
485                                 /* Append a space */
486                                 buf[i++] = ' ';
487
488                                 /* Append some more spaces */
489                                 while (0 != (i % 8)) buf[i++] = ' ';
490                         }
491
492 #ifdef JP
493                         else if (iskanji(*s))
494                         {
495                                 if (!s[1]) break;
496                                 buf[i++] = *s++;
497                                 buf[i++] = *s;
498                         }
499
500                         /* È¾³Ñ¤«¤Ê¤ËÂбþ */
501                         else if (iskana(*s))
502                         {
503                                 buf[i++] = *s;
504                                 if (i >= n) break;
505                         }
506 #endif
507                         /* Handle printables */
508                         else if (isprint(*s))
509                         {
510                                 /* Copy */
511                                 buf[i++] = *s;
512
513                                 /* Check length */
514                                 if (i >= n) break;
515                         }
516                 }
517                 /* No newline character, but terminate */
518                 buf[i] = '\0';
519
520                 /* Success */
521                 return (0);
522         }
523
524         /* Nothing */
525         buf[0] = '\0';
526
527         /* Failure */
528         return (1);
529 }
530
531
532 /*
533  * Hack -- replacement for "fputs()"
534  *
535  * Dump a string, plus a newline, to a file
536  *
537  * XXX XXX XXX Process internal weirdness?
538  */
539 errr my_fputs(FILE *fff, cptr buf, huge n)
540 {
541         /* XXX XXX */
542         n = n ? n : 0;
543
544         /* Dump, ignore errors */
545         (void)fprintf(fff, "%s\n", buf);
546
547         /* Success */
548         return (0);
549 }
550
551
552 #ifdef ACORN
553
554
555 /*
556  * Most of the "file" routines for "ACORN" should be in "main-acn.c"
557  *
558  * Many of them can be rewritten now that only "fd_open()" and "fd_make()"
559  * and "my_fopen()" should ever create files.
560  */
561
562
563 #else /* ACORN */
564
565
566 /*
567  * Code Warrior is a little weird about some functions
568  */
569 #ifdef BEN_HACK
570 extern int open(const char *, int, ...);
571 extern int close(int);
572 extern int read(int, void *, unsigned int);
573 extern int write(int, const void *, unsigned int);
574 extern long lseek(int, long, int);
575 #endif /* BEN_HACK */
576
577
578 /*
579  * The Macintosh is a little bit brain-dead sometimes
580  */
581 #ifdef MACINTOSH
582 # define open(N,F,M) \
583 ((M), open((char*)(N),F))
584 # define write(F,B,S) \
585 write(F,(char*)(B),S)
586 #endif /* MACINTOSH */
587
588
589 /*
590  * Several systems have no "O_BINARY" flag
591  */
592 #ifndef O_BINARY
593 # define O_BINARY 0
594 #endif /* O_BINARY */
595
596
597 /*
598  * Hack -- attempt to delete a file
599  */
600 errr fd_kill(cptr file)
601 {
602         char buf[1024];
603
604         /* Hack -- Try to parse the path */
605         if (path_parse(buf, 1024, file)) return (-1);
606
607         /* Remove */
608         (void)remove(buf);
609
610         /* XXX XXX XXX */
611         return (0);
612 }
613
614
615 /*
616  * Hack -- attempt to move a file
617  */
618 errr fd_move(cptr file, cptr what)
619 {
620         char buf[1024];
621         char aux[1024];
622
623         /* Hack -- Try to parse the path */
624         if (path_parse(buf, 1024, file)) return (-1);
625
626         /* Hack -- Try to parse the path */
627         if (path_parse(aux, 1024, what)) return (-1);
628
629         /* Rename */
630         (void)rename(buf, aux);
631
632         /* XXX XXX XXX */
633         return (0);
634 }
635
636
637 /*
638  * Hack -- attempt to copy a file
639  */
640 errr fd_copy(cptr file, cptr what)
641 {
642         char buf[1024];
643         char aux[1024];
644         int read_num;
645         int src_fd, dst_fd;
646
647         /* Hack -- Try to parse the path */
648         if (path_parse(buf, 1024, file)) return (-1);
649
650         /* Hack -- Try to parse the path */
651         if (path_parse(aux, 1024, what)) return (-1);
652
653         /* Open source file */
654         src_fd = fd_open(buf, O_RDONLY);
655         if (src_fd < 0) return (-1);
656
657         /* Open destination file */
658         dst_fd = fd_open(aux, O_WRONLY|O_TRUNC|O_CREAT);
659         if (dst_fd < 0) return (-1);
660
661         /* Copy */
662         while ((read_num = read(src_fd, buf, 1024)) > 0)
663         {
664                 write(dst_fd, buf, read_num);
665         }
666
667         /* Close files */
668         fd_close(src_fd);
669         fd_close(dst_fd);
670
671         /* XXX XXX XXX */
672         return (0);
673 }
674
675
676 /*
677  * Hack -- attempt to open a file descriptor (create file)
678  *
679  * This function should fail if the file already exists
680  *
681  * Note that we assume that the file should be "binary"
682  *
683  * XXX XXX XXX The horrible "BEN_HACK" code is for compiling under
684  * the CodeWarrior compiler, in which case, for some reason, none
685  * of the "O_*" flags are defined, and we must fake the definition
686  * of "O_RDONLY", "O_WRONLY", and "O_RDWR" in "A-win-h", and then
687  * we must simulate the effect of the proper "open()" call below.
688  */
689 int fd_make(cptr file, int mode)
690 {
691         char buf[1024];
692
693         /* Hack -- Try to parse the path */
694         if (path_parse(buf, 1024, file)) return (-1);
695
696 #ifdef BEN_HACK
697
698         /* Check for existance */
699         /* if (fd_close(fd_open(file, O_RDONLY | O_BINARY))) return (1); */
700
701         /* Mega-Hack -- Create the file */
702         (void)my_fclose(my_fopen(file, "wb"));
703
704         /* Re-open the file for writing */
705         return (open(buf, O_WRONLY | O_BINARY, mode));
706
707 #else /* BEN_HACK */
708
709 #if defined(MAC_MPW) || defined(MACH_O_CARBON)
710         {
711                 int fdes;
712                 /* Create the file, fail if exists, write-only, binary */
713                 fdes = open(buf, O_CREAT | O_EXCL | O_WRONLY | O_BINARY, mode);
714                 /* Set creator and type if the file is successfully opened */
715                 if (fdes >= 0) fsetfileinfo(buf, _fcreator, _ftype);
716                 /* Return the descriptor */
717                 return (fdes);
718         }
719 # else
720         /* Create the file, fail if exists, write-only, binary */
721         return (open(buf, O_CREAT | O_EXCL | O_WRONLY | O_BINARY, mode));
722 # endif
723
724 #endif /* BEN_HACK */
725
726 }
727
728
729 /*
730  * Hack -- attempt to open a file descriptor (existing file)
731  *
732  * Note that we assume that the file should be "binary"
733  */
734 int fd_open(cptr file, int flags)
735 {
736         char buf[1024];
737
738         /* Hack -- Try to parse the path */
739         if (path_parse(buf, 1024, file)) return (-1);
740
741         /* Attempt to open the file */
742         return (open(buf, flags | O_BINARY, 0));
743 }
744
745
746 /*
747  * Hack -- attempt to lock a file descriptor
748  *
749  * Legal lock types -- F_UNLCK, F_RDLCK, F_WRLCK
750  */
751 errr fd_lock(int fd, int what)
752 {
753         /* XXX XXX */
754         what = what ? what : 0;
755
756         /* Verify the fd */
757         if (fd < 0) return (-1);
758
759 #ifdef SET_UID
760
761 # ifdef USG
762
763 #  if defined(F_ULOCK) && defined(F_LOCK)
764
765         /* Un-Lock */
766         if (what == F_UNLCK)
767         {
768                 /* Unlock it, Ignore errors */
769                 lockf(fd, F_ULOCK, 0);
770         }
771
772         /* Lock */
773         else
774         {
775                 /* Lock the score file */
776                 if (lockf(fd, F_LOCK, 0) != 0) return (1);
777         }
778
779 #  endif
780
781 # else
782
783 #  if defined(LOCK_UN) && defined(LOCK_EX)
784
785         /* Un-Lock */
786         if (what == F_UNLCK)
787         {
788                 /* Unlock it, Ignore errors */
789                 (void)flock(fd, LOCK_UN);
790         }
791
792         /* Lock */
793         else
794         {
795                 /* Lock the score file */
796                 if (flock(fd, LOCK_EX) != 0) return (1);
797         }
798
799 #  endif
800
801 # endif
802
803 #endif
804
805         /* Success */
806         return (0);
807 }
808
809
810 /*
811  * Hack -- attempt to seek on a file descriptor
812  */
813 errr fd_seek(int fd, huge n)
814 {
815         huge p;
816
817         /* Verify fd */
818         if (fd < 0) return (-1);
819
820         /* Seek to the given position */
821         p = lseek(fd, n, SEEK_SET);
822
823         /* Failure */
824         if (p != n) return (1);
825
826         /* Success */
827         return (0);
828 }
829
830
831 /*
832  * Hack -- attempt to truncate a file descriptor
833  */
834 errr fd_chop(int fd, huge n)
835 {
836         /* XXX XXX */
837         n = n ? n : 0;
838
839         /* Verify the fd */
840         if (fd < 0) return (-1);
841
842 #if defined(SUNOS) || defined(ULTRIX) || defined(NeXT)
843         /* Truncate */
844         ftruncate(fd, n);
845 #endif
846
847         /* Success */
848         return (0);
849 }
850
851
852 /*
853  * Hack -- attempt to read data from a file descriptor
854  */
855 errr fd_read(int fd, char *buf, huge n)
856 {
857         /* Verify the fd */
858         if (fd < 0) return (-1);
859
860 #ifndef SET_UID
861
862         /* Read pieces */
863         while (n >= 16384)
864         {
865                 /* Read a piece */
866                 if (read(fd, buf, 16384) != 16384) return (1);
867
868                 /* Shorten the task */
869                 buf += 16384;
870
871                 /* Shorten the task */
872                 n -= 16384;
873         }
874
875 #endif
876
877         /* Read the final piece */
878         if (read(fd, buf, n) != (int)n) return (1);
879
880         /* Success */
881         return (0);
882 }
883
884
885 /*
886  * Hack -- Attempt to write data to a file descriptor
887  */
888 errr fd_write(int fd, cptr buf, huge n)
889 {
890         /* Verify the fd */
891         if (fd < 0) return (-1);
892
893 #ifndef SET_UID
894
895         /* Write pieces */
896         while (n >= 16384)
897         {
898                 /* Write a piece */
899                 if (write(fd, buf, 16384) != 16384) return (1);
900
901                 /* Shorten the task */
902                 buf += 16384;
903
904                 /* Shorten the task */
905                 n -= 16384;
906         }
907
908 #endif
909
910         /* Write the final piece */
911         if (write(fd, buf, n) != (int)n) return (1);
912
913         /* Success */
914         return (0);
915 }
916
917
918 /*
919  * Hack -- attempt to close a file descriptor
920  */
921 errr fd_close(int fd)
922 {
923         /* Verify the fd */
924         if (fd < 0) return (-1);
925
926         /* Close */
927         (void)close(fd);
928
929         /* XXX XXX XXX */
930         return (0);
931 }
932
933
934 #endif /* ACORN */
935
936
937
938
939 /*
940  * XXX XXX XXX Important note about "colors" XXX XXX XXX
941  *
942  * The "TERM_*" color definitions list the "composition" of each
943  * "Angband color" in terms of "quarters" of each of the three color
944  * components (Red, Green, Blue), for example, TERM_UMBER is defined
945  * as 2/4 Red, 1/4 Green, 0/4 Blue.
946  *
947  * The following info is from "Torbjorn Lindgren" (see "main-xaw.c").
948  *
949  * These values are NOT gamma-corrected.  On most machines (with the
950  * Macintosh being an important exception), you must "gamma-correct"
951  * the given values, that is, "correct for the intrinsic non-linearity
952  * of the phosphor", by converting the given intensity levels based
953  * on the "gamma" of the target screen, which is usually 1.7 (or 1.5).
954  *
955  * The actual formula for conversion is unknown to me at this time,
956  * but you can use the table below for the most common gamma values.
957  *
958  * So, on most machines, simply convert the values based on the "gamma"
959  * of the target screen, which is usually in the range 1.5 to 1.7, and
960  * usually is closest to 1.7.  The converted value for each of the five
961  * different "quarter" values is given below:
962  *
963  *  Given     Gamma 1.0       Gamma 1.5       Gamma 1.7     Hex 1.7
964  *  -----       ----            ----            ----          ---
965  *   0/4        0.00            0.00            0.00          #00
966  *   1/4        0.25            0.27            0.28          #47
967  *   2/4        0.50            0.55            0.56          #8f
968  *   3/4        0.75            0.82            0.84          #d7
969  *   4/4        1.00            1.00            1.00          #ff
970  *
971  * Note that some machines (i.e. most IBM machines) are limited to a
972  * hard-coded set of colors, and so the information above is useless.
973  *
974  * Also, some machines are limited to a pre-determined set of colors,
975  * for example, the IBM can only display 16 colors, and only 14 of
976  * those colors resemble colors used by Angband, and then only when
977  * you ignore the fact that "Slate" and "cyan" are not really matches,
978  * so on the IBM, we use "orange" for both "Umber", and "Light Umber"
979  * in addition to the obvious "Orange", since by combining all of the
980  * "indeterminate" colors into a single color, the rest of the colors
981  * are left with "meaningful" values.
982  */
983
984
985 /*
986  * Move the cursor
987  */
988 void move_cursor(int row, int col)
989 {
990         Term_gotoxy(col, row);
991 }
992
993
994
995 /*
996  * Convert a decimal to a single digit octal number
997  */
998 static char octify(uint i)
999 {
1000         return (hexsym[i%8]);
1001 }
1002
1003 /*
1004  * Convert a decimal to a single digit hex number
1005  */
1006 static char hexify(uint i)
1007 {
1008         return (hexsym[i%16]);
1009 }
1010
1011
1012 /*
1013  * Convert a octal-digit into a decimal
1014  */
1015 static int deoct(char c)
1016 {
1017         if (isdigit(c)) return (D2I(c));
1018         return (0);
1019 }
1020
1021 /*
1022  * Convert a hexidecimal-digit into a decimal
1023  */
1024 static int dehex(char c)
1025 {
1026         if (isdigit(c)) return (D2I(c));
1027         if (islower(c)) return (A2I(c) + 10);
1028         if (isupper(c)) return (A2I(tolower(c)) + 10);
1029         return (0);
1030 }
1031
1032
1033 static int my_stricmp(cptr a, cptr b)
1034 {
1035         cptr s1, s2;
1036         char z1, z2;
1037
1038         /* Scan the strings */
1039         for (s1 = a, s2 = b; TRUE; s1++, s2++)
1040         {
1041                 z1 = FORCEUPPER(*s1);
1042                 z2 = FORCEUPPER(*s2);
1043                 if (z1 < z2) return (-1);
1044                 if (z1 > z2) return (1);
1045                 if (!z1) return (0);
1046         }
1047 }
1048
1049 static int my_strnicmp(cptr a, cptr b, int n)
1050 {
1051         cptr s1, s2;
1052         char z1, z2;
1053
1054         /* Scan the strings */
1055         for (s1 = a, s2 = b; n > 0; s1++, s2++, n--)
1056         {
1057                 z1 = FORCEUPPER(*s1);
1058                 z2 = FORCEUPPER(*s2);
1059                 if (z1 < z2) return (-1);
1060                 if (z1 > z2) return (1);
1061                 if (!z1) return (0);
1062         }
1063         return 0;
1064 }
1065
1066
1067 static void trigger_text_to_ascii(char **bufptr, cptr *strptr)
1068 {
1069         char *s = *bufptr;
1070         cptr str = *strptr;
1071         bool mod_status[MAX_MACRO_MOD];
1072
1073         int i, len = 0;
1074         int shiftstatus = 0;
1075         cptr key_code;
1076
1077         if (macro_template == NULL)
1078                 return;
1079         
1080         for (i = 0; macro_modifier_chr[i]; i++)
1081                 mod_status[i] = FALSE;
1082         str++;
1083
1084         /* Examine modifier keys */
1085         while (1)
1086         {
1087                 for (i=0; macro_modifier_chr[i]; i++)
1088                 {
1089                         len = strlen(macro_modifier_name[i]);
1090                         
1091                         if(!my_strnicmp(str, macro_modifier_name[i], len))
1092                                 break;
1093                 }
1094                 if (!macro_modifier_chr[i]) break;
1095                 str += len;
1096                 mod_status[i] = TRUE;
1097                 if ('S' == macro_modifier_chr[i])
1098                         shiftstatus = 1;
1099         }
1100         for (i = 0; i < max_macrotrigger; i++)
1101         {
1102                 len = strlen(macro_trigger_name[i]);
1103                 if (!my_strnicmp(str, macro_trigger_name[i], len) && ']' == str[len])
1104                 {
1105                         /* a trigger name found */
1106                         break;
1107                 }
1108         }
1109
1110         /* Invalid trigger name? */
1111         if (i == max_macrotrigger)
1112         {
1113                 str = my_strchr(str, ']');
1114                 if (str)
1115                 {
1116                         *s++ = (char)31;
1117                         *s++ = '\r';
1118                         *bufptr = s;
1119                         *strptr = str; /* where **strptr == ']' */
1120                 }
1121                 return;
1122         }
1123         key_code = macro_trigger_keycode[shiftstatus][i];
1124         str += len;
1125
1126         *s++ = (char)31;
1127         for (i = 0; macro_template[i]; i++)
1128         {
1129                 char ch = macro_template[i];
1130                 int j;
1131
1132                 switch(ch)
1133                 {
1134                 case '&':
1135                         for (j = 0; macro_modifier_chr[j]; j++) {
1136                                 if (mod_status[j])
1137                                         *s++ = macro_modifier_chr[j];
1138                         }
1139                         break;
1140                 case '#':
1141                         strcpy(s, key_code);
1142                         s += strlen(key_code);
1143                         break;
1144                 default:
1145                         *s++ = ch;
1146                         break;
1147                 }
1148         }
1149         *s++ = '\r';
1150
1151         *bufptr = s;
1152         *strptr = str; /* where **strptr == ']' */
1153         return;
1154 }
1155
1156
1157 /*
1158  * Hack -- convert a printable string into real ascii
1159  *
1160  * I have no clue if this function correctly handles, for example,
1161  * parsing "\xFF" into a (signed) char.  Whoever thought of making
1162  * the "sign" of a "char" undefined is a complete moron.  Oh well.
1163  */
1164 void text_to_ascii(char *buf, cptr str)
1165 {
1166         char *s = buf;
1167
1168         /* Analyze the "ascii" string */
1169         while (*str)
1170         {
1171                 /* Backslash codes */
1172                 if (*str == '\\')
1173                 {
1174                         /* Skip the backslash */
1175                         str++;
1176
1177                         /* Paranoia */
1178                         if (!(*str)) break;
1179
1180                         /* Macro Trigger */
1181                         if (*str == '[')
1182                         {
1183                                 trigger_text_to_ascii(&s, &str);
1184                         }
1185                         else
1186
1187                         /* Hex-mode XXX */
1188                         if (*str == 'x')
1189                         {
1190                                 *s = 16 * dehex(*++str);
1191                                 *s++ += dehex(*++str);
1192                         }
1193
1194                         /* Hack -- simple way to specify "backslash" */
1195                         else if (*str == '\\')
1196                         {
1197                                 *s++ = '\\';
1198                         }
1199
1200                         /* Hack -- simple way to specify "caret" */
1201                         else if (*str == '^')
1202                         {
1203                                 *s++ = '^';
1204                         }
1205
1206                         /* Hack -- simple way to specify "space" */
1207                         else if (*str == 's')
1208                         {
1209                                 *s++ = ' ';
1210                         }
1211
1212                         /* Hack -- simple way to specify Escape */
1213                         else if (*str == 'e')
1214                         {
1215                                 *s++ = ESCAPE;
1216                         }
1217
1218                         /* Backspace */
1219                         else if (*str == 'b')
1220                         {
1221                                 *s++ = '\b';
1222                         }
1223
1224                         /* Newline */
1225                         else if (*str == 'n')
1226                         {
1227                                 *s++ = '\n';
1228                         }
1229
1230                         /* Return */
1231                         else if (*str == 'r')
1232                         {
1233                                 *s++ = '\r';
1234                         }
1235
1236                         /* Tab */
1237                         else if (*str == 't')
1238                         {
1239                                 *s++ = '\t';
1240                         }
1241
1242                         /* Octal-mode */
1243                         else if (*str == '0')
1244                         {
1245                                 *s = 8 * deoct(*++str);
1246                                 *s++ += deoct(*++str);
1247                         }
1248
1249                         /* Octal-mode */
1250                         else if (*str == '1')
1251                         {
1252                                 *s = 64 + 8 * deoct(*++str);
1253                                 *s++ += deoct(*++str);
1254                         }
1255
1256                         /* Octal-mode */
1257                         else if (*str == '2')
1258                         {
1259                                 *s = 64 * 2 + 8 * deoct(*++str);
1260                                 *s++ += deoct(*++str);
1261                         }
1262
1263                         /* Octal-mode */
1264                         else if (*str == '3')
1265                         {
1266                                 *s = 64 * 3 + 8 * deoct(*++str);
1267                                 *s++ += deoct(*++str);
1268                         }
1269
1270                         /* Skip the final char */
1271                         str++;
1272                 }
1273
1274                 /* Normal Control codes */
1275                 else if (*str == '^')
1276                 {
1277                         str++;
1278                         *s++ = (*str++ & 037);
1279                 }
1280
1281                 /* Normal chars */
1282                 else
1283                 {
1284                         *s++ = *str++;
1285                 }
1286         }
1287
1288         /* Terminate */
1289         *s = '\0';
1290 }
1291
1292
1293 static bool trigger_ascii_to_text(char **bufptr, cptr *strptr)
1294 {
1295         char *s = *bufptr;
1296         cptr str = *strptr;
1297         char key_code[100];
1298         int i;
1299         cptr tmp;
1300
1301         if (macro_template == NULL)
1302                 return FALSE;
1303
1304         *s++ = '\\';
1305         *s++ = '[';
1306
1307         for (i = 0; macro_template[i]; i++)
1308         {
1309                 int j;
1310                 char ch = macro_template[i];
1311
1312                 switch(ch)
1313                 {
1314                 case '&':
1315                         while ((tmp = my_strchr(macro_modifier_chr, *str)))
1316                         {
1317                                 j = (int)(tmp - macro_modifier_chr);
1318                                 tmp = macro_modifier_name[j];
1319                                 while(*tmp) *s++ = *tmp++;
1320                                 str++;
1321                         }
1322                         break;
1323                 case '#':
1324                         for (j = 0; *str && *str != '\r'; j++)
1325                                 key_code[j] = *str++;
1326                         key_code[j] = '\0';
1327                         break;
1328                 default:
1329                         if (ch != *str) return FALSE;
1330                         str++;
1331                 }
1332         }
1333         if (*str++ != '\r') return FALSE;
1334
1335         for (i = 0; i < max_macrotrigger; i++)
1336         {
1337                 if (!my_stricmp(key_code, macro_trigger_keycode[0][i])
1338                     || !my_stricmp(key_code, macro_trigger_keycode[1][i]))
1339                         break;
1340         }
1341         if (i == max_macrotrigger)
1342                 return FALSE;
1343
1344         tmp = macro_trigger_name[i];
1345         while (*tmp) *s++ = *tmp++;
1346
1347         *s++ = ']';
1348         
1349         *bufptr = s;
1350         *strptr = str;
1351         return TRUE;
1352 }
1353
1354
1355 /*
1356  * Hack -- convert a string into a printable form
1357  */
1358 void ascii_to_text(char *buf, cptr str)
1359 {
1360         char *s = buf;
1361
1362         /* Analyze the "ascii" string */
1363         while (*str)
1364         {
1365                 byte i = (byte)(*str++);
1366
1367                 /* Macro Trigger */
1368                 if (i == 31)
1369                 {
1370                         if(!trigger_ascii_to_text(&s, &str))
1371                         {
1372                                 *s++ = '^';
1373                                 *s++ = '_';
1374                         }
1375                 }
1376                 else
1377
1378                 if (i == ESCAPE)
1379                 {
1380                         *s++ = '\\';
1381                         *s++ = 'e';
1382                 }
1383                 else if (i == ' ')
1384                 {
1385                         *s++ = '\\';
1386                         *s++ = 's';
1387                 }
1388                 else if (i == '\b')
1389                 {
1390                         *s++ = '\\';
1391                         *s++ = 'b';
1392                 }
1393                 else if (i == '\t')
1394                 {
1395                         *s++ = '\\';
1396                         *s++ = 't';
1397                 }
1398                 else if (i == '\n')
1399                 {
1400                         *s++ = '\\';
1401                         *s++ = 'n';
1402                 }
1403                 else if (i == '\r')
1404                 {
1405                         *s++ = '\\';
1406                         *s++ = 'r';
1407                 }
1408                 else if (i == '^')
1409                 {
1410                         *s++ = '\\';
1411                         *s++ = '^';
1412                 }
1413                 else if (i == '\\')
1414                 {
1415                         *s++ = '\\';
1416                         *s++ = '\\';
1417                 }
1418                 else if (i < 32)
1419                 {
1420                         *s++ = '^';
1421                         *s++ = i + 64;
1422                 }
1423                 else if (i < 127)
1424                 {
1425                         *s++ = i;
1426                 }
1427                 else if (i < 64)
1428                 {
1429                         *s++ = '\\';
1430                         *s++ = '0';
1431                         *s++ = octify(i / 8);
1432                         *s++ = octify(i % 8);
1433                 }
1434                 else
1435                 {
1436                         *s++ = '\\';
1437                         *s++ = 'x';
1438                         *s++ = hexify(i / 16);
1439                         *s++ = hexify(i % 16);
1440                 }
1441         }
1442
1443         /* Terminate */
1444         *s = '\0';
1445 }
1446
1447
1448
1449 /*
1450  * The "macro" package
1451  *
1452  * Functions are provided to manipulate a collection of macros, each
1453  * of which has a trigger pattern string and a resulting action string
1454  * and a small set of flags.
1455  */
1456
1457
1458
1459 /*
1460  * Determine if any macros have ever started with a given character.
1461  */
1462 static bool macro__use[256];
1463
1464
1465 /*
1466  * Find the macro (if any) which exactly matches the given pattern
1467  */
1468 sint macro_find_exact(cptr pat)
1469 {
1470         int i;
1471
1472         /* Nothing possible */
1473         if (!macro__use[(byte)(pat[0])])
1474         {
1475                 return (-1);
1476         }
1477
1478         /* Scan the macros */
1479         for (i = 0; i < macro__num; ++i)
1480         {
1481                 /* Skip macros which do not match the pattern */
1482                 if (!streq(macro__pat[i], pat)) continue;
1483
1484                 /* Found one */
1485                 return (i);
1486         }
1487
1488         /* No matches */
1489         return (-1);
1490 }
1491
1492
1493 /*
1494  * Find the first macro (if any) which contains the given pattern
1495  */
1496 static sint macro_find_check(cptr pat)
1497 {
1498         int i;
1499
1500         /* Nothing possible */
1501         if (!macro__use[(byte)(pat[0])])
1502         {
1503                 return (-1);
1504         }
1505
1506         /* Scan the macros */
1507         for (i = 0; i < macro__num; ++i)
1508         {
1509                 /* Skip macros which do not contain the pattern */
1510                 if (!prefix(macro__pat[i], pat)) continue;
1511
1512                 /* Found one */
1513                 return (i);
1514         }
1515
1516         /* Nothing */
1517         return (-1);
1518 }
1519
1520
1521 /*
1522  * Find the first macro (if any) which contains the given pattern and more
1523  */
1524 static sint macro_find_maybe(cptr pat)
1525 {
1526         int i;
1527
1528         /* Nothing possible */
1529         if (!macro__use[(byte)(pat[0])])
1530         {
1531                 return (-1);
1532         }
1533
1534         /* Scan the macros */
1535         for (i = 0; i < macro__num; ++i)
1536         {
1537                 /* Skip macros which do not contain the pattern */
1538                 if (!prefix(macro__pat[i], pat)) continue;
1539
1540                 /* Skip macros which exactly match the pattern XXX XXX */
1541                 if (streq(macro__pat[i], pat)) continue;
1542
1543                 /* Found one */
1544                 return (i);
1545         }
1546
1547         /* Nothing */
1548         return (-1);
1549 }
1550
1551
1552 /*
1553  * Find the longest macro (if any) which starts with the given pattern
1554  */
1555 static sint macro_find_ready(cptr pat)
1556 {
1557         int i, t, n = -1, s = -1;
1558
1559         /* Nothing possible */
1560         if (!macro__use[(byte)(pat[0])])
1561         {
1562                 return (-1);
1563         }
1564
1565         /* Scan the macros */
1566         for (i = 0; i < macro__num; ++i)
1567         {
1568                 /* Skip macros which are not contained by the pattern */
1569                 if (!prefix(pat, macro__pat[i])) continue;
1570
1571                 /* Obtain the length of this macro */
1572                 t = strlen(macro__pat[i]);
1573
1574                 /* Only track the "longest" pattern */
1575                 if ((n >= 0) && (s > t)) continue;
1576
1577                 /* Track the entry */
1578                 n = i;
1579                 s = t;
1580         }
1581
1582         /* Result */
1583         return (n);
1584 }
1585
1586
1587 /*
1588  * Add a macro definition (or redefinition).
1589  *
1590  * We should use "act == NULL" to "remove" a macro, but this might make it
1591  * impossible to save the "removal" of a macro definition.  XXX XXX XXX
1592  *
1593  * We should consider refusing to allow macros which contain existing macros,
1594  * or which are contained in existing macros, because this would simplify the
1595  * macro analysis code.  XXX XXX XXX
1596  *
1597  * We should consider removing the "command macro" crap, and replacing it
1598  * with some kind of "powerful keymap" ability, but this might make it hard
1599  * to change the "roguelike" option from inside the game.  XXX XXX XXX
1600  */
1601 errr macro_add(cptr pat, cptr act)
1602 {
1603         int n;
1604
1605
1606         /* Paranoia -- require data */
1607         if (!pat || !act) return (-1);
1608
1609
1610         /* Look for any existing macro */
1611         n = macro_find_exact(pat);
1612
1613         /* Replace existing macro */
1614         if (n >= 0)
1615         {
1616                 /* Free the old macro action */
1617                 string_free(macro__act[n]);
1618         }
1619
1620         /* Create a new macro */
1621         else
1622         {
1623                 /* Acquire a new index */
1624                 n = macro__num++;
1625
1626                 /* Save the pattern */
1627                 macro__pat[n] = string_make(pat);
1628         }
1629
1630         /* Save the action */
1631         macro__act[n] = string_make(act);
1632
1633         /* Efficiency */
1634         macro__use[(byte)(pat[0])] = TRUE;
1635
1636         /* Success */
1637         return (0);
1638 }
1639
1640
1641
1642 /*
1643  * Local variable -- we are inside a "macro action"
1644  *
1645  * Do not match any macros until "ascii 30" is found.
1646  */
1647 static bool parse_macro = FALSE;
1648
1649 /*
1650  * Local variable -- we are inside a "macro trigger"
1651  *
1652  * Strip all keypresses until a low ascii value is found.
1653  */
1654 static bool parse_under = FALSE;
1655
1656
1657 /*
1658  * Flush all input chars.  Actually, remember the flush,
1659  * and do a "special flush" before the next "inkey()".
1660  *
1661  * This is not only more efficient, but also necessary to make sure
1662  * that various "inkey()" codes are not "lost" along the way.
1663  */
1664 void flush(void)
1665 {
1666         /* Do it later */
1667         inkey_xtra = TRUE;
1668 }
1669
1670
1671 /*
1672  * Flush the screen, make a noise
1673  */
1674 void bell(void)
1675 {
1676         /* Mega-Hack -- Flush the output */
1677         Term_fresh();
1678
1679         /* Make a bell noise (if allowed) */
1680         if (ring_bell) Term_xtra(TERM_XTRA_NOISE, 0);
1681
1682         /* Flush the input (later!) */
1683         flush();
1684 }
1685
1686
1687 /*
1688  * Hack -- Make a (relevant?) sound
1689  */
1690 void sound(int val)
1691 {
1692         /* No sound */
1693         if (!use_sound) return;
1694
1695         /* Make a sound (if allowed) */
1696         Term_xtra(TERM_XTRA_SOUND, val);
1697 }
1698
1699
1700
1701 /*
1702  * Helper function called only from "inkey()"
1703  *
1704  * This function does almost all of the "macro" processing.
1705  *
1706  * We use the "Term_key_push()" function to handle "failed" macros, as well
1707  * as "extra" keys read in while choosing the proper macro, and also to hold
1708  * the action for the macro, plus a special "ascii 30" character indicating
1709  * that any macro action in progress is complete.  Embedded macros are thus
1710  * illegal, unless a macro action includes an explicit "ascii 30" character,
1711  * which would probably be a massive hack, and might break things.
1712  *
1713  * Only 500 (0+1+2+...+29+30) milliseconds may elapse between each key in
1714  * the macro trigger sequence.  If a key sequence forms the "prefix" of a
1715  * macro trigger, 500 milliseconds must pass before the key sequence is
1716  * known not to be that macro trigger.  XXX XXX XXX
1717  */
1718 static char inkey_aux(void)
1719 {
1720         int k = 0, n, p = 0, w = 0;
1721
1722         char ch;
1723
1724         cptr pat, act;
1725
1726         char *buf = inkey_macro_trigger_string;
1727
1728         /* Hack : ¥­¡¼ÆþÎÏÂÔ¤Á¤Ç»ß¤Þ¤Ã¤Æ¤¤¤ë¤Î¤Ç¡¢Î®¤ì¤¿¹Ô¤Îµ­²±¤ÏÉÔÍס£ */
1729         num_more = 0;
1730
1731         if (parse_macro)
1732         {
1733                 /* Scan next keypress from macro action */
1734                 if (Term_inkey(&ch, FALSE, TRUE))
1735                 {
1736                         /* Over-flowed? Cancel macro action */
1737                         parse_macro = FALSE;
1738                 }
1739         }
1740         else
1741         {
1742                 /* Wait for a keypress */
1743                 (void) (Term_inkey(&ch, TRUE, TRUE));
1744         }
1745
1746
1747         /* End "macro action" */
1748         if (ch == 30) parse_macro = FALSE;
1749
1750         /* Inside "macro action" */
1751         if (ch == 30) return (ch);
1752
1753         /* Inside "macro action" */
1754         if (parse_macro) return (ch);
1755
1756         /* Inside "macro trigger" */
1757         if (parse_under) return (ch);
1758
1759         /* Save the first key, advance */
1760         buf[p++] = ch;
1761         buf[p] = '\0';
1762
1763
1764         /* Check for possible macro */
1765         k = macro_find_check(buf);
1766
1767         /* No macro pending */
1768         if (k < 0) return (ch);
1769
1770
1771         /* Wait for a macro, or a timeout */
1772         while (TRUE)
1773         {
1774                 /* Check for pending macro */
1775                 k = macro_find_maybe(buf);
1776
1777                 /* No macro pending */
1778                 if (k < 0) break;
1779
1780                 /* Check for (and remove) a pending key */
1781                 if (0 == Term_inkey(&ch, FALSE, TRUE))
1782                 {
1783                         /* Append the key */
1784                         buf[p++] = ch;
1785                         buf[p] = '\0';
1786
1787                         /* Restart wait */
1788                         w = 0;
1789                 }
1790
1791                 /* No key ready */
1792                 else
1793                 {
1794                         /* Increase "wait" */
1795                         w += 10;
1796
1797                         /* Excessive delay */
1798                         if (w >= 100) break;
1799
1800                         /* Delay */
1801                         Term_xtra(TERM_XTRA_DELAY, w);
1802                 }
1803         }
1804
1805
1806         /* Check for available macro */
1807         k = macro_find_ready(buf);
1808
1809         /* No macro available */
1810         if (k < 0)
1811         {
1812                 /* Push all the keys back on the queue */
1813                 while (p > 0)
1814                 {
1815                         /* Push the key, notice over-flow */
1816                         if (Term_key_push(buf[--p])) return (0);
1817                 }
1818
1819                 /* Wait for (and remove) a pending key */
1820                 (void)Term_inkey(&ch, TRUE, TRUE);
1821
1822                 /* Return the key */
1823                 return (ch);
1824         }
1825
1826
1827         /* Get the pattern */
1828         pat = macro__pat[k];
1829
1830         /* Get the length of the pattern */
1831         n = strlen(pat);
1832
1833         /* Push the "extra" keys back on the queue */
1834         while (p > n)
1835         {
1836                 /* Push the key, notice over-flow */
1837                 if (Term_key_push(buf[--p])) return (0);
1838         }
1839
1840
1841         /* Begin "macro action" */
1842         parse_macro = TRUE;
1843
1844         /* Push the "end of macro action" key */
1845         if (Term_key_push(30)) return (0);
1846
1847
1848         /* Access the macro action */
1849         act = macro__act[k];
1850
1851         /* Get the length of the action */
1852         n = strlen(act);
1853
1854         /* Push the macro "action" onto the key queue */
1855         while (n > 0)
1856         {
1857                 /* Push the key, notice over-flow */
1858                 if (Term_key_push(act[--n])) return (0);
1859         }
1860
1861
1862         /* Hack -- Force "inkey()" to call us again */
1863         return (0);
1864 }
1865
1866
1867 /*
1868  * Cancel macro action on the queue
1869  */
1870 static void forget_macro_action(void)
1871 {
1872         if (!parse_macro) return;
1873
1874         /* Drop following macro action string */
1875         while (TRUE)
1876         {
1877                 char ch;
1878
1879                 /* End loop if no key ready */
1880                 if (Term_inkey(&ch, FALSE, TRUE)) break;
1881
1882                 /* End loop if no key ready */
1883                 if (ch == 0) break;
1884
1885                 /* End of "macro action" */
1886                 if (ch == 30) break;
1887         }
1888
1889         /* No longer inside "macro action" */
1890         parse_macro = FALSE;
1891 }
1892
1893
1894 /*
1895  * Mega-Hack -- special "inkey_next" pointer.  XXX XXX XXX
1896  *
1897  * This special pointer allows a sequence of keys to be "inserted" into
1898  * the stream of keys returned by "inkey()".  This key sequence will not
1899  * trigger any macros, and cannot be bypassed by the Borg.  It is used
1900  * in Angband to handle "keymaps".
1901  */
1902 static cptr inkey_next = NULL;
1903
1904
1905 #ifdef ALLOW_BORG
1906
1907 /*
1908  * Mega-Hack -- special "inkey_hack" hook.  XXX XXX XXX
1909  *
1910  * This special function hook allows the "Borg" (see elsewhere) to take
1911  * control of the "inkey()" function, and substitute in fake keypresses.
1912  */
1913 char (*inkey_hack)(int flush_first) = NULL;
1914
1915 #endif /* ALLOW_BORG */
1916
1917
1918
1919 /*
1920  * Get a keypress from the user.
1921  *
1922  * This function recognizes a few "global parameters".  These are variables
1923  * which, if set to TRUE before calling this function, will have an effect
1924  * on this function, and which are always reset to FALSE by this function
1925  * before this function returns.  Thus they function just like normal
1926  * parameters, except that most calls to this function can ignore them.
1927  *
1928  * If "inkey_xtra" is TRUE, then all pending keypresses will be flushed,
1929  * and any macro processing in progress will be aborted.  This flag is
1930  * set by the "flush()" function, which does not actually flush anything
1931  * itself, but rather, triggers delayed input flushing via "inkey_xtra".
1932  *
1933  * If "inkey_scan" is TRUE, then we will immediately return "zero" if no
1934  * keypress is available, instead of waiting for a keypress.
1935  *
1936  * If "inkey_base" is TRUE, then all macro processing will be bypassed.
1937  * If "inkey_base" and "inkey_scan" are both TRUE, then this function will
1938  * not return immediately, but will wait for a keypress for as long as the
1939  * normal macro matching code would, allowing the direct entry of macro
1940  * triggers.  The "inkey_base" flag is extremely dangerous!
1941  *
1942  * If "inkey_flag" is TRUE, then we will assume that we are waiting for a
1943  * normal command, and we will only show the cursor if "hilite_player" is
1944  * TRUE (or if the player is in a store), instead of always showing the
1945  * cursor.  The various "main-xxx.c" files should avoid saving the game
1946  * in response to a "menu item" request unless "inkey_flag" is TRUE, to
1947  * prevent savefile corruption.
1948  *
1949  * If we are waiting for a keypress, and no keypress is ready, then we will
1950  * refresh (once) the window which was active when this function was called.
1951  *
1952  * Note that "back-quote" is automatically converted into "escape" for
1953  * convenience on machines with no "escape" key.  This is done after the
1954  * macro matching, so the user can still make a macro for "backquote".
1955  *
1956  * Note the special handling of "ascii 30" (ctrl-caret, aka ctrl-shift-six)
1957  * and "ascii 31" (ctrl-underscore, aka ctrl-shift-minus), which are used to
1958  * provide support for simple keyboard "macros".  These keys are so strange
1959  * that their loss as normal keys will probably be noticed by nobody.  The
1960  * "ascii 30" key is used to indicate the "end" of a macro action, which
1961  * allows recursive macros to be avoided.  The "ascii 31" key is used by
1962  * some of the "main-xxx.c" files to introduce macro trigger sequences.
1963  *
1964  * Hack -- we use "ascii 29" (ctrl-right-bracket) as a special "magic" key,
1965  * which can be used to give a variety of "sub-commands" which can be used
1966  * any time.  These sub-commands could include commands to take a picture of
1967  * the current screen, to start/stop recording a macro action, etc.
1968  *
1969  * If "angband_term[0]" is not active, we will make it active during this
1970  * function, so that the various "main-xxx.c" files can assume that input
1971  * is only requested (via "Term_inkey()") when "angband_term[0]" is active.
1972  *
1973  * Mega-Hack -- This function is used as the entry point for clearing the
1974  * "signal_count" variable, and of the "character_saved" variable.
1975  *
1976  * Hack -- Note the use of "inkey_next" to allow "keymaps" to be processed.
1977  *
1978  * Mega-Hack -- Note the use of "inkey_hack" to allow the "Borg" to steal
1979  * control of the keyboard from the user.
1980  */
1981 char inkey(void)
1982 {
1983         int v;
1984         char kk;
1985         char ch = 0;
1986         bool done = FALSE;
1987         term *old = Term;
1988
1989         /* Hack -- Use the "inkey_next" pointer */
1990         if (inkey_next && *inkey_next && !inkey_xtra)
1991         {
1992                 /* Get next character, and advance */
1993                 ch = *inkey_next++;
1994
1995                 /* Cancel the various "global parameters" */
1996                 inkey_base = inkey_xtra = inkey_flag = inkey_scan = FALSE;
1997
1998                 /* Accept result */
1999                 return (ch);
2000         }
2001
2002         /* Forget pointer */
2003         inkey_next = NULL;
2004
2005
2006 #ifdef ALLOW_BORG
2007
2008         /* Mega-Hack -- Use the special hook */
2009         if (inkey_hack && ((ch = (*inkey_hack)(inkey_xtra)) != 0))
2010         {
2011                 /* Cancel the various "global parameters" */
2012                 inkey_base = inkey_xtra = inkey_flag = inkey_scan = FALSE;
2013
2014                 /* Accept result */
2015                 return (ch);
2016         }
2017
2018 #endif /* ALLOW_BORG */
2019
2020
2021         /* Hack -- handle delayed "flush()" */
2022         if (inkey_xtra)
2023         {
2024                 /* End "macro action" */
2025                 parse_macro = FALSE;
2026
2027                 /* End "macro trigger" */
2028                 parse_under = FALSE;
2029
2030                 /* Forget old keypresses */
2031                 Term_flush();
2032         }
2033
2034
2035         /* Access cursor state */
2036         (void)Term_get_cursor(&v);
2037
2038         /* Show the cursor if waiting, except sometimes in "command" mode */
2039         if (!inkey_scan && (!inkey_flag || hilite_player || character_icky))
2040         {
2041                 /* Show the cursor */
2042                 (void)Term_set_cursor(1);
2043         }
2044
2045
2046         /* Hack -- Activate main screen */
2047         Term_activate(angband_term[0]);
2048
2049
2050         /* Get a key */
2051         while (!ch)
2052         {
2053                 /* Hack -- Handle "inkey_scan" */
2054                 if (!inkey_base && inkey_scan &&
2055                         (0 != Term_inkey(&kk, FALSE, FALSE)))
2056                 {
2057                         break;
2058                 }
2059
2060
2061                 /* Hack -- Flush output once when no key ready */
2062                 if (!done && (0 != Term_inkey(&kk, FALSE, FALSE)))
2063                 {
2064                         /* Hack -- activate proper term */
2065                         Term_activate(old);
2066
2067                         /* Flush output */
2068                         Term_fresh();
2069
2070                         /* Hack -- activate main screen */
2071                         Term_activate(angband_term[0]);
2072
2073                         /* Mega-Hack -- reset saved flag */
2074                         character_saved = FALSE;
2075
2076                         /* Mega-Hack -- reset signal counter */
2077                         signal_count = 0;
2078
2079                         /* Only once */
2080                         done = TRUE;
2081                 }
2082
2083
2084                 /* Hack -- Handle "inkey_base" */
2085                 if (inkey_base)
2086                 {
2087                         int w = 0;
2088
2089                         /* Wait forever */
2090                         if (!inkey_scan)
2091                         {
2092                                 /* Wait for (and remove) a pending key */
2093                                 if (0 == Term_inkey(&ch, TRUE, TRUE))
2094                                 {
2095                                         /* Done */
2096                                         break;
2097                                 }
2098
2099                                 /* Oops */
2100                                 break;
2101                         }
2102
2103                         /* Wait */
2104                         while (TRUE)
2105                         {
2106                                 /* Check for (and remove) a pending key */
2107                                 if (0 == Term_inkey(&ch, FALSE, TRUE))
2108                                 {
2109                                         /* Done */
2110                                         break;
2111                                 }
2112
2113                                 /* No key ready */
2114                                 else
2115                                 {
2116                                         /* Increase "wait" */
2117                                         w += 10;
2118
2119                                         /* Excessive delay */
2120                                         if (w >= 100) break;
2121
2122                                         /* Delay */
2123                                         Term_xtra(TERM_XTRA_DELAY, w);
2124                                 }
2125                         }
2126
2127                         /* Done */
2128                         break;
2129                 }
2130
2131
2132                 /* Get a key (see above) */
2133                 ch = inkey_aux();
2134
2135
2136                 /* Handle "control-right-bracket" */
2137                 if (ch == 29)
2138                 {
2139                         /* Strip this key */
2140                         ch = 0;
2141
2142                         /* Continue */
2143                         continue;
2144                 }
2145
2146
2147                 /* Treat back-quote as escape */
2148 /*              if (ch == '`') ch = ESCAPE; */
2149
2150
2151                 /* End "macro trigger" */
2152                 if (parse_under && (ch <= 32))
2153                 {
2154                         /* Strip this key */
2155                         ch = 0;
2156
2157                         /* End "macro trigger" */
2158                         parse_under = FALSE;
2159                 }
2160
2161
2162                 /* Handle "control-caret" */
2163                 if (ch == 30)
2164                 {
2165                         /* Strip this key */
2166                         ch = 0;
2167                 }
2168
2169                 /* Handle "control-underscore" */
2170                 else if (ch == 31)
2171                 {
2172                         /* Strip this key */
2173                         ch = 0;
2174
2175                         /* Begin "macro trigger" */
2176                         parse_under = TRUE;
2177                 }
2178
2179                 /* Inside "macro trigger" */
2180                 else if (parse_under)
2181                 {
2182                         /* Strip this key */
2183                         ch = 0;
2184                 }
2185         }
2186
2187
2188         /* Hack -- restore the term */
2189         Term_activate(old);
2190
2191
2192         /* Restore the cursor */
2193         Term_set_cursor(v);
2194
2195
2196         /* Cancel the various "global parameters" */
2197         inkey_base = inkey_xtra = inkey_flag = inkey_scan = FALSE;
2198
2199         /* Return the keypress */
2200         return (ch);
2201 }
2202
2203
2204
2205
2206 /*
2207  * We use a global array for all inscriptions to reduce the memory
2208  * spent maintaining inscriptions.  Of course, it is still possible
2209  * to run out of inscription memory, especially if too many different
2210  * inscriptions are used, but hopefully this will be rare.
2211  *
2212  * We use dynamic string allocation because otherwise it is necessary
2213  * to pre-guess the amount of quark activity.  We limit the total
2214  * number of quarks, but this is much easier to "expand" as needed.
2215  *
2216  * Any two items with the same inscription will have the same "quark"
2217  * index, which should greatly reduce the need for inscription space.
2218  *
2219  * Note that "quark zero" is NULL and should not be "dereferenced".
2220  */
2221
2222 /*
2223  * Initialize the quark array
2224  */
2225 void quark_init(void)
2226 {
2227         /* Quark variables */
2228         C_MAKE(quark__str, QUARK_MAX, cptr);
2229
2230         /* Prepare first quark, which is used when quark_add() is failed */
2231         quark__str[1] = string_make("");
2232
2233         /* There is one quark (+ NULL) */
2234         quark__num = 2;
2235 }
2236
2237
2238 /*
2239  * Add a new "quark" to the set of quarks.
2240  */
2241 s16b quark_add(cptr str)
2242 {
2243         int i;
2244
2245         /* Look for an existing quark */
2246         for (i = 1; i < quark__num; i++)
2247         {
2248                 /* Check for equality */
2249                 if (streq(quark__str[i], str)) return (i);
2250         }
2251
2252         /* Return "" when no room is available */
2253         if (quark__num == QUARK_MAX) return 1;
2254
2255         /* New maximal quark */
2256         quark__num = i + 1;
2257
2258         /* Add a new quark */
2259         quark__str[i] = string_make(str);
2260
2261         /* Return the index */
2262         return (i);
2263 }
2264
2265
2266 /*
2267  * This function looks up a quark
2268  */
2269 cptr quark_str(s16b i)
2270 {
2271         cptr q;
2272
2273         /* Return NULL for an invalid index */
2274         if ((i < 1) || (i >= quark__num)) return NULL;
2275
2276         /* Access the quark */
2277         q = quark__str[i];
2278
2279         /* Return the quark */
2280         return (q);
2281 }
2282
2283
2284
2285
2286 /*
2287  * Second try for the "message" handling routines.
2288  *
2289  * Each call to "message_add(s)" will add a new "most recent" message
2290  * to the "message recall list", using the contents of the string "s".
2291  *
2292  * The messages will be stored in such a way as to maximize "efficiency",
2293  * that is, we attempt to maximize the number of sequential messages that
2294  * can be retrieved, given a limited amount of storage space.
2295  *
2296  * We keep a buffer of chars to hold the "text" of the messages, not
2297  * necessarily in "order", and an array of offsets into that buffer,
2298  * representing the actual messages.  This is made more complicated
2299  * by the fact that both the array of indexes, and the buffer itself,
2300  * are both treated as "circular arrays" for efficiency purposes, but
2301  * the strings may not be "broken" across the ends of the array.
2302  *
2303  * The "message_add()" function is rather "complex", because it must be
2304  * extremely efficient, both in space and time, for use with the Borg.
2305  */
2306
2307
2308
2309 /*
2310  * How many messages are "available"?
2311  */
2312 s16b message_num(void)
2313 {
2314         int last, next, n;
2315
2316         /* Extract the indexes */
2317         last = message__last;
2318         next = message__next;
2319
2320         /* Handle "wrap" */
2321         if (next < last) next += MESSAGE_MAX;
2322
2323         /* Extract the space */
2324         n = (next - last);
2325
2326         /* Return the result */
2327         return (n);
2328 }
2329
2330
2331
2332 /*
2333  * Recall the "text" of a saved message
2334  */
2335 cptr message_str(int age)
2336 {
2337         s16b x;
2338         s16b o;
2339         cptr s;
2340
2341         /* Forgotten messages have no text */
2342         if ((age < 0) || (age >= message_num())) return ("");
2343
2344         /* Acquire the "logical" index */
2345         x = (message__next + MESSAGE_MAX - (age + 1)) % MESSAGE_MAX;
2346
2347         /* Get the "offset" for the message */
2348         o = message__ptr[x];
2349
2350         /* Access the message text */
2351         s = &message__buf[o];
2352
2353         /* Return the message text */
2354         return (s);
2355 }
2356
2357
2358
2359 /*
2360  * Add a new message, with great efficiency
2361  */
2362 void message_add(cptr str)
2363 {
2364         int i, k, x, m, n;
2365
2366         char u[1024];
2367         char splitted1[81];
2368         cptr splitted2;
2369
2370         /*** Step 1 -- Analyze the message ***/
2371
2372         /* Hack -- Ignore "non-messages" */
2373         if (!str) return;
2374
2375         /* Message length */
2376         n = strlen(str);
2377
2378         /* Important Hack -- Ignore "long" messages */
2379         if (n >= MESSAGE_BUF / 4) return;
2380
2381         /* extra step -- split the message if n>80.   (added by Mogami) */
2382         if (n > 80) {
2383 #ifdef JP
2384           cptr t = str;
2385
2386           for (n = 0; n < 80; n++, t++)
2387             if(iskanji(*t)) {
2388               t++;
2389               n++;
2390             }
2391           if (n == 81) n = 79; /* ºÇ¸å¤Îʸ»ú¤¬´Á»úȾʬ */
2392 #else
2393           for (n = 80; n > 60; n--)
2394                   if (str[n] == ' ') break;
2395           if (n == 60)
2396                   n = 80;
2397 #endif
2398           splitted2 = str + n;
2399           strncpy(splitted1, str ,n);
2400           splitted1[n] = '\0';
2401           str = splitted1;
2402         } else {
2403           splitted2 = NULL;
2404         }
2405
2406         /*** Step 2 -- Attempt to optimize ***/
2407
2408         /* Limit number of messages to check */
2409         m = message_num();
2410
2411         k = m / 4;
2412
2413         /* Limit number of messages to check */
2414         if (k > MESSAGE_MAX / 32) k = MESSAGE_MAX / 32;
2415
2416         /* Check previous message */
2417         for (i = message__next; m; m--)
2418         {
2419                 int j = 1;
2420
2421                 char buf[1024];
2422                 char *t;
2423
2424                 cptr old;
2425
2426                 /* Back up and wrap if needed */
2427                 if (i-- == 0) i = MESSAGE_MAX - 1;
2428
2429                 /* Access the old string */
2430                 old = &message__buf[message__ptr[i]];
2431
2432                 /* Skip small messages */
2433                 if (!old) continue;
2434
2435                 strcpy(buf, old);
2436
2437                 /* Find multiple */
2438 #ifdef JP
2439  for (t = buf; *t && (*t != '<' || (*(t+1) != 'x' )); t++) 
2440      if( iskanji(*t))t++;
2441 #else
2442                 for (t = buf; *t && (*t != '<'); t++);
2443 #endif
2444
2445                 if (*t)
2446                 {
2447                         /* Message is too small */
2448                         if (strlen(buf) < 6) break;
2449
2450                         /* Drop the space */
2451                         *(t - 1) = '\0';
2452
2453                         /* Get multiplier */
2454                         j = atoi(t+2);
2455                 }
2456
2457                 /* Limit the multiplier to 1000 */
2458                 if (buf && streq(buf, str) && (j < 1000))
2459                 {
2460                         j++;
2461
2462                         /* Overwrite */
2463                         message__next = i;
2464
2465                         str = u;
2466
2467                         /* Write it out */
2468                         sprintf(u, "%s <x%d>", buf, j);
2469
2470                         /* Message length */
2471                         n = strlen(str);
2472
2473                         if (!now_message) now_message++;
2474                 }
2475                 else
2476                 {
2477                         num_more++;/*ή¤ì¤¿¹Ô¤Î¿ô¤ò¿ô¤¨¤Æ¤ª¤¯ */
2478                         now_message++;
2479                 }
2480
2481                 /* Done */
2482                 break;
2483         }
2484
2485         /* Check the last few messages (if any to count) */
2486         for (i = message__next; k; k--)
2487         {
2488                 u16b q;
2489
2490                 cptr old;
2491
2492                 /* Back up and wrap if needed */
2493                 if (i-- == 0) i = MESSAGE_MAX - 1;
2494
2495                 /* Stop before oldest message */
2496                 if (i == message__last) break;
2497
2498                 /* Extract "distance" from "head" */
2499                 q = (message__head + MESSAGE_BUF - message__ptr[i]) % MESSAGE_BUF;
2500
2501                 /* Do not optimize over large distance */
2502                 if (q > MESSAGE_BUF / 2) continue;
2503
2504                 /* Access the old string */
2505                 old = &message__buf[message__ptr[i]];
2506
2507                 /* Compare */
2508                 if (!streq(old, str)) continue;
2509
2510                 /* Get the next message index, advance */
2511                 x = message__next++;
2512
2513                 /* Handle wrap */
2514                 if (message__next == MESSAGE_MAX) message__next = 0;
2515
2516                 /* Kill last message if needed */
2517                 if (message__next == message__last) message__last++;
2518
2519                 /* Handle wrap */
2520                 if (message__last == MESSAGE_MAX) message__last = 0;
2521
2522                 /* Assign the starting address */
2523                 message__ptr[x] = message__ptr[i];
2524
2525                 /* Success */
2526                 /* return; */
2527                 goto end_of_message_add;
2528
2529         }
2530
2531
2532         /*** Step 3 -- Ensure space before end of buffer ***/
2533
2534         /* Kill messages and Wrap if needed */
2535         if (message__head + n + 1 >= MESSAGE_BUF)
2536         {
2537                 /* Kill all "dead" messages */
2538                 for (i = message__last; TRUE; i++)
2539                 {
2540                         /* Wrap if needed */
2541                         if (i == MESSAGE_MAX) i = 0;
2542
2543                         /* Stop before the new message */
2544                         if (i == message__next) break;
2545
2546                         /* Kill "dead" messages */
2547                         if (message__ptr[i] >= message__head)
2548                         {
2549                                 /* Track oldest message */
2550                                 message__last = i + 1;
2551                         }
2552                 }
2553
2554                 /* Wrap "tail" if needed */
2555                 if (message__tail >= message__head) message__tail = 0;
2556
2557                 /* Start over */
2558                 message__head = 0;
2559         }
2560
2561
2562         /*** Step 4 -- Ensure space before next message ***/
2563
2564         /* Kill messages if needed */
2565         if (message__head + n + 1 > message__tail)
2566         {
2567                 /* Grab new "tail" */
2568                 message__tail = message__head + n + 1;
2569
2570                 /* Advance tail while possible past first "nul" */
2571                 while (message__buf[message__tail-1]) message__tail++;
2572
2573                 /* Kill all "dead" messages */
2574                 for (i = message__last; TRUE; i++)
2575                 {
2576                         /* Wrap if needed */
2577                         if (i == MESSAGE_MAX) i = 0;
2578
2579                         /* Stop before the new message */
2580                         if (i == message__next) break;
2581
2582                         /* Kill "dead" messages */
2583                         if ((message__ptr[i] >= message__head) &&
2584                                 (message__ptr[i] < message__tail))
2585                         {
2586                                 /* Track oldest message */
2587                                 message__last = i + 1;
2588                         }
2589                 }
2590         }
2591
2592
2593         /*** Step 5 -- Grab a new message index ***/
2594
2595         /* Get the next message index, advance */
2596         x = message__next++;
2597
2598         /* Handle wrap */
2599         if (message__next == MESSAGE_MAX) message__next = 0;
2600
2601         /* Kill last message if needed */
2602         if (message__next == message__last) message__last++;
2603
2604         /* Handle wrap */
2605         if (message__last == MESSAGE_MAX) message__last = 0;
2606
2607
2608
2609         /*** Step 6 -- Insert the message text ***/
2610
2611         /* Assign the starting address */
2612         message__ptr[x] = message__head;
2613
2614         /* Append the new part of the message */
2615         for (i = 0; i < n; i++)
2616         {
2617                 /* Copy the message */
2618                 message__buf[message__head + i] = str[i];
2619         }
2620
2621         /* Terminate */
2622         message__buf[message__head + i] = '\0';
2623
2624         /* Advance the "head" pointer */
2625         message__head += n + 1;
2626
2627         /* recursively add splitted message (added by Mogami) */
2628  end_of_message_add:
2629         if (splitted2 != NULL)
2630           message_add(splitted2);
2631 }
2632
2633
2634
2635 /*
2636  * Hack -- flush
2637  */
2638 static void msg_flush(int x)
2639 {
2640         byte a = TERM_L_BLUE;
2641         bool nagasu = FALSE;
2642
2643         if ((auto_more && !now_damaged) || num_more < 0){
2644                 int i;
2645                 for (i = 0; i < 8; i++)
2646                 {
2647                         if (angband_term[i] && (window_flag[i] & PW_MESSAGE)) break;
2648                 }
2649                 if (i < 8)
2650                 {
2651                         if (num_more < angband_term[i]->hgt) nagasu = TRUE;
2652                 }
2653                 else
2654                 {
2655                         nagasu = TRUE;
2656                 }
2657         }
2658         now_damaged = FALSE;
2659
2660         if (!p_ptr->playing || !nagasu)
2661         {
2662                 /* Pause for response */
2663 #ifdef JP
2664                 Term_putstr(x, 0, -1, a, "-³¤¯-");
2665 #else
2666                 Term_putstr(x, 0, -1, a, "-more-");
2667 #endif
2668
2669
2670                 /* Get an acceptable keypress */
2671                 while (1)
2672                 {
2673                         int cmd = inkey();
2674                         if (cmd == ESCAPE) {
2675                             num_more = -9999; /*auto_more¤Î¤È¤­¡¢Á´¤Æή¤¹¡£ */
2676                             break;
2677                         } else if (cmd == ' ') {
2678                             num_more = 0; /*£±²èÌ̤À¤±Î®¤¹¡£ */
2679                             break;
2680                         } else if ((cmd == '\n') || (cmd == '\r')) {
2681                             num_more--; /*£±¹Ô¤À¤±Î®¤¹¡£ */
2682                             break;
2683                         }
2684                         if (quick_messages) break;
2685                         bell();
2686                 }
2687         }
2688
2689         /* Clear the line */
2690         Term_erase(0, 0, 255);
2691 }
2692
2693
2694 /*
2695  * Output a message to the top line of the screen.
2696  *
2697  * Break long messages into multiple pieces (40-72 chars).
2698  *
2699  * Allow multiple short messages to "share" the top line.
2700  *
2701  * Prompt the user to make sure he has a chance to read them.
2702  *
2703  * These messages are memorized for later reference (see above).
2704  *
2705  * We could do "Term_fresh()" to provide "flicker" if needed.
2706  *
2707  * The global "msg_flag" variable can be cleared to tell us to
2708  * "erase" any "pending" messages still on the screen.
2709  *
2710  * XXX XXX XXX Note that we must be very careful about using the
2711  * "msg_print()" functions without explicitly calling the special
2712  * "msg_print(NULL)" function, since this may result in the loss
2713  * of information if the screen is cleared, or if anything is
2714  * displayed on the top line.
2715  *
2716  * XXX XXX XXX Note that "msg_print(NULL)" will clear the top line
2717  * even if no messages are pending.  This is probably a hack.
2718  */
2719 void msg_print(cptr msg)
2720 {
2721         static int p = 0;
2722
2723         int n;
2724
2725         char *t;
2726
2727         char buf[1024];
2728
2729         if (world_monster) return;
2730
2731         /* Hack -- Reset */
2732         if (!msg_flag) {
2733                 /* Clear the line */
2734                 Term_erase(0, 0, 255);
2735                 p = 0;
2736         }
2737
2738         /* Message Length */
2739         n = (msg ? strlen(msg) : 0);
2740
2741         /* Hack -- flush when requested or needed */
2742         if (p && (!msg || ((p + n) > 72)))
2743         {
2744                 /* Flush */
2745                 msg_flush(p);
2746
2747                 /* Forget it */
2748                 msg_flag = FALSE;
2749
2750                 /* Reset */
2751                 p = 0;
2752         }
2753
2754
2755         /* No message */
2756         if (!msg) return;
2757
2758         /* Paranoia */
2759         if (n > 1000) return;
2760
2761
2762         /* Memorize the message */
2763         if (character_generated) message_add(msg);
2764
2765
2766         /* Copy it */
2767         strcpy(buf, msg);
2768
2769         /* Analyze the buffer */
2770         t = buf;
2771
2772         /* Split message */
2773         while (n > 72)
2774         {
2775                 char oops;
2776                 int check, split = 72;
2777
2778 #ifdef JP
2779                 bool k_flag = FALSE;
2780                 int wordlen = 0;
2781
2782                 /* Find the "best" split point */
2783                 for (check = 0; check < 72; check++)
2784                 {
2785                         if (k_flag)
2786                         {
2787                                 k_flag = FALSE;
2788                                 continue;
2789                         }
2790
2791                         /* Found a valid split point */
2792                         if (iskanji(t[check]))
2793                         {
2794                                 k_flag = TRUE;
2795                                 split = check;
2796                         }
2797                         else if (t[check] == ' ')
2798                         {
2799                                 split = check;
2800                                 wordlen = 0;
2801                         }
2802                         else
2803                         {
2804                                 wordlen++;
2805                                 if (wordlen > 20)
2806                                         split = check;
2807                         }
2808                 }
2809 #else
2810                 /* Find the "best" split point */
2811                 for (check = 40; check < 72; check++)
2812                 {
2813                         /* Found a valid split point */
2814                         if (t[check] == ' ') split = check;
2815                 }
2816 #endif
2817
2818                 /* Save the split character */
2819                 oops = t[split];
2820
2821                 /* Split the message */
2822                 t[split] = '\0';
2823
2824                 /* Display part of the message */
2825                 Term_putstr(0, 0, split, TERM_WHITE, t);
2826
2827                 /* Flush it */
2828                 msg_flush(split + 1);
2829
2830                 /* Memorize the piece */
2831                 /* if (character_generated) message_add(t); */
2832
2833                 /* Restore the split character */
2834                 t[split] = oops;
2835
2836                 /* Insert a space */
2837                 t[--split] = ' ';
2838
2839                 /* Prepare to recurse on the rest of "buf" */
2840                 t += split; n -= split;
2841         }
2842
2843
2844         /* Display the tail of the message */
2845         Term_putstr(p, 0, n, TERM_WHITE, t);
2846
2847         /* Memorize the tail */
2848         /* if (character_generated) message_add(t); */
2849
2850         /* Window stuff */
2851         p_ptr->window |= (PW_MESSAGE);
2852         window_stuff();
2853
2854         /* Remember the message */
2855         msg_flag = TRUE;
2856
2857         /* Remember the position */
2858 #ifdef JP
2859         p += n;
2860 #else
2861         p += n + 1;
2862 #endif
2863
2864
2865         /* Optional refresh */
2866         if (fresh_message) Term_fresh();
2867 }
2868
2869
2870 /*
2871  * Hack -- prevent "accidents" in "screen_save()" or "screen_load()"
2872  */
2873 static int screen_depth = 0;
2874
2875
2876 /*
2877  * Save the screen, and increase the "icky" depth.
2878  *
2879  * This function must match exactly one call to "screen_load()".
2880  */
2881 void screen_save(void)
2882 {
2883         /* Hack -- Flush messages */
2884         msg_print(NULL);
2885
2886         /* Save the screen (if legal) */
2887         if (screen_depth++ == 0) Term_save();
2888
2889         /* Increase "icky" depth */
2890         character_icky++;
2891 }
2892
2893
2894 /*
2895  * Load the screen, and decrease the "icky" depth.
2896  *
2897  * This function must match exactly one call to "screen_save()".
2898  */
2899 void screen_load(void)
2900 {
2901         /* Hack -- Flush messages */
2902         msg_print(NULL);
2903
2904         /* Load the screen (if legal) */
2905         if (--screen_depth == 0) Term_load();
2906
2907         /* Decrease "icky" depth */
2908         character_icky--;
2909 }
2910
2911
2912 /*
2913  * Display a formatted message, using "vstrnfmt()" and "msg_print()".
2914  */
2915 void msg_format(cptr fmt, ...)
2916 {
2917         va_list vp;
2918
2919         char buf[1024];
2920
2921         /* Begin the Varargs Stuff */
2922         va_start(vp, fmt);
2923
2924         /* Format the args, save the length */
2925         (void)vstrnfmt(buf, 1024, fmt, vp);
2926
2927         /* End the Varargs Stuff */
2928         va_end(vp);
2929
2930         /* Display */
2931         msg_print(buf);
2932 }
2933
2934
2935
2936 /*
2937  * Display a string on the screen using an attribute.
2938  *
2939  * At the given location, using the given attribute, if allowed,
2940  * add the given string.  Do not clear the line.
2941  */
2942 void c_put_str(byte attr, cptr str, int row, int col)
2943 {
2944         /* Position cursor, Dump the attr/text */
2945         Term_putstr(col, row, -1, attr, str);
2946 }
2947
2948 /*
2949  * As above, but in "white"
2950  */
2951 void put_str(cptr str, int row, int col)
2952 {
2953         /* Spawn */
2954         Term_putstr(col, row, -1, TERM_WHITE, str);
2955 }
2956
2957
2958
2959 /*
2960  * Display a string on the screen using an attribute, and clear
2961  * to the end of the line.
2962  */
2963 void c_prt(byte attr, cptr str, int row, int col)
2964 {
2965         /* Clear line, position cursor */
2966         Term_erase(col, row, 255);
2967
2968         /* Dump the attr/text */
2969         Term_addstr(-1, attr, str);
2970 }
2971
2972 /*
2973  * As above, but in "white"
2974  */
2975 void prt(cptr str, int row, int col)
2976 {
2977         /* Spawn */
2978         c_prt(TERM_WHITE, str, row, col);
2979 }
2980
2981
2982
2983
2984 /*
2985  * Print some (colored) text to the screen at the current cursor position,
2986  * automatically "wrapping" existing text (at spaces) when necessary to
2987  * avoid placing any text into the last column, and clearing every line
2988  * before placing any text in that line.  Also, allow "newline" to force
2989  * a "wrap" to the next line.  Advance the cursor as needed so sequential
2990  * calls to this function will work correctly.
2991  *
2992  * Once this function has been called, the cursor should not be moved
2993  * until all the related "c_roff()" calls to the window are complete.
2994  *
2995  * This function will correctly handle any width up to the maximum legal
2996  * value of 256, though it works best for a standard 80 character width.
2997  */
2998 void c_roff(byte a, cptr str)
2999 {
3000         int x, y;
3001
3002         int w, h;
3003
3004         cptr s;
3005
3006         /* Obtain the size */
3007         (void)Term_get_size(&w, &h);
3008
3009         /* Obtain the cursor */
3010         (void)Term_locate(&x, &y);
3011
3012         /* Hack -- No more space */
3013         if( y == h - 1 && x > w - 3) return;
3014
3015         /* Process the string */
3016         for (s = str; *s; s++)
3017         {
3018                 char ch;
3019
3020 #ifdef JP
3021                 int k_flag = iskanji(*s);
3022 #endif
3023                 /* Force wrap */
3024                 if (*s == '\n')
3025                 {
3026                         /* Wrap */
3027                         x = 0;
3028                         y++;
3029
3030                         /* No more space */
3031                         if( y == h ) break;
3032
3033                         /* Clear line, move cursor */
3034                         Term_erase(x, y, 255);
3035
3036                         break;
3037                 }
3038
3039                 /* Clean up the char */
3040 #ifdef JP
3041                 ch = ((isprint(*s) || k_flag) ? *s : ' ');
3042 #else
3043                 ch = (isprint(*s) ? *s : ' ');
3044 #endif
3045
3046
3047                 /* Wrap words as needed */
3048 #ifdef JP
3049                 if (( x >= ( (k_flag) ? w - 2 : w - 1 ) ) && (ch != ' '))
3050 #else
3051                 if ((x >= w - 1) && (ch != ' '))
3052 #endif
3053
3054                 {
3055                         int i, n = 0;
3056
3057                         byte av[256];
3058                         char cv[256];
3059
3060                         /* Wrap word */
3061                         if (x < w)
3062 #ifdef JP
3063                         {
3064                         /* ¸½ºß¤¬È¾³Ñʸ»ú¤Î¾ì¹ç */
3065                         if( !k_flag )
3066 #endif
3067                         {
3068                                 /* Scan existing text */
3069                                 for (i = w - 2; i >= 0; i--)
3070                                 {
3071                                         /* Grab existing attr/char */
3072                                         Term_what(i, y, &av[i], &cv[i]);
3073
3074                                         /* Break on space */
3075                                         if (cv[i] == ' ') break;
3076
3077                                         /* Track current word */
3078                                         n = i;
3079 #ifdef JP
3080                                         if (cv[i] == '(') break;
3081 #endif
3082                                 }
3083                         }
3084
3085 #ifdef JP
3086                         else
3087                         {
3088                                 /* ¸½ºß¤¬Á´³Ñʸ»ú¤Î¤È¤­ */
3089                                 /* Ê¸Æ¬¤¬¡Ö¡£¡×¡Ö¡¢¡×Åù¤Ë¤Ê¤ë¤È¤­¤Ï¡¢¤½¤Î£±¤ÄÁ°¤Î¸ì¤Ç²þ¹Ô */
3090                                 if (strncmp(s, "¡£", 2) == 0 || strncmp(s, "¡¢", 2) == 0
3091 #if 0                   /* °ìÈÌŪ¤Ë¤Ï¡Ö¥£¡×¡Ö¡¼¡×¤Ï¶Ø§¤ÎÂоݳ° */
3092                                         || strncmp(s, "¥£", 2) == 0 || strncmp(s, "¡¼", 2) == 0
3093 #endif
3094                                ){
3095                                         Term_what(x  , y, &av[x  ], &cv[x  ]);
3096                                         Term_what(x-1, y, &av[x-1], &cv[x-1]);
3097                                         Term_what(x-2, y, &av[x-2], &cv[x-2]);
3098                                         n = x - 2;
3099                                         cv[ x ] = '\0';
3100                                 }
3101                         }
3102                         }
3103 #endif
3104                         /* Special case */
3105                         if (n == 0) n = w;
3106
3107                         /* Clear line */
3108                         Term_erase(n, y, 255);
3109
3110                         /* Wrap */
3111                         x = 0;
3112                         y++;
3113
3114                         /* No more space */
3115                         if( y == h ) break;
3116
3117                         /* Clear line, move cursor */
3118                         Term_erase(x, y, 255);
3119
3120                         /* Wrap the word (if any) */
3121                         for (i = n; i < w - 1; i++)
3122                         {
3123 #ifdef JP
3124                                 if( cv[i] == '\0' ) break;
3125 #endif
3126                                 /* Dump */
3127                                 Term_addch(av[i], cv[i]);
3128
3129                                 /* Advance (no wrap) */
3130                                 if (++x > w) x = w;
3131                         }
3132                 }
3133
3134                 /* Dump */
3135 #ifdef JP
3136                 Term_addch((byte)(a|0x10), ch);
3137 #else
3138                 Term_addch(a, ch);
3139 #endif
3140
3141
3142 #ifdef JP
3143                 if (k_flag)
3144                 {
3145                         s++;
3146                         x++;
3147                         ch = *s;
3148                         Term_addch((byte)(a|0x20), ch);
3149                 }
3150 #endif
3151                 /* Advance */
3152                 if (++x > w) x = w;
3153         }
3154 }
3155
3156 /*
3157  * As above, but in "white"
3158  */
3159 void roff(cptr str)
3160 {
3161         /* Spawn */
3162         c_roff(TERM_WHITE, str);
3163 }
3164
3165
3166
3167
3168 /*
3169  * Clear part of the screen
3170  */
3171 void clear_from(int row)
3172 {
3173         int y;
3174
3175         /* Erase requested rows */
3176         for (y = row; y < Term->hgt; y++)
3177         {
3178                 /* Erase part of the screen */
3179                 Term_erase(0, y, 255);
3180         }
3181 }
3182
3183
3184
3185
3186 /*
3187  * Get some string input at the cursor location.
3188  * Assume the buffer is initialized to a default string.
3189  *
3190  * The default buffer is in Overwrite mode and displayed in yellow at
3191  * first.  Normal chars clear the yellow text and append the char in
3192  * white text.
3193  *
3194  * LEFT (^B) and RIGHT (^F) movement keys move the cursor position.
3195  * If the text is still displayed in yellow (Overwite mode), it will
3196  * turns into white (Insert mode) when cursor moves.
3197  *
3198  * DELETE (^D) deletes a char at the cursor position.
3199  * BACKSPACE (^H) deletes a char at the left of cursor position.
3200  * ESCAPE clears the buffer and the window and returns FALSE.
3201  * RETURN accepts the current buffer contents and returns TRUE.
3202  */
3203 bool askfor_aux(char *buf, int len, bool numpad_cursor)
3204 {
3205         int y, x;
3206         int pos = 0;
3207
3208         /*
3209          * Text color
3210          * TERM_YELLOW : Overwrite mode
3211          * TERM_WHITE : Insert mode
3212          */
3213         byte color = TERM_YELLOW;
3214
3215         /* Locate the cursor position */
3216         Term_locate(&x, &y);
3217
3218         /* Paranoia -- check len */
3219         if (len < 1) len = 1;
3220
3221         /* Paranoia -- check column */
3222         if ((x < 0) || (x >= 80)) x = 0;
3223
3224         /* Restrict the length */
3225         if (x + len > 80) len = 80 - x;
3226
3227         /* Paranoia -- Clip the default entry */
3228         buf[len] = '\0';
3229
3230
3231         /* Process input */
3232         while (TRUE)
3233         {
3234                 int skey;
3235
3236                 /* Display the string */
3237                 Term_erase(x, y, len);
3238                 Term_putstr(x, y, -1, color, buf);
3239
3240                 /* Place cursor */
3241                 Term_gotoxy(x + pos, y);
3242
3243                 /* Get a special key code */
3244                 skey = inkey_special(numpad_cursor);
3245
3246                 /* Analyze the key */
3247                 switch (skey)
3248                 {
3249                 case SKEY_LEFT:
3250                 case KTRL('b'):
3251                 {
3252                         int i = 0;
3253
3254                         /* Now on insert mode */
3255                         color = TERM_WHITE;
3256
3257                         /* No move at beginning of line */
3258                         if (0 == pos) break;
3259
3260                         while (TRUE)
3261                         {
3262                                 int next_pos = i + 1;
3263
3264 #ifdef JP
3265                                 if (iskanji(buf[i])) next_pos++;
3266 #endif
3267
3268                                 /* Is there the cursor at next position? */ 
3269                                 if (next_pos >= pos) break;
3270
3271                                 /* Move to next */
3272                                 i = next_pos;
3273                         }
3274
3275                         /* Get previous position */
3276                         pos = i;
3277
3278                         break;
3279                 }
3280
3281                 case SKEY_RIGHT:
3282                 case KTRL('f'):
3283                         /* Now on insert mode */
3284                         color = TERM_WHITE;
3285
3286                         /* No move at end of line */
3287                         if ('\0' == buf[pos]) break;
3288
3289 #ifdef JP
3290                         /* Move right */
3291                         if (iskanji(buf[pos])) pos += 2;
3292                         else pos++;
3293 #else
3294                         pos++;
3295 #endif
3296
3297                         break;
3298
3299                 case ESCAPE:
3300                         /* Cancel input */
3301                         buf[0] = '\0';
3302                         return FALSE;
3303
3304                 case '\n':
3305                 case '\r':
3306                         /* Success */
3307                         return TRUE;
3308
3309                 case '\010':
3310                         /* Backspace */
3311                 {
3312                         int i = 0;
3313
3314                         /* Now on insert mode */
3315                         color = TERM_WHITE;
3316
3317                         /* No move at beginning of line */
3318                         if (0 == pos) break;
3319
3320                         while (TRUE)
3321                         {
3322                                 int next_pos = i + 1;
3323
3324 #ifdef JP
3325                                 if (iskanji(buf[i])) next_pos++;
3326 #endif
3327
3328                                 /* Is there the cursor at next position? */ 
3329                                 if (next_pos >= pos) break;
3330
3331                                 /* Move to next */
3332                                 i = next_pos;
3333                         }
3334
3335                         /* Get previous position */
3336                         pos = i;
3337
3338                         /* Fall through to 'Delete key' */
3339                 }
3340
3341                 case 0x7F:
3342                 case KTRL('d'):
3343                         /* Delete key */
3344                 {
3345                         int dst, src;
3346
3347                         /* Now on insert mode */
3348                         color = TERM_WHITE;
3349
3350                         /* No move at end of line */
3351                         if ('\0' == buf[pos]) break;
3352
3353                         /* Position of next character */
3354                         src = pos + 1;
3355
3356 #ifdef JP
3357                         /* Next character is one more byte away */
3358                         if (iskanji(buf[pos])) src++;
3359 #endif
3360
3361                         dst = pos;
3362
3363                         /* Move characters at src to dst */
3364                         while ('\0' != (buf[dst++] = buf[src++]))
3365                                 /* loop */;
3366
3367                         break;
3368                 }
3369
3370                 default:
3371                 {
3372                         /* Insert a character */
3373
3374                         char tmp[100];
3375                         char c;
3376
3377                         /* Ignore special keys */
3378                         if (skey & SKEY_MASK) break;
3379
3380                         /* Get a character code */
3381                         c = (char)skey;
3382
3383                         if (color == TERM_YELLOW)
3384                         {
3385                                 /* Overwrite default string */
3386                                 buf[0] = '\0';
3387
3388                                 /* Go to insert mode */
3389                                 color = TERM_WHITE;
3390                         }
3391
3392                         /* Save right part of string */
3393                         strcpy(tmp, buf + pos);
3394 #ifdef JP
3395                         if (iskanji(c))
3396                         {
3397                                 char next;
3398
3399                                 /* Bypass macro processing */
3400                                 inkey_base = TRUE;
3401                                 next = inkey();
3402
3403                                 if (pos + 1 < len)
3404                                 {
3405                                         buf[pos++] = c;
3406                                         buf[pos++] = next;
3407                                 }
3408                                 else
3409                                 {
3410                                         bell();
3411                                 }
3412                         }
3413                         else
3414 #endif
3415                         {
3416 #ifdef JP
3417                                 if (pos < len && (isprint(c) || iskana(c)))
3418 #else
3419                                 if (pos < len && isprint(c))
3420 #endif
3421                                 {
3422                                         buf[pos++] = c;
3423                                 }
3424                                 else
3425                                 {
3426                                         bell();
3427                                 }
3428                         }
3429
3430                         /* Terminate */
3431                         buf[pos] = '\0';
3432
3433                         /* Write back the left part of string */
3434                         my_strcat(buf, tmp, len + 1);
3435
3436                         break;
3437                 } /* default: */
3438
3439                 }
3440
3441         } /* while (TRUE) */
3442 }
3443
3444
3445 /*
3446  * Get some string input at the cursor location.
3447  *
3448  * Allow to use numpad keys as cursor keys.
3449  */
3450 bool askfor(char *buf, int len)
3451 {
3452         return askfor_aux(buf, len, TRUE);
3453 }
3454
3455
3456 /*
3457  * Get a string from the user
3458  *
3459  * The "prompt" should take the form "Prompt: "
3460  *
3461  * Note that the initial contents of the string is used as
3462  * the default response, so be sure to "clear" it if needed.
3463  *
3464  * We clear the input, and return FALSE, on "ESCAPE".
3465  */
3466 bool get_string(cptr prompt, char *buf, int len)
3467 {
3468         bool res;
3469
3470         /* Paranoia XXX XXX XXX */
3471         msg_print(NULL);
3472
3473         /* Display prompt */
3474         prt(prompt, 0, 0);
3475
3476         /* Ask the user for a string */
3477         res = askfor(buf, len);
3478
3479         /* Clear prompt */
3480         prt("", 0, 0);
3481
3482         /* Result */
3483         return (res);
3484 }
3485
3486
3487 /*
3488  * Verify something with the user
3489  *
3490  * The "prompt" should take the form "Query? "
3491  *
3492  * Note that "[y/n]" is appended to the prompt.
3493  */
3494 bool get_check(cptr prompt)
3495 {
3496         return get_check_strict(prompt, 0);
3497 }
3498
3499 /*
3500  * Verify something with the user strictly
3501  *
3502  * mode & CHECK_OKAY_CANCEL : force user to answer 'O'kay or 'C'ancel
3503  * mode & CHECK_NO_ESCAPE   : don't allow ESCAPE key
3504  * mode & CHECK_NO_HISTORY  : no message_add
3505  * mode & CHECK_DEFAULT_Y   : accept any key as y, except n and Esc.
3506  */
3507 bool get_check_strict(cptr prompt, int mode)
3508 {
3509         int i;
3510         char buf[80];
3511         bool flag = FALSE;
3512
3513         if (auto_more)
3514         {
3515                 p_ptr->window |= PW_MESSAGE;
3516                 window_stuff();
3517                 num_more = 0;
3518         }
3519
3520         /* Paranoia XXX XXX XXX */
3521         msg_print(NULL);
3522
3523         if (!rogue_like_commands)
3524                 mode &= ~CHECK_OKAY_CANCEL;
3525
3526
3527         /* Hack -- Build a "useful" prompt */
3528         if (mode & CHECK_OKAY_CANCEL)
3529         {
3530                 my_strcpy(buf, prompt, sizeof(buf)-15);
3531                 strcat(buf, "[(O)k/(C)ancel]");
3532         }
3533         else if (mode & CHECK_DEFAULT_Y)
3534         {
3535                 my_strcpy(buf, prompt, sizeof(buf)-5);
3536                 strcat(buf, "[Y/n]");
3537         }
3538         else
3539         {
3540                 my_strcpy(buf, prompt, sizeof(buf)-5);
3541                 strcat(buf, "[y/n]");
3542         }
3543
3544         /* Prompt for it */
3545         prt(buf, 0, 0);
3546
3547         if (!(mode & CHECK_NO_HISTORY) && p_ptr->playing)
3548         {
3549                 /* HACK : Add the line to message buffer */
3550                 message_add(buf);
3551                 p_ptr->window |= (PW_MESSAGE);
3552                 window_stuff();
3553         }
3554
3555         /* Get an acceptable answer */
3556         while (TRUE)
3557         {
3558                 i = inkey();
3559
3560                 if (!(mode & CHECK_NO_ESCAPE))
3561                 {
3562                         if (i == ESCAPE)
3563                         {
3564                                 flag = FALSE;
3565                                 break;
3566                         }
3567                 }
3568
3569                 if (mode & CHECK_OKAY_CANCEL)
3570                 {
3571                         if (i == 'o' || i == 'O')
3572                         {
3573                                 flag = TRUE;
3574                                 break;
3575                         }
3576                         else if (i == 'c' || i == 'C')
3577                         {
3578                                 flag = FALSE;
3579                                 break;
3580                         }
3581                 }
3582                 else
3583                 {
3584                         if (i == 'y' || i == 'Y')
3585                         {
3586                                 flag = TRUE;
3587                                 break;
3588                         }
3589                         else if (i == 'n' || i == 'N')
3590                         {
3591                                 flag = FALSE;
3592                                 break;
3593                         }
3594                 }
3595
3596                 if (mode & CHECK_DEFAULT_Y)
3597                 {
3598                         flag = TRUE;
3599                         break;
3600                 }
3601
3602                 bell();
3603         }
3604
3605         /* Erase the prompt */
3606         prt("", 0, 0);
3607
3608         /* Return the flag */
3609         return flag;
3610 }
3611
3612
3613 /*
3614  * Prompts for a keypress
3615  *
3616  * The "prompt" should take the form "Command: "
3617  *
3618  * Returns TRUE unless the character is "Escape"
3619  */
3620 bool get_com(cptr prompt, char *command, bool z_escape)
3621 {
3622         /* Paranoia XXX XXX XXX */
3623         msg_print(NULL);
3624
3625         /* Display a prompt */
3626         prt(prompt, 0, 0);
3627
3628         /* Get a key */
3629         if (get_com_no_macros)
3630                 *command = inkey_special(FALSE);
3631         else
3632                 *command = inkey();
3633
3634         /* Clear the prompt */
3635         prt("", 0, 0);
3636
3637         /* Handle "cancel" */
3638         if (*command == ESCAPE) return (FALSE);
3639         if (z_escape && ((*command == 'z') || (*command == 'Z'))) return (FALSE);
3640
3641         /* Success */
3642         return (TRUE);
3643 }
3644
3645
3646 /*
3647  * Request a "quantity" from the user
3648  *
3649  * Hack -- allow "command_arg" to specify a quantity
3650  */
3651 s16b get_quantity(cptr prompt, int max)
3652 {
3653         bool res;
3654         int amt;
3655         char tmp[80];
3656         char buf[80];
3657
3658
3659         /* Use "command_arg" */
3660         if (command_arg)
3661         {
3662                 /* Extract a number */
3663                 amt = command_arg;
3664
3665                 /* Clear "command_arg" */
3666                 command_arg = 0;
3667
3668                 /* Enforce the maximum */
3669                 if (amt > max) amt = max;
3670
3671                 /* Use it */
3672                 return (amt);
3673         }
3674
3675 #ifdef ALLOW_REPEAT /* TNB */
3676
3677         /* Get the item index */
3678         if ((max != 1) && repeat_pull(&amt))
3679         {
3680                 /* Enforce the maximum */
3681                 if (amt > max) amt = max;
3682
3683                 /* Enforce the minimum */
3684                 if (amt < 0) amt = 0;
3685
3686                 /* Use it */
3687                 return (amt);
3688         }
3689
3690 #endif /* ALLOW_REPEAT -- TNB */
3691
3692         /* Build a prompt if needed */
3693         if (!prompt)
3694         {
3695                 /* Build a prompt */
3696 #ifdef JP
3697                 sprintf(tmp, "¤¤¤¯¤Ä¤Ç¤¹¤« (1-%d): ", max);
3698 #else
3699                 sprintf(tmp, "Quantity (1-%d): ", max);
3700 #endif
3701
3702
3703                 /* Use that prompt */
3704                 prompt = tmp;
3705         }
3706
3707         /* Paranoia XXX XXX XXX */
3708         msg_print(NULL);
3709
3710         /* Display prompt */
3711         prt(prompt, 0, 0);
3712
3713         /* Default to one */
3714         amt = 1;
3715
3716         /* Build the default */
3717         sprintf(buf, "%d", amt);
3718
3719         /*
3720          * Ask for a quantity
3721          * Don't allow to use numpad as cursor key.
3722          */
3723         res = askfor_aux(buf, 6, FALSE);
3724
3725         /* Clear prompt */
3726         prt("", 0, 0);
3727
3728         /* Cancelled */
3729         if (!res) return 0;
3730
3731         /* Extract a number */
3732         amt = atoi(buf);
3733
3734         /* A letter means "all" */
3735         if (isalpha(buf[0])) amt = max;
3736
3737         /* Enforce the maximum */
3738         if (amt > max) amt = max;
3739
3740         /* Enforce the minimum */
3741         if (amt < 0) amt = 0;
3742
3743 #ifdef ALLOW_REPEAT /* TNB */
3744
3745         if (amt) repeat_push(amt);
3746
3747 #endif /* ALLOW_REPEAT -- TNB */
3748
3749         /* Return the result */
3750         return (amt);
3751 }
3752
3753
3754 /*
3755  * Pause for user response XXX XXX XXX
3756  */
3757 void pause_line(int row)
3758 {
3759         prt("", row, 0);
3760 #ifdef JP
3761         put_str("[ ²¿¤«¥­¡¼¤ò²¡¤·¤Æ²¼¤µ¤¤ ]", row, 26);
3762 #else
3763         put_str("[Press any key to continue]", row, 23);
3764 #endif
3765
3766         (void)inkey();
3767         prt("", row, 0);
3768 }
3769
3770
3771 /*
3772  * Hack -- special buffer to hold the action of the current keymap
3773  */
3774 static char request_command_buffer[256];
3775
3776
3777
3778 typedef struct
3779 {
3780         cptr name;
3781         byte cmd;
3782         bool fin;
3783 } menu_naiyou;
3784
3785 #ifdef JP
3786 menu_naiyou menu_info[10][10] =
3787 {
3788         {
3789                 {"ËâË¡/ÆüìǽÎÏ", 1, FALSE},
3790                 {"¹ÔÆ°", 2, FALSE},
3791                 {"Æ»¶ñ(»ÈÍÑ)", 3, FALSE},
3792                 {"Æ»¶ñ(¤½¤Î¾)", 4, FALSE},
3793                 {"ÁõÈ÷", 5, FALSE},
3794                 {"Èâ/È¢", 6, FALSE},
3795                 {"¾ðÊó", 7, FALSE},
3796                 {"ÀßÄê", 8, FALSE},
3797                 {"¤½¤Î¾", 9, FALSE},
3798                 {"", 0, FALSE},
3799         },
3800
3801         {
3802                 {"»È¤¦(m)", 'm', TRUE},
3803                 {"Ä´¤Ù¤ë(b/P)", 'b', TRUE},
3804                 {"³Ð¤¨¤ë(G)", 'G', TRUE},
3805                 {"ÆüìǽÎϤò»È¤¦(U/O)", 'U', TRUE},
3806                 {"", 0, FALSE},
3807                 {"", 0, FALSE},
3808                 {"", 0, FALSE},
3809                 {"", 0, FALSE},
3810                 {"", 0, FALSE},
3811                 {"", 0, FALSE}
3812         },
3813
3814         {
3815                 {"µÙ©¤¹¤ë(R)", 'R', TRUE},
3816                 {"¥È¥é¥Ã¥×²ò½ü(D)", 'D', TRUE},
3817                 {"õ¤¹(s)", 's', TRUE},
3818                 {"¼þ¤ê¤òÄ´¤Ù¤ë(l/x)", 'l', TRUE},
3819                 {"¥¿¡¼¥²¥Ã¥È»ØÄê(*)", '*', TRUE},
3820                 {"·ê¤ò·¡¤ë(T/^t)", 'T', TRUE},
3821                 {"³¬Ãʤò¾å¤ë(<)", '<', TRUE},
3822                 {"³¬Ãʤò²¼¤ê¤ë(>)", '>', TRUE},
3823                 {"¥Ú¥Ã¥È¤ËÌ¿Î᤹¤ë(p)", 'p', TRUE},
3824                 {"õº÷¥â¡¼¥É¤ÎON/OFF(S/#)", 'S', TRUE}
3825         },
3826
3827         {
3828                 {"Æɤà(r)", 'r', TRUE},
3829                 {"°û¤à(q)", 'q', TRUE},
3830                 {"¾ó¤ò»È¤¦(u/Z)", 'u', TRUE},
3831                 {"ËâË¡ËÀ¤ÇÁÀ¤¦(a/z)", 'a', TRUE},
3832                 {"¥í¥Ã¥É¤ò¿¶¤ë(z/a)", 'z', TRUE},
3833                 {"»ÏÆ°¤¹¤ë(A)", 'A', TRUE},
3834                 {"¿©¤Ù¤ë(E)", 'E', TRUE},
3835                 {"Èô¤ÓÆ»¶ñ¤Ç·â¤Ä(f/t)", 'f', TRUE},
3836                 {"Åꤲ¤ë(v)", 'v', TRUE},
3837                 {"", 0, FALSE}
3838         },
3839
3840         {
3841                 {"½¦¤¦(g)", 'g', TRUE},
3842                 {"Íî¤È¤¹(d)", 'd', TRUE},
3843                 {"²õ¤¹(k/^d)", 'k', TRUE},
3844                 {"Ìäò¹ï¤à({)", '{', TRUE},
3845                 {"Ìäò¾Ã¤¹(})", '}', TRUE},
3846                 {"Ä´ºº(I)", 'I', TRUE},
3847                 {"¥¢¥¤¥Æ¥à°ìÍ÷(i)", 'i', TRUE},
3848                 {"", 0, FALSE},
3849                 {"", 0, FALSE},
3850                 {"", 0, FALSE}
3851         },
3852
3853         {
3854                 {"ÁõÈ÷¤¹¤ë(w)", 'w', TRUE},
3855                 {"ÁõÈ÷¤ò³°¤¹(t/T)", 't', TRUE},
3856                 {"dzÎÁ¤òÊäµë(F)", 'F', TRUE},
3857                 {"ÁõÈ÷°ìÍ÷(e)", 'e', TRUE},
3858                 {"", 0, FALSE},
3859                 {"", 0, FALSE},
3860                 {"", 0, FALSE},
3861                 {"", 0, FALSE},
3862                 {"", 0, FALSE},
3863                 {"", 0, FALSE}
3864         },
3865
3866         {
3867                 {"³«¤±¤ë(o)", 'o', TRUE},
3868                 {"ÊĤ¸¤ë(c)", 'c', TRUE},
3869                 {"ÂÎÅö¤¿¤ê¤¹¤ë(B/f)", 'B', TRUE},
3870                 {"¤¯¤µ¤Ó¤òÂǤÄ(j/S)", 'j', TRUE},
3871                 {"", 0, FALSE},
3872                 {"", 0, FALSE},
3873                 {"", 0, FALSE},
3874                 {"", 0, FALSE},
3875                 {"", 0, FALSE},
3876                 {"", 0, FALSE}
3877         },
3878
3879         {
3880                 {"¥À¥ó¥¸¥ç¥ó¤ÎÁ´ÂοÞ(M)", 'M', TRUE},
3881                 {"°ÌÃÖ¤ò³Îǧ(L/W)", 'L', TRUE},
3882                 {"³¬¤ÎÊ·°Ïµ¤(^f)", KTRL('F'), TRUE},
3883                 {"¥¹¥Æ¡¼¥¿¥¹(C)", 'C', TRUE},
3884                 {"ʸ»ú¤ÎÀâÌÀ(/)", '/', TRUE},
3885                 {"¥á¥Ã¥»¡¼¥¸ÍúÎò(^p)", KTRL('P'), TRUE},
3886                 {"¸½ºß¤Î»þ¹ï(^t/')", KTRL('T'), TRUE},
3887                 {"¸½ºß¤ÎÃμ±(~)", '~', TRUE},
3888                 {"¥×¥ì¥¤µ­Ï¿(|)", '|', TRUE},
3889                 {"", 0, FALSE}
3890         },
3891
3892         {
3893                 {"¥ª¥×¥·¥ç¥ó(=)", '=', TRUE},
3894                 {"¥Þ¥¯¥í(@)", '@', TRUE},
3895                 {"²èÌÌɽ¼¨(%)", '%', TRUE},
3896                 {"¥«¥é¡¼(&)", '&', TRUE},
3897                 {"ÀßÄêÊѹ¹¥³¥Þ¥ó¥É(\")", '\"', TRUE},
3898                 {"¼«Æ°½¦¤¤¤ò¥í¡¼¥É($)", '$', TRUE},
3899                 {"¥·¥¹¥Æ¥à(!)", '!', TRUE},
3900                 {"", 0, FALSE},
3901                 {"", 0, FALSE},
3902                 {"", 0, FALSE}
3903         },
3904
3905         {
3906                 {"¥»¡¼¥Ö&ÃæÃÇ(^x)", KTRL('X'), TRUE},
3907                 {"¥»¡¼¥Ö(^s)", KTRL('S'), TRUE},
3908                 {"¥Ø¥ë¥×(?)", '?', TRUE},
3909                 {"ºÆÉÁ²è(^r)", KTRL('R'), TRUE},
3910                 {"¥á¥â(:)", ':', TRUE},
3911                 {"µ­Ç°»£±Æ())", ')', TRUE},
3912                 {"µ­Ç°»£±Æ¤Îɽ¼¨(()", '(', TRUE},
3913                 {"¥Ð¡¼¥¸¥ç¥ó¾ðÊó(V)", 'V', TRUE},
3914                 {"°úÂह¤ë(Q)", 'Q', TRUE},
3915                 {"", 0, FALSE}
3916         },
3917 };
3918 #else
3919 menu_naiyou menu_info[10][10] =
3920 {
3921         {
3922                 {"Magic/Special", 1, FALSE},
3923                 {"Action", 2, FALSE},
3924                 {"Items(use)", 3, FALSE},
3925                 {"Items(other)", 4, FALSE},
3926                 {"Equip", 5, FALSE},
3927                 {"Door/Box", 6, FALSE},
3928                 {"Informations", 7, FALSE},
3929                 {"Options", 8, FALSE},
3930                 {"Other commands", 9, FALSE},
3931                 {"", 0, FALSE},
3932         },
3933
3934         {
3935                 {"Use(m)", 'm', TRUE},
3936                 {"See tips(b/P)", 'b', TRUE},
3937                 {"Study(G)", 'G', TRUE},
3938                 {"Special abilities(U/O)", 'U', TRUE},
3939                 {"", 0, FALSE},
3940                 {"", 0, FALSE},
3941                 {"", 0, FALSE},
3942                 {"", 0, FALSE},
3943                 {"", 0, FALSE},
3944                 {"", 0, FALSE}
3945         },
3946
3947         {
3948                 {"Rest(R)", 'R', TRUE},
3949                 {"Disarm a trap(D)", 'D', TRUE},
3950                 {"Search(s)", 's', TRUE},
3951                 {"Look(l/x)", 'l', TRUE},
3952                 {"Target(*)", '*', TRUE},
3953                 {"Dig(T/^t)", 'T', TRUE},
3954                 {"Go up stairs(<)", '<', TRUE},
3955                 {"Go down stairs(>)", '>', TRUE},
3956                 {"Command pets(p)", 'p', TRUE},
3957                 {"Search mode ON/OFF(S/#)", 'S', TRUE}
3958         },
3959
3960         {
3961                 {"Read a scroll(r)", 'r', TRUE},
3962                 {"Drink a potion(q)", 'q', TRUE},
3963                 {"Use a staff(u/Z)", 'u', TRUE},
3964                 {"Aim a wand(a/z)", 'a', TRUE},
3965                 {"Zap a rod(z/a)", 'z', TRUE},
3966                 {"Activate an equipment(A)", 'A', TRUE},
3967                 {"Eat(E)", 'E', TRUE},
3968                 {"Fire missile weapon(f/t)", 'f', TRUE},
3969                 {"Throw an item(v)", 'v', TRUE},
3970                 {"", 0, FALSE}
3971         },
3972
3973         {
3974                 {"Get items(g)", 'g', TRUE},
3975                 {"Drop an item(d)", 'd', TRUE},
3976                 {"Destroy an item(k/^d)", 'k', TRUE},
3977                 {"Inscribe an item({)", '{', TRUE},
3978                 {"Uninscribe an item(})", '}', TRUE},
3979                 {"Info about an item(I)", 'I', TRUE},
3980                 {"Inventory list(i)", 'i', TRUE},
3981                 {"", 0, FALSE},
3982                 {"", 0, FALSE},
3983                 {"", 0, FALSE}
3984         },
3985
3986         {
3987                 {"Wear(w)", 'w', TRUE},
3988                 {"Take off(t/T)", 't', TRUE},
3989                 {"Refuel(F)", 'F', TRUE},
3990                 {"Equipment list(e)", 'e', TRUE},
3991                 {"", 0, FALSE},
3992                 {"", 0, FALSE},
3993                 {"", 0, FALSE},
3994                 {"", 0, FALSE},
3995                 {"", 0, FALSE},
3996                 {"", 0, FALSE}
3997         },
3998
3999         {
4000                 {"Open(o)", 'o', TRUE},
4001                 {"Close(c)", 'c', TRUE},
4002                 {"Bash a door(B/f)", 'B', TRUE},
4003                 {"Jam a door(j/S)", 'j', TRUE},
4004                 {"", 0, FALSE},
4005                 {"", 0, FALSE},
4006                 {"", 0, FALSE},
4007                 {"", 0, FALSE},
4008                 {"", 0, FALSE},
4009                 {"", 0, FALSE}
4010         },
4011
4012         {
4013                 {"Full map(M)", 'M', TRUE},
4014                 {"Map(L/W)", 'L', TRUE},
4015                 {"Level feeling(^f)", KTRL('F'), TRUE},
4016                 {"Character status(C)", 'C', TRUE},
4017                 {"Identify symbol(/)", '/', TRUE},
4018                 {"Show prev messages(^p)", KTRL('P'), TRUE},
4019                 {"Current time(^t/')", KTRL('T'), TRUE},
4020                 {"Various informations(~)", '~', TRUE},
4021                 {"Play record menu(|)", '|', TRUE},
4022                 {"", 0, FALSE}
4023         },
4024
4025         {
4026                 {"Set options(=)", '=', TRUE},
4027                 {"Interact with macros(@)", '@', TRUE},
4028                 {"Interact w/ visuals(%)", '%', TRUE},
4029                 {"Interact with colors(&)", '&', TRUE},
4030                 {"Enter a user pref(\")", '\"', TRUE},
4031                 {"Reload auto-pick pref($)", '$', TRUE},
4032                 {"", 0, FALSE},
4033                 {"", 0, FALSE},
4034                 {"", 0, FALSE},
4035                 {"", 0, FALSE}
4036         },
4037
4038         {
4039                 {"Save and quit(^x)", KTRL('X'), TRUE},
4040                 {"Save(^s)", KTRL('S'), TRUE},
4041                 {"Help(obsoleted)(?)", '?', TRUE},
4042                 {"Redraw(^r)", KTRL('R'), TRUE},
4043                 {"Take note(:)", ':', TRUE},
4044                 {"Dump screen dump(()", ')', TRUE},
4045                 {"Load screen dump())", '(', TRUE},
4046                 {"Version info(V)", 'V', TRUE},
4047                 {"Quit(Q)", 'Q', TRUE},
4048                 {"", 0, FALSE}
4049         },
4050 };
4051 #endif
4052
4053 typedef struct
4054 {
4055         cptr name;
4056         byte window;
4057         byte number;
4058         byte jouken;
4059         byte jouken_naiyou;
4060 } special_menu_naiyou;
4061
4062 #define MENU_CLASS 1
4063 #define MENU_WILD 2
4064
4065 #ifdef JP
4066 special_menu_naiyou special_menu_info[] =
4067 {
4068         {"ĶǽÎÏ/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_MINDCRAFTER},
4069         {"¤â¤Î¤Þ¤Í/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_IMITATOR},
4070         {"²Î/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_BARD},
4071         {"ɬ»¦µ»/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_SAMURAI},
4072         {"Îýµ¤½Ñ/ËâË¡/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_FORCETRAINER},
4073         {"µ»/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_BERSERKER},
4074         {"µ»½Ñ/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_SMITH},
4075         {"¶ÀËâË¡/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_MIRROR_MASTER},
4076         {"Ǧ½Ñ/ÆüìǽÎÏ", 0, 0, MENU_CLASS, CLASS_NINJA},
4077         {"¹­°è¥Þ¥Ã¥×(<)", 2, 6, MENU_WILD, FALSE},
4078         {"Ä̾ï¥Þ¥Ã¥×(>)", 2, 7, MENU_WILD, TRUE},
4079         {"", 0, 0, 0, 0},
4080 };
4081 #else
4082 special_menu_naiyou special_menu_info[] =
4083 {
4084         {"MindCraft/Special", 0, 0, MENU_CLASS, CLASS_MINDCRAFTER},
4085         {"Imitation/Special", 0, 0, MENU_CLASS, CLASS_IMITATOR},
4086         {"Song/Special", 0, 0, MENU_CLASS, CLASS_BARD},
4087         {"Technique/Special", 0, 0, MENU_CLASS, CLASS_SAMURAI},
4088         {"Mind/Magic/Special", 0, 0, MENU_CLASS, CLASS_FORCETRAINER},
4089         {"BrutalPower/Special", 0, 0, MENU_CLASS, CLASS_BERSERKER},
4090         {"Technique/Special", 0, 0, MENU_CLASS, CLASS_SMITH},
4091         {"MirrorMagic/Special", 0, 0, MENU_CLASS, CLASS_MIRROR_MASTER},
4092         {"Ninjutsu/Special", 0, 0, MENU_CLASS, CLASS_NINJA},
4093         {"Enter global map(<)", 2, 6, MENU_WILD, FALSE},
4094         {"Enter local map(>)", 2, 7, MENU_WILD, TRUE},
4095         {"", 0, 0, 0, 0},
4096 };
4097 #endif
4098
4099 static char inkey_from_menu(void)
4100 {
4101         char cmd;
4102         int basey, basex;
4103         int num = 0, max_num, old_num = 0;
4104         int menu = 0;
4105         bool kisuu;
4106
4107         if (py - panel_row_min > 10) basey = 2;
4108         else basey = 13;
4109         basex = 15;
4110
4111         /* Clear top line */
4112         prt("", 0, 0);
4113
4114         screen_save();
4115
4116         while(1)
4117         {
4118                 int i;
4119                 char sub_cmd;
4120                 cptr menu_name;
4121                 if (!menu) old_num = num;
4122                 put_str("+----------------------------------------------------+", basey, basex);
4123                 put_str("|                                                    |", basey+1, basex);
4124                 put_str("|                                                    |", basey+2, basex);
4125                 put_str("|                                                    |", basey+3, basex);
4126                 put_str("|                                                    |", basey+4, basex);
4127                 put_str("|                                                    |", basey+5, basex);
4128                 put_str("+----------------------------------------------------+", basey+6, basex);
4129
4130                 for(i = 0; i < 10; i++)
4131                 {
4132                         int hoge;
4133                         if (!menu_info[menu][i].cmd) break;
4134                         menu_name = menu_info[menu][i].name;
4135                         for(hoge = 0; ; hoge++)
4136                         {
4137                                 if (!special_menu_info[hoge].name[0]) break;
4138                                 if ((menu != special_menu_info[hoge].window) || (i != special_menu_info[hoge].number)) continue;
4139                                 switch(special_menu_info[hoge].jouken)
4140                                 {
4141                                 case MENU_CLASS:
4142                                         if (p_ptr->pclass == special_menu_info[hoge].jouken_naiyou) menu_name = special_menu_info[hoge].name;
4143                                         break;
4144                                 case MENU_WILD:
4145                                         if (!dun_level && !p_ptr->inside_arena && !p_ptr->inside_quest)
4146                                         {
4147                                                 if ((byte)p_ptr->wild_mode == special_menu_info[hoge].jouken_naiyou) menu_name = special_menu_info[hoge].name;
4148                                         }
4149                                         break;
4150                                 default:
4151                                         break;
4152                                 }
4153                         }
4154                         put_str(menu_name, basey + 1 + i / 2, basex + 4 + (i % 2) * 24);
4155                 }
4156                 max_num = i;
4157                 kisuu = max_num % 2;
4158 #ifdef JP
4159                 put_str("¡Õ",basey + 1 + num / 2, basex + 2 + (num % 2) * 24);
4160 #else
4161                 put_str("> ",basey + 1 + num / 2, basex + 2 + (num % 2) * 24);
4162 #endif
4163
4164                 /* Place the cursor on the player */
4165                 move_cursor_relative(py, px);
4166
4167                 /* Get a command */
4168                 sub_cmd = inkey();
4169                 if ((sub_cmd == ' ') || (sub_cmd == 'x') || (sub_cmd == 'X') || (sub_cmd == '\r') || (sub_cmd == '\n'))
4170                 {
4171                         if (menu_info[menu][num].fin)
4172                         {
4173                                 cmd = menu_info[menu][num].cmd;
4174                                 use_menu = TRUE;
4175                                 break;
4176                         }
4177                         else
4178                         {
4179                                 menu = menu_info[menu][num].cmd;
4180                                 num = 0;
4181                                 basey += 2;
4182                                 basex += 8;
4183                         }
4184                 }
4185                 else if ((sub_cmd == ESCAPE) || (sub_cmd == 'z') || (sub_cmd == 'Z') || (sub_cmd == '0'))
4186                 {
4187                         if (!menu)
4188                         {
4189                                 cmd = ESCAPE;
4190                                 break;
4191                         }
4192                         else
4193                         {
4194                                 menu = 0;
4195                                 num = old_num;
4196                                 basey -= 2;
4197                                 basex -= 8;
4198                                 screen_load();
4199                                 screen_save();
4200                         }
4201                 }
4202                 else if ((sub_cmd == '2') || (sub_cmd == 'j') || (sub_cmd == 'J'))
4203                 {
4204                         if (kisuu)
4205                         {
4206                                 if (num % 2)
4207                                         num = (num + 2) % (max_num - 1);
4208                                 else
4209                                         num = (num + 2) % (max_num + 1);
4210                         }
4211                         else num = (num + 2) % max_num;
4212                 }
4213                 else if ((sub_cmd == '8') || (sub_cmd == 'k') || (sub_cmd == 'K'))
4214                 {
4215                         if (kisuu)
4216                         {
4217                                 if (num % 2)
4218                                         num = (num + max_num - 3) % (max_num - 1);
4219                                 else
4220                                         num = (num + max_num - 1) % (max_num + 1);
4221                         }
4222                         else num = (num + max_num - 2) % max_num;
4223                 }
4224                 else if ((sub_cmd == '4') || (sub_cmd == '6') || (sub_cmd == 'h') || (sub_cmd == 'H') || (sub_cmd == 'l') || (sub_cmd == 'L'))
4225                 {
4226                         if ((num % 2) || (num == max_num - 1))
4227                         {
4228                                 num--;
4229                         }
4230                         else if (num < max_num - 1)
4231                         {
4232                                 num++;
4233                         }
4234                 }
4235         }
4236
4237         screen_load();
4238         if (!inkey_next) inkey_next = "";
4239
4240         return (cmd);
4241 }
4242
4243 /*
4244  * Request a command from the user.
4245  *
4246  * Sets p_ptr->command_cmd, p_ptr->command_dir, p_ptr->command_rep,
4247  * p_ptr->command_arg.  May modify p_ptr->command_new.
4248  *
4249  * Note that "caret" ("^") is treated specially, and is used to
4250  * allow manual input of control characters.  This can be used
4251  * on many machines to request repeated tunneling (Ctrl-H) and
4252  * on the Macintosh to request "Control-Caret".
4253  *
4254  * Note that "backslash" is treated specially, and is used to bypass any
4255  * keymap entry for the following character.  This is useful for macros.
4256  *
4257  * Note that this command is used both in the dungeon and in
4258  * stores, and must be careful to work in both situations.
4259  *
4260  * Note that "p_ptr->command_new" may not work any more.  XXX XXX XXX
4261  */
4262 void request_command(int shopping)
4263 {
4264         int i;
4265
4266         char cmd;
4267         int mode;
4268
4269         cptr act;
4270
4271 #ifdef JP
4272         int caretcmd = 0;
4273 #endif
4274         /* Roguelike */
4275         if (rogue_like_commands)
4276         {
4277                 mode = KEYMAP_MODE_ROGUE;
4278         }
4279
4280         /* Original */
4281         else
4282         {
4283                 mode = KEYMAP_MODE_ORIG;
4284         }
4285
4286
4287         /* No command yet */
4288         command_cmd = 0;
4289
4290         /* No "argument" yet */
4291         command_arg = 0;
4292
4293         /* No "direction" yet */
4294         command_dir = 0;
4295
4296         use_menu = FALSE;
4297
4298
4299         /* Get command */
4300         while (1)
4301         {
4302                 /* Hack -- auto-commands */
4303                 if (command_new)
4304                 {
4305                         /* Flush messages */
4306                         msg_print(NULL);
4307
4308                         /* Use auto-command */
4309                         cmd = command_new;
4310
4311                         /* Forget it */
4312                         command_new = 0;
4313                 }
4314
4315                 /* Get a keypress in "command" mode */
4316                 else
4317                 {
4318                         /* Hack -- no flush needed */
4319                         msg_flag = FALSE;
4320                         num_more = 0;
4321
4322                         /* Activate "command mode" */
4323                         inkey_flag = TRUE;
4324
4325                         /* Get a command */
4326                         cmd = inkey();
4327
4328                         if (!shopping && command_menu && ((cmd == '\r') || (cmd == '\n') || (cmd == 'x') || (cmd == 'X'))
4329                             && !keymap_act[mode][(byte)(cmd)])
4330                                 cmd = inkey_from_menu();
4331                 }
4332
4333                 /* Clear top line */
4334                 prt("", 0, 0);
4335
4336
4337                 /* Command Count */
4338                 if (cmd == '0')
4339                 {
4340                         int old_arg = command_arg;
4341
4342                         /* Reset */
4343                         command_arg = 0;
4344
4345                         /* Begin the input */
4346 #ifdef JP
4347                         prt("²ó¿ô: ", 0, 0);
4348 #else
4349                         prt("Count: ", 0, 0);
4350 #endif
4351
4352
4353                         /* Get a command count */
4354                         while (1)
4355                         {
4356                                 /* Get a new keypress */
4357                                 cmd = inkey();
4358
4359                                 /* Simple editing (delete or backspace) */
4360                                 if ((cmd == 0x7F) || (cmd == KTRL('H')))
4361                                 {
4362                                         /* Delete a digit */
4363                                         command_arg = command_arg / 10;
4364
4365                                         /* Show current count */
4366 #ifdef JP
4367                                         prt(format("²ó¿ô: %d", command_arg), 0, 0);
4368 #else
4369                                         prt(format("Count: %d", command_arg), 0, 0);
4370 #endif
4371
4372                                 }
4373
4374                                 /* Actual numeric data */
4375                                 else if (cmd >= '0' && cmd <= '9')
4376                                 {
4377                                         /* Stop count at 9999 */
4378                                         if (command_arg >= 1000)
4379                                         {
4380                                                 /* Warn */
4381                                                 bell();
4382
4383                                                 /* Limit */
4384                                                 command_arg = 9999;
4385                                         }
4386
4387                                         /* Increase count */
4388                                         else
4389                                         {
4390                                                 /* Incorporate that digit */
4391                                                 command_arg = command_arg * 10 + D2I(cmd);
4392                                         }
4393
4394                                         /* Show current count */
4395 #ifdef JP
4396                                         prt(format("²ó¿ô: %d", command_arg), 0, 0);
4397 #else
4398                                         prt(format("Count: %d", command_arg), 0, 0);
4399 #endif
4400
4401                                 }
4402
4403                                 /* Exit on "unusable" input */
4404                                 else
4405                                 {
4406                                         break;
4407                                 }
4408                         }
4409
4410                         /* Hack -- Handle "zero" */
4411                         if (command_arg == 0)
4412                         {
4413                                 /* Default to 99 */
4414                                 command_arg = 99;
4415
4416                                 /* Show current count */
4417 #ifdef JP
4418                                 prt(format("²ó¿ô: %d", command_arg), 0, 0);
4419 #else
4420                                 prt(format("Count: %d", command_arg), 0, 0);
4421 #endif
4422
4423                         }
4424
4425                         /* Hack -- Handle "old_arg" */
4426                         if (old_arg != 0)
4427                         {
4428                                 /* Restore old_arg */
4429                                 command_arg = old_arg;
4430
4431                                 /* Show current count */
4432 #ifdef JP
4433 prt(format("²ó¿ô: %d", command_arg), 0, 0);
4434 #else
4435                                 prt(format("Count: %d", command_arg), 0, 0);
4436 #endif
4437
4438                         }
4439
4440                         /* Hack -- white-space means "enter command now" */
4441                         if ((cmd == ' ') || (cmd == '\n') || (cmd == '\r'))
4442                         {
4443                                 /* Get a real command */
4444 #ifdef JP
4445                                 if (!get_com("¥³¥Þ¥ó¥É: ", (char *)&cmd, FALSE))
4446 #else
4447                                 if (!get_com("Command: ", (char *)&cmd, FALSE))
4448 #endif
4449
4450                                 {
4451                                         /* Clear count */
4452                                         command_arg = 0;
4453
4454                                         /* Continue */
4455                                         continue;
4456                                 }
4457                         }
4458                 }
4459
4460
4461                 /* Allow "keymaps" to be bypassed */
4462                 if (cmd == '\\')
4463                 {
4464                         /* Get a real command */
4465 #ifdef JP
4466                         (void)get_com("¥³¥Þ¥ó¥É: ", (char *)&cmd, FALSE);
4467 #else
4468                         (void)get_com("Command: ", (char *)&cmd, FALSE);
4469 #endif
4470
4471
4472                         /* Hack -- bypass keymaps */
4473                         if (!inkey_next) inkey_next = "";
4474                 }
4475
4476
4477                 /* Allow "control chars" to be entered */
4478                 if (cmd == '^')
4479                 {
4480                         /* Get a new command and controlify it */
4481 #ifdef JP
4482                         if (get_com("CTRL: ", (char *)&cmd, FALSE)) cmd = KTRL(cmd);
4483 #else
4484                         if (get_com("Control: ", (char *)&cmd, FALSE)) cmd = KTRL(cmd);
4485 #endif
4486
4487                 }
4488
4489
4490                 /* Look up applicable keymap */
4491                 act = keymap_act[mode][(byte)(cmd)];
4492
4493                 /* Apply keymap if not inside a keymap already */
4494                 if (act && !inkey_next)
4495                 {
4496                         /* Install the keymap (limited buffer size) */
4497                         (void)strnfmt(request_command_buffer, 256, "%s", act);
4498
4499                         /* Start using the buffer */
4500                         inkey_next = request_command_buffer;
4501
4502                         /* Continue */
4503                         continue;
4504                 }
4505
4506
4507                 /* Paranoia */
4508                 if (!cmd) continue;
4509
4510
4511                 /* Use command */
4512                 command_cmd = (byte)cmd;
4513
4514                 /* Done */
4515                 break;
4516         }
4517
4518         /* Hack -- Auto-repeat certain commands */
4519         if (always_repeat && (command_arg <= 0))
4520         {
4521                 /* Hack -- auto repeat certain commands */
4522                 if (my_strchr("TBDoc+", command_cmd))
4523                 {
4524                         /* Repeat 99 times */
4525                         command_arg = 99;
4526                 }
4527         }
4528
4529         /* Shopping */
4530         if (shopping == 1)
4531         {
4532                 /* Convert */
4533                 switch (command_cmd)
4534                 {
4535                         /* Command "p" -> "purchase" (get) */
4536                 case 'p': command_cmd = 'g'; break;
4537
4538                         /* Command "m" -> "purchase" (get) */
4539                 case 'm': command_cmd = 'g'; break;
4540
4541                         /* Command "s" -> "sell" (drop) */
4542                 case 's': command_cmd = 'd'; break;
4543                 }
4544         }
4545
4546 #ifdef JP
4547         for (i = 0; i < 256; i++)
4548         {
4549                 cptr s;
4550                 if ((s = keymap_act[mode][i]) != NULL)
4551                 {
4552                         if (*s == command_cmd && *(s+1) == 0)
4553                         {
4554                                 caretcmd = i;
4555                                 break;
4556                         }
4557                 }
4558         }
4559         if (!caretcmd)
4560                 caretcmd = command_cmd;
4561 #endif
4562
4563         /* Hack -- Scan equipment */
4564         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
4565         {
4566                 cptr s;
4567
4568                 object_type *o_ptr = &inventory[i];
4569
4570                 /* Skip non-objects */
4571                 if (!o_ptr->k_idx) continue;
4572
4573                 /* No inscription */
4574                 if (!o_ptr->inscription) continue;
4575
4576                 /* Obtain the inscription */
4577                 s = quark_str(o_ptr->inscription);
4578
4579                 /* Find a '^' */
4580                 s = my_strchr(s, '^');
4581
4582                 /* Process preventions */
4583                 while (s)
4584                 {
4585                         /* Check the "restriction" character */
4586 #ifdef JP
4587                         if ((s[1] == caretcmd) || (s[1] == '*'))
4588 #else
4589                         if ((s[1] == command_cmd) || (s[1] == '*'))
4590 #endif
4591
4592                         {
4593                                 /* Hack -- Verify command */
4594 #ifdef JP
4595                                 if (!get_check("ËÜÅö¤Ç¤¹¤«? "))
4596 #else
4597                                 if (!get_check("Are you sure? "))
4598 #endif
4599
4600                                 {
4601                                         /* Hack -- Use space */
4602                                         command_cmd = ' ';
4603                                 }
4604                         }
4605
4606                         /* Find another '^' */
4607                         s = my_strchr(s + 1, '^');
4608                 }
4609         }
4610
4611
4612         /* Hack -- erase the message line. */
4613         prt("", 0, 0);
4614 }
4615
4616
4617
4618 /*
4619  * Check a char for "vowel-hood"
4620  */
4621 bool is_a_vowel(int ch)
4622 {
4623         switch (ch)
4624         {
4625         case 'a':
4626         case 'e':
4627         case 'i':
4628         case 'o':
4629         case 'u':
4630         case 'A':
4631         case 'E':
4632         case 'I':
4633         case 'O':
4634         case 'U':
4635                 return (TRUE);
4636         }
4637
4638         return (FALSE);
4639 }
4640
4641
4642
4643 #if 0
4644
4645 /*
4646  * Replace the first instance of "target" in "buf" with "insert"
4647  * If "insert" is NULL, just remove the first instance of "target"
4648  * In either case, return TRUE if "target" is found.
4649  *
4650  * XXX Could be made more efficient, especially in the
4651  * case where "insert" is smaller than "target".
4652  */
4653 static bool insert_str(char *buf, cptr target, cptr insert)
4654 {
4655         int   i, len;
4656         int                b_len, t_len, i_len;
4657
4658         /* Attempt to find the target (modify "buf") */
4659         buf = my_strstr(buf, target);
4660
4661         /* No target found */
4662         if (!buf) return (FALSE);
4663
4664         /* Be sure we have an insertion string */
4665         if (!insert) insert = "";
4666
4667         /* Extract some lengths */
4668         t_len = strlen(target);
4669         i_len = strlen(insert);
4670         b_len = strlen(buf);
4671
4672         /* How much "movement" do we need? */
4673         len = i_len - t_len;
4674
4675         /* We need less space (for insert) */
4676         if (len < 0)
4677         {
4678                 for (i = t_len; i < b_len; ++i) buf[i+len] = buf[i];
4679         }
4680
4681         /* We need more space (for insert) */
4682         else if (len > 0)
4683         {
4684                 for (i = b_len-1; i >= t_len; --i) buf[i+len] = buf[i];
4685         }
4686
4687         /* If movement occured, we need a new terminator */
4688         if (len) buf[b_len+len] = '\0';
4689
4690         /* Now copy the insertion string */
4691         for (i = 0; i < i_len; ++i) buf[i] = insert[i];
4692
4693         /* Successful operation */
4694         return (TRUE);
4695 }
4696
4697
4698 #endif
4699
4700
4701 /*
4702  * GH
4703  * Called from cmd4.c and a few other places. Just extracts
4704  * a direction from the keymap for ch (the last direction,
4705  * in fact) byte or char here? I'm thinking that keymaps should
4706  * generally only apply to single keys, which makes it no more
4707  * than 128, so a char should suffice... but keymap_act is 256...
4708  */
4709 int get_keymap_dir(char ch)
4710 {
4711         int d = 0;
4712
4713         /* Already a direction? */
4714         if (isdigit(ch))
4715         {
4716                 d = D2I(ch);
4717         }
4718         else
4719         {
4720                 int mode;
4721                 cptr act, s;
4722
4723                 /* Roguelike */
4724                 if (rogue_like_commands)
4725                 {
4726                         mode = KEYMAP_MODE_ROGUE;
4727                 }
4728
4729                 /* Original */
4730                 else
4731                 {
4732                         mode = KEYMAP_MODE_ORIG;
4733                 }
4734
4735                 /* Extract the action (if any) */
4736                 act = keymap_act[mode][(byte)(ch)];
4737
4738                 /* Analyze */
4739                 if (act)
4740                 {
4741                         /* Convert to a direction */
4742                         for (s = act; *s; ++s)
4743                         {
4744                                 /* Use any digits in keymap */
4745                                 if (isdigit(*s)) d = D2I(*s);
4746                         }
4747                 }
4748         }
4749
4750         /* Paranoia */
4751         if (d == 5) d = 0;
4752
4753         /* Return direction */
4754         return (d);
4755 }
4756
4757
4758 #ifdef ALLOW_REPEAT /* TNB */
4759
4760 #define REPEAT_MAX              20
4761
4762 /* Number of chars saved */
4763 static int repeat__cnt = 0;
4764
4765 /* Current index */
4766 static int repeat__idx = 0;
4767
4768 /* Saved "stuff" */
4769 static int repeat__key[REPEAT_MAX];
4770
4771
4772 void repeat_push(int what)
4773 {
4774         /* Too many keys */
4775         if (repeat__cnt == REPEAT_MAX) return;
4776
4777         /* Push the "stuff" */
4778         repeat__key[repeat__cnt++] = what;
4779
4780         /* Prevents us from pulling keys */
4781         ++repeat__idx;
4782 }
4783
4784
4785 bool repeat_pull(int *what)
4786 {
4787         /* All out of keys */
4788         if (repeat__idx == repeat__cnt) return (FALSE);
4789
4790         /* Grab the next key, advance */
4791         *what = repeat__key[repeat__idx++];
4792
4793         /* Success */
4794         return (TRUE);
4795 }
4796
4797 void repeat_check(void)
4798 {
4799         int             what;
4800
4801         /* Ignore some commands */
4802         if (command_cmd == ESCAPE) return;
4803         if (command_cmd == ' ') return;
4804         if (command_cmd == '\r') return;
4805         if (command_cmd == '\n') return;
4806
4807         /* Repeat Last Command */
4808         if (command_cmd == 'n')
4809         {
4810                 /* Reset */
4811                 repeat__idx = 0;
4812
4813                 /* Get the command */
4814                 if (repeat_pull(&what))
4815                 {
4816                         /* Save the command */
4817                         command_cmd = what;
4818                 }
4819         }
4820
4821         /* Start saving new command */
4822         else
4823         {
4824                 /* Reset */
4825                 repeat__cnt = 0;
4826                 repeat__idx = 0;
4827
4828                 what = command_cmd;
4829
4830                 /* Save this command */
4831                 repeat_push(what);
4832         }
4833 }
4834
4835 #endif /* ALLOW_REPEAT -- TNB */
4836
4837
4838 #ifdef SORT_R_INFO
4839
4840 /*
4841  * Array size for which InsertionSort
4842  * is used instead of QuickSort
4843  */
4844 #define CUTOFF 4
4845
4846
4847 /*
4848  * Exchange two sort-entries
4849  * (should probably be coded inline
4850  * for speed increase)
4851  */
4852 static void swap(tag_type *a, tag_type *b)
4853 {
4854         tag_type temp;
4855
4856         temp.tag = a->tag;
4857         temp.pointer = a->pointer;
4858
4859         a->tag = b->tag;
4860         a->pointer = b->pointer;
4861
4862         b->tag = temp.tag;
4863         b->pointer = temp.pointer;
4864 }
4865
4866
4867 /*
4868  * Insertion-Sort algorithm
4869  * (used by the Quicksort algorithm)
4870  */
4871 static void InsertionSort(tag_type elements[], int number)
4872 {
4873         int j, P;
4874
4875         tag_type tmp;
4876
4877         for (P = 1; P < number; P++)
4878         {
4879                 tmp = elements[P];
4880                 for (j = P; (j > 0) && (elements[j - 1].tag > tmp.tag); j--)
4881                         elements[j] = elements[j - 1];
4882                 elements[j] = tmp;
4883         }
4884 }
4885
4886
4887 /*
4888  * Helper function for Quicksort
4889  */
4890 static tag_type median3(tag_type elements[], int left, int right)
4891 {
4892         int center = (left + right) / 2;
4893
4894         if (elements[left].tag > elements[center].tag)
4895                 swap(&elements[left], &elements[center]);
4896         if (elements[left].tag > elements[right].tag)
4897                 swap(&elements[left], &elements[right]);
4898         if (elements[center].tag > elements[right].tag)
4899                 swap(&elements[center], &elements[right]);
4900
4901         swap(&elements[center], &elements[right - 1]);
4902         return (elements[right - 1]);
4903 }
4904
4905
4906 /*
4907  * Quicksort algorithm
4908  *
4909  * The "median of three" pivot selection eliminates
4910  * the bad case of already sorted input.
4911  *
4912  * We use InsertionSort for smaller sub-arrays,
4913  * because it is faster in this case.
4914  *
4915  * For details see: "Data Structures and Algorithm
4916  * Analysis in C" by Mark Allen Weiss.
4917  */
4918 static void quicksort(tag_type elements[], int left, int right)
4919 {
4920         int i, j;
4921         tag_type pivot;
4922
4923         if (left + CUTOFF <= right)
4924         {
4925                 pivot = median3(elements, left, right);
4926
4927                 i = left; j = right -1;
4928
4929                 while (TRUE)
4930                 {
4931                         while (elements[++i].tag < pivot.tag);
4932                         while (elements[--j].tag > pivot.tag);
4933
4934                         if (i < j)
4935                                 swap(&elements[i], &elements[j]);
4936                         else
4937                                 break;
4938                 }
4939
4940                 /* Restore pivot */
4941                 swap(&elements[i], &elements[right - 1]);
4942
4943                 quicksort(elements, left, i - 1);
4944                 quicksort(elements, i + 1, right);
4945         }
4946         else
4947         {
4948                 /* Use InsertionSort on small arrays */
4949                 InsertionSort(elements + left, right - left + 1);
4950         }
4951 }
4952
4953
4954 /*
4955  * Frontend for the sorting algorithm
4956  *
4957  * Sorts an array of tagged pointers
4958  * with <number> elements.
4959  */
4960 void tag_sort(tag_type elements[], int number)
4961 {
4962         quicksort(elements, 0, number - 1);
4963 }
4964
4965 #endif /* SORT_R_INFO */
4966
4967 #ifdef SUPPORT_GAMMA
4968
4969 /* Table of gamma values */
4970 byte gamma_table[256];
4971
4972 /* Table of ln(x/256) * 256 for x going from 0 -> 255 */
4973 static s16b gamma_helper[256] =
4974 {
4975 0,-1420,-1242,-1138,-1065,-1007,-961,-921,-887,-857,-830,-806,-783,-762,-744,-726,
4976 -710,-694,-679,-666,-652,-640,-628,-617,-606,-596,-586,-576,-567,-577,-549,-541,
4977 -532,-525,-517,-509,-502,-495,-488,-482,-475,-469,-463,-457,-451,-455,-439,-434,
4978 -429,-423,-418,-413,-408,-403,-398,-394,-389,-385,-380,-376,-371,-367,-363,-359,
4979 -355,-351,-347,-343,-339,-336,-332,-328,-325,-321,-318,-314,-311,-308,-304,-301,
4980 -298,-295,-291,-288,-285,-282,-279,-276,-273,-271,-268,-265,-262,-259,-257,-254,
4981 -251,-248,-246,-243,-241,-238,-236,-233,-231,-228,-226,-223,-221,-219,-216,-214,
4982 -212,-209,-207,-205,-203,-200,-198,-196,-194,-192,-190,-188,-186,-184,-182,-180,
4983 -178,-176,-174,-172,-170,-168,-166,-164,-162,-160,-158,-156,-155,-153,-151,-149,
4984 -147,-146,-144,-142,-140,-139,-137,-135,-134,-132,-130,-128,-127,-125,-124,-122,
4985 -120,-119,-117,-116,-114,-112,-111,-109,-108,-106,-105,-103,-102,-100,-99,-97,
4986 -96,-95,-93,-92,-90,-89,-87,-86,-85,-83,-82,-80,-79,-78,-76,-75,
4987 -74,-72,-71,-70,-68,-67,-66,-65,-63,-62,-61,-59,-58,-57,-56,-54,
4988 -53,-52,-51,-50,-48,-47,-46,-45,-44,-42,-41,-40,-39,-38,-37,-35,
4989 -34,-33,-32,-31,-30,-29,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,
4990 -17,-16,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1
4991 };
4992
4993
4994 /* 
4995  * Build the gamma table so that floating point isn't needed.
4996  * 
4997  * Note gamma goes from 0->256.  The old value of 100 is now 128.
4998  */
4999 void build_gamma_table(int gamma)
5000 {
5001         int i, n;
5002         
5003         /*
5004          * value is the current sum.
5005          * diff is the new term to add to the series.
5006          */
5007         long value, diff;
5008         
5009         /* Hack - convergence is bad in these cases. */
5010         gamma_table[0] = 0;
5011         gamma_table[255] = 255;
5012         
5013         for (i = 1; i < 255; i++)
5014         {
5015                 /* 
5016                  * Initialise the Taylor series
5017                  *
5018                  * value and diff have been scaled by 256
5019                  */
5020                 
5021                 n = 1;
5022                 value = 256 * 256;
5023                 diff = ((long)gamma_helper[i]) * (gamma - 256);
5024                 
5025                 while (diff)
5026                 {
5027                         value += diff;
5028                         n++;
5029                         
5030                         
5031                         /*
5032                          * Use the following identiy to calculate the gamma table.
5033                          * exp(x) = 1 + x + x^2/2 + x^3/(2*3) + x^4/(2*3*4) +...
5034                          *
5035                          * n is the current term number.
5036                          * 
5037                          * The gamma_helper array contains a table of
5038                          * ln(x/256) * 256
5039                          * This is used because a^b = exp(b*ln(a))
5040                          *
5041                          * In this case:
5042                          * a is i / 256
5043                          * b is gamma.
5044                          *
5045                          * Note that everything is scaled by 256 for accuracy,
5046                          * plus another factor of 256 for the final result to
5047                          * be from 0-255.  Thus gamma_helper[] * gamma must be
5048                          * divided by 256*256 each itteration, to get back to
5049                          * the original power series.
5050                          */
5051                         diff = (((diff / 256) * gamma_helper[i]) * (gamma - 256)) / (256 * n);
5052                 }
5053                 
5054                 /* 
5055                  * Store the value in the table so that the
5056                  * floating point pow function isn't needed .
5057                  */
5058                 gamma_table[i] = ((long)(value / 256) * i) / 256;
5059         }
5060 }
5061
5062 #endif /* SUPPORT_GAMMA */
5063
5064
5065 /*
5066  * Add a series of keypresses to the "queue".
5067  *
5068  * Return any errors generated by Term_keypress() in doing so, or SUCCESS
5069  * if there are none.
5070  *
5071  * Catch the "out of space" error before anything is printed.
5072  *
5073  * NB: The keys added here will be interpreted by any macros or keymaps.
5074  */
5075 errr type_string(cptr str, uint len)
5076 {
5077         errr err = 0;
5078         cptr s;
5079
5080         term *old = Term;
5081
5082         /* Paranoia - no string. */
5083         if (!str) return -1;
5084
5085         /* Hack - calculate the string length here if none given. */
5086         if (!len) len = strlen(str);
5087
5088         /* Activate the main window, as all pastes go there. */
5089         Term_activate(term_screen);
5090
5091         for (s = str; s < str+len; s++)
5092         {
5093                 /* Catch end of string */
5094                 if (*s == '\0') break;
5095
5096                 err = Term_keypress(*s);
5097
5098                 /* Catch errors */
5099                 if (err) break;
5100         }
5101
5102         /* Activate the original window. */
5103         Term_activate(old);
5104
5105         return err;
5106 }
5107
5108
5109
5110 void roff_to_buf(cptr str, int maxlen, char *tbuf, size_t bufsize)
5111 {
5112         int read_pt = 0;
5113         int write_pt = 0;
5114         int line_len = 0;
5115         int word_punct = 0;
5116         char ch[3];
5117         ch[2] = '\0';
5118
5119         while (str[read_pt])
5120         {
5121 #ifdef JP
5122                 bool kinsoku = FALSE;
5123                 bool kanji;
5124 #endif
5125                 int ch_len = 1;
5126
5127                 /* Prepare one character */
5128                 ch[0] = str[read_pt];
5129                 ch[1] = '\0';
5130 #ifdef JP
5131                 kanji  = iskanji(ch[0]);
5132
5133                 if (kanji)
5134                 {
5135                         ch[1] = str[read_pt+1];
5136                         ch_len = 2;
5137
5138                         if (strcmp(ch, "¡£") == 0 ||
5139                             strcmp(ch, "¡¢") == 0 ||
5140                             strcmp(ch, "¥£") == 0 ||
5141                             strcmp(ch, "¡¼") == 0)
5142                                 kinsoku = TRUE;
5143                 }
5144                 else if (!isprint(ch[0]))
5145                         ch[0] = ' ';
5146 #else
5147                 if (!isprint(ch[0]))
5148                         ch[0] = ' ';
5149 #endif
5150
5151                 if (line_len + ch_len > maxlen - 1 || str[read_pt] == '\n')
5152                 {
5153                         int word_len;
5154
5155                         /* return to better wrapping point. */
5156                         /* Space character at the end of the line need not to be printed. */
5157                         word_len = read_pt - word_punct;
5158 #ifdef JP
5159                         if (kanji && !kinsoku)
5160                                 /* nothing */ ;
5161                         else
5162 #endif
5163                         if (ch[0] == ' ' || word_len >= line_len/2)
5164                                 read_pt++;
5165                         else
5166                         {
5167                                 read_pt = word_punct;
5168                                 if (str[word_punct] == ' ')
5169                                         read_pt++;
5170                                 write_pt -= word_len;
5171                         }
5172
5173                         tbuf[write_pt++] = '\0';
5174                         line_len = 0;
5175                         word_punct = read_pt;
5176                         continue;
5177                 }
5178                 if (ch[0] == ' ')
5179                         word_punct = read_pt;
5180 #ifdef JP
5181                 if (!kinsoku) word_punct = read_pt;
5182 #endif
5183
5184                 /* Not enough buffer size */
5185                 if ((size_t)(write_pt + 3) >= bufsize) break;
5186
5187                 tbuf[write_pt++] = ch[0];
5188                 line_len++;
5189                 read_pt++;
5190 #ifdef JP
5191                 if (kanji)
5192                 {
5193                         tbuf[write_pt++] = ch[1];
5194                         line_len++;
5195                         read_pt++;
5196                 }
5197 #endif
5198         }
5199         tbuf[write_pt] = '\0';
5200         tbuf[write_pt+1] = '\0';
5201
5202         return;
5203 }
5204
5205
5206 /*
5207  * The my_strcpy() function copies up to 'bufsize'-1 characters from 'src'
5208  * to 'buf' and NUL-terminates the result.  The 'buf' and 'src' strings may
5209  * not overlap.
5210  *
5211  * my_strcpy() returns strlen(src).  This makes checking for truncation
5212  * easy.  Example: if (my_strcpy(buf, src, sizeof(buf)) >= sizeof(buf)) ...;
5213  *
5214  * This function should be equivalent to the strlcpy() function in BSD.
5215  */
5216 size_t my_strcpy(char *buf, const char *src, size_t bufsize)
5217 {
5218 #ifdef JP
5219
5220         char *d = buf;
5221         const char *s = src;
5222         size_t len = 0;
5223
5224         /* reserve for NUL termination */
5225         bufsize--;
5226
5227         /* Copy as many bytes as will fit */
5228         while (len < bufsize)
5229         {
5230                 if (iskanji(*s))
5231                 {
5232                         if (len + 1 >= bufsize || !*(s+1)) break;
5233                         *d++ = *s++;
5234                         *d++ = *s++;
5235                         len += 2;
5236                 }
5237                 else
5238                 {
5239                         *d++ = *s++;
5240                         len++;
5241                 }
5242         }
5243         *d = '\0';
5244         while(*s++) len++;
5245
5246         return len;
5247
5248 #else
5249
5250         size_t len = strlen(src);
5251         size_t ret = len;
5252
5253         /* Paranoia */
5254         if (bufsize == 0) return ret;
5255
5256         /* Truncate */
5257         if (len >= bufsize) len = bufsize - 1;
5258
5259         /* Copy the string and terminate it */
5260         (void)memcpy(buf, src, len);
5261         buf[len] = '\0';
5262
5263         /* Return strlen(src) */
5264         return ret;
5265
5266 #endif
5267 }
5268
5269
5270 /*
5271  * The my_strcat() tries to append a string to an existing NUL-terminated string.
5272  * It never writes more characters into the buffer than indicated by 'bufsize' and
5273  * NUL-terminates the buffer.  The 'buf' and 'src' strings may not overlap.
5274  *
5275  * my_strcat() returns strlen(buf) + strlen(src).  This makes checking for
5276  * truncation easy.  Example:
5277  * if (my_strcat(buf, src, sizeof(buf)) >= sizeof(buf)) ...;
5278  *
5279  * This function should be equivalent to the strlcat() function in BSD.
5280  */
5281 size_t my_strcat(char *buf, const char *src, size_t bufsize)
5282 {
5283         size_t dlen = strlen(buf);
5284
5285         /* Is there room left in the buffer? */
5286         if (dlen < bufsize - 1)
5287         {
5288                 /* Append as much as possible  */
5289                 return (dlen + my_strcpy(buf + dlen, src, bufsize - dlen));
5290         }
5291         else
5292         {
5293                 /* Return without appending */
5294                 return (dlen + strlen(src));
5295         }
5296 }
5297
5298
5299 /*
5300  * A copy of ANSI strstr()
5301  *
5302  * my_strstr() can handle Kanji strings correctly.
5303  */
5304 char *my_strstr(const char *haystack, const char *needle)
5305 {
5306         int i;
5307         int l1 = strlen(haystack);
5308         int l2 = strlen(needle);
5309
5310         if (l1 >= l2)
5311         {
5312                 for(i = 0; i <= l1 - l2; i++)
5313                 {
5314                         if(!strncmp(haystack + i, needle, l2))
5315                                 return (char *)haystack + i;
5316
5317 #ifdef JP
5318                         if (iskanji(*(haystack + i))) i++;
5319 #endif
5320                 }
5321         }
5322
5323         return NULL;
5324 }
5325
5326
5327 /*
5328  * A copy of ANSI strchr()
5329  *
5330  * my_strchr() can handle Kanji strings correctly.
5331  */
5332 char *my_strchr(const char *ptr, char ch)
5333 {
5334         for ( ; *ptr != '\0'; ptr++)
5335         {
5336                 if (*ptr == ch) return (char *)ptr;
5337
5338 #ifdef JP
5339                 if (iskanji(*ptr)) ptr++;
5340 #endif
5341         }
5342
5343         return NULL;
5344 }
5345
5346
5347 /*
5348  * Convert string to lower case
5349  */
5350 void str_tolower(char *str)
5351 {
5352         /* Force to be lower case string */
5353         for (; *str; str++)
5354         {
5355 #ifdef JP
5356                 if (iskanji(*str))
5357                 {
5358                         str++;
5359                         continue;
5360                 }
5361 #endif
5362                 *str = tolower(*str);
5363         }
5364 }
5365
5366
5367 /*
5368  * Get a keypress from the user.
5369  * And interpret special keys as internal code.
5370  *
5371  * This function is a Mega-Hack and depend on pref-xxx.prf's.
5372  * Currently works on Linux(UNIX), Windows, and Macintosh only.
5373  */
5374 int inkey_special(bool numpad_cursor)
5375 {
5376         static const struct {
5377                 cptr keyname;
5378                 int keyflag;
5379         } modifier_key_list[] = {
5380                 {"shift-", SKEY_MOD_SHIFT},
5381                 {"control-", SKEY_MOD_CONTROL},
5382                 {NULL, 0},
5383         };
5384
5385         static const struct {
5386                 bool numpad;
5387                 cptr keyname;
5388                 int keycode;
5389         } special_key_list[] = {
5390                 {FALSE, "Down]", SKEY_DOWN},
5391                 {FALSE, "Left]", SKEY_LEFT},
5392                 {FALSE, "Right]", SKEY_RIGHT},
5393                 {FALSE, "Up]", SKEY_UP},
5394                 {FALSE, "Page_Up]", SKEY_PGUP},
5395                 {FALSE, "Page_Down]", SKEY_PGDOWN},
5396                 {FALSE, "Home]", SKEY_TOP},
5397                 {FALSE, "End]", SKEY_BOTTOM},
5398                 {TRUE, "KP_Down]", SKEY_DOWN},
5399                 {TRUE, "KP_Left]", SKEY_LEFT},
5400                 {TRUE, "KP_Right]", SKEY_RIGHT},
5401                 {TRUE, "KP_Up]", SKEY_UP},
5402                 {TRUE, "KP_Page_Up]", SKEY_PGUP},
5403                 {TRUE, "KP_Page_Down]", SKEY_PGDOWN},
5404                 {TRUE, "KP_Home]", SKEY_TOP},
5405                 {TRUE, "KP_End]", SKEY_BOTTOM},
5406                 {TRUE, "KP_2]", SKEY_DOWN},
5407                 {TRUE, "KP_4]", SKEY_LEFT},
5408                 {TRUE, "KP_6]", SKEY_RIGHT},
5409                 {TRUE, "KP_8]", SKEY_UP},
5410                 {TRUE, "KP_9]", SKEY_PGUP},
5411                 {TRUE, "KP_3]", SKEY_PGDOWN},
5412                 {TRUE, "KP_7]", SKEY_TOP},
5413                 {TRUE, "KP_1]", SKEY_BOTTOM},
5414                 {FALSE, NULL, 0},
5415         };
5416         char buf[1024];
5417         cptr str = buf;
5418         char key;
5419         int skey = 0;
5420         int modifier = 0;
5421         int i;
5422         size_t trig_len;
5423
5424         /*
5425          * Forget macro trigger ----
5426          * It's important if we are already expanding macro action
5427          */
5428         inkey_macro_trigger_string[0] = '\0';
5429
5430         /* Get a keypress */
5431         key = inkey();
5432
5433         /* Examine trigger string */
5434         trig_len = strlen(inkey_macro_trigger_string);
5435
5436         /* Already known that no special key */
5437         if (!trig_len) return (int)((unsigned char)key);
5438
5439         /*
5440          * Hack -- Ignore macro defined on ASCII characters.
5441          */
5442         if (trig_len == 1 && parse_macro)
5443         {
5444                 char c = inkey_macro_trigger_string[0];
5445
5446                 /* Cancel macro action on the queue */
5447                 forget_macro_action();
5448
5449                 /* Return the originaly pressed key */
5450                 return (int)((unsigned char)c);
5451         }
5452
5453         /* Convert the trigger */
5454         ascii_to_text(buf, inkey_macro_trigger_string);
5455
5456         /* Check the prefix "\[" */
5457         if (prefix(str, "\\["))
5458         {
5459                 /* Skip "\[" */
5460                 str += 2;
5461
5462                 /* Examine modifier keys */
5463                 while (TRUE)
5464                 {
5465                         for (i = 0; modifier_key_list[i].keyname; i++)
5466                         {
5467                                 if (prefix(str, modifier_key_list[i].keyname))
5468                                 {
5469                                         /* Get modifier key flag */
5470                                         str += strlen(modifier_key_list[i].keyname);
5471                                         modifier |= modifier_key_list[i].keyflag;
5472                                 }
5473                         }
5474
5475                         /* No more modifier key found */
5476                         if (!modifier_key_list[i].keyname) break;
5477                 }
5478
5479                 /* numpad_as_cursorkey option force numpad keys to input numbers */
5480                 if (!numpad_as_cursorkey) numpad_cursor = FALSE;
5481
5482                 /* Get a special key code */
5483                 for (i = 0; special_key_list[i].keyname; i++)
5484                 {
5485                         if ((!special_key_list[i].numpad || numpad_cursor) &&
5486                             streq(str, special_key_list[i].keyname))
5487                         {
5488                                 skey = special_key_list[i].keycode;
5489                                 break;
5490                         }
5491                 }
5492
5493                 /* A special key found */
5494                 if (skey)
5495                 {
5496                         /* Cancel macro action on the queue */
5497                         forget_macro_action();
5498
5499                         /* Return special key code and modifier flags */
5500                         return (skey | modifier);
5501                 }
5502         }
5503
5504         /* No special key found? */
5505
5506         /* Don't bother with this trigger no more */
5507         inkey_macro_trigger_string[0] = '\0';
5508
5509         /* Return normal keycode */
5510         return (int)((unsigned char)key);
5511 }