OSDN Git Service

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