OSDN Git Service

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