OSDN Git Service

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