OSDN Git Service

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