OSDN Git Service

201a89aac6c3a4d7b52e58e3b4b196b17281a41f
[hengband/hengband.git] / src / xtra1.c
1
2 /* File: misc.c */
3
4 /*
5  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
6  *
7  * This software may be copied and distributed for educational, research,
8  * and not for profit purposes provided that this copyright and statement
9  * are included in all such copies.  Other copyrights may also apply.
10  */
11
12 /* Purpose: misc code */
13
14 #include "angband.h"
15
16
17
18
19 /*
20  * Converts stat num into a six-char (right justified) string
21  */
22 void cnv_stat(int val, char *out_val)
23 {
24         /* Above 18 */
25         if (val > 18)
26         {
27                 int bonus = (val - 18);
28
29                 if (bonus >= 220)
30                 {
31                         sprintf(out_val, "18/%3s", "***");
32                 }
33                 else if (bonus >= 100)
34                 {
35                         sprintf(out_val, "18/%03d", bonus);
36                 }
37                 else
38                 {
39                         sprintf(out_val, " 18/%02d", bonus);
40                 }
41         }
42
43         /* From 3 to 18 */
44         else
45         {
46                 sprintf(out_val, "    %2d", val);
47         }
48 }
49
50
51
52 /*
53  * Modify a stat value by a "modifier", return new value
54  *
55  * Stats go up: 3,4,...,17,18,18/10,18/20,...,18/220
56  * Or even: 18/13, 18/23, 18/33, ..., 18/220
57  *
58  * Stats go down: 18/220, 18/210,..., 18/10, 18, 17, ..., 3
59  * Or even: 18/13, 18/03, 18, 17, ..., 3
60  */
61 s16b modify_stat_value(int value, int amount)
62 {
63         int    i;
64
65         /* Reward */
66         if (amount > 0)
67         {
68                 /* Apply each point */
69                 for (i = 0; i < amount; i++)
70                 {
71                         /* One point at a time */
72                         if (value < 18) value++;
73
74                         /* Ten "points" at a time */
75                         else value += 10;
76                 }
77         }
78
79         /* Penalty */
80         else if (amount < 0)
81         {
82                 /* Apply each point */
83                 for (i = 0; i < (0 - amount); i++)
84                 {
85                         /* Ten points at a time */
86                         if (value >= 18+10) value -= 10;
87
88                         /* Hack -- prevent weirdness */
89                         else if (value > 18) value = 18;
90
91                         /* One point at a time */
92                         else if (value > 3) value--;
93                 }
94         }
95
96         /* Return new value */
97         return (value);
98 }
99
100
101
102 /*
103  * Print character info at given row, column in a 13 char field
104  */
105 static void prt_field(cptr info, int row, int col)
106 {
107         /* Dump 13 spaces to clear */
108         c_put_str(TERM_WHITE, "             ", row, col);
109
110         /* Dump the info itself */
111         c_put_str(TERM_L_BLUE, info, row, col);
112 }
113
114
115 /*
116  *  Whether daytime or not
117  */
118 bool is_daytime(void)
119 {
120         s32b len = TURNS_PER_TICK * TOWN_DAWN;
121         if ((turn % len) < (len / 2))
122                 return TRUE;
123         else
124                 return FALSE;
125 }
126
127 /*
128  * Extract day, hour, min
129  */
130 void extract_day_hour_min(int *day, int *hour, int *min)
131 {
132         const s32b A_DAY = TURNS_PER_TICK * TOWN_DAWN;
133         s32b turn_in_today = (turn + A_DAY / 4) % A_DAY;
134
135         switch (p_ptr->start_race)
136         {
137         case RACE_VAMPIRE:
138         case RACE_SKELETON:
139         case RACE_ZOMBIE:
140         case RACE_SPECTRE:
141                 *day = (turn - A_DAY * 3 / 4) / A_DAY + 1;
142                 break;
143         default:
144                 *day = (turn + A_DAY / 4) / A_DAY + 1;
145                 break;
146         }
147         *hour = (24 * turn_in_today / A_DAY) % 24;
148         *min = (1440 * turn_in_today / A_DAY) % 60;
149 }
150
151 /*
152  * Print time
153  */
154 void prt_time(void)
155 {
156         int day, hour, min;
157
158         /* Dump 13 spaces to clear */
159         c_put_str(TERM_WHITE, "             ", ROW_DAY, COL_DAY);
160
161         extract_day_hour_min(&day, &hour, &min);
162
163         /* Dump the info itself */
164 #ifdef JP
165         if (day < 1000) c_put_str(TERM_WHITE, format("%2dÆüÌÜ", day), ROW_DAY, COL_DAY);
166         else c_put_str(TERM_WHITE, "***ÆüÌÜ", ROW_DAY, COL_DAY);
167 #else
168         if (day < 1000) c_put_str(TERM_WHITE, format("Day%3d", day), ROW_DAY, COL_DAY);
169         else c_put_str(TERM_WHITE, "Day***", ROW_DAY, COL_DAY);
170 #endif
171
172         c_put_str(TERM_WHITE, format("%2d:%02d", hour, min), ROW_DAY, COL_DAY+7);
173 }
174
175
176 cptr map_name(void)
177 {
178         if (p_ptr->inside_quest && is_fixed_quest_idx(p_ptr->inside_quest)
179             && (quest[p_ptr->inside_quest].flags & QUEST_FLAG_PRESET))
180 #ifdef JP
181                 return "¥¯¥¨¥¹¥È";
182 #else
183                 return "Quest";
184 #endif
185         else if (p_ptr->wild_mode)
186 #ifdef JP
187                 return "ÃϾå";
188 #else
189                 return "Surface";
190 #endif
191         else if (p_ptr->inside_arena)
192 #ifdef JP
193                 return "¥¢¥ê¡¼¥Ê";
194 #else
195                 return "Arena";
196 #endif
197         else if (p_ptr->inside_battle)
198 #ifdef JP
199                 return "Æ®µ»¾ì";
200 #else
201                 return "Monster Arena";
202 #endif
203         else if (!dun_level && p_ptr->town_num)
204                 return town[p_ptr->town_num].name;
205         else
206                 return d_name+d_info[dungeon_type].name;
207 }
208
209 /*
210  * Print dungeon
211  */
212 static void prt_dungeon(void)
213 {
214         cptr dungeon_name;
215         int col;
216
217         /* Dump 13 spaces to clear */
218         c_put_str(TERM_WHITE, "             ", ROW_DUNGEON, COL_DUNGEON);
219
220         dungeon_name = map_name();
221
222         col = COL_DUNGEON + 6 - strlen(dungeon_name)/2;
223         if (col < 0) col = 0;
224
225         /* Dump the info itself */
226         c_put_str(TERM_L_UMBER, format("%s",dungeon_name),
227                   ROW_DUNGEON, col);
228 }
229
230
231
232
233 /*
234  * Print character stat in given row, column
235  */
236 static void prt_stat(int stat)
237 {
238         char tmp[32];
239
240         /* Display "injured" stat */
241         if (p_ptr->stat_cur[stat] < p_ptr->stat_max[stat])
242         {
243                 put_str(stat_names_reduced[stat], ROW_STAT + stat, 0);
244                 cnv_stat(p_ptr->stat_use[stat], tmp);
245                 c_put_str(TERM_YELLOW, tmp, ROW_STAT + stat, COL_STAT + 6);
246         }
247
248         /* Display "healthy" stat */
249         else
250         {
251                 put_str(stat_names[stat], ROW_STAT + stat, 0);
252                 cnv_stat(p_ptr->stat_use[stat], tmp);
253                 c_put_str(TERM_L_GREEN, tmp, ROW_STAT + stat, COL_STAT + 6);
254         }
255
256         /* Indicate natural maximum */
257         if (p_ptr->stat_max[stat] == p_ptr->stat_max_max[stat])
258         {
259 #ifdef JP
260                 /* ÆüËܸì¤Ë¤«¤Ö¤é¤Ê¤¤¤è¤¦¤Ëɽ¼¨°ÌÃÖ¤òÊѹ¹ */
261                 put_str("!", ROW_STAT + stat, 5);
262 #else
263                 put_str("!", ROW_STAT + stat, 3);
264 #endif
265
266         }
267 }
268
269
270 /*
271  *  Data structure for status bar
272  */
273 #define BAR_TSUYOSHI 0
274 #define BAR_HALLUCINATION 1
275 #define BAR_BLINDNESS 2
276 #define BAR_PARALYZE 3
277 #define BAR_CONFUSE 4
278 #define BAR_POISONED 5
279 #define BAR_AFRAID 6
280 #define BAR_LEVITATE 7
281 #define BAR_REFLECTION 8
282 #define BAR_PASSWALL 9
283 #define BAR_WRAITH 10
284 #define BAR_PROTEVIL 11
285 #define BAR_KAWARIMI 12
286 #define BAR_MAGICDEFENSE 13
287 #define BAR_EXPAND 14
288 #define BAR_STONESKIN 15
289 #define BAR_MULTISHADOW 16
290 #define BAR_REGMAGIC 17
291 #define BAR_ULTIMATE 18
292 #define BAR_INVULN 19
293 #define BAR_IMMACID 20
294 #define BAR_RESACID 21
295 #define BAR_IMMELEC 22
296 #define BAR_RESELEC 23
297 #define BAR_IMMFIRE 24
298 #define BAR_RESFIRE 25
299 #define BAR_IMMCOLD 26
300 #define BAR_RESCOLD 27
301 #define BAR_RESPOIS 28
302 #define BAR_RESNETH 29
303 #define BAR_RESTIME 30
304 #define BAR_DUSTROBE 31
305 #define BAR_SHFIRE 32
306 #define BAR_TOUKI 33
307 #define BAR_SHHOLY 34
308 #define BAR_EYEEYE 35
309 #define BAR_BLESSED 36
310 #define BAR_HEROISM 37
311 #define BAR_BERSERK 38
312 #define BAR_ATTKFIRE 39
313 #define BAR_ATTKCOLD 40
314 #define BAR_ATTKELEC 41
315 #define BAR_ATTKACID 42
316 #define BAR_ATTKPOIS 43
317 #define BAR_ATTKCONF 44
318 #define BAR_SENSEUNSEEN 45
319 #define BAR_TELEPATHY 46
320 #define BAR_REGENERATION 47
321 #define BAR_INFRAVISION 48
322 #define BAR_STEALTH 49
323 #define BAR_SUPERSTEALTH 50
324 #define BAR_RECALL 51
325 #define BAR_ALTER 52
326 #define BAR_SHCOLD 53
327 #define BAR_SHELEC 54
328 #define BAR_SHSHADOW 55
329 #define BAR_MIGHT 56
330 #define BAR_BUILD 57
331 #define BAR_ANTIMULTI 58
332 #define BAR_ANTITELE 59
333 #define BAR_ANTIMAGIC 60
334 #define BAR_PATIENCE 61
335 #define BAR_REVENGE 62
336 #define BAR_RUNESWORD 63
337 #define BAR_VAMPILIC 64
338 #define BAR_CURE 65
339 #define BAR_ESP_EVIL 66
340
341 static struct {
342         byte attr;
343         cptr sstr;
344         cptr lstr;
345 } bar[]
346 #ifdef JP
347 = {
348         {TERM_YELLOW, "¤Ä", "¤Ä¤è¤·"},
349         {TERM_VIOLET, "¸¸", "¸¸³Ð"},
350         {TERM_L_DARK, "ÌÕ", "ÌÕÌÜ"},
351         {TERM_RED, "áã", "Ëãáã"},
352         {TERM_VIOLET, "Íð", "º®Íð"},
353         {TERM_GREEN, "ÆÇ", "ÆÇ"},
354         {TERM_BLUE, "¶²", "¶²ÉÝ"},
355         {TERM_L_BLUE, "Éâ", "ÉâÍ·"},
356         {TERM_SLATE, "È¿", "È¿¼Í"},
357         {TERM_SLATE, "ÊÉ", "ÊÉÈ´¤±"},
358         {TERM_L_DARK, "Í©", "Í©ÂÎ"},
359         {TERM_SLATE, "¼Ù", "ËɼÙ"},
360         {TERM_VIOLET, "ÊÑ", "ÊѤï¤ê¿È"},
361         {TERM_YELLOW, "Ëâ", "ËâË¡³»"},
362         {TERM_L_UMBER, "¿­", "¿­¤Ó"},
363         {TERM_WHITE, "ÀÐ", "ÀÐÈ©"},
364         {TERM_L_BLUE, "ʬ", "ʬ¿È"},
365         {TERM_SLATE, "ËÉ", "ËâË¡Ëɸæ"},
366         {TERM_YELLOW, "µæ", "µæ¶Ë"},
367         {TERM_YELLOW, "̵", "̵Ũ"},
368         {TERM_L_GREEN, "»À", "»ÀÌȱÖ"},
369         {TERM_GREEN, "»À", "ÂÑ»À"},
370         {TERM_L_BLUE, "ÅÅ", "ÅÅÌȱÖ"},
371         {TERM_BLUE, "ÅÅ", "ÂÑÅÅ"},
372         {TERM_L_RED, "²Ð", "²ÐÌȱÖ"},
373         {TERM_RED, "²Ð", "ÂѲÐ"},
374         {TERM_WHITE, "Îä", "ÎäÌȱÖ"},
375         {TERM_SLATE, "Îä", "ÂÑÎä"},
376         {TERM_GREEN, "ÆÇ", "ÂÑÆÇ"},
377         {TERM_L_DARK, "¹ö", "ÂÑÃϹö"},
378         {TERM_L_BLUE, "»þ", "ÂÑ»þ´Ö"},
379         {TERM_L_DARK, "¶À", "¶À¥ª¡¼¥é"},
380         {TERM_L_RED, "¥ª", "²Ð¥ª¡¼¥é"},
381         {TERM_WHITE, "Æ®", "Æ®µ¤"},
382         {TERM_WHITE, "À»", "À»¥ª¡¼¥é"},
383         {TERM_VIOLET, "ÌÜ", "ÌܤˤÏÌÜ"},
384         {TERM_WHITE, "½Ë", "½ËÊ¡"},
385         {TERM_WHITE, "ͦ", "ͦ"},
386         {TERM_RED, "¶¸", "¶¸Íð"},
387         {TERM_L_RED, "²Ð", "Ëâ·õ²Ð"},
388         {TERM_WHITE, "Îä", "Ëâ·õÎä"},
389         {TERM_L_BLUE, "ÅÅ", "Ëâ·õÅÅ"},
390         {TERM_SLATE, "»À", "Ëâ·õ»À"},
391         {TERM_L_GREEN, "ÆÇ", "Ëâ·õÆÇ"},
392         {TERM_RED, "Íð", "º®ÍðÂÇ·â"},
393         {TERM_L_BLUE, "»ë", "Æ©ÌÀ»ë"},
394         {TERM_ORANGE, "¥Æ", "¥Æ¥ì¥Ñ¥·"},
395         {TERM_L_BLUE, "²ó", "²óÉü"},
396         {TERM_L_RED, "ÀÖ", "ÀÖ³°"},
397         {TERM_UMBER, "±£", "±£Ì©"},
398         {TERM_YELLOW, "±£", "Ķ±£Ì©"},
399         {TERM_WHITE, "µ¢", "µ¢´Ô"},
400         {TERM_WHITE, "¸½", "¸½¼ÂÊÑÍÆ"},
401         /* Hex */
402         {TERM_WHITE, "¥ª", "ɹ¥ª¡¼¥é"},
403         {TERM_BLUE, "¥ª", "ÅÅ¥ª¡¼¥é"},
404         {TERM_L_DARK, "¥ª", "±Æ¥ª¡¼¥é"},
405         {TERM_YELLOW, "ÏÓ", "ÏÓÎ϶¯²½"},
406         {TERM_RED, "Æù", "ÆùÂζ¯²½"},
407         {TERM_L_DARK, "¿£", "È¿Áý¿£"},
408         {TERM_ORANGE, "¥Æ", "È¿¥Æ¥ì¥Ý"},
409         {TERM_RED, "Ëâ", "È¿ËâË¡"},
410         {TERM_SLATE, "²æ", "²æËý"},
411         {TERM_SLATE, "Àë", "Àë¹ð"},
412         {TERM_L_DARK, "·õ", "Ëâ·õ²½"},
413         {TERM_RED, "µÛ", "µÛ·ìÂÇ·â"},
414         {TERM_WHITE, "²ó", "²óÉü"},
415         {TERM_L_DARK, "´¶", "¼Ù°­´¶ÃÎ"},
416         {0, NULL, NULL}
417 };
418 #else
419 = {
420         {TERM_YELLOW, "Ts", "Tsuyoshi"},
421         {TERM_VIOLET, "Ha", "Halluc"},
422         {TERM_L_DARK, "Bl", "Blind"},
423         {TERM_RED, "Pa", "Paralyzed"},
424         {TERM_VIOLET, "Cf", "Confused"},
425         {TERM_GREEN, "Po", "Poisoned"},
426         {TERM_BLUE, "Af", "Afraid"},
427         {TERM_L_BLUE, "Lv", "Levit"},
428         {TERM_SLATE, "Rf", "Reflect"},
429         {TERM_SLATE, "Pw", "PassWall"},
430         {TERM_L_DARK, "Wr", "Wraith"},
431         {TERM_SLATE, "Ev", "PrtEvl"},
432         {TERM_VIOLET, "Kw", "Kawarimi"},
433         {TERM_YELLOW, "Md", "MgcArm"},
434         {TERM_L_UMBER, "Eh", "Expand"},
435         {TERM_WHITE, "Ss", "StnSkn"},
436         {TERM_L_BLUE, "Ms", "MltShdw"},
437         {TERM_SLATE, "Rm", "ResMag"},
438         {TERM_YELLOW, "Ul", "Ultima"},
439         {TERM_YELLOW, "Iv", "Invuln"},
440         {TERM_L_GREEN, "IAc", "ImmAcid"},
441         {TERM_GREEN, "Ac", "Acid"},
442         {TERM_L_BLUE, "IEl", "ImmElec"},
443         {TERM_BLUE, "El", "Elec"},
444         {TERM_L_RED, "IFi", "ImmFire"},
445         {TERM_RED, "Fi", "Fire"},
446         {TERM_WHITE, "ICo", "ImmCold"},
447         {TERM_SLATE, "Co", "Cold"},
448         {TERM_GREEN, "Po", "Pois"},
449         {TERM_L_DARK, "Nt", "Nthr"},
450         {TERM_L_BLUE, "Ti", "Time"},
451         {TERM_L_DARK, "Mr", "Mirr"},
452         {TERM_L_RED, "SFi", "SFire"},
453         {TERM_WHITE, "Fo", "Force"},
454         {TERM_WHITE, "Ho", "Holy"},
455         {TERM_VIOLET, "Ee", "EyeEye"},
456         {TERM_WHITE, "Bs", "Bless"},
457         {TERM_WHITE, "He", "Hero"},
458         {TERM_RED, "Br", "Berserk"},
459         {TERM_L_RED, "BFi", "BFire"},
460         {TERM_WHITE, "BCo", "BCold"},
461         {TERM_L_BLUE, "BEl", "BElec"},
462         {TERM_SLATE, "BAc", "BAcid"},
463         {TERM_L_GREEN, "BPo", "BPois"},
464         {TERM_RED, "TCf", "TchCnf"},
465         {TERM_L_BLUE, "Se", "SInv"},
466         {TERM_ORANGE, "Te", "Telepa"},
467         {TERM_L_BLUE, "Rg", "Regen"},
468         {TERM_L_RED, "If", "Infr"},
469         {TERM_UMBER, "Sl", "Stealth"},
470         {TERM_YELLOW, "Stlt", "Stealth"},
471         {TERM_WHITE, "Rc", "Recall"},
472         {TERM_WHITE, "Al", "Alter"},
473         /* Hex */
474         {TERM_WHITE, "SCo", "SCold"},
475         {TERM_BLUE, "SEl", "SElec"},
476         {TERM_L_DARK, "SSh", "SShadow"},
477         {TERM_YELLOW, "EMi", "ExMight"},
478         {TERM_RED, "Bu", "BuildUp"},
479         {TERM_L_DARK, "AMl", "AntiMulti"},
480         {TERM_ORANGE, "AT", "AntiTele"},
481         {TERM_RED, "AM", "AntiMagic"},
482         {TERM_SLATE, "Pa", "Patience"},
483         {TERM_SLATE, "Rv", "Revenge"},
484         {TERM_L_DARK, "Rs", "RuneSword"},
485         {TERM_RED, "Vm", "Vampiric"},
486         {TERM_WHITE, "Cu", "Cure"},
487         {TERM_L_DARK, "ET", "EvilTele"},
488         {0, NULL, NULL}
489 };
490 #endif
491
492 #define ADD_FLG(FLG) (bar_flags[FLG / 32] |= (1L << (FLG % 32)))
493 #define IS_FLG(FLG) (bar_flags[FLG / 32] & (1L << (FLG % 32)))
494
495
496 /*
497  *  Show status bar
498  */
499 static void prt_status(void)
500 {
501         u32b bar_flags[3];
502         int wid, hgt, row_statbar, max_col_statbar;
503         int i, col = 0, num = 0;
504         int space = 2;
505
506         Term_get_size(&wid, &hgt);
507         row_statbar = hgt + ROW_STATBAR;
508         max_col_statbar = wid + MAX_COL_STATBAR;
509
510         Term_erase(0, row_statbar, max_col_statbar);
511
512         bar_flags[0] = bar_flags[1] = bar_flags[2] = 0L;
513
514         /* Tsuyoshi  */
515         if (p_ptr->tsuyoshi) ADD_FLG(BAR_TSUYOSHI);
516
517         /* Hallucinating */
518         if (p_ptr->image) ADD_FLG(BAR_HALLUCINATION);
519
520         /* Blindness */
521         if (p_ptr->blind) ADD_FLG(BAR_BLINDNESS);
522
523         /* Paralysis */
524         if (p_ptr->paralyzed) ADD_FLG(BAR_PARALYZE);
525
526         /* Confusion */
527         if (p_ptr->confused) ADD_FLG(BAR_CONFUSE);
528
529         /* Posioned */
530         if (p_ptr->poisoned) ADD_FLG(BAR_POISONED);
531
532         /* Times see-invisible */
533         if (p_ptr->tim_invis) ADD_FLG(BAR_SENSEUNSEEN);
534
535         /* Timed esp */
536         if (IS_TIM_ESP()) ADD_FLG(BAR_TELEPATHY);
537
538         /* Timed regenerate */
539         if (p_ptr->tim_regen) ADD_FLG(BAR_REGENERATION);
540
541         /* Timed infra-vision */
542         if (p_ptr->tim_infra) ADD_FLG(BAR_INFRAVISION);
543
544         /* Protection from evil */
545         if (p_ptr->protevil) ADD_FLG(BAR_PROTEVIL);
546
547         /* Invulnerability */
548         if (IS_INVULN()) ADD_FLG(BAR_INVULN);
549
550         /* Wraith form */
551         if (p_ptr->wraith_form) ADD_FLG(BAR_WRAITH);
552
553         /* Kabenuke */
554         if (p_ptr->kabenuke) ADD_FLG(BAR_PASSWALL);
555
556         if (p_ptr->tim_reflect) ADD_FLG(BAR_REFLECTION);
557
558         /* Heroism */
559         if (IS_HERO()) ADD_FLG(BAR_HEROISM);
560
561         /* Super Heroism / berserk */
562         if (p_ptr->shero) ADD_FLG(BAR_BERSERK);
563
564         /* Blessed */
565         if (IS_BLESSED()) ADD_FLG(BAR_BLESSED);
566
567         /* Shield */
568         if (p_ptr->magicdef) ADD_FLG(BAR_MAGICDEFENSE);
569
570         if (p_ptr->tsubureru) ADD_FLG(BAR_EXPAND);
571
572         if (p_ptr->shield) ADD_FLG(BAR_STONESKIN);
573         
574         if (p_ptr->special_defense & NINJA_KAWARIMI) ADD_FLG(BAR_KAWARIMI);
575
576         /* Oppose Acid */
577         if (p_ptr->special_defense & DEFENSE_ACID) ADD_FLG(BAR_IMMACID);
578         if (IS_OPPOSE_ACID()) ADD_FLG(BAR_RESACID);
579
580         /* Oppose Lightning */
581         if (p_ptr->special_defense & DEFENSE_ELEC) ADD_FLG(BAR_IMMELEC);
582         if (IS_OPPOSE_ELEC()) ADD_FLG(BAR_RESELEC);
583
584         /* Oppose Fire */
585         if (p_ptr->special_defense & DEFENSE_FIRE) ADD_FLG(BAR_IMMFIRE);
586         if (IS_OPPOSE_FIRE()) ADD_FLG(BAR_RESFIRE);
587
588         /* Oppose Cold */
589         if (p_ptr->special_defense & DEFENSE_COLD) ADD_FLG(BAR_IMMCOLD);
590         if (IS_OPPOSE_COLD()) ADD_FLG(BAR_RESCOLD);
591
592         /* Oppose Poison */
593         if (IS_OPPOSE_POIS()) ADD_FLG(BAR_RESPOIS);
594
595         /* Word of Recall */
596         if (p_ptr->word_recall) ADD_FLG(BAR_RECALL);
597
598         /* Alter realiry */
599         if (p_ptr->alter_reality) ADD_FLG(BAR_ALTER);
600
601         /* Afraid */
602         if (p_ptr->afraid) ADD_FLG(BAR_AFRAID);
603
604         /* Resist time */
605         if (p_ptr->tim_res_time) ADD_FLG(BAR_RESTIME);
606
607         if (p_ptr->multishadow) ADD_FLG(BAR_MULTISHADOW);
608
609         /* Confusing Hands */
610         if (p_ptr->special_attack & ATTACK_CONFUSE) ADD_FLG(BAR_ATTKCONF);
611
612         if (p_ptr->resist_magic) ADD_FLG(BAR_REGMAGIC);
613
614         /* Ultimate-resistance */
615         if (p_ptr->ult_res) ADD_FLG(BAR_ULTIMATE);
616
617         /* tim levitation */
618         if (p_ptr->tim_levitation) ADD_FLG(BAR_LEVITATE);
619
620         if (p_ptr->tim_res_nether) ADD_FLG(BAR_RESNETH);
621
622         if (p_ptr->dustrobe) ADD_FLG(BAR_DUSTROBE);
623
624         /* Mahouken */
625         if (p_ptr->special_attack & ATTACK_FIRE) ADD_FLG(BAR_ATTKFIRE);
626         if (p_ptr->special_attack & ATTACK_COLD) ADD_FLG(BAR_ATTKCOLD);
627         if (p_ptr->special_attack & ATTACK_ELEC) ADD_FLG(BAR_ATTKELEC);
628         if (p_ptr->special_attack & ATTACK_ACID) ADD_FLG(BAR_ATTKACID);
629         if (p_ptr->special_attack & ATTACK_POIS) ADD_FLG(BAR_ATTKPOIS);
630         if (p_ptr->special_defense & NINJA_S_STEALTH) ADD_FLG(BAR_SUPERSTEALTH);
631
632         if (p_ptr->tim_sh_fire) ADD_FLG(BAR_SHFIRE);
633
634         /* tim stealth */
635         if (IS_TIM_STEALTH()) ADD_FLG(BAR_STEALTH);
636
637         if (p_ptr->tim_sh_touki) ADD_FLG(BAR_TOUKI);
638
639         /* Holy aura */
640         if (p_ptr->tim_sh_holy) ADD_FLG(BAR_SHHOLY);
641
642         /* An Eye for an Eye */
643         if (p_ptr->tim_eyeeye) ADD_FLG(BAR_EYEEYE);
644
645         /* Hex spells */
646         if (p_ptr->realm1 == REALM_HEX)
647         {
648                 if (hex_spelling(HEX_BLESS)) ADD_FLG(BAR_BLESSED);
649                 if (hex_spelling(HEX_DEMON_AURA)) { ADD_FLG(BAR_SHFIRE); ADD_FLG(BAR_REGENERATION); }
650                 if (hex_spelling(HEX_XTRA_MIGHT)) ADD_FLG(BAR_MIGHT);
651                 if (hex_spelling(HEX_DETECT_EVIL)) ADD_FLG(BAR_ESP_EVIL);
652                 if (hex_spelling(HEX_ICE_ARMOR)) ADD_FLG(BAR_SHCOLD);
653                 if (hex_spelling(HEX_RUNESWORD)) ADD_FLG(BAR_RUNESWORD);
654                 if (hex_spelling(HEX_BUILDING)) ADD_FLG(BAR_BUILD);
655                 if (hex_spelling(HEX_ANTI_TELE)) ADD_FLG(BAR_ANTITELE);
656                 if (hex_spelling(HEX_SHOCK_CLOAK)) ADD_FLG(BAR_SHELEC);
657                 if (hex_spelling(HEX_SHADOW_CLOAK)) ADD_FLG(BAR_SHSHADOW);
658                 if (hex_spelling(HEX_CONFUSION)) ADD_FLG(BAR_ATTKCONF);
659                 if (hex_spelling(HEX_EYE_FOR_EYE)) ADD_FLG(BAR_EYEEYE);
660                 if (hex_spelling(HEX_ANTI_MULTI)) ADD_FLG(BAR_ANTIMULTI);
661                 if (hex_spelling(HEX_VAMP_BLADE)) ADD_FLG(BAR_VAMPILIC);
662                 if (hex_spelling(HEX_ANTI_MAGIC)) ADD_FLG(BAR_ANTIMAGIC);
663                 if (hex_spelling(HEX_CURE_LIGHT) ||
664                         hex_spelling(HEX_CURE_SERIOUS) ||
665                         hex_spelling(HEX_CURE_CRITICAL)) ADD_FLG(BAR_CURE);
666
667                 if (p_ptr->magic_num2[2])
668                 {
669                         if (p_ptr->magic_num2[1] == 1) ADD_FLG(BAR_PATIENCE);
670                         if (p_ptr->magic_num2[1] == 2) ADD_FLG(BAR_REVENGE);
671                 }
672         }
673
674         /* Calcurate length */
675         for (i = 0; bar[i].sstr; i++)
676         {
677                 if (IS_FLG(i))
678                 {
679                         col += strlen(bar[i].lstr) + 1;
680                         num++;
681                 }
682         }
683
684         /* If there are not excess spaces for long strings, use short one */
685         if (col - 1 > max_col_statbar)
686         {
687                 space = 0;
688                 col = 0;
689
690                 for (i = 0; bar[i].sstr; i++)
691                 {
692                         if (IS_FLG(i))
693                         {
694                                 col += strlen(bar[i].sstr);
695                         }
696                 }
697
698                 /* If there are excess spaces for short string, use more */
699                 if (col - 1 <= max_col_statbar - (num-1))
700                 {
701                         space = 1;
702                         col += num - 1;
703                 }
704         }
705
706
707         /* Centering display column */
708         col = (max_col_statbar - col) / 2;
709
710         /* Display status bar */
711         for (i = 0; bar[i].sstr; i++)
712         {
713                 if (IS_FLG(i))
714                 {
715                         cptr str;
716                         if (space == 2) str = bar[i].lstr;
717                         else str = bar[i].sstr;
718
719                         c_put_str(bar[i].attr, str, row_statbar, col);
720                         col += strlen(str);
721                         if (space > 0) col++;
722                         if (col > max_col_statbar) break;
723                 }
724         }
725 }
726
727
728
729 /*
730  * Prints "title", including "wizard" or "winner" as needed.
731  */
732 static void prt_title(void)
733 {
734         cptr p = "";
735         char str[14];
736
737         /* Wizard */
738         if (p_ptr->wizard)
739         {
740 #ifdef JP
741                 /* ±ÑÆüÀÚ¤êÂؤ¨µ¡Ç½ ¾Î¹æ */
742                 p = "[¥¦¥£¥¶¡¼¥É]";
743 #else
744                 p = "[=-WIZARD-=]";
745 #endif
746
747         }
748
749         /* Winner */
750         else if (p_ptr->total_winner || (p_ptr->lev > PY_MAX_LEVEL))
751         {
752                 if (p_ptr->arena_number > MAX_ARENA_MONS + 2)
753                 {
754 #ifdef JP
755                         /* ±ÑÆüÀÚ¤êÂؤ¨µ¡Ç½ ¾Î¹æ */
756                         p = "*¿¿¡¦¾¡Íø¼Ô*";
757 #else
758                         p = "*TRUEWINNER*";
759 #endif
760                 }
761                 else
762                 {
763 #ifdef JP
764                         /* ±ÑÆüÀÚ¤êÂؤ¨µ¡Ç½ ¾Î¹æ */
765                         p = "***¾¡Íø¼Ô***";
766 #else
767                         p = "***WINNER***";
768 #endif
769                 }
770         }
771
772         /* Normal */
773         else
774         {
775                 my_strcpy(str, player_title[p_ptr->pclass][(p_ptr->lev - 1) / 5], sizeof(str));
776                 p = str;
777         }
778
779         prt_field(p, ROW_TITLE, COL_TITLE);
780 }
781
782
783 /*
784  * Prints level
785  */
786 static void prt_level(void)
787 {
788         char tmp[32];
789
790 #ifdef JP
791         sprintf(tmp, "%5d", p_ptr->lev);
792 #else
793         sprintf(tmp, "%6d", p_ptr->lev);
794 #endif
795
796
797         if (p_ptr->lev >= p_ptr->max_plv)
798         {
799 #ifdef JP
800                 put_str("¥ì¥Ù¥ë ", ROW_LEVEL, 0);
801                 c_put_str(TERM_L_GREEN, tmp, ROW_LEVEL, COL_LEVEL + 7);
802 #else
803                 put_str("LEVEL ", ROW_LEVEL, 0);
804                 c_put_str(TERM_L_GREEN, tmp, ROW_LEVEL, COL_LEVEL + 6);
805 #endif
806
807         }
808         else
809         {
810 #ifdef JP
811                 put_str("x¥ì¥Ù¥ë", ROW_LEVEL, 0);
812                 c_put_str(TERM_YELLOW, tmp, ROW_LEVEL, COL_LEVEL + 7);
813 #else
814                 put_str("Level ", ROW_LEVEL, 0);
815                 c_put_str(TERM_YELLOW, tmp, ROW_LEVEL, COL_LEVEL + 6);
816 #endif
817
818         }
819 }
820
821
822 /*
823  * Display the experience
824  */
825 static void prt_exp(void)
826 {
827         char out_val[32];
828
829         if ((!exp_need)||(p_ptr->prace == RACE_ANDROID))
830         {
831 #ifdef JP
832         (void)sprintf(out_val, "%7ld", (long)p_ptr->exp);
833 #else
834         (void)sprintf(out_val, "%8ld", (long)p_ptr->exp);
835 #endif
836         }
837         else
838         {
839                 if (p_ptr->lev >= PY_MAX_LEVEL)
840                 {
841                         (void)sprintf(out_val, "********");
842                 }
843                 else
844                 {
845 #ifdef JP
846                         (void)sprintf(out_val, "%7ld", (long)(player_exp [p_ptr->lev - 1] * p_ptr->expfact / 100L) - p_ptr->exp);
847 #else      
848                         (void)sprintf(out_val, "%8ld", (long)(player_exp [p_ptr->lev - 1] * p_ptr->expfact / 100L) - p_ptr->exp);
849 #endif
850                 }
851         }
852
853         if (p_ptr->exp >= p_ptr->max_exp)
854         {
855 #ifdef JP
856                 if (p_ptr->prace == RACE_ANDROID) put_str("¶¯²½ ", ROW_EXP, 0);
857                 else put_str("·Ð¸³ ", ROW_EXP, 0);
858                 c_put_str(TERM_L_GREEN, out_val, ROW_EXP, COL_EXP + 5);
859 #else
860                 if (p_ptr->prace == RACE_ANDROID) put_str("Cst ", ROW_EXP, 0);
861                 else put_str("EXP ", ROW_EXP, 0);
862                 c_put_str(TERM_L_GREEN, out_val, ROW_EXP, COL_EXP + 4);
863 #endif
864
865         }
866         else
867         {
868 #ifdef JP
869                 put_str("x·Ð¸³", ROW_EXP, 0);
870                 c_put_str(TERM_YELLOW, out_val, ROW_EXP, COL_EXP + 5);
871 #else
872                 put_str("Exp ", ROW_EXP, 0);
873                 c_put_str(TERM_YELLOW, out_val, ROW_EXP, COL_EXP + 4);
874 #endif
875
876         }
877 }
878
879 /*
880  * Prints current gold
881  */
882 static void prt_gold(void)
883 {
884         char tmp[32];
885
886 #ifdef JP
887         put_str("¡ð ", ROW_GOLD, COL_GOLD);
888 #else
889         put_str("AU ", ROW_GOLD, COL_GOLD);
890 #endif
891
892         sprintf(tmp, "%9ld", (long)p_ptr->au);
893         c_put_str(TERM_L_GREEN, tmp, ROW_GOLD, COL_GOLD + 3);
894 }
895
896
897
898 /*
899  * Prints current AC
900  */
901 static void prt_ac(void)
902 {
903         char tmp[32];
904
905 #ifdef JP
906 /* AC ¤Îɽ¼¨Êý¼°¤òÊѹ¹¤·¤Æ¤¤¤ë */
907         put_str(" £Á£Ã(     )", ROW_AC, COL_AC);
908         sprintf(tmp, "%5d", p_ptr->dis_ac + p_ptr->dis_to_a);
909         c_put_str(TERM_L_GREEN, tmp, ROW_AC, COL_AC + 6);
910 #else
911         put_str("Cur AC ", ROW_AC, COL_AC);
912         sprintf(tmp, "%5d", p_ptr->dis_ac + p_ptr->dis_to_a);
913         c_put_str(TERM_L_GREEN, tmp, ROW_AC, COL_AC + 7);
914 #endif
915
916 }
917
918
919 /*
920  * Prints Cur/Max hit points
921  */
922 static void prt_hp(void)
923 {
924 /* ¥Ò¥Ã¥È¥Ý¥¤¥ó¥È¤Îɽ¼¨ÊýË¡¤òÊѹ¹ */
925         char tmp[32];
926   
927         byte color;
928   
929         /* ¥¿¥¤¥È¥ë */
930 /*      put_str(" £È£Ð¡¦£Í£Ð", ROW_HPMP, COL_HPMP); */
931
932         put_str("HP", ROW_CURHP, COL_CURHP);
933
934         /* ¸½ºß¤Î¥Ò¥Ã¥È¥Ý¥¤¥ó¥È */
935         sprintf(tmp, "%4ld", (long int)p_ptr->chp);
936
937         if (p_ptr->chp >= p_ptr->mhp)
938         {
939                 color = TERM_L_GREEN;
940         }
941         else if (p_ptr->chp > (p_ptr->mhp * hitpoint_warn) / 10)
942         {
943                 color = TERM_YELLOW;
944         }
945         else
946         {
947                 color = TERM_RED;
948         }
949
950         c_put_str(color, tmp, ROW_CURHP, COL_CURHP+3);
951
952         /* ¶èÀÚ¤ê */
953         put_str( "/", ROW_CURHP, COL_CURHP + 7 );
954
955         /* ºÇÂç¥Ò¥Ã¥È¥Ý¥¤¥ó¥È */
956         sprintf(tmp, "%4ld", (long int)p_ptr->mhp);
957         color = TERM_L_GREEN;
958
959         c_put_str(color, tmp, ROW_CURHP, COL_CURHP + 8 );
960 }
961
962
963 /*
964  * Prints players max/cur spell points
965  */
966 static void prt_sp(void)
967 {
968 /* ¥Þ¥¸¥Ã¥¯¥Ý¥¤¥ó¥È¤Îɽ¼¨ÊýË¡¤òÊѹ¹¤·¤Æ¤¤¤ë */
969         char tmp[32];
970         byte color;
971
972
973         /* Do not show mana unless it matters */
974         if (!mp_ptr->spell_book) return;
975
976         /* ¥¿¥¤¥È¥ë */
977 /*      put_str(" £Í£Ð / ºÇÂç", ROW_MAXSP, COL_MAXSP); */
978
979 #ifdef JP
980         put_str("MP", ROW_CURSP, COL_CURSP);
981 #else
982         put_str("SP", ROW_CURSP, COL_CURSP);
983 #endif
984
985         /* ¸½ºß¤Î¥Þ¥¸¥Ã¥¯¥Ý¥¤¥ó¥È */
986         sprintf(tmp, "%4ld", (long int)p_ptr->csp);
987
988         if (p_ptr->csp >= p_ptr->msp)
989         {
990                 color = TERM_L_GREEN;
991         }
992         else if (p_ptr->csp > (p_ptr->msp * mana_warn) / 10)
993         {
994                 color = TERM_YELLOW;
995         }
996         else
997         {
998                 color = TERM_RED;
999         }
1000
1001         c_put_str(color, tmp, ROW_CURSP, COL_CURSP+3);
1002
1003         /* ¶èÀÚ¤ê */
1004         put_str( "/", ROW_CURSP, COL_CURSP + 7 );
1005
1006         /* ºÇÂç¥Þ¥¸¥Ã¥¯¥Ý¥¤¥ó¥È */
1007         sprintf(tmp, "%4ld", (long int)p_ptr->msp);
1008         color = TERM_L_GREEN;
1009
1010         c_put_str(color, tmp, ROW_CURSP, COL_CURSP + 8);
1011 }
1012
1013
1014 /*
1015  * Prints depth in stat area
1016  */
1017 static void prt_depth(void)
1018 {
1019         char depths[32];
1020         int wid, hgt, row_depth, col_depth;
1021         byte attr = TERM_WHITE;
1022
1023         Term_get_size(&wid, &hgt);
1024         col_depth = wid + COL_DEPTH;
1025         row_depth = hgt + ROW_DEPTH;
1026
1027         if (!dun_level)
1028         {
1029 #ifdef JP
1030                 strcpy(depths, "ÃϾå");
1031 #else
1032                 strcpy(depths, "Surf.");
1033 #endif
1034         }
1035         else if (p_ptr->inside_quest && !dungeon_type)
1036         {
1037 #ifdef JP
1038                 strcpy(depths, "ÃϾå");
1039 #else
1040                 strcpy(depths, "Quest");
1041 #endif
1042         }
1043         else
1044         {
1045 #ifdef JP
1046                 if (depth_in_feet) (void)sprintf(depths, "%d ft", dun_level * 50);
1047                 else (void)sprintf(depths, "%d ³¬", dun_level);
1048 #else
1049                 if (depth_in_feet) (void)sprintf(depths, "%d ft", dun_level * 50);
1050                 else (void)sprintf(depths, "Lev %d", dun_level);
1051 #endif
1052
1053
1054                 /* Get color of level based on feeling  -JSV- */
1055                 switch (p_ptr->feeling)
1056                 {
1057                 case  0: attr = TERM_SLATE;   break; /* Unknown */
1058                 case  1: attr = TERM_L_BLUE;  break; /* Special */
1059                 case  2: attr = TERM_VIOLET;  break; /* Horrible visions */
1060                 case  3: attr = TERM_RED;     break; /* Very dangerous */
1061                 case  4: attr = TERM_L_RED;   break; /* Very bad feeling */
1062                 case  5: attr = TERM_ORANGE;  break; /* Bad feeling */
1063                 case  6: attr = TERM_YELLOW;  break; /* Nervous */
1064                 case  7: attr = TERM_L_UMBER; break; /* Luck is turning */
1065                 case  8: attr = TERM_L_WHITE; break; /* Don't like */
1066                 case  9: attr = TERM_WHITE;   break; /* Reasonably safe */
1067                 case 10: attr = TERM_WHITE;   break; /* Boring place */
1068                 }
1069         }
1070
1071         /* Right-Adjust the "depth", and clear old values */
1072         c_prt(attr, format("%7s", depths), row_depth, col_depth);
1073 }
1074
1075
1076 /*
1077  * Prints status of hunger
1078  */
1079 static void prt_hunger(void)
1080 {
1081         /* Fainting / Starving */
1082         if (p_ptr->food < PY_FOOD_FAINT)
1083         {
1084 #ifdef JP
1085                 c_put_str(TERM_RED, "¿ê¼å  ", ROW_HUNGRY, COL_HUNGRY);
1086 #else
1087                 c_put_str(TERM_RED, "Weak  ", ROW_HUNGRY, COL_HUNGRY);
1088 #endif
1089
1090         }
1091
1092         /* Weak */
1093         else if (p_ptr->food < PY_FOOD_WEAK)
1094         {
1095 #ifdef JP
1096                 c_put_str(TERM_ORANGE, "¿ê¼å  ", ROW_HUNGRY, COL_HUNGRY);
1097 #else
1098                 c_put_str(TERM_ORANGE, "Weak  ", ROW_HUNGRY, COL_HUNGRY);
1099 #endif
1100
1101         }
1102
1103         /* Hungry */
1104         else if (p_ptr->food < PY_FOOD_ALERT)
1105         {
1106 #ifdef JP
1107                 c_put_str(TERM_YELLOW, "¶õÊ¢  ", ROW_HUNGRY, COL_HUNGRY);
1108 #else
1109                 c_put_str(TERM_YELLOW, "Hungry", ROW_HUNGRY, COL_HUNGRY);
1110 #endif
1111
1112         }
1113
1114         /* Normal */
1115         else if (p_ptr->food < PY_FOOD_FULL)
1116         {
1117                 c_put_str(TERM_L_GREEN, "      ", ROW_HUNGRY, COL_HUNGRY);
1118         }
1119
1120         /* Full */
1121         else if (p_ptr->food < PY_FOOD_MAX)
1122         {
1123 #ifdef JP
1124                 c_put_str(TERM_L_GREEN, "ËþÊ¢  ", ROW_HUNGRY, COL_HUNGRY);
1125 #else
1126                 c_put_str(TERM_L_GREEN, "Full  ", ROW_HUNGRY, COL_HUNGRY);
1127 #endif
1128
1129         }
1130
1131         /* Gorged */
1132         else
1133         {
1134 #ifdef JP
1135                 c_put_str(TERM_GREEN, "¿©²á¤®", ROW_HUNGRY, COL_HUNGRY);
1136 #else
1137                 c_put_str(TERM_GREEN, "Gorged", ROW_HUNGRY, COL_HUNGRY);
1138 #endif
1139
1140         }
1141 }
1142
1143
1144 /*
1145  * Prints Searching, Resting, Paralysis, or 'count' status
1146  * Display is always exactly 10 characters wide (see below)
1147  *
1148  * This function was a major bottleneck when resting, so a lot of
1149  * the text formatting code was optimized in place below.
1150  */
1151 static void prt_state(void)
1152 {
1153         byte attr = TERM_WHITE;
1154
1155         char text[5];
1156
1157         /* Repeating */
1158         if (command_rep)
1159         {
1160                 if (command_rep > 999)
1161                 {
1162 #ifdef JP
1163 sprintf(text, "%2d00", command_rep / 100);
1164 #else
1165                         (void)sprintf(text, "%2d00", command_rep / 100);
1166 #endif
1167
1168                 }
1169                 else
1170                 {
1171 #ifdef JP
1172 sprintf(text, "  %2d", command_rep);
1173 #else
1174                         (void)sprintf(text, "  %2d", command_rep);
1175 #endif
1176
1177                 }
1178         }
1179
1180         /* Action */
1181         else
1182         {
1183                 switch(p_ptr->action)
1184                 {
1185                         case ACTION_SEARCH:
1186                         {
1187 #ifdef JP
1188                                 strcpy(text, "õº÷");
1189 #else
1190                                 strcpy(text, "Sear");
1191 #endif
1192                                 break;
1193                         }
1194                         case ACTION_REST:
1195                         {
1196                                 int i;
1197
1198                                 /* Start with "Rest" */
1199 #ifdef JP
1200                                 strcpy(text, "    ");
1201 #else
1202                                 strcpy(text, "    ");
1203 #endif
1204
1205
1206                                 /* Extensive (timed) rest */
1207                                 if (resting >= 1000)
1208                                 {
1209                                         i = resting / 100;
1210                                         text[3] = '0';
1211                                         text[2] = '0';
1212                                         text[1] = '0' + (i % 10);
1213                                         text[0] = '0' + (i / 10);
1214                                 }
1215
1216                                 /* Long (timed) rest */
1217                                 else if (resting >= 100)
1218                                 {
1219                                         i = resting;
1220                                         text[3] = '0' + (i % 10);
1221                                         i = i / 10;
1222                                         text[2] = '0' + (i % 10);
1223                                         text[1] = '0' + (i / 10);
1224                                 }
1225
1226                                 /* Medium (timed) rest */
1227                                 else if (resting >= 10)
1228                                 {
1229                                         i = resting;
1230                                         text[3] = '0' + (i % 10);
1231                                         text[2] = '0' + (i / 10);
1232                                 }
1233
1234                                 /* Short (timed) rest */
1235                                 else if (resting > 0)
1236                                 {
1237                                         i = resting;
1238                                         text[3] = '0' + (i);
1239                                 }
1240
1241                                 /* Rest until healed */
1242                                 else if (resting == -1)
1243                                 {
1244                                         text[0] = text[1] = text[2] = text[3] = '*';
1245                                 }
1246
1247                                 /* Rest until done */
1248                                 else if (resting == -2)
1249                                 {
1250                                         text[0] = text[1] = text[2] = text[3] = '&';
1251                                 }
1252                                 break;
1253                         }
1254                         case ACTION_LEARN:
1255                         {
1256 #ifdef JP
1257                                 strcpy(text, "³Ø½¬");
1258 #else
1259                                 strcpy(text, "lear");
1260 #endif
1261                                 if (new_mane) attr = TERM_L_RED;
1262                                 break;
1263                         }
1264                         case ACTION_FISH:
1265                         {
1266 #ifdef JP
1267                                 strcpy(text, "Äà¤ê");
1268 #else
1269                                 strcpy(text, "fish");
1270 #endif
1271                                 break;
1272                         }
1273                         case ACTION_KAMAE:
1274                         {
1275                                 int i;
1276                                 for (i = 0; i < MAX_KAMAE; i++)
1277                                         if (p_ptr->special_defense & (KAMAE_GENBU << i)) break;
1278                                 switch (i)
1279                                 {
1280                                         case 0: attr = TERM_GREEN;break;
1281                                         case 1: attr = TERM_WHITE;break;
1282                                         case 2: attr = TERM_L_BLUE;break;
1283                                         case 3: attr = TERM_L_RED;break;
1284                                 }
1285                                 strcpy(text, kamae_shurui[i].desc);
1286                                 break;
1287                         }
1288                         case ACTION_KATA:
1289                         {
1290                                 int i;
1291                                 for (i = 0; i < MAX_KATA; i++)
1292                                         if (p_ptr->special_defense & (KATA_IAI << i)) break;
1293                                 strcpy(text, kata_shurui[i].desc);
1294                                 break;
1295                         }
1296                         case ACTION_SING:
1297                         {
1298 #ifdef JP
1299                                 strcpy(text, "²Î  ");
1300 #else
1301                                 strcpy(text, "Sing");
1302 #endif
1303                                 break;
1304                         }
1305                         case ACTION_HAYAGAKE:
1306                         {
1307 #ifdef JP
1308                                 strcpy(text, "®¶î");
1309 #else
1310                                 strcpy(text, "Fast");
1311 #endif
1312                                 break;
1313                         }
1314                         case ACTION_SPELL:
1315                         {
1316 #ifdef JP
1317                                 strcpy(text, "±Ó¾§");
1318 #else
1319                                 strcpy(text, "Spel");
1320 #endif
1321                                 break;
1322                         }
1323                         default:
1324                         {
1325                                 strcpy(text, "    ");
1326                                 break;
1327                         }
1328                 }
1329         }
1330
1331         /* Display the info (or blanks) */
1332         c_put_str(attr, format("%5.5s",text), ROW_STATE, COL_STATE);
1333 }
1334
1335
1336 /*
1337  * Prints the speed of a character.                     -CJS-
1338  */
1339 static void prt_speed(void)
1340 {
1341         int i = p_ptr->pspeed;
1342         bool is_fast = IS_FAST();
1343
1344         byte attr = TERM_WHITE;
1345         char buf[32] = "";
1346         int wid, hgt, row_speed, col_speed;
1347
1348         Term_get_size(&wid, &hgt);
1349         col_speed = wid + COL_SPEED;
1350         row_speed = hgt + ROW_SPEED;
1351
1352         /* Hack -- Visually "undo" the Search Mode Slowdown */
1353         if (p_ptr->action == ACTION_SEARCH && !p_ptr->lightspeed) i += 10;
1354
1355         /* Fast */
1356         if (i > 110)
1357         {
1358                 if (p_ptr->riding)
1359                 {
1360                         monster_type *m_ptr = &m_list[p_ptr->riding];
1361                         if (MON_FAST(m_ptr) && !MON_SLOW(m_ptr)) attr = TERM_L_BLUE;
1362                         else if (MON_SLOW(m_ptr) && !MON_FAST(m_ptr)) attr = TERM_VIOLET;
1363                         else attr = TERM_GREEN;
1364                 }
1365                 else if ((is_fast && !p_ptr->slow) || p_ptr->lightspeed) attr = TERM_YELLOW;
1366                 else if (p_ptr->slow && !is_fast) attr = TERM_VIOLET;
1367                 else attr = TERM_L_GREEN;
1368 #ifdef JP
1369                 sprintf(buf, "%s(+%d)", (p_ptr->riding ? "¾èÇÏ" : "²Ã®"), (i - 110));
1370 #else
1371                 sprintf(buf, "Fast(+%d)", (i - 110));
1372 #endif
1373
1374         }
1375
1376         /* Slow */
1377         else if (i < 110)
1378         {
1379                 if (p_ptr->riding)
1380                 {
1381                         monster_type *m_ptr = &m_list[p_ptr->riding];
1382                         if (MON_FAST(m_ptr) && !MON_SLOW(m_ptr)) attr = TERM_L_BLUE;
1383                         else if (MON_SLOW(m_ptr) && !MON_FAST(m_ptr)) attr = TERM_VIOLET;
1384                         else attr = TERM_RED;
1385                 }
1386                 else if (is_fast && !p_ptr->slow) attr = TERM_YELLOW;
1387                 else if (p_ptr->slow && !is_fast) attr = TERM_VIOLET;
1388                 else attr = TERM_L_UMBER;
1389 #ifdef JP
1390                 sprintf(buf, "%s(-%d)", (p_ptr->riding ? "¾èÇÏ" : "¸ºÂ®"), (110 - i));
1391 #else
1392                 sprintf(buf, "Slow(-%d)", (110 - i));
1393 #endif
1394         }
1395         else if (p_ptr->riding)
1396         {
1397                 attr = TERM_GREEN;
1398 #ifdef JP
1399                 strcpy(buf, "¾èÇÏÃæ");
1400 #else
1401                 strcpy(buf, "Riding");
1402 #endif
1403         }
1404
1405         /* Display the speed */
1406         c_put_str(attr, format("%-9s", buf), row_speed, col_speed);
1407 }
1408
1409
1410 static void prt_study(void)
1411 {
1412         int wid, hgt, row_study, col_study;
1413
1414         Term_get_size(&wid, &hgt);
1415         col_study = wid + COL_STUDY;
1416         row_study = hgt + ROW_STUDY;
1417
1418         if (p_ptr->new_spells)
1419         {
1420 #ifdef JP
1421                 put_str("³Ø½¬", row_study, col_study);
1422 #else
1423                 put_str("Stud", row_study, col_study);
1424 #endif
1425
1426         }
1427         else
1428         {
1429                 put_str("    ", row_study, col_study);
1430         }
1431 }
1432
1433
1434 static void prt_imitation(void)
1435 {
1436         int wid, hgt, row_study, col_study;
1437
1438         Term_get_size(&wid, &hgt);
1439         col_study = wid + COL_STUDY;
1440         row_study = hgt + ROW_STUDY;
1441
1442         if (p_ptr->pclass == CLASS_IMITATOR)
1443         {
1444                 if (p_ptr->mane_num)
1445                 {
1446                         byte attr;
1447                         if (new_mane) attr = TERM_L_RED;
1448                         else attr = TERM_WHITE;
1449 #ifdef JP
1450                         c_put_str(attr, "¤Þ¤Í", row_study, col_study);
1451 #else
1452                         c_put_str(attr, "Imit", row_study, col_study);
1453 #endif
1454                 }
1455                 else
1456                 {
1457                         put_str("    ", row_study, col_study);
1458                 }
1459         }
1460 }
1461
1462
1463 static void prt_cut(void)
1464 {
1465         int c = p_ptr->cut;
1466
1467         if (c > 1000)
1468         {
1469 #ifdef JP
1470                 c_put_str(TERM_L_RED, "Ã×Ì¿½ý      ", ROW_CUT, COL_CUT);
1471 #else
1472                 c_put_str(TERM_L_RED, "Mortal wound", ROW_CUT, COL_CUT);
1473 #endif
1474
1475         }
1476         else if (c > 200)
1477         {
1478 #ifdef JP
1479                 c_put_str(TERM_RED, "¤Ò¤É¤¤¿¼¼ê  ", ROW_CUT, COL_CUT);
1480 #else
1481                 c_put_str(TERM_RED, "Deep gash   ", ROW_CUT, COL_CUT);
1482 #endif
1483
1484         }
1485         else if (c > 100)
1486         {
1487 #ifdef JP
1488                 c_put_str(TERM_RED, "½Å½ý        ", ROW_CUT, COL_CUT);
1489 #else
1490                 c_put_str(TERM_RED, "Severe cut  ", ROW_CUT, COL_CUT);
1491 #endif
1492
1493         }
1494         else if (c > 50)
1495         {
1496 #ifdef JP
1497                 c_put_str(TERM_ORANGE, "ÂçÊѤʽý    ", ROW_CUT, COL_CUT);
1498 #else
1499                 c_put_str(TERM_ORANGE, "Nasty cut   ", ROW_CUT, COL_CUT);
1500 #endif
1501
1502         }
1503         else if (c > 25)
1504         {
1505 #ifdef JP
1506                 c_put_str(TERM_ORANGE, "¤Ò¤É¤¤½ý    ", ROW_CUT, COL_CUT);
1507 #else
1508                 c_put_str(TERM_ORANGE, "Bad cut     ", ROW_CUT, COL_CUT);
1509 #endif
1510
1511         }
1512         else if (c > 10)
1513         {
1514 #ifdef JP
1515                 c_put_str(TERM_YELLOW, "·Ú½ý        ", ROW_CUT, COL_CUT);
1516 #else
1517                 c_put_str(TERM_YELLOW, "Light cut   ", ROW_CUT, COL_CUT);
1518 #endif
1519
1520         }
1521         else if (c)
1522         {
1523 #ifdef JP
1524                 c_put_str(TERM_YELLOW, "¤«¤¹¤ê½ý    ", ROW_CUT, COL_CUT);
1525 #else
1526                 c_put_str(TERM_YELLOW, "Graze       ", ROW_CUT, COL_CUT);
1527 #endif
1528
1529         }
1530         else
1531         {
1532                 put_str("            ", ROW_CUT, COL_CUT);
1533         }
1534 }
1535
1536
1537
1538 static void prt_stun(void)
1539 {
1540         int s = p_ptr->stun;
1541
1542         if (s > 100)
1543         {
1544 #ifdef JP
1545                 c_put_str(TERM_RED, "°Õ¼±ÉÔÌÀÎÆ  ", ROW_STUN, COL_STUN);
1546 #else
1547                 c_put_str(TERM_RED, "Knocked out ", ROW_STUN, COL_STUN);
1548 #endif
1549
1550         }
1551         else if (s > 50)
1552         {
1553 #ifdef JP
1554                 c_put_str(TERM_ORANGE, "¤Ò¤É¤¯Û¯Û°  ", ROW_STUN, COL_STUN);
1555 #else
1556                 c_put_str(TERM_ORANGE, "Heavy stun  ", ROW_STUN, COL_STUN);
1557 #endif
1558
1559         }
1560         else if (s)
1561         {
1562 #ifdef JP
1563                 c_put_str(TERM_ORANGE, "ۯ۰        ", ROW_STUN, COL_STUN);
1564 #else
1565                 c_put_str(TERM_ORANGE, "Stun        ", ROW_STUN, COL_STUN);
1566 #endif
1567
1568         }
1569         else
1570         {
1571                 put_str("            ", ROW_STUN, COL_STUN);
1572         }
1573 }
1574
1575
1576
1577 /*
1578  * Redraw the "monster health bar"      -DRS-
1579  * Rather extensive modifications by    -BEN-
1580  *
1581  * The "monster health bar" provides visual feedback on the "health"
1582  * of the monster currently being "tracked".  There are several ways
1583  * to "track" a monster, including targetting it, attacking it, and
1584  * affecting it (and nobody else) with a ranged attack.
1585  *
1586  * Display the monster health bar (affectionately known as the
1587  * "health-o-meter").  Clear health bar if nothing is being tracked.
1588  * Auto-track current target monster when bored.  Note that the
1589  * health-bar stops tracking any monster that "disappears".
1590  */
1591 static void health_redraw(bool riding)
1592 {
1593         s16b health_who;
1594         int row, col;
1595         monster_type *m_ptr;
1596
1597         if (riding)
1598         {
1599                 health_who = p_ptr->riding;
1600                 row = ROW_RIDING_INFO;
1601                 col = COL_RIDING_INFO;
1602         }
1603         else
1604         {
1605                 health_who = p_ptr->health_who;
1606                 row = ROW_INFO;
1607                 col = COL_INFO;
1608         }
1609
1610         m_ptr = &m_list[health_who];
1611
1612         /* Not tracking */
1613         if (!health_who)
1614         {
1615                 /* Erase the health bar */
1616                 Term_erase(col, row, 12);
1617         }
1618
1619         /* Tracking an unseen monster */
1620         else if (!m_ptr->ml)
1621         {
1622                 /* Indicate that the monster health is "unknown" */
1623                 Term_putstr(col, row, 12, TERM_WHITE, "[----------]");
1624         }
1625
1626         /* Tracking a hallucinatory monster */
1627         else if (p_ptr->image)
1628         {
1629                 /* Indicate that the monster health is "unknown" */
1630                 Term_putstr(col, row, 12, TERM_WHITE, "[----------]");
1631         }
1632
1633         /* Tracking a dead monster (???) */
1634         else if (m_ptr->hp < 0)
1635         {
1636                 /* Indicate that the monster health is "unknown" */
1637                 Term_putstr(col, row, 12, TERM_WHITE, "[----------]");
1638         }
1639
1640         /* Tracking a visible monster */
1641         else
1642         {
1643                 /* Extract the "percent" of health */
1644                 int pct = 100L * m_ptr->hp / m_ptr->maxhp;
1645                 int pct2 = 100L * m_ptr->hp / m_ptr->max_maxhp;
1646
1647                 /* Convert percent into "health" */
1648                 int len = (pct2 < 10) ? 1 : (pct2 < 90) ? (pct2 / 10 + 1) : 10;
1649
1650                 /* Default to almost dead */
1651                 byte attr = TERM_RED;
1652
1653                 /* Invulnerable */
1654                 if (MON_INVULNER(m_ptr)) attr = TERM_WHITE;
1655
1656                 /* Asleep */
1657                 else if (MON_CSLEEP(m_ptr)) attr = TERM_BLUE;
1658
1659                 /* Afraid */
1660                 else if (MON_MONFEAR(m_ptr)) attr = TERM_VIOLET;
1661
1662                 /* Healthy */
1663                 else if (pct >= 100) attr = TERM_L_GREEN;
1664
1665                 /* Somewhat Wounded */
1666                 else if (pct >= 60) attr = TERM_YELLOW;
1667
1668                 /* Wounded */
1669                 else if (pct >= 25) attr = TERM_ORANGE;
1670
1671                 /* Badly wounded */
1672                 else if (pct >= 10) attr = TERM_L_RED;
1673
1674                 /* Default to "unknown" */
1675                 Term_putstr(col, row, 12, TERM_WHITE, "[----------]");
1676
1677                 /* Dump the current "health" (use '*' symbols) */
1678                 Term_putstr(col + 1, row, len, attr, "**********");
1679         }
1680 }
1681
1682
1683
1684 /*
1685  * Display basic info (mostly left of map)
1686  */
1687 static void prt_frame_basic(void)
1688 {
1689         int i;
1690
1691         /* Race and Class */
1692         if (p_ptr->mimic_form)
1693                 prt_field(mimic_info[p_ptr->mimic_form].title, ROW_RACE, COL_RACE);
1694         else
1695         {
1696                 char str[14];
1697                 my_strcpy(str, rp_ptr->title, sizeof(str));
1698                 prt_field(str, ROW_RACE, COL_RACE);
1699         }
1700 /*      prt_field(cp_ptr->title, ROW_CLASS, COL_CLASS); */
1701 /*      prt_field(ap_ptr->title, ROW_SEIKAKU, COL_SEIKAKU); */
1702
1703
1704         /* Title */
1705         prt_title();
1706
1707         /* Level/Experience */
1708         prt_level();
1709         prt_exp();
1710
1711         /* All Stats */
1712         for (i = 0; i < 6; i++) prt_stat(i);
1713
1714         /* Armor */
1715         prt_ac();
1716
1717         /* Hitpoints */
1718         prt_hp();
1719
1720         /* Spellpoints */
1721         prt_sp();
1722
1723         /* Gold */
1724         prt_gold();
1725
1726         /* Current depth */
1727         prt_depth();
1728
1729         /* Special */
1730         health_redraw(FALSE);
1731         health_redraw(TRUE);
1732 }
1733
1734
1735 /*
1736  * Display extra info (mostly below map)
1737  */
1738 static void prt_frame_extra(void)
1739 {
1740         /* Cut/Stun */
1741         prt_cut();
1742         prt_stun();
1743
1744         /* Food */
1745         prt_hunger();
1746
1747         /* State */
1748         prt_state();
1749
1750         /* Speed */
1751         prt_speed();
1752
1753         /* Study spells */
1754         prt_study();
1755
1756         prt_imitation();
1757
1758         prt_status();
1759 }
1760
1761
1762 /*
1763  * Hack -- display inventory in sub-windows
1764  */
1765 static void fix_inven(void)
1766 {
1767         int j;
1768
1769         /* Scan windows */
1770         for (j = 0; j < 8; j++)
1771         {
1772                 term *old = Term;
1773
1774                 /* No window */
1775                 if (!angband_term[j]) continue;
1776
1777                 /* No relevant flags */
1778                 if (!(window_flag[j] & (PW_INVEN))) continue;
1779
1780                 /* Activate */
1781                 Term_activate(angband_term[j]);
1782
1783                 /* Display inventory */
1784                 display_inven();
1785
1786                 /* Fresh */
1787                 Term_fresh();
1788
1789                 /* Restore */
1790                 Term_activate(old);
1791         }
1792 }
1793
1794
1795 /*
1796  * Print monster info in line
1797  * nnn X LV name
1798  *  nnn : number or unique(U) or wanted unique(W)
1799  *  X   : symbol of monster
1800  *  LV  : monster lv if known
1801  *  name: name of monster
1802  */
1803 static void print_monster_line(int x, int y, monster_type* m_ptr, int n_same){
1804         char buf[256];
1805         int i;
1806         int r_idx = m_ptr->ap_r_idx;
1807         monster_race* r_ptr = &r_info[r_idx];
1808  
1809         Term_gotoxy(x, y);
1810         if(!r_ptr)return;
1811         //Number of 'U'nique
1812         if(r_ptr->flags1&RF1_UNIQUE){//unique
1813                 bool is_kubi = FALSE;
1814                 for(i=0;i<MAX_KUBI;i++){
1815                         if(kubi_r_idx[i] == r_idx){
1816                                 is_kubi = TRUE;
1817                                 break;
1818                         }
1819                 }
1820                 Term_addstr(-1, TERM_WHITE, is_kubi?"  W":"  U");
1821         }else{
1822                 sprintf(buf, "%3d", n_same);
1823                 Term_addstr(-1, TERM_WHITE, buf);
1824         }
1825         //symbol
1826         Term_addstr(-1, TERM_WHITE, " ");
1827         //Term_add_bigch(r_ptr->d_attr, r_ptr->d_char);
1828         //Term_addstr(-1, TERM_WHITE, "/");
1829         Term_add_bigch(r_ptr->x_attr, r_ptr->x_char);
1830         //LV
1831         if (r_ptr->r_tkills && !(m_ptr->mflag2 & MFLAG2_KAGE)){
1832                 sprintf(buf, " %2d", r_ptr->level);
1833         }else{
1834                 strcpy(buf, " ??");
1835         }
1836         Term_addstr(-1, TERM_WHITE, buf);
1837         //name
1838         sprintf(buf, " %s ", r_name+r_ptr->name);
1839         Term_addstr(-1, TERM_WHITE, buf);
1840  
1841         //Term_addstr(-1, TERM_WHITE, look_mon_desc(m_ptr, 0));
1842 }
1843
1844  /*
1845         max_lines : ºÇÂ粿¹ÔÉÁ²è¤¹¤ë¤«¡¥
1846 */
1847 void print_monster_list(int x, int y, int max_lines){
1848         int line = y;
1849         monster_type* last_mons = NULL;
1850         monster_type* m_ptr = NULL;
1851         int n_same = 0;
1852         int i;
1853
1854         for(i=0;i<temp_n;i++){
1855                 cave_type* c_ptr = &cave[temp_y[i]][temp_x[i]];
1856                 if(!c_ptr->m_idx || !m_list[c_ptr->m_idx].ml)continue;//no mons or cannot look
1857                 m_ptr = &m_list[c_ptr->m_idx];
1858                 if(is_pet(m_ptr))continue;//pet
1859                 if(!m_ptr->r_idx)continue;//dead?
1860                 {
1861                         /*
1862                         int r_idx = m_ptr->ap_r_idx;
1863                         monster_race* r_ptr = &r_info[r_idx];
1864                         cptr name = (r_name + r_ptr->name);
1865                         cptr ename = (r_name + r_ptr->name);
1866                         //¥ß¥ß¥Ã¥¯Îà¤ä¡Ö¤½¤ì¡×Åù¤Ï¡¢°ìÍ÷¤Ë½Ð¤Æ¤Ï¤¤¤±¤Ê¤¤
1867                         if(r_ptr->flags1&RF1_CHAR_CLEAR)continue;
1868                         if((r_ptr->flags1&RF1_NEVER_MOVE)&&(r_ptr->flags2&RF2_CHAR_MULTI))continue;
1869                         //¡Ø¥Ì¥ë¡Ù¤Ï¡¢°ìÍ÷¤Ë½Ð¤Æ¤Ï¤¤¤±¤Ê¤¤
1870                         if((strcmp(name, "À¸¤±¤ëµõ̵¡Ø¥Ì¥ë¡Ù")==0)||
1871                            (strcmp(ename, "Null the Living Void")==0))continue;
1872                         //"¶â̵¹¤¤Î»ØÎØ"¤Ï¡¢°ìÍ÷¤Ë½Ð¤Æ¤Ï¤¤¤±¤Ê¤¤
1873                         if((strcmp(name, "¶â̵¹¤¤Î»ØÎØ")==0)||
1874                                 (strcmp(ename, "Plain Gold Ring")==0))continue;
1875                         */
1876                 }
1877
1878                 //¥½¡¼¥ÈºÑ¤ß¤Ê¤Î¤ÇƱ¤¸¥â¥ó¥¹¥¿¡¼¤ÏϢ³¤¹¤ë¡¥¤³¤ì¤òÍøÍѤ·¤ÆƱ¤¸¥â¥ó¥¹¥¿¡¼¤ò¥«¥¦¥ó¥È¡¤¤Þ¤È¤á¤Æɽ¼¨¤¹¤ë¡¥
1879                 if(!last_mons){//ÀèƬ¥â¥ó¥¹¥¿¡¼
1880                         last_mons = m_ptr;
1881                         n_same = 1;
1882                         continue;
1883                 }
1884                 //same race?
1885                 if(last_mons->ap_r_idx == m_ptr->ap_r_idx){
1886                         n_same++;
1887                         continue;//ɽ¼¨½èÍý¤ò¼¡¤Ë²ó¤¹
1888                 }
1889                 //print last mons info
1890                 print_monster_line(x, line++, last_mons, n_same);
1891                 n_same = 1;
1892                 last_mons = m_ptr;
1893                 if(line-y-1==max_lines){//»Ä¤ê1¹Ô
1894                         break;
1895                 }
1896         }
1897         if(line-y-1==max_lines && i!=temp_n){
1898                 Term_gotoxy(x, line);
1899                 Term_addstr(-1, TERM_WHITE, "-- and more --");
1900         }else{
1901                 if(last_mons)print_monster_line(x, line++, last_mons, n_same);
1902         }
1903 }
1904 /*
1905  * Hack -- display monster list in sub-windows
1906  */
1907 static void fix_monster_list(void)
1908 {
1909         int j;
1910         int w, h;
1911
1912         /* Scan windows */
1913         for (j = 0; j < 8; j++)
1914         {
1915                 term *old = Term;
1916
1917                 /* No window */
1918                 if (!angband_term[j]) continue;
1919
1920                 /* No relevant flags */
1921                 if (!(window_flag[j] & (PW_MONSTER_LIST))) continue;
1922
1923                 /* Activate */
1924                 Term_activate(angband_term[j]);
1925                 Term_get_size(&w, &h);
1926
1927                 Term_clear();
1928
1929                 target_set_prepare_look();//¥â¥ó¥¹¥¿¡¼°ìÍ÷¤òÀ¸À®¡¤¥½¡¼¥È
1930                 print_monster_list(0, 0, h);
1931
1932                 /* Fresh */
1933                 Term_fresh();
1934
1935                 /* Restore */
1936                 Term_activate(old);
1937         }
1938 }
1939
1940
1941
1942
1943 /*
1944  * Hack -- display equipment in sub-windows
1945  */
1946 static void fix_equip(void)
1947 {
1948         int j;
1949
1950         /* Scan windows */
1951         for (j = 0; j < 8; j++)
1952         {
1953                 term *old = Term;
1954
1955                 /* No window */
1956                 if (!angband_term[j]) continue;
1957
1958                 /* No relevant flags */
1959                 if (!(window_flag[j] & (PW_EQUIP))) continue;
1960
1961                 /* Activate */
1962                 Term_activate(angband_term[j]);
1963
1964                 /* Display equipment */
1965                 display_equip();
1966
1967                 /* Fresh */
1968                 Term_fresh();
1969
1970                 /* Restore */
1971                 Term_activate(old);
1972         }
1973 }
1974
1975
1976 /*
1977  * Hack -- display equipment in sub-windows
1978  */
1979 static void fix_spell(void)
1980 {
1981         int j;
1982
1983         /* Scan windows */
1984         for (j = 0; j < 8; j++)
1985         {
1986                 term *old = Term;
1987
1988                 /* No window */
1989                 if (!angband_term[j]) continue;
1990
1991                 /* No relevant flags */
1992                 if (!(window_flag[j] & (PW_SPELL))) continue;
1993
1994                 /* Activate */
1995                 Term_activate(angband_term[j]);
1996
1997                 /* Display spell list */
1998                 display_spell_list();
1999
2000                 /* Fresh */
2001                 Term_fresh();
2002
2003                 /* Restore */
2004                 Term_activate(old);
2005         }
2006 }
2007
2008
2009 /*
2010  * Hack -- display character in sub-windows
2011  */
2012 static void fix_player(void)
2013 {
2014         int j;
2015
2016         /* Scan windows */
2017         for (j = 0; j < 8; j++)
2018         {
2019                 term *old = Term;
2020
2021                 /* No window */
2022                 if (!angband_term[j]) continue;
2023
2024                 /* No relevant flags */
2025                 if (!(window_flag[j] & (PW_PLAYER))) continue;
2026
2027                 /* Activate */
2028                 Term_activate(angband_term[j]);
2029
2030                 update_playtime();
2031
2032                 /* Display player */
2033                 display_player(0);
2034
2035                 /* Fresh */
2036                 Term_fresh();
2037
2038                 /* Restore */
2039                 Term_activate(old);
2040         }
2041 }
2042
2043
2044
2045 /*
2046  * Hack -- display recent messages in sub-windows
2047  *
2048  * XXX XXX XXX Adjust for width and split messages
2049  */
2050 static void fix_message(void)
2051 {
2052         int j, i;
2053         int w, h;
2054         int x, y;
2055
2056         /* Scan windows */
2057         for (j = 0; j < 8; j++)
2058         {
2059                 term *old = Term;
2060
2061                 /* No window */
2062                 if (!angband_term[j]) continue;
2063
2064                 /* No relevant flags */
2065                 if (!(window_flag[j] & (PW_MESSAGE))) continue;
2066
2067                 /* Activate */
2068                 Term_activate(angband_term[j]);
2069
2070                 /* Get size */
2071                 Term_get_size(&w, &h);
2072
2073                 /* Dump messages */
2074                 for (i = 0; i < h; i++)
2075                 {
2076                         /* Dump the message on the appropriate line */
2077                         Term_putstr(0, (h - 1) - i, -1, (byte)((i < now_message) ? TERM_WHITE : TERM_SLATE), message_str((s16b)i));
2078
2079                         /* Cursor */
2080                         Term_locate(&x, &y);
2081
2082                         /* Clear to end of line */
2083                         Term_erase(x, y, 255);
2084                 }
2085
2086                 /* Fresh */
2087                 Term_fresh();
2088
2089                 /* Restore */
2090                 Term_activate(old);
2091         }
2092 }
2093
2094
2095 /*
2096  * Hack -- display overhead view in sub-windows
2097  *
2098  * Note that the "player" symbol does NOT appear on the map.
2099  */
2100 static void fix_overhead(void)
2101 {
2102         int j;
2103
2104         int cy, cx;
2105
2106         /* Scan windows */
2107         for (j = 0; j < 8; j++)
2108         {
2109                 term *old = Term;
2110                 int wid, hgt;
2111
2112                 /* No window */
2113                 if (!angband_term[j]) continue;
2114
2115                 /* No relevant flags */
2116                 if (!(window_flag[j] & (PW_OVERHEAD))) continue;
2117
2118                 /* Activate */
2119                 Term_activate(angband_term[j]);
2120
2121                 /* Full map in too small window is useless  */
2122                 Term_get_size(&wid, &hgt);
2123                 if (wid > COL_MAP + 2 && hgt > ROW_MAP + 2)
2124                 {
2125                         /* Redraw map */
2126                         display_map(&cy, &cx);
2127
2128                         /* Fresh */
2129                         Term_fresh();
2130                 }
2131
2132                 /* Restore */
2133                 Term_activate(old);
2134         }
2135 }
2136
2137
2138 /*
2139  * Hack -- display dungeon view in sub-windows
2140  */
2141 static void fix_dungeon(void)
2142 {
2143         int j;
2144
2145         /* Scan windows */
2146         for (j = 0; j < 8; j++)
2147         {
2148                 term *old = Term;
2149
2150                 /* No window */
2151                 if (!angband_term[j]) continue;
2152
2153                 /* No relevant flags */
2154                 if (!(window_flag[j] & (PW_DUNGEON))) continue;
2155
2156                 /* Activate */
2157                 Term_activate(angband_term[j]);
2158
2159                 /* Redraw dungeon view */
2160                 display_dungeon();
2161
2162                 /* Fresh */
2163                 Term_fresh();
2164
2165                 /* Restore */
2166                 Term_activate(old);
2167         }
2168 }
2169
2170
2171 /*
2172  * Hack -- display monster recall in sub-windows
2173  */
2174 static void fix_monster(void)
2175 {
2176         int j;
2177
2178         /* Scan windows */
2179         for (j = 0; j < 8; j++)
2180         {
2181                 term *old = Term;
2182
2183                 /* No window */
2184                 if (!angband_term[j]) continue;
2185
2186                 /* No relevant flags */
2187                 if (!(window_flag[j] & (PW_MONSTER))) continue;
2188
2189                 /* Activate */
2190                 Term_activate(angband_term[j]);
2191
2192                 /* Display monster race info */
2193                 if (p_ptr->monster_race_idx) display_roff(p_ptr->monster_race_idx);
2194
2195                 /* Fresh */
2196                 Term_fresh();
2197
2198                 /* Restore */
2199                 Term_activate(old);
2200         }
2201 }
2202
2203
2204 /*
2205  * Hack -- display object recall in sub-windows
2206  */
2207 static void fix_object(void)
2208 {
2209         int j;
2210
2211         /* Scan windows */
2212         for (j = 0; j < 8; j++)
2213         {
2214                 term *old = Term;
2215
2216                 /* No window */
2217                 if (!angband_term[j]) continue;
2218
2219                 /* No relevant flags */
2220                 if (!(window_flag[j] & (PW_OBJECT))) continue;
2221
2222                 /* Activate */
2223                 Term_activate(angband_term[j]);
2224
2225                 /* Display monster race info */
2226                 if (p_ptr->object_kind_idx) display_koff(p_ptr->object_kind_idx);
2227
2228                 /* Fresh */
2229                 Term_fresh();
2230
2231                 /* Restore */
2232                 Term_activate(old);
2233         }
2234 }
2235
2236
2237 /*
2238  * Calculate number of spells player should have, and forget,
2239  * or remember, spells until that number is properly reflected.
2240  *
2241  * Note that this function induces various "status" messages,
2242  * which must be bypasses until the character is created.
2243  */
2244 static void calc_spells(void)
2245 {
2246         int                     i, j, k, levels;
2247         int                     num_allowed;
2248         int         num_boukyaku = 0;
2249
2250         const magic_type        *s_ptr;
2251         int which;
2252         int bonus = 0;
2253
2254
2255         cptr p;
2256
2257         /* Hack -- must be literate */
2258         if (!mp_ptr->spell_book) return;
2259
2260         /* Hack -- wait for creation */
2261         if (!character_generated) return;
2262
2263         /* Hack -- handle "xtra" mode */
2264         if (character_xtra) return;
2265
2266         if ((p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE))
2267         {
2268                 p_ptr->new_spells = 0;
2269                 return;
2270         }
2271
2272         p = spell_category_name(mp_ptr->spell_book);
2273
2274         /* Determine the number of spells allowed */
2275         levels = p_ptr->lev - mp_ptr->spell_first + 1;
2276
2277         /* Hack -- no negative spells */
2278         if (levels < 0) levels = 0;
2279
2280         /* Extract total allowed spells */
2281         num_allowed = (adj_mag_study[p_ptr->stat_ind[mp_ptr->spell_stat]] * levels / 2);
2282
2283         if ((p_ptr->pclass != CLASS_SAMURAI) && (mp_ptr->spell_book != TV_LIFE_BOOK))
2284         {
2285                 bonus = 4;
2286         }
2287         if (p_ptr->pclass == CLASS_SAMURAI)
2288         {
2289                 num_allowed = 32;
2290         }
2291         else if (p_ptr->realm2 == REALM_NONE)
2292         {
2293                 num_allowed = (num_allowed+1)/2;
2294                 if (num_allowed>(32+bonus)) num_allowed = 32+bonus;
2295         }
2296         else if ((p_ptr->pclass == CLASS_MAGE) || (p_ptr->pclass == CLASS_PRIEST))
2297         {
2298                 if (num_allowed>(96+bonus)) num_allowed = 96+bonus;
2299         }
2300         else
2301         {
2302                 if (num_allowed>(80+bonus)) num_allowed = 80+bonus;
2303         }
2304
2305         /* Count the number of spells we know */
2306         for (j = 0; j < 64; j++)
2307         {
2308                 /* Count known spells */
2309                 if ((j < 32) ?
2310                     (p_ptr->spell_forgotten1 & (1L << j)) :
2311                     (p_ptr->spell_forgotten2 & (1L << (j - 32))))
2312                 {
2313                         num_boukyaku++;
2314                 }
2315         }
2316
2317         /* See how many spells we must forget or may learn */
2318         p_ptr->new_spells = num_allowed + p_ptr->add_spells + num_boukyaku - p_ptr->learned_spells;
2319
2320         /* Forget spells which are too hard */
2321         for (i = 63; i >= 0; i--)
2322         {
2323                 /* Efficiency -- all done */
2324                 if (!p_ptr->spell_learned1 && !p_ptr->spell_learned2) break;
2325
2326                 /* Access the spell */
2327                 j = p_ptr->spell_order[i];
2328
2329                 /* Skip non-spells */
2330                 if (j >= 99) continue;
2331
2332
2333                 /* Get the spell */
2334                 if (!is_magic((j < 32) ? p_ptr->realm1 : p_ptr->realm2))
2335                 {
2336                         if (j < 32)
2337                                 s_ptr = &technic_info[p_ptr->realm1 - MIN_TECHNIC][j];
2338                         else
2339                                 s_ptr = &technic_info[p_ptr->realm2 - MIN_TECHNIC][j%32];
2340                 }
2341                 else if (j < 32)
2342                         s_ptr = &mp_ptr->info[p_ptr->realm1-1][j];
2343                 else
2344                         s_ptr = &mp_ptr->info[p_ptr->realm2-1][j%32];
2345
2346                 /* Skip spells we are allowed to know */
2347                 if (s_ptr->slevel <= p_ptr->lev) continue;
2348
2349                 /* Is it known? */
2350                 if ((j < 32) ?
2351                     (p_ptr->spell_learned1 & (1L << j)) :
2352                     (p_ptr->spell_learned2 & (1L << (j - 32))))
2353                 {
2354                         /* Mark as forgotten */
2355                         if (j < 32)
2356                         {
2357                                 p_ptr->spell_forgotten1 |= (1L << j);
2358                                 which = p_ptr->realm1;
2359                         }
2360                         else
2361                         {
2362                                 p_ptr->spell_forgotten2 |= (1L << (j - 32));
2363                                 which = p_ptr->realm2;
2364                         }
2365
2366                         /* No longer known */
2367                         if (j < 32)
2368                         {
2369                                 p_ptr->spell_learned1 &= ~(1L << j);
2370                                 which = p_ptr->realm1;
2371                         }
2372                         else
2373                         {
2374                                 p_ptr->spell_learned2 &= ~(1L << (j - 32));
2375                                 which = p_ptr->realm2;
2376                         }
2377
2378                         /* Message */
2379 #ifdef JP
2380                         msg_format("%s¤Î%s¤ò˺¤ì¤Æ¤·¤Þ¤Ã¤¿¡£",
2381                                    do_spell(which, j%32, SPELL_NAME), p );
2382 #else
2383                         msg_format("You have forgotten the %s of %s.", p,
2384                         do_spell(which, j%32, SPELL_NAME));
2385 #endif
2386
2387
2388                         /* One more can be learned */
2389                         p_ptr->new_spells++;
2390                 }
2391         }
2392
2393
2394         /* Forget spells if we know too many spells */
2395         for (i = 63; i >= 0; i--)
2396         {
2397                 /* Stop when possible */
2398                 if (p_ptr->new_spells >= 0) break;
2399
2400                 /* Efficiency -- all done */
2401                 if (!p_ptr->spell_learned1 && !p_ptr->spell_learned2) break;
2402
2403                 /* Get the (i+1)th spell learned */
2404                 j = p_ptr->spell_order[i];
2405
2406                 /* Skip unknown spells */
2407                 if (j >= 99) continue;
2408
2409                 /* Forget it (if learned) */
2410                 if ((j < 32) ?
2411                     (p_ptr->spell_learned1 & (1L << j)) :
2412                     (p_ptr->spell_learned2 & (1L << (j - 32))))
2413                 {
2414                         /* Mark as forgotten */
2415                         if (j < 32)
2416                         {
2417                                 p_ptr->spell_forgotten1 |= (1L << j);
2418                                 which = p_ptr->realm1;
2419                         }
2420                         else
2421                         {
2422                                 p_ptr->spell_forgotten2 |= (1L << (j - 32));
2423                                 which = p_ptr->realm2;
2424                         }
2425
2426                         /* No longer known */
2427                         if (j < 32)
2428                         {
2429                                 p_ptr->spell_learned1 &= ~(1L << j);
2430                                 which = p_ptr->realm1;
2431                         }
2432                         else
2433                         {
2434                                 p_ptr->spell_learned2 &= ~(1L << (j - 32));
2435                                 which = p_ptr->realm2;
2436                         }
2437
2438                         /* Message */
2439 #ifdef JP
2440                         msg_format("%s¤Î%s¤ò˺¤ì¤Æ¤·¤Þ¤Ã¤¿¡£",
2441                                    do_spell(which, j%32, SPELL_NAME), p );
2442 #else
2443                         msg_format("You have forgotten the %s of %s.", p,
2444                                    do_spell(which, j%32, SPELL_NAME));
2445 #endif
2446
2447
2448                         /* One more can be learned */
2449                         p_ptr->new_spells++;
2450                 }
2451         }
2452
2453
2454         /* Check for spells to remember */
2455         for (i = 0; i < 64; i++)
2456         {
2457                 /* None left to remember */
2458                 if (p_ptr->new_spells <= 0) break;
2459
2460                 /* Efficiency -- all done */
2461                 if (!p_ptr->spell_forgotten1 && !p_ptr->spell_forgotten2) break;
2462
2463                 /* Get the next spell we learned */
2464                 j = p_ptr->spell_order[i];
2465
2466                 /* Skip unknown spells */
2467                 if (j >= 99) break;
2468
2469                 /* Access the spell */
2470                 if (!is_magic((j < 32) ? p_ptr->realm1 : p_ptr->realm2))
2471                 {
2472                         if (j < 32)
2473                                 s_ptr = &technic_info[p_ptr->realm1 - MIN_TECHNIC][j];
2474                         else
2475                                 s_ptr = &technic_info[p_ptr->realm2 - MIN_TECHNIC][j%32];
2476                 }
2477                 else if (j<32)
2478                         s_ptr = &mp_ptr->info[p_ptr->realm1-1][j];
2479                 else
2480                         s_ptr = &mp_ptr->info[p_ptr->realm2-1][j%32];
2481
2482                 /* Skip spells we cannot remember */
2483                 if (s_ptr->slevel > p_ptr->lev) continue;
2484
2485                 /* First set of spells */
2486                 if ((j < 32) ?
2487                     (p_ptr->spell_forgotten1 & (1L << j)) :
2488                     (p_ptr->spell_forgotten2 & (1L << (j - 32))))
2489                 {
2490                         /* No longer forgotten */
2491                         if (j < 32)
2492                         {
2493                                 p_ptr->spell_forgotten1 &= ~(1L << j);
2494                                 which = p_ptr->realm1;
2495                         }
2496                         else
2497                         {
2498                                 p_ptr->spell_forgotten2 &= ~(1L << (j - 32));
2499                                 which = p_ptr->realm2;
2500                         }
2501
2502                         /* Known once more */
2503                         if (j < 32)
2504                         {
2505                                 p_ptr->spell_learned1 |= (1L << j);
2506                                 which = p_ptr->realm1;
2507                         }
2508                         else
2509                         {
2510                                 p_ptr->spell_learned2 |= (1L << (j - 32));
2511                                 which = p_ptr->realm2;
2512                         }
2513
2514                         /* Message */
2515 #ifdef JP
2516                         msg_format("%s¤Î%s¤ò»×¤¤½Ð¤·¤¿¡£",
2517                                    do_spell(which, j%32, SPELL_NAME), p );
2518 #else
2519                         msg_format("You have remembered the %s of %s.",
2520                                    p, do_spell(which, j%32, SPELL_NAME));
2521 #endif
2522
2523
2524                         /* One less can be learned */
2525                         p_ptr->new_spells--;
2526                 }
2527         }
2528
2529         k = 0;
2530
2531         if (p_ptr->realm2 == REALM_NONE)
2532         {
2533                 /* Count spells that can be learned */
2534                 for (j = 0; j < 32; j++)
2535                 {
2536                         if (!is_magic(p_ptr->realm1)) s_ptr = &technic_info[p_ptr->realm1-MIN_TECHNIC][j];
2537                         else s_ptr = &mp_ptr->info[p_ptr->realm1-1][j];
2538
2539                         /* Skip spells we cannot remember */
2540                         if (s_ptr->slevel > p_ptr->lev) continue;
2541
2542                         /* Skip spells we already know */
2543                         if (p_ptr->spell_learned1 & (1L << j))
2544                         {
2545                                 continue;
2546                         }
2547
2548                         /* Count it */
2549                         k++;
2550                 }
2551                 if (k > 32) k = 32;
2552                 if ((p_ptr->new_spells > k) && ((mp_ptr->spell_book == TV_LIFE_BOOK) || (mp_ptr->spell_book == TV_HISSATSU_BOOK))) p_ptr->new_spells = k;
2553         }
2554
2555         if (p_ptr->new_spells < 0) p_ptr->new_spells = 0;
2556
2557         /* Spell count changed */
2558         if (p_ptr->old_spells != p_ptr->new_spells)
2559         {
2560                 /* Message if needed */
2561                 if (p_ptr->new_spells)
2562                 {
2563                         /* Message */
2564 #ifdef JP
2565                         if( p_ptr->new_spells < 10 ){
2566                                 msg_format("¤¢¤È %d ¤Ä¤Î%s¤ò³Ø¤Ù¤ë¡£", p_ptr->new_spells, p);
2567                         }else{
2568                                 msg_format("¤¢¤È %d ¸Ä¤Î%s¤ò³Ø¤Ù¤ë¡£", p_ptr->new_spells, p);
2569                         }
2570 #else
2571                         msg_format("You can learn %d more %s%s.",
2572                                    p_ptr->new_spells, p,
2573                                    (p_ptr->new_spells != 1) ? "s" : "");
2574 #endif
2575
2576                 }
2577
2578                 /* Save the new_spells value */
2579                 p_ptr->old_spells = p_ptr->new_spells;
2580
2581                 /* Redraw Study Status */
2582                 p_ptr->redraw |= (PR_STUDY);
2583
2584                 /* Redraw object recall */
2585                 p_ptr->window |= (PW_OBJECT);
2586         }
2587 }
2588
2589
2590 /*
2591  * Calculate maximum mana.  You do not need to know any spells.
2592  * Note that mana is lowered by heavy (or inappropriate) armor.
2593  *
2594  * This function induces status messages.
2595  */
2596 static void calc_mana(void)
2597 {
2598         int             msp, levels, cur_wgt, max_wgt;
2599
2600         object_type     *o_ptr;
2601
2602
2603         /* Hack -- Must be literate */
2604         if (!mp_ptr->spell_book) return;
2605
2606         if ((p_ptr->pclass == CLASS_MINDCRAFTER) ||
2607             (p_ptr->pclass == CLASS_MIRROR_MASTER) ||
2608             (p_ptr->pclass == CLASS_BLUE_MAGE))
2609         {
2610                 levels = p_ptr->lev;
2611         }
2612         else
2613         {
2614                 if(mp_ptr->spell_first > p_ptr->lev)
2615                 {
2616                         /* Save new mana */
2617                         p_ptr->msp = 0;
2618
2619                         /* Display mana later */
2620                         p_ptr->redraw |= (PR_MANA);
2621                         return;
2622                 }
2623
2624                 /* Extract "effective" player level */
2625                 levels = (p_ptr->lev - mp_ptr->spell_first) + 1;
2626         }
2627
2628         if (p_ptr->pclass == CLASS_SAMURAI)
2629         {
2630                 msp = (adj_mag_mana[p_ptr->stat_ind[mp_ptr->spell_stat]] + 10) * 2;
2631                 if (msp) msp += (msp * rp_ptr->r_adj[mp_ptr->spell_stat] / 20);
2632         }
2633         else
2634         {
2635                 /* Extract total mana */
2636                 msp = adj_mag_mana[p_ptr->stat_ind[mp_ptr->spell_stat]] * (levels+3) / 4;
2637
2638                 /* Hack -- usually add one mana */
2639                 if (msp) msp++;
2640
2641                 if (msp) msp += (msp * rp_ptr->r_adj[mp_ptr->spell_stat] / 20);
2642
2643                 if (msp && (p_ptr->pseikaku == SEIKAKU_MUNCHKIN)) msp += msp/2;
2644
2645                 /* Hack: High mages have a 25% mana bonus */
2646                 if (msp && (p_ptr->pclass == CLASS_HIGH_MAGE)) msp += msp / 4;
2647
2648                 if (msp && (p_ptr->pclass == CLASS_SORCERER)) msp += msp*(25+p_ptr->lev)/100;
2649         }
2650
2651         /* Only mages are affected */
2652         if (mp_ptr->spell_xtra & MAGIC_GLOVE_REDUCE_MANA)
2653         {
2654                 u32b flgs[TR_FLAG_SIZE];
2655
2656                 /* Assume player is not encumbered by gloves */
2657                 p_ptr->cumber_glove = FALSE;
2658
2659                 /* Get the gloves */
2660                 o_ptr = &inventory[INVEN_HANDS];
2661
2662                 /* Examine the gloves */
2663                 object_flags(o_ptr, flgs);
2664
2665                 /* Normal gloves hurt mage-type spells */
2666                 if (o_ptr->k_idx &&
2667                     !(have_flag(flgs, TR_FREE_ACT)) &&
2668                         !(have_flag(flgs, TR_DEC_MANA)) &&
2669                         !(have_flag(flgs, TR_EASY_SPELL)) &&
2670                         !((have_flag(flgs, TR_MAGIC_MASTERY)) && (o_ptr->pval > 0)) &&
2671                     !((have_flag(flgs, TR_DEX)) && (o_ptr->pval > 0)))
2672                 {
2673                         /* Encumbered */
2674                         p_ptr->cumber_glove = TRUE;
2675
2676                         /* Reduce mana */
2677                         msp = (3 * msp) / 4;
2678                 }
2679         }
2680
2681
2682         /* Assume player not encumbered by armor */
2683         p_ptr->cumber_armor = FALSE;
2684
2685         /* Weigh the armor */
2686         cur_wgt = 0;
2687         if(inventory[INVEN_RARM].tval> TV_SWORD) cur_wgt += inventory[INVEN_RARM].weight;
2688         if(inventory[INVEN_LARM].tval> TV_SWORD) cur_wgt += inventory[INVEN_LARM].weight;
2689         cur_wgt += inventory[INVEN_BODY].weight;
2690         cur_wgt += inventory[INVEN_HEAD].weight;
2691         cur_wgt += inventory[INVEN_OUTER].weight;
2692         cur_wgt += inventory[INVEN_HANDS].weight;
2693         cur_wgt += inventory[INVEN_FEET].weight;
2694
2695         /* Subtract a percentage of maximum mana. */
2696         switch (p_ptr->pclass)
2697         {
2698                 /* For these classes, mana is halved if armour 
2699                  * is 30 pounds over their weight limit. */
2700                 case CLASS_MAGE:
2701                 case CLASS_HIGH_MAGE:
2702                 case CLASS_BLUE_MAGE:
2703                 case CLASS_MONK:
2704                 case CLASS_FORCETRAINER:
2705                 case CLASS_SORCERER:
2706                 {
2707                         if (inventory[INVEN_RARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_RARM].weight;
2708                         if (inventory[INVEN_LARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_LARM].weight;
2709                         break;
2710                 }
2711
2712                 /* Mana halved if armour is 40 pounds over weight limit. */
2713                 case CLASS_PRIEST:
2714                 case CLASS_BARD:
2715                 case CLASS_TOURIST:
2716                 {
2717                         if (inventory[INVEN_RARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_RARM].weight*2/3;
2718                         if (inventory[INVEN_LARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_LARM].weight*2/3;
2719                         break;
2720                 }
2721
2722                 case CLASS_MINDCRAFTER:
2723                 case CLASS_BEASTMASTER:
2724                 case CLASS_MIRROR_MASTER:
2725                 {
2726                         if (inventory[INVEN_RARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_RARM].weight/2;
2727                         if (inventory[INVEN_LARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_LARM].weight/2;
2728                         break;
2729                 }
2730
2731                 /* Mana halved if armour is 50 pounds over weight limit. */
2732                 case CLASS_ROGUE:
2733                 case CLASS_RANGER:
2734                 case CLASS_RED_MAGE:
2735                 case CLASS_WARRIOR_MAGE:
2736                 {
2737                         if (inventory[INVEN_RARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_RARM].weight/3;
2738                         if (inventory[INVEN_LARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_LARM].weight/3;
2739                         break;
2740                 }
2741
2742                 /* Mana halved if armour is 60 pounds over weight limit. */
2743                 case CLASS_PALADIN:
2744                 case CLASS_CHAOS_WARRIOR:
2745                 {
2746                         if (inventory[INVEN_RARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_RARM].weight/5;
2747                         if (inventory[INVEN_LARM].tval <= TV_SWORD) cur_wgt += inventory[INVEN_LARM].weight/5;
2748                         break;
2749                 }
2750
2751                 /* For new classes created, but not yet added to this formula. */
2752                 default:
2753                 {
2754                         break;
2755                 }
2756         }
2757
2758         /* Determine the weight allowance */
2759         max_wgt = mp_ptr->spell_weight;
2760
2761         /* Heavy armor penalizes mana by a percentage.  -LM- */
2762         if ((cur_wgt - max_wgt) > 0)
2763         {
2764                 /* Encumbered */
2765                 p_ptr->cumber_armor = TRUE;
2766
2767                 /* Subtract a percentage of maximum mana. */
2768                 switch (p_ptr->pclass)
2769                 {
2770                         /* For these classes, mana is halved if armour 
2771                          * is 30 pounds over their weight limit. */
2772                         case CLASS_MAGE:
2773                         case CLASS_HIGH_MAGE:
2774                         case CLASS_BLUE_MAGE:
2775                         {
2776                                 msp -= msp * (cur_wgt - max_wgt) / 600;
2777                                 break;
2778                         }
2779
2780                         /* Mana halved if armour is 40 pounds over weight limit. */
2781                         case CLASS_PRIEST:
2782                         case CLASS_MINDCRAFTER:
2783                         case CLASS_BEASTMASTER:
2784                         case CLASS_BARD:
2785                         case CLASS_FORCETRAINER:
2786                         case CLASS_TOURIST:
2787                         case CLASS_MIRROR_MASTER:
2788                         {
2789                                 msp -= msp * (cur_wgt - max_wgt) / 800;
2790                                 break;
2791                         }
2792
2793                         case CLASS_SORCERER:
2794                         {
2795                                 msp -= msp * (cur_wgt - max_wgt) / 900;
2796                                 break;
2797                         }
2798
2799                         /* Mana halved if armour is 50 pounds over weight limit. */
2800                         case CLASS_ROGUE:
2801                         case CLASS_RANGER:
2802                         case CLASS_MONK:
2803                         case CLASS_RED_MAGE:
2804                         {
2805                                 msp -= msp * (cur_wgt - max_wgt) / 1000;
2806                                 break;
2807                         }
2808
2809                         /* Mana halved if armour is 60 pounds over weight limit. */
2810                         case CLASS_PALADIN:
2811                         case CLASS_CHAOS_WARRIOR:
2812                         case CLASS_WARRIOR_MAGE:
2813                         {
2814                                 msp -= msp * (cur_wgt - max_wgt) / 1200;
2815                                 break;
2816                         }
2817
2818                         case CLASS_SAMURAI:
2819                         {
2820                                 p_ptr->cumber_armor = FALSE;
2821                                 break;
2822                         }
2823
2824                         /* For new classes created, but not yet added to this formula. */
2825                         default:
2826                         {
2827                                 msp -= msp * (cur_wgt - max_wgt) / 800;
2828                                 break;
2829                         }
2830                 }
2831         }
2832
2833         /* Mana can never be negative */
2834         if (msp < 0) msp = 0;
2835
2836
2837         /* Maximum mana has changed */
2838         if (p_ptr->msp != msp)
2839         {
2840                 /* Enforce maximum */
2841                 if ((p_ptr->csp >= msp) && (p_ptr->pclass != CLASS_SAMURAI))
2842                 {
2843                         p_ptr->csp = msp;
2844                         p_ptr->csp_frac = 0;
2845                 }
2846
2847 #ifdef JP
2848                 /* ¥ì¥Ù¥ë¥¢¥Ã¥×¤Î»þ¤Ï¾å¾ºÎ̤òɽ¼¨¤¹¤ë */
2849                 if ((level_up == 1) && (msp > p_ptr->msp))
2850                 {
2851                         msg_format("ºÇÂç¥Þ¥¸¥Ã¥¯¡¦¥Ý¥¤¥ó¥È¤¬ %d Áý²Ã¤·¤¿¡ª",
2852                                    (msp - p_ptr->msp));
2853                 }
2854 #endif
2855                 /* Save new mana */
2856                 p_ptr->msp = msp;
2857
2858                 /* Display mana later */
2859                 p_ptr->redraw |= (PR_MANA);
2860
2861                 /* Window stuff */
2862                 p_ptr->window |= (PW_PLAYER);
2863                 p_ptr->window |= (PW_SPELL);
2864         }
2865
2866
2867         /* Hack -- handle "xtra" mode */
2868         if (character_xtra) return;
2869
2870         /* Take note when "glove state" changes */
2871         if (p_ptr->old_cumber_glove != p_ptr->cumber_glove)
2872         {
2873                 /* Message */
2874                 if (p_ptr->cumber_glove)
2875                 {
2876 #ifdef JP
2877                         msg_print("¼ê¤¬Ê¤¤ï¤ì¤Æ¼öʸ¤¬¾§¤¨¤Ë¤¯¤¤´¶¤¸¤¬¤¹¤ë¡£");
2878 #else
2879                         msg_print("Your covered hands feel unsuitable for spellcasting.");
2880 #endif
2881
2882                 }
2883                 else
2884                 {
2885 #ifdef JP
2886                         msg_print("¤³¤Î¼ê¤Î¾õÂ֤ʤ顢¤°¤Ã¤È¼öʸ¤¬¾§¤¨¤ä¤¹¤¤´¶¤¸¤À¡£");
2887 #else
2888                         msg_print("Your hands feel more suitable for spellcasting.");
2889 #endif
2890
2891                 }
2892
2893                 /* Save it */
2894                 p_ptr->old_cumber_glove = p_ptr->cumber_glove;
2895         }
2896
2897
2898         /* Take note when "armor state" changes */
2899         if (p_ptr->old_cumber_armor != p_ptr->cumber_armor)
2900         {
2901                 /* Message */
2902                 if (p_ptr->cumber_armor)
2903                 {
2904 #ifdef JP
2905                         msg_print("ÁõÈ÷¤Î½Å¤µ¤ÇÆ°¤­¤¬Æߤ¯¤Ê¤Ã¤Æ¤·¤Þ¤Ã¤Æ¤¤¤ë¡£");
2906 #else
2907                         msg_print("The weight of your equipment encumbers your movement.");
2908 #endif
2909
2910                 }
2911                 else
2912                 {
2913 #ifdef JP
2914                         msg_print("¤°¤Ã¤È³Ú¤ËÂΤòÆ°¤«¤»¤ë¤è¤¦¤Ë¤Ê¤Ã¤¿¡£");
2915 #else
2916                         msg_print("You feel able to move more freely.");
2917 #endif
2918
2919                 }
2920
2921                 /* Save it */
2922                 p_ptr->old_cumber_armor = p_ptr->cumber_armor;
2923         }
2924 }
2925
2926
2927
2928 /*
2929  * Calculate the players (maximal) hit points
2930  * Adjust current hitpoints if necessary
2931  */
2932 static void calc_hitpoints(void)
2933 {
2934         int bonus, mhp;
2935         byte tmp_hitdie;
2936
2937         /* Un-inflate "half-hitpoint bonus per level" value */
2938         bonus = ((int)(adj_con_mhp[p_ptr->stat_ind[A_CON]]) - 128) * p_ptr->lev / 4;
2939
2940         /* Calculate hitpoints */
2941         mhp = p_ptr->player_hp[p_ptr->lev - 1];
2942
2943         if (p_ptr->mimic_form)
2944         {
2945                 if (p_ptr->pclass == CLASS_SORCERER)
2946                         tmp_hitdie = mimic_info[p_ptr->mimic_form].r_mhp/2 + cp_ptr->c_mhp + ap_ptr->a_mhp;
2947                 else
2948                         tmp_hitdie = mimic_info[p_ptr->mimic_form].r_mhp + cp_ptr->c_mhp + ap_ptr->a_mhp;
2949                 mhp = mhp * tmp_hitdie / p_ptr->hitdie;
2950         }
2951
2952         if (p_ptr->pclass == CLASS_SORCERER)
2953         {
2954                 if (p_ptr->lev < 30)
2955                         mhp = (mhp * (45+p_ptr->lev) / 100);
2956                 else
2957                         mhp = (mhp * 75 / 100);
2958                 bonus = (bonus * 65 / 100);
2959         }
2960
2961         mhp += bonus;
2962
2963         if (p_ptr->pclass == CLASS_BERSERKER)
2964         {
2965                 mhp = mhp*(110+(((p_ptr->lev + 40) * (p_ptr->lev + 40) - 1550) / 110))/100;
2966         }
2967
2968         /* Always have at least one hitpoint per level */
2969         if (mhp < p_ptr->lev + 1) mhp = p_ptr->lev + 1;
2970
2971         /* Factor in the hero / superhero settings */
2972         if (IS_HERO()) mhp += 10;
2973         if (p_ptr->shero && (p_ptr->pclass != CLASS_BERSERKER)) mhp += 30;
2974         if (p_ptr->tsuyoshi) mhp += 50;
2975
2976         /* Factor in the hex spell settings */
2977         if (hex_spelling(HEX_XTRA_MIGHT)) mhp += 15;
2978         if (hex_spelling(HEX_BUILDING)) mhp += 60;
2979
2980         /* New maximum hitpoints */
2981         if (p_ptr->mhp != mhp)
2982         {
2983                 /* Enforce maximum */
2984                 if (p_ptr->chp >= mhp)
2985                 {
2986                         p_ptr->chp = mhp;
2987                         p_ptr->chp_frac = 0;
2988                 }
2989
2990 #ifdef JP
2991                 /* ¥ì¥Ù¥ë¥¢¥Ã¥×¤Î»þ¤Ï¾å¾ºÎ̤òɽ¼¨¤¹¤ë */
2992                 if ((level_up == 1) && (mhp > p_ptr->mhp))
2993                 {
2994                         msg_format("ºÇÂç¥Ò¥Ã¥È¡¦¥Ý¥¤¥ó¥È¤¬ %d Áý²Ã¤·¤¿¡ª",
2995                                    (mhp - p_ptr->mhp) );
2996                 }
2997 #endif
2998                 /* Save the new max-hitpoints */
2999                 p_ptr->mhp = mhp;
3000
3001                 /* Display hitpoints (later) */
3002                 p_ptr->redraw |= (PR_HP);
3003
3004                 /* Window stuff */
3005                 p_ptr->window |= (PW_PLAYER);
3006         }
3007 }
3008
3009
3010
3011 /*
3012  * Extract and set the current "lite radius"
3013  *
3014  * SWD: Experimental modification: multiple light sources have additive effect.
3015  *
3016  */
3017 static void calc_torch(void)
3018 {
3019         int i;
3020         object_type *o_ptr;
3021         u32b flgs[TR_FLAG_SIZE];
3022
3023         /* Assume no light */
3024         p_ptr->cur_lite = 0;
3025
3026         /* Loop through all wielded items */
3027         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
3028         {
3029                 o_ptr = &inventory[i];
3030                 /* Skip empty slots */
3031                 if (!o_ptr->k_idx) continue;
3032                 
3033                 if (o_ptr->name2 == EGO_LITE_SHINE) p_ptr->cur_lite++;
3034                 
3035                 /* Need Fuels */
3036                 if (o_ptr->name2 != EGO_LITE_DARKNESS)
3037                 {
3038                         if((o_ptr->sval == SV_LITE_TORCH) && !(o_ptr->xtra4 > 0)) break;
3039                         if((o_ptr->sval == SV_LITE_LANTERN) && !(o_ptr->xtra4 > 0)) break;
3040                 }
3041
3042                 /* Extract the flags */
3043                 object_flags(o_ptr, flgs);
3044
3045                 /* calc the lite_radius */
3046                 if (have_flag(flgs, TR_LITE_1)) p_ptr->cur_lite += 1;
3047                 if (have_flag(flgs, TR_LITE_2)) p_ptr->cur_lite += 2;
3048                 if (have_flag(flgs, TR_LITE_3)) p_ptr->cur_lite += 3;
3049                 if (have_flag(flgs, TR_LITE_M1)) p_ptr->cur_lite -= 1;
3050                 if (have_flag(flgs, TR_LITE_M2)) p_ptr->cur_lite -= 2;
3051                 if (have_flag(flgs, TR_LITE_M3)) p_ptr->cur_lite -= 3;
3052         }
3053
3054         /* max radius is 14 (was 5) without rewriting other code -- */
3055         /* see cave.c:update_lite() and defines.h:LITE_MAX */
3056         if (d_info[dungeon_type].flags1 & DF1_DARKNESS && p_ptr->cur_lite > 1)
3057                 p_ptr->cur_lite = 1;
3058
3059         /*
3060          * check if the player doesn't have light radius, 
3061          * but does weakly glow as an intrinsic.
3062          */
3063         if (p_ptr->cur_lite <= 0 && p_ptr->lite) p_ptr->cur_lite++;
3064
3065         if (p_ptr->cur_lite > 14) p_ptr->cur_lite = 14;
3066         if (p_ptr->cur_lite < 0) p_ptr->cur_lite = 0;
3067
3068         /* end experimental mods */
3069
3070         /* Notice changes in the "lite radius" */
3071         if (p_ptr->old_lite != p_ptr->cur_lite)
3072         {
3073                 /* Update stuff */
3074                 /* Hack -- PU_MON_LITE for monsters' darkness */
3075                 p_ptr->update |= (PU_LITE | PU_MON_LITE | PU_MONSTERS);
3076
3077                 /* Remember the old lite */
3078                 p_ptr->old_lite = p_ptr->cur_lite;
3079
3080                 if ((p_ptr->cur_lite > 0) && (p_ptr->special_defense & NINJA_S_STEALTH))
3081                         set_superstealth(FALSE);
3082         }
3083 }
3084
3085
3086
3087 /*
3088  * Computes current weight limit.
3089  */
3090 u32b weight_limit(void)
3091 {
3092         u32b i;
3093
3094         /* Weight limit based only on strength */
3095         i = (u32b)adj_str_wgt[p_ptr->stat_ind[A_STR]] * 50; /* Constant was 100 */
3096         if (p_ptr->pclass == CLASS_BERSERKER) i = i * 3 / 2;
3097
3098         /* Return the result */
3099         return i;
3100 }
3101
3102
3103 bool buki_motteruka(int i)
3104 {
3105         return ((inventory[i].k_idx && object_is_melee_weapon(&inventory[i])) ? TRUE : FALSE);
3106 }
3107
3108 bool is_heavy_shoot(object_type *o_ptr)
3109 {
3110         int hold = adj_str_hold[p_ptr->stat_ind[A_STR]];
3111         /* It is hard to carholdry a heavy bow */
3112         return (hold < o_ptr->weight / 10);
3113 }
3114
3115 int bow_tval_ammo(object_type *o_ptr)
3116 {
3117         /* Analyze the launcher */
3118         switch (o_ptr->sval)
3119         {
3120                 case SV_SLING:
3121                 {
3122                         return TV_SHOT;
3123                 }
3124
3125                 case SV_SHORT_BOW:
3126                 case SV_LONG_BOW:
3127                 case SV_NAMAKE_BOW:
3128                 {
3129                         return TV_ARROW;
3130                 }
3131
3132                 case SV_LIGHT_XBOW:
3133                 case SV_HEAVY_XBOW:
3134                 {
3135                         return TV_BOLT;
3136                 }
3137                 case SV_CRIMSON:
3138                 {
3139                         return TV_NO_AMMO;
3140                 }
3141         }
3142         
3143         return 0;
3144 }
3145
3146 /* calcurate the fire rate of target object */
3147 s16b calc_num_fire(object_type *o_ptr)
3148 {
3149         int extra_shots = 0;
3150         int i;
3151         int num = 0;
3152         int tval_ammo = bow_tval_ammo(o_ptr);
3153         object_type *q_ptr;
3154         u32b flgs[TR_FLAG_SIZE];
3155         
3156         /* Scan the usable inventory */
3157         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
3158         {
3159                 q_ptr = &inventory[i];
3160
3161                 /* Skip non-objects */
3162                 if (!q_ptr->k_idx) continue;
3163                 
3164                 /* Do not apply current equip */
3165                 if (i == INVEN_BOW) continue;
3166
3167                 /* Extract the item flags */
3168                 object_flags(q_ptr, flgs);
3169
3170                 /* Boost shots */
3171                 if (have_flag(flgs, TR_XTRA_SHOTS)) extra_shots++;
3172         }
3173         
3174         object_flags(o_ptr, flgs);
3175         if (have_flag(flgs, TR_XTRA_SHOTS)) extra_shots++;
3176         
3177         if (o_ptr->k_idx && !is_heavy_shoot(o_ptr))
3178         {
3179                 num = 100;
3180                 /* Extra shots */
3181                 num += (extra_shots * 100);
3182
3183                 /* Hack -- Rangers love Bows */
3184                 if ((p_ptr->pclass == CLASS_RANGER) && 
3185                                         (tval_ammo == TV_ARROW))
3186                 {
3187                         num += (p_ptr->lev * 4);
3188                 }
3189
3190                 if ((p_ptr->pclass == CLASS_CAVALRY) &&
3191                     (tval_ammo == TV_ARROW))
3192                 {
3193                         num += (p_ptr->lev * 3);
3194                 }
3195
3196                 if (p_ptr->pclass == CLASS_ARCHER)
3197                 {
3198                         if (tval_ammo == TV_ARROW)
3199                                 num += ((p_ptr->lev * 5)+50);
3200                         else if ((tval_ammo == TV_BOLT) || (tval_ammo == TV_SHOT))
3201                                 num += (p_ptr->lev * 4);
3202                 }
3203
3204                 /*
3205                  * Addendum -- also "Reward" high level warriors,
3206                  * with _any_ missile weapon -- TY
3207                  */
3208                 if (p_ptr->pclass == CLASS_WARRIOR &&
3209                    (tval_ammo <= TV_BOLT) &&
3210                    (tval_ammo >= TV_SHOT))
3211                 {
3212                         num += (p_ptr->lev * 2);
3213                 }
3214                 if ((p_ptr->pclass == CLASS_ROGUE) &&
3215                     (tval_ammo == TV_SHOT))
3216                 {
3217                         num += (p_ptr->lev * 4);
3218                 }
3219         }
3220         return num;
3221 }
3222
3223 /*
3224  * Calculate the players current "state", taking into account
3225  * not only race/class intrinsics, but also objects being worn
3226  * and temporary spell effects.
3227  *
3228  * See also calc_mana() and calc_hitpoints().
3229  *
3230  * Take note of the new "speed code", in particular, a very strong
3231  * player will start slowing down as soon as he reaches 150 pounds,
3232  * but not until he reaches 450 pounds will he be half as fast as
3233  * a normal kobold.  This both hurts and helps the player, hurts
3234  * because in the old days a player could just avoid 300 pounds,
3235  * and helps because now carrying 300 pounds is not very painful.
3236  *
3237  * The "weapon" and "bow" do *not* add to the bonuses to hit or to
3238  * damage, since that would affect non-combat things.  These values
3239  * are actually added in later, at the appropriate place.
3240  *
3241  * This function induces various "status" messages.
3242  */
3243 void calc_bonuses(void)
3244 {
3245         int             i, j, hold, neutral[2];
3246         int             new_speed;
3247         int             default_hand = 0;
3248         int             empty_hands_status = empty_hands(TRUE);
3249         int             extra_blows[2];
3250         object_type     *o_ptr;
3251         u32b flgs[TR_FLAG_SIZE];
3252         bool            omoi = FALSE;
3253         bool            yoiyami = FALSE;
3254         bool            down_saving = FALSE;
3255 #if 0
3256         bool            have_dd_s = FALSE, have_dd_t = FALSE;
3257 #endif
3258         bool            have_sw = FALSE, have_kabe = FALSE;
3259         bool            easy_2weapon = FALSE;
3260         bool            riding_levitation = FALSE;
3261         s16b this_o_idx, next_o_idx = 0;
3262         const player_race *tmp_rp_ptr;
3263
3264         /* Save the old vision stuff */
3265         bool old_telepathy = p_ptr->telepathy;
3266         bool old_esp_animal = p_ptr->esp_animal;
3267         bool old_esp_undead = p_ptr->esp_undead;
3268         bool old_esp_demon = p_ptr->esp_demon;
3269         bool old_esp_orc = p_ptr->esp_orc;
3270         bool old_esp_troll = p_ptr->esp_troll;
3271         bool old_esp_giant = p_ptr->esp_giant;
3272         bool old_esp_dragon = p_ptr->esp_dragon;
3273         bool old_esp_human = p_ptr->esp_human;
3274         bool old_esp_evil = p_ptr->esp_evil;
3275         bool old_esp_good = p_ptr->esp_good;
3276         bool old_esp_nonliving = p_ptr->esp_nonliving;
3277         bool old_esp_unique = p_ptr->esp_unique;
3278         bool old_see_inv = p_ptr->see_inv;
3279         bool old_mighty_throw = p_ptr->mighty_throw;
3280
3281         /* Save the old armor class */
3282         bool old_dis_ac = p_ptr->dis_ac;
3283         bool old_dis_to_a = p_ptr->dis_to_a;
3284
3285
3286         /* Clear extra blows/shots */
3287         extra_blows[0] = extra_blows[1] = 0;
3288
3289         /* Clear the stat modifiers */
3290         for (i = 0; i < 6; i++) p_ptr->stat_add[i] = 0;
3291
3292
3293         /* Clear the Displayed/Real armor class */
3294         p_ptr->dis_ac = p_ptr->ac = 0;
3295
3296         /* Clear the Displayed/Real Bonuses */
3297         p_ptr->dis_to_h[0] = p_ptr->to_h[0] = 0;
3298         p_ptr->dis_to_h[1] = p_ptr->to_h[1] = 0;
3299         p_ptr->dis_to_d[0] = p_ptr->to_d[0] = 0;
3300         p_ptr->dis_to_d[1] = p_ptr->to_d[1] = 0;
3301         p_ptr->dis_to_h_b = p_ptr->to_h_b = 0;
3302         p_ptr->dis_to_a = p_ptr->to_a = 0;
3303         p_ptr->to_h_m = 0;
3304         p_ptr->to_d_m = 0;
3305
3306         p_ptr->to_m_chance = 0;
3307
3308         /* Clear the Extra Dice Bonuses */
3309         p_ptr->to_dd[0] = p_ptr->to_ds[0] = 0;
3310         p_ptr->to_dd[1] = p_ptr->to_ds[1] = 0;
3311
3312         /* Start with "normal" speed */
3313         new_speed = 110;
3314
3315         /* Start with a single blow per turn */
3316         p_ptr->num_blow[0] = 1;
3317         p_ptr->num_blow[1] = 1;
3318
3319         /* Start with a single shot per turn */
3320         p_ptr->num_fire = 100;
3321
3322         /* Reset the "xtra" tval */
3323         p_ptr->tval_xtra = 0;
3324
3325         /* Reset the "ammo" tval */
3326         p_ptr->tval_ammo = 0;
3327
3328         /* Clear all the flags */
3329         p_ptr->cursed = 0L;
3330         p_ptr->bless_blade = FALSE;
3331         p_ptr->xtra_might = FALSE;
3332         p_ptr->impact[0] = FALSE;
3333         p_ptr->impact[1] = FALSE;
3334         p_ptr->pass_wall = FALSE;
3335         p_ptr->kill_wall = FALSE;
3336         p_ptr->dec_mana = FALSE;
3337         p_ptr->easy_spell = FALSE;
3338         p_ptr->heavy_spell = FALSE;
3339         p_ptr->see_inv = FALSE;
3340         p_ptr->free_act = FALSE;
3341         p_ptr->slow_digest = FALSE;
3342         p_ptr->regenerate = FALSE;
3343         p_ptr->can_swim = FALSE;
3344         p_ptr->levitation = FALSE;
3345         p_ptr->hold_life = FALSE;
3346         p_ptr->telepathy = FALSE;
3347         p_ptr->esp_animal = FALSE;
3348         p_ptr->esp_undead = FALSE;
3349         p_ptr->esp_demon = FALSE;
3350         p_ptr->esp_orc = FALSE;
3351         p_ptr->esp_troll = FALSE;
3352         p_ptr->esp_giant = FALSE;
3353         p_ptr->esp_dragon = FALSE;
3354         p_ptr->esp_human = FALSE;
3355         p_ptr->esp_evil = FALSE;
3356         p_ptr->esp_good = FALSE;
3357         p_ptr->esp_nonliving = FALSE;
3358         p_ptr->esp_unique = FALSE;
3359         p_ptr->lite = FALSE;
3360         p_ptr->sustain_str = FALSE;
3361         p_ptr->sustain_int = FALSE;
3362         p_ptr->sustain_wis = FALSE;
3363         p_ptr->sustain_con = FALSE;
3364         p_ptr->sustain_dex = FALSE;
3365         p_ptr->sustain_chr = FALSE;
3366         p_ptr->resist_acid = FALSE;
3367         p_ptr->resist_elec = FALSE;
3368         p_ptr->resist_fire = FALSE;
3369         p_ptr->resist_cold = FALSE;
3370         p_ptr->resist_pois = FALSE;
3371         p_ptr->resist_conf = FALSE;
3372         p_ptr->resist_sound = FALSE;
3373         p_ptr->resist_lite = FALSE;
3374         p_ptr->resist_dark = FALSE;
3375         p_ptr->resist_chaos = FALSE;
3376         p_ptr->resist_disen = FALSE;
3377         p_ptr->resist_shard = FALSE;
3378         p_ptr->resist_nexus = FALSE;
3379         p_ptr->resist_blind = FALSE;
3380         p_ptr->resist_neth = FALSE;
3381         p_ptr->resist_time = FALSE;
3382         p_ptr->resist_fear = FALSE;
3383         p_ptr->reflect = FALSE;
3384         p_ptr->sh_fire = FALSE;
3385         p_ptr->sh_elec = FALSE;
3386         p_ptr->sh_cold = FALSE;
3387         p_ptr->anti_magic = FALSE;
3388         p_ptr->anti_tele = FALSE;
3389         p_ptr->warning = FALSE;
3390         p_ptr->mighty_throw = FALSE;
3391         p_ptr->see_nocto = FALSE;
3392
3393         p_ptr->immune_acid = FALSE;
3394         p_ptr->immune_elec = FALSE;
3395         p_ptr->immune_fire = FALSE;
3396         p_ptr->immune_cold = FALSE;
3397
3398         p_ptr->ryoute = FALSE;
3399         p_ptr->migite = FALSE;
3400         p_ptr->hidarite = FALSE;
3401         p_ptr->no_flowed = FALSE;
3402
3403         p_ptr->align = friend_align;
3404
3405         if (p_ptr->mimic_form) tmp_rp_ptr = &mimic_info[p_ptr->mimic_form];
3406         else tmp_rp_ptr = &race_info[p_ptr->prace];
3407
3408         /* Base infravision (purely racial) */
3409         p_ptr->see_infra = tmp_rp_ptr->infra;
3410
3411         /* Base skill -- disarming */
3412         p_ptr->skill_dis = tmp_rp_ptr->r_dis + cp_ptr->c_dis + ap_ptr->a_dis;
3413
3414         /* Base skill -- magic devices */
3415         p_ptr->skill_dev = tmp_rp_ptr->r_dev + cp_ptr->c_dev + ap_ptr->a_dev;
3416
3417         /* Base skill -- saving throw */
3418         p_ptr->skill_sav = tmp_rp_ptr->r_sav + cp_ptr->c_sav + ap_ptr->a_sav;
3419
3420         /* Base skill -- stealth */
3421         p_ptr->skill_stl = tmp_rp_ptr->r_stl + cp_ptr->c_stl + ap_ptr->a_stl;
3422
3423         /* Base skill -- searching ability */
3424         p_ptr->skill_srh = tmp_rp_ptr->r_srh + cp_ptr->c_srh + ap_ptr->a_srh;
3425
3426         /* Base skill -- searching frequency */
3427         p_ptr->skill_fos = tmp_rp_ptr->r_fos + cp_ptr->c_fos + ap_ptr->a_fos;
3428
3429         /* Base skill -- combat (normal) */
3430         p_ptr->skill_thn = tmp_rp_ptr->r_thn + cp_ptr->c_thn + ap_ptr->a_thn;
3431
3432         /* Base skill -- combat (shooting) */
3433         p_ptr->skill_thb = tmp_rp_ptr->r_thb + cp_ptr->c_thb + ap_ptr->a_thb;
3434
3435         /* Base skill -- combat (throwing) */
3436         p_ptr->skill_tht = tmp_rp_ptr->r_thb + cp_ptr->c_thb + ap_ptr->a_thb;
3437
3438         /* Base skill -- digging */
3439         p_ptr->skill_dig = 0;
3440
3441         if (buki_motteruka(INVEN_RARM)) p_ptr->migite = TRUE;
3442         if (buki_motteruka(INVEN_LARM))
3443         {
3444                 p_ptr->hidarite = TRUE;
3445                 if (!p_ptr->migite) default_hand = 1;
3446         }
3447
3448         if (CAN_TWO_HANDS_WIELDING())
3449         {
3450                 if (p_ptr->migite && (empty_hands(FALSE) == EMPTY_HAND_LARM) &&
3451                         object_allow_two_hands_wielding(&inventory[INVEN_RARM]))
3452                 {
3453                         p_ptr->ryoute = TRUE;
3454                 }
3455                 else if (p_ptr->hidarite && (empty_hands(FALSE) == EMPTY_HAND_RARM) &&
3456                         object_allow_two_hands_wielding(&inventory[INVEN_LARM]))
3457                 {
3458                         p_ptr->ryoute = TRUE;
3459                 }
3460                 else
3461                 {
3462                         switch (p_ptr->pclass)
3463                         {
3464                         case CLASS_MONK:
3465                         case CLASS_FORCETRAINER:
3466                         case CLASS_BERSERKER:
3467                                 if (empty_hands(FALSE) == (EMPTY_HAND_RARM | EMPTY_HAND_LARM))
3468                                 {
3469                                         p_ptr->migite = TRUE;
3470                                         p_ptr->ryoute = TRUE;
3471                                 }
3472                                 break;
3473                         }
3474                 }
3475         }
3476
3477         if (!p_ptr->migite && !p_ptr->hidarite)
3478         {
3479                 if (empty_hands_status & EMPTY_HAND_RARM) p_ptr->migite = TRUE;
3480                 else if (empty_hands_status == EMPTY_HAND_LARM)
3481                 {
3482                         p_ptr->hidarite = TRUE;
3483                         default_hand = 1;
3484                 }
3485         }
3486
3487         if (p_ptr->special_defense & KAMAE_MASK)
3488         {
3489                 if (!(empty_hands_status & EMPTY_HAND_RARM))
3490                 {
3491                         set_action(ACTION_NONE);
3492                 }
3493         }
3494
3495         switch (p_ptr->pclass)
3496         {
3497                 case CLASS_WARRIOR:
3498                         if (p_ptr->lev > 29) p_ptr->resist_fear = TRUE;
3499                         if (p_ptr->lev > 44) p_ptr->regenerate = TRUE;
3500                         break;
3501                 case CLASS_PALADIN:
3502                         if (p_ptr->lev > 39) p_ptr->resist_fear = TRUE;
3503                         break;
3504                 case CLASS_CHAOS_WARRIOR:
3505                         if (p_ptr->lev > 29) p_ptr->resist_chaos = TRUE;
3506                         if (p_ptr->lev > 39) p_ptr->resist_fear = TRUE;
3507                         break;
3508                 case CLASS_MINDCRAFTER:
3509                         if (p_ptr->lev >  9) p_ptr->resist_fear = TRUE;
3510                         if (p_ptr->lev > 19) p_ptr->sustain_wis = TRUE;
3511                         if (p_ptr->lev > 29) p_ptr->resist_conf = TRUE;
3512                         if (p_ptr->lev > 39) p_ptr->telepathy = TRUE;
3513                         break;
3514                 case CLASS_MONK:
3515                 case CLASS_FORCETRAINER:
3516                         /* Unencumbered Monks become faster every 10 levels */
3517                         if (!(heavy_armor()))
3518                         {
3519                                 if (!(prace_is_(RACE_KLACKON) ||
3520                                       prace_is_(RACE_SPRITE) ||
3521                                       (p_ptr->pseikaku == SEIKAKU_MUNCHKIN)))
3522                                         new_speed += (p_ptr->lev) / 10;
3523
3524                                 /* Free action if unencumbered at level 25 */
3525                                 if  (p_ptr->lev > 24)
3526                                         p_ptr->free_act = TRUE;
3527                         }
3528                         break;
3529                 case CLASS_SORCERER:
3530                         p_ptr->to_a -= 50;
3531                         p_ptr->dis_to_a -= 50;
3532                         break;
3533                 case CLASS_BARD:
3534                         p_ptr->resist_sound = TRUE;
3535                         break;
3536                 case CLASS_SAMURAI:
3537                         if (p_ptr->lev > 29) p_ptr->resist_fear = TRUE;
3538                         break;
3539                 case CLASS_BERSERKER:
3540                         p_ptr->shero = 1;
3541                         p_ptr->sustain_str = TRUE;
3542                         p_ptr->sustain_dex = TRUE;
3543                         p_ptr->sustain_con = TRUE;
3544                         p_ptr->regenerate = TRUE;
3545                         p_ptr->free_act = TRUE;
3546                         new_speed += 2;
3547                         if (p_ptr->lev > 29) new_speed++;
3548                         if (p_ptr->lev > 39) new_speed++;
3549                         if (p_ptr->lev > 44) new_speed++;
3550                         if (p_ptr->lev > 49) new_speed++;
3551                         p_ptr->to_a += 10+p_ptr->lev/2;
3552                         p_ptr->dis_to_a += 10+p_ptr->lev/2;
3553                         p_ptr->skill_dig += (100+p_ptr->lev*8);
3554                         if (p_ptr->lev > 39) p_ptr->reflect = TRUE;
3555                         p_ptr->redraw |= PR_STATUS;
3556                         break;
3557                 case CLASS_MIRROR_MASTER:
3558                         if (p_ptr->lev > 39) p_ptr->reflect = TRUE;
3559                         break;
3560                 case CLASS_NINJA:
3561                         /* Unencumbered Ninjas become faster every 10 levels */
3562                         if (heavy_armor())
3563                         {
3564                                 new_speed -= (p_ptr->lev) / 10;
3565                                 p_ptr->skill_stl -= (p_ptr->lev)/10;
3566                         }
3567                         else if ((!inventory[INVEN_RARM].k_idx || p_ptr->migite) &&
3568                                  (!inventory[INVEN_LARM].k_idx || p_ptr->hidarite))
3569                         {
3570                                 new_speed += 3;
3571                                 if (!(prace_is_(RACE_KLACKON) ||
3572                                       prace_is_(RACE_SPRITE) ||
3573                                       (p_ptr->pseikaku == SEIKAKU_MUNCHKIN)))
3574                                         new_speed += (p_ptr->lev) / 10;
3575                                 p_ptr->skill_stl += (p_ptr->lev)/10;
3576
3577                                 /* Free action if unencumbered at level 25 */
3578                                 if  (p_ptr->lev > 24)
3579                                         p_ptr->free_act = TRUE;
3580                         }
3581                         if ((!inventory[INVEN_RARM].k_idx || p_ptr->migite) &&
3582                             (!inventory[INVEN_LARM].k_idx || p_ptr->hidarite))
3583                         {
3584                                 p_ptr->to_a += p_ptr->lev/2+5;
3585                                 p_ptr->dis_to_a += p_ptr->lev/2+5;
3586                         }
3587                         p_ptr->slow_digest = TRUE;
3588                         p_ptr->resist_fear = TRUE;
3589                         if (p_ptr->lev > 19) p_ptr->resist_pois = TRUE;
3590                         if (p_ptr->lev > 24) p_ptr->sustain_dex = TRUE;
3591                         if (p_ptr->lev > 29) p_ptr->see_inv = TRUE;
3592                         if (p_ptr->lev > 44)
3593                         {
3594                                 p_ptr->oppose_pois = 1;
3595                                 p_ptr->redraw |= PR_STATUS;
3596                         }
3597                         p_ptr->see_nocto = TRUE;
3598                         break;
3599         }
3600
3601         /***** Races ****/
3602         if (p_ptr->mimic_form)
3603         {
3604                 switch (p_ptr->mimic_form)
3605                 {
3606                 case MIMIC_DEMON:
3607                         p_ptr->hold_life = TRUE;
3608                         p_ptr->resist_chaos = TRUE;
3609                         p_ptr->resist_neth = TRUE;
3610                         p_ptr->resist_fire = TRUE;
3611                         p_ptr->oppose_fire = 1;
3612                         p_ptr->see_inv=TRUE;
3613                         new_speed += 3;
3614                         p_ptr->redraw |= PR_STATUS;
3615                         p_ptr->to_a += 10;
3616                         p_ptr->dis_to_a += 10;
3617                         p_ptr->align -= 200;
3618                         break;
3619                 case MIMIC_DEMON_LORD:
3620                         p_ptr->hold_life = TRUE;
3621                         p_ptr->resist_chaos = TRUE;
3622                         p_ptr->resist_neth = TRUE;
3623                         p_ptr->immune_fire = TRUE;
3624                         p_ptr->resist_acid = TRUE;
3625                         p_ptr->resist_fire = TRUE;
3626                         p_ptr->resist_cold = TRUE;
3627                         p_ptr->resist_elec = TRUE;
3628                         p_ptr->resist_pois = TRUE;
3629                         p_ptr->resist_conf = TRUE;
3630                         p_ptr->resist_disen = TRUE;
3631                         p_ptr->resist_nexus = TRUE;
3632                         p_ptr->resist_fear = TRUE;
3633                         p_ptr->sh_fire = TRUE;
3634                         p_ptr->see_inv = TRUE;
3635                         p_ptr->telepathy = TRUE;
3636                         p_ptr->levitation = TRUE;
3637                         p_ptr->kill_wall = TRUE;
3638                         new_speed += 5;
3639                         p_ptr->to_a += 20;
3640                         p_ptr->dis_to_a += 20;
3641                         p_ptr->align -= 200;
3642                         break;
3643                 case MIMIC_VAMPIRE:
3644                         p_ptr->resist_dark = TRUE;
3645                         p_ptr->hold_life = TRUE;
3646                         p_ptr->resist_neth = TRUE;
3647                         p_ptr->resist_cold = TRUE;
3648                         p_ptr->resist_pois = TRUE;
3649                         p_ptr->see_inv = TRUE;
3650                         new_speed += 3;
3651                         p_ptr->to_a += 10;
3652                         p_ptr->dis_to_a += 10;
3653                         if (p_ptr->pclass != CLASS_NINJA) p_ptr->lite = TRUE;
3654                         break;
3655                 }
3656         }
3657         else
3658         {
3659                 switch (p_ptr->prace)
3660                 {
3661                 case RACE_ELF:
3662                         p_ptr->resist_lite = TRUE;
3663                         break;
3664                 case RACE_HOBBIT:
3665                         p_ptr->hold_life = TRUE;
3666                         break;
3667                 case RACE_GNOME:
3668                         p_ptr->free_act = TRUE;
3669                         break;
3670                 case RACE_DWARF:
3671                         p_ptr->resist_blind = TRUE;
3672                         break;
3673                 case RACE_HALF_ORC:
3674                         p_ptr->resist_dark = TRUE;
3675                         break;
3676                 case RACE_HALF_TROLL:
3677                         p_ptr->sustain_str = TRUE;
3678
3679                         if (p_ptr->lev > 14)
3680                         {
3681                                 /* High level trolls heal fast... */
3682                                 p_ptr->regenerate = TRUE;
3683
3684                                 if (p_ptr->pclass == CLASS_WARRIOR || p_ptr->pclass == CLASS_BERSERKER)
3685                                 {
3686                                         p_ptr->slow_digest = TRUE;
3687                                         /* Let's not make Regeneration
3688                                          * a disadvantage for the poor warriors who can
3689                                          * never learn a spell that satisfies hunger (actually
3690                                          * neither can rogues, but half-trolls are not
3691                                          * supposed to play rogues) */
3692                                 }
3693                         }
3694                         break;
3695                 case RACE_AMBERITE:
3696                         p_ptr->sustain_con = TRUE;
3697                         p_ptr->regenerate = TRUE;  /* Amberites heal fast... */
3698                         break;
3699                 case RACE_HIGH_ELF:
3700                         p_ptr->resist_lite = TRUE;
3701                         p_ptr->see_inv = TRUE;
3702                         break;
3703                 case RACE_BARBARIAN:
3704                         p_ptr->resist_fear = TRUE;
3705                         break;
3706                 case RACE_HALF_OGRE:
3707                         p_ptr->resist_dark = TRUE;
3708                         p_ptr->sustain_str = TRUE;
3709                         break;
3710                 case RACE_HALF_GIANT:
3711                         p_ptr->sustain_str = TRUE;
3712                         p_ptr->resist_shard = TRUE;
3713                         break;
3714                 case RACE_HALF_TITAN:
3715                         p_ptr->resist_chaos = TRUE;
3716                         break;
3717                 case RACE_CYCLOPS:
3718                         p_ptr->resist_sound = TRUE;
3719                         break;
3720                 case RACE_YEEK:
3721                         p_ptr->resist_acid = TRUE;
3722                         if (p_ptr->lev > 19) p_ptr->immune_acid = TRUE;
3723                         break;
3724                 case RACE_KLACKON:
3725                         p_ptr->resist_conf = TRUE;
3726                         p_ptr->resist_acid = TRUE;
3727
3728                         /* Klackons become faster */
3729                         new_speed += (p_ptr->lev) / 10;
3730                         break;
3731                 case RACE_KOBOLD:
3732                         p_ptr->resist_pois = TRUE;
3733                         break;
3734                 case RACE_NIBELUNG:
3735                         p_ptr->resist_disen = TRUE;
3736                         p_ptr->resist_dark = TRUE;
3737                         break;
3738                 case RACE_DARK_ELF:
3739                         p_ptr->resist_dark = TRUE;
3740                         if (p_ptr->lev > 19) p_ptr->see_inv = TRUE;
3741                         break;
3742                 case RACE_DRACONIAN:
3743                         p_ptr->levitation = TRUE;
3744                         if (p_ptr->lev >  4) p_ptr->resist_fire = TRUE;
3745                         if (p_ptr->lev >  9) p_ptr->resist_cold = TRUE;
3746                         if (p_ptr->lev > 14) p_ptr->resist_acid = TRUE;
3747                         if (p_ptr->lev > 19) p_ptr->resist_elec = TRUE;
3748                         if (p_ptr->lev > 34) p_ptr->resist_pois = TRUE;
3749                         break;
3750                 case RACE_MIND_FLAYER:
3751                         p_ptr->sustain_int = TRUE;
3752                         p_ptr->sustain_wis = TRUE;
3753                         if (p_ptr->lev > 14) p_ptr->see_inv = TRUE;
3754                         if (p_ptr->lev > 29) p_ptr->telepathy = TRUE;
3755                         break;
3756                 case RACE_IMP:
3757                         p_ptr->resist_fire = TRUE;
3758                         if (p_ptr->lev > 9) p_ptr->see_inv = TRUE;
3759                         break;
3760                 case RACE_GOLEM:
3761                         p_ptr->slow_digest = TRUE;
3762                         p_ptr->free_act = TRUE;
3763                         p_ptr->see_inv = TRUE;
3764                         p_ptr->resist_pois = TRUE;
3765                         if (p_ptr->lev > 34) p_ptr->hold_life = TRUE;
3766                         break;
3767                 case RACE_SKELETON:
3768                         p_ptr->resist_shard = TRUE;
3769                         p_ptr->hold_life = TRUE;
3770                         p_ptr->see_inv = TRUE;
3771                         p_ptr->resist_pois = TRUE;
3772                         if (p_ptr->lev > 9) p_ptr->resist_cold = TRUE;
3773                         break;
3774                 case RACE_ZOMBIE:
3775                         p_ptr->resist_neth = TRUE;
3776                         p_ptr->hold_life = TRUE;
3777                         p_ptr->see_inv = TRUE;
3778                         p_ptr->resist_pois = TRUE;
3779                         p_ptr->slow_digest = TRUE;
3780                         if (p_ptr->lev > 4) p_ptr->resist_cold = TRUE;
3781                         break;
3782                 case RACE_VAMPIRE:
3783                         p_ptr->resist_dark = TRUE;
3784                         p_ptr->hold_life = TRUE;
3785                         p_ptr->resist_neth = TRUE;
3786                         p_ptr->resist_cold = TRUE;
3787                         p_ptr->resist_pois = TRUE;
3788                         if (p_ptr->pclass != CLASS_NINJA) p_ptr->lite = TRUE;
3789                         break;
3790                 case RACE_SPECTRE:
3791                         p_ptr->levitation = TRUE;
3792                         p_ptr->free_act = TRUE;
3793                         p_ptr->resist_neth = TRUE;
3794                         p_ptr->hold_life = TRUE;
3795                         p_ptr->see_inv = TRUE;
3796                         p_ptr->resist_pois = TRUE;
3797                         p_ptr->slow_digest = TRUE;
3798                         p_ptr->resist_cold = TRUE;
3799                         p_ptr->pass_wall = TRUE;
3800                         if (p_ptr->lev > 34) p_ptr->telepathy = TRUE;
3801                         break;
3802                 case RACE_SPRITE:
3803                         p_ptr->levitation = TRUE;
3804                         p_ptr->resist_lite = TRUE;
3805
3806                         /* Sprites become faster */
3807                         new_speed += (p_ptr->lev) / 10;
3808                         break;
3809                 case RACE_BEASTMAN:
3810                         p_ptr->resist_conf  = TRUE;
3811                         p_ptr->resist_sound = TRUE;
3812                         break;
3813                 case RACE_ENT:
3814                         /* Ents dig like maniacs, but only with their hands. */
3815                         if (!inventory[INVEN_RARM].k_idx) 
3816                                 p_ptr->skill_dig += p_ptr->lev * 10;
3817                         /* Ents get tougher and stronger as they age, but lose dexterity. */
3818                         if (p_ptr->lev > 25) p_ptr->stat_add[A_STR]++;
3819                         if (p_ptr->lev > 40) p_ptr->stat_add[A_STR]++;
3820                         if (p_ptr->lev > 45) p_ptr->stat_add[A_STR]++;
3821
3822                         if (p_ptr->lev > 25) p_ptr->stat_add[A_DEX]--;
3823                         if (p_ptr->lev > 40) p_ptr->stat_add[A_DEX]--;
3824                         if (p_ptr->lev > 45) p_ptr->stat_add[A_DEX]--;
3825
3826                         if (p_ptr->lev > 25) p_ptr->stat_add[A_CON]++;
3827                         if (p_ptr->lev > 40) p_ptr->stat_add[A_CON]++;
3828                         if (p_ptr->lev > 45) p_ptr->stat_add[A_CON]++;
3829                         break;
3830                 case RACE_ANGEL:
3831                         p_ptr->levitation = TRUE;
3832                         p_ptr->see_inv = TRUE;
3833                         p_ptr->align += 200;
3834                         break;
3835                 case RACE_DEMON:
3836                         p_ptr->resist_fire  = TRUE;
3837                         p_ptr->resist_neth  = TRUE;
3838                         p_ptr->hold_life = TRUE;
3839                         if (p_ptr->lev > 9) p_ptr->see_inv = TRUE;
3840                         if (p_ptr->lev > 44)
3841                         {
3842                                 p_ptr->oppose_fire = 1;
3843                                 p_ptr->redraw |= PR_STATUS;
3844                         }
3845                         p_ptr->align -= 200;
3846                         break;
3847                 case RACE_DUNADAN:
3848                         p_ptr->sustain_con = TRUE;
3849                         break;
3850                 case RACE_S_FAIRY:
3851                         p_ptr->levitation = TRUE;
3852                         break;
3853                 case RACE_KUTAR:
3854                         p_ptr->resist_conf = TRUE;
3855                         break;
3856                 case RACE_ANDROID:
3857                         p_ptr->slow_digest = TRUE;
3858                         p_ptr->free_act = TRUE;
3859                         p_ptr->resist_pois = TRUE;
3860                         p_ptr->hold_life = TRUE;
3861                         break;
3862                 default:
3863                         /* Do nothing */
3864                         ;
3865                 }
3866         }
3867
3868         if (p_ptr->ult_res || (p_ptr->special_defense & KATA_MUSOU))
3869         {
3870                 p_ptr->see_inv = TRUE;
3871                 p_ptr->free_act = TRUE;
3872                 p_ptr->slow_digest = TRUE;
3873                 p_ptr->regenerate = TRUE;
3874                 p_ptr->levitation = TRUE;
3875                 p_ptr->hold_life = TRUE;
3876                 p_ptr->telepathy = TRUE;
3877                 p_ptr->lite = TRUE;
3878                 p_ptr->sustain_str = TRUE;
3879                 p_ptr->sustain_int = TRUE;
3880                 p_ptr->sustain_wis = TRUE;
3881                 p_ptr->sustain_con = TRUE;
3882                 p_ptr->sustain_dex = TRUE;
3883                 p_ptr->sustain_chr = TRUE;
3884                 p_ptr->resist_acid = TRUE;
3885                 p_ptr->resist_elec = TRUE;
3886                 p_ptr->resist_fire = TRUE;
3887                 p_ptr->resist_cold = TRUE;
3888                 p_ptr->resist_pois = TRUE;
3889                 p_ptr->resist_conf = TRUE;
3890                 p_ptr->resist_sound = TRUE;
3891                 p_ptr->resist_lite = TRUE;
3892                 p_ptr->resist_dark = TRUE;
3893                 p_ptr->resist_chaos = TRUE;
3894                 p_ptr->resist_disen = TRUE;
3895                 p_ptr->resist_shard = TRUE;
3896                 p_ptr->resist_nexus = TRUE;
3897                 p_ptr->resist_blind = TRUE;
3898                 p_ptr->resist_neth = TRUE;
3899                 p_ptr->resist_fear = TRUE;
3900                 p_ptr->reflect = TRUE;
3901                 p_ptr->sh_fire = TRUE;
3902                 p_ptr->sh_elec = TRUE;
3903                 p_ptr->sh_cold = TRUE;
3904                 p_ptr->to_a += 100;
3905                 p_ptr->dis_to_a += 100;
3906         }
3907         /* Temporary shield */
3908         else if (p_ptr->tsubureru || p_ptr->shield || p_ptr->magicdef)
3909         {
3910                 p_ptr->to_a += 50;
3911                 p_ptr->dis_to_a += 50;
3912         }
3913
3914         if (p_ptr->tim_res_nether)
3915         {
3916                 p_ptr->resist_neth = TRUE;
3917         }
3918         if (p_ptr->tim_sh_fire)
3919         {
3920                 p_ptr->sh_fire = TRUE;
3921         }
3922         if (p_ptr->tim_res_time)
3923         {
3924                 p_ptr->resist_time = TRUE;
3925         }
3926
3927         /* Sexy Gal */
3928         if (p_ptr->pseikaku == SEIKAKU_SEXY) p_ptr->cursed |= (TRC_AGGRAVATE);
3929         if (p_ptr->pseikaku == SEIKAKU_NAMAKE) p_ptr->to_m_chance += 10;
3930         if (p_ptr->pseikaku == SEIKAKU_KIREMONO) p_ptr->to_m_chance -= 3;
3931         if ((p_ptr->pseikaku == SEIKAKU_GAMAN) || (p_ptr->pseikaku == SEIKAKU_CHIKARA)) p_ptr->to_m_chance++;
3932
3933         /* Lucky man */
3934         if (p_ptr->pseikaku == SEIKAKU_LUCKY) p_ptr->muta3 |= MUT3_GOOD_LUCK;
3935
3936         if (p_ptr->pseikaku == SEIKAKU_MUNCHKIN)
3937         {
3938                 p_ptr->resist_blind = TRUE;
3939                 p_ptr->resist_conf  = TRUE;
3940                 p_ptr->hold_life = TRUE;
3941                 if (p_ptr->pclass != CLASS_NINJA) p_ptr->lite = TRUE;
3942
3943                 if ((p_ptr->prace != RACE_KLACKON) && (p_ptr->prace != RACE_SPRITE))
3944                         /* Munchkin become faster */
3945                         new_speed += (p_ptr->lev) / 10 + 5;
3946         }
3947
3948         if (music_singing(MUSIC_WALL))
3949         {
3950                 p_ptr->kill_wall = TRUE;
3951         }
3952
3953         /* Hack -- apply racial/class stat maxes */
3954         /* Apply the racial modifiers */
3955         for (i = 0; i < 6; i++)
3956         {
3957                 /* Modify the stats for "race" */
3958                 p_ptr->stat_add[i] += (tmp_rp_ptr->r_adj[i] + cp_ptr->c_adj[i] + ap_ptr->a_adj[i]);
3959         }
3960
3961
3962         /* I'm adding the mutations here for the lack of a better place... */
3963         if (p_ptr->muta3)
3964         {
3965                 /* Hyper Strength */
3966                 if (p_ptr->muta3 & MUT3_HYPER_STR)
3967                 {
3968                         p_ptr->stat_add[A_STR] += 4;
3969                 }
3970
3971                 /* Puny */
3972                 if (p_ptr->muta3 & MUT3_PUNY)
3973                 {
3974                         p_ptr->stat_add[A_STR] -= 4;
3975                 }
3976
3977                 /* Living computer */
3978                 if (p_ptr->muta3 & MUT3_HYPER_INT)
3979                 {
3980                         p_ptr->stat_add[A_INT] += 4;
3981                         p_ptr->stat_add[A_WIS] += 4;
3982                 }
3983
3984                 /* Moronic */
3985                 if (p_ptr->muta3 & MUT3_MORONIC)
3986                 {
3987                         p_ptr->stat_add[A_INT] -= 4;
3988                         p_ptr->stat_add[A_WIS] -= 4;
3989                 }
3990
3991                 if (p_ptr->muta3 & MUT3_RESILIENT)
3992                 {
3993                         p_ptr->stat_add[A_CON] += 4;
3994                 }
3995
3996                 if (p_ptr->muta3 & MUT3_XTRA_FAT)
3997                 {
3998                         p_ptr->stat_add[A_CON] += 2;
3999                         new_speed -= 2;
4000                 }
4001
4002                 if (p_ptr->muta3 & MUT3_ALBINO)
4003                 {
4004                         p_ptr->stat_add[A_CON] -= 4;
4005                 }
4006
4007                 if (p_ptr->muta3 & MUT3_FLESH_ROT)
4008                 {
4009                         p_ptr->stat_add[A_CON] -= 2;
4010                         p_ptr->stat_add[A_CHR] -= 1;
4011                         p_ptr->regenerate = FALSE;
4012                         /* Cancel innate regeneration */
4013                 }
4014
4015                 if (p_ptr->muta3 & MUT3_SILLY_VOI)
4016                 {
4017                         p_ptr->stat_add[A_CHR] -= 4;
4018                 }
4019
4020                 if (p_ptr->muta3 & MUT3_BLANK_FAC)
4021                 {
4022                         p_ptr->stat_add[A_CHR] -= 1;
4023                 }
4024
4025                 if (p_ptr->muta3 & MUT3_XTRA_EYES)
4026                 {
4027                         p_ptr->skill_fos += 15;
4028                         p_ptr->skill_srh += 15;
4029                 }
4030
4031                 if (p_ptr->muta3 & MUT3_MAGIC_RES)
4032                 {
4033                         p_ptr->skill_sav += (15 + (p_ptr->lev / 5));
4034                 }
4035
4036                 if (p_ptr->muta3 & MUT3_XTRA_NOIS)
4037                 {
4038                         p_ptr->skill_stl -= 3;
4039                 }
4040
4041                 if (p_ptr->muta3 & MUT3_INFRAVIS)
4042                 {
4043                         p_ptr->see_infra += 3;
4044                 }
4045
4046                 if (p_ptr->muta3 & MUT3_XTRA_LEGS)
4047                 {
4048                         new_speed += 3;
4049                 }
4050
4051                 if (p_ptr->muta3 & MUT3_SHORT_LEG)
4052                 {
4053                         new_speed -= 3;
4054                 }
4055
4056                 if (p_ptr->muta3 & MUT3_ELEC_TOUC)
4057                 {
4058                         p_ptr->sh_elec = TRUE;
4059                 }
4060
4061                 if (p_ptr->muta3 & MUT3_FIRE_BODY)
4062                 {
4063                         p_ptr->sh_fire = TRUE;
4064                         p_ptr->lite = TRUE;
4065                 }
4066
4067                 if (p_ptr->muta3 & MUT3_WART_SKIN)
4068                 {
4069                         p_ptr->stat_add[A_CHR] -= 2;
4070                         p_ptr->to_a += 5;
4071                         p_ptr->dis_to_a += 5;
4072                 }
4073
4074                 if (p_ptr->muta3 & MUT3_SCALES)
4075                 {
4076                         p_ptr->stat_add[A_CHR] -= 1;
4077                         p_ptr->to_a += 10;
4078                         p_ptr->dis_to_a += 10;
4079                 }
4080
4081                 if (p_ptr->muta3 & MUT3_IRON_SKIN)
4082                 {
4083                         p_ptr->stat_add[A_DEX] -= 1;
4084                         p_ptr->to_a += 25;
4085                         p_ptr->dis_to_a += 25;
4086                 }
4087
4088                 if (p_ptr->muta3 & MUT3_WINGS)
4089                 {
4090                         p_ptr->levitation = TRUE;
4091                 }
4092
4093                 if (p_ptr->muta3 & MUT3_FEARLESS)
4094                 {
4095                         p_ptr->resist_fear = TRUE;
4096                 }
4097
4098                 if (p_ptr->muta3 & MUT3_REGEN)
4099                 {
4100                         p_ptr->regenerate = TRUE;
4101                 }
4102
4103                 if (p_ptr->muta3 & MUT3_ESP)
4104                 {
4105                         p_ptr->telepathy = TRUE;
4106                 }
4107
4108                 if (p_ptr->muta3 & MUT3_LIMBER)
4109                 {
4110                         p_ptr->stat_add[A_DEX] += 3;
4111                 }
4112
4113                 if (p_ptr->muta3 & MUT3_ARTHRITIS)
4114                 {
4115                         p_ptr->stat_add[A_DEX] -= 3;
4116                 }
4117
4118                 if (p_ptr->muta3 & MUT3_MOTION)
4119                 {
4120                         p_ptr->free_act = TRUE;
4121                         p_ptr->skill_stl += 1;
4122                 }
4123
4124                 if (p_ptr->muta3 & MUT3_ILL_NORM)
4125                 {
4126                         p_ptr->stat_add[A_CHR] = 0;
4127                 }
4128         }
4129
4130         if (p_ptr->tsuyoshi)
4131         {
4132                 p_ptr->stat_add[A_STR] += 4;
4133                 p_ptr->stat_add[A_CON] += 4;
4134         }
4135
4136         /* Scan the usable inventory */
4137         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
4138         {
4139                 int bonus_to_h, bonus_to_d;
4140                 o_ptr = &inventory[i];
4141
4142                 /* Skip non-objects */
4143                 if (!o_ptr->k_idx) continue;
4144
4145                 /* Extract the item flags */
4146                 object_flags(o_ptr, flgs);
4147
4148                 p_ptr->cursed |= (o_ptr->curse_flags & (0xFFFFFFF0L));
4149                 if (o_ptr->name1 == ART_CHAINSWORD) p_ptr->cursed |= TRC_CHAINSWORD;
4150
4151                 /* Affect stats */
4152                 if (have_flag(flgs, TR_STR)) p_ptr->stat_add[A_STR] += o_ptr->pval;
4153                 if (have_flag(flgs, TR_INT)) p_ptr->stat_add[A_INT] += o_ptr->pval;
4154                 if (have_flag(flgs, TR_WIS)) p_ptr->stat_add[A_WIS] += o_ptr->pval;
4155                 if (have_flag(flgs, TR_DEX)) p_ptr->stat_add[A_DEX] += o_ptr->pval;
4156                 if (have_flag(flgs, TR_CON)) p_ptr->stat_add[A_CON] += o_ptr->pval;
4157                 if (have_flag(flgs, TR_CHR)) p_ptr->stat_add[A_CHR] += o_ptr->pval;
4158
4159                 if (have_flag(flgs, TR_MAGIC_MASTERY))    p_ptr->skill_dev += 8*o_ptr->pval;
4160
4161                 /* Affect stealth */
4162                 if (have_flag(flgs, TR_STEALTH)) p_ptr->skill_stl += o_ptr->pval;
4163
4164                 /* Affect searching ability (factor of five) */
4165                 if (have_flag(flgs, TR_SEARCH)) p_ptr->skill_srh += (o_ptr->pval * 5);
4166
4167                 /* Affect searching frequency (factor of five) */
4168                 if (have_flag(flgs, TR_SEARCH)) p_ptr->skill_fos += (o_ptr->pval * 5);
4169
4170                 /* Affect infravision */
4171                 if (have_flag(flgs, TR_INFRA)) p_ptr->see_infra += o_ptr->pval;
4172
4173                 /* Affect digging (factor of 20) */
4174                 if (have_flag(flgs, TR_TUNNEL)) p_ptr->skill_dig += (o_ptr->pval * 20);
4175
4176                 /* Affect speed */
4177                 if (have_flag(flgs, TR_SPEED)) new_speed += o_ptr->pval;
4178
4179                 /* Affect blows */
4180                 if (have_flag(flgs, TR_BLOWS))
4181                 {
4182                         if((i == INVEN_RARM || i == INVEN_RIGHT) && !p_ptr->ryoute) extra_blows[0] += o_ptr->pval;
4183                         else if((i == INVEN_LARM || i == INVEN_LEFT) && !p_ptr->ryoute) extra_blows[1] += o_ptr->pval;
4184                         else {extra_blows[0] += o_ptr->pval; extra_blows[1] += o_ptr->pval;}
4185                 }
4186
4187                 /* Hack -- cause earthquakes */
4188                 if (have_flag(flgs, TR_IMPACT)) p_ptr->impact[(i == INVEN_RARM) ? 0 : 1] = TRUE;
4189
4190                 /* Various flags */
4191                 if (have_flag(flgs, TR_AGGRAVATE))   p_ptr->cursed |= TRC_AGGRAVATE;
4192                 if (have_flag(flgs, TR_DRAIN_EXP))   p_ptr->cursed |= TRC_DRAIN_EXP;
4193                 if (have_flag(flgs, TR_TY_CURSE))    p_ptr->cursed |= TRC_TY_CURSE;
4194                 if (have_flag(flgs, TR_ADD_L_CURSE)) p_ptr->cursed |= TRC_ADD_L_CURSE;
4195                 if (have_flag(flgs, TR_ADD_H_CURSE)) p_ptr->cursed |= TRC_ADD_H_CURSE;
4196                 if (have_flag(flgs, TR_DRAIN_HP))    p_ptr->cursed |= TRC_DRAIN_HP;
4197                 if (have_flag(flgs, TR_DRAIN_MANA))  p_ptr->cursed |= TRC_DRAIN_MANA;
4198                 if (have_flag(flgs, TR_CALL_ANIMAL)) p_ptr->cursed |= TRC_CALL_ANIMAL;
4199                 if (have_flag(flgs, TR_CALL_DEMON))  p_ptr->cursed |= TRC_CALL_DEMON;
4200                 if (have_flag(flgs, TR_CALL_DRAGON)) p_ptr->cursed |= TRC_CALL_DRAGON;
4201                 if (have_flag(flgs, TR_CALL_UNDEAD)) p_ptr->cursed |= TRC_CALL_UNDEAD;
4202                 if (have_flag(flgs, TR_COWARDICE))   p_ptr->cursed |= TRC_COWARDICE;
4203                 if (have_flag(flgs, TR_LOW_MELEE))   p_ptr->cursed |= TRC_LOW_MELEE;
4204                 if (have_flag(flgs, TR_LOW_AC))      p_ptr->cursed |= TRC_LOW_AC;
4205                 if (have_flag(flgs, TR_LOW_MAGIC))   p_ptr->cursed |= TRC_LOW_MAGIC;
4206                 if (have_flag(flgs, TR_FAST_DIGEST)) p_ptr->cursed |= TRC_FAST_DIGEST;
4207                 if (have_flag(flgs, TR_SLOW_REGEN))  p_ptr->cursed |= TRC_SLOW_REGEN;
4208                 if (have_flag(flgs, TR_DEC_MANA))    p_ptr->dec_mana = TRUE;
4209                 if (have_flag(flgs, TR_BLESSED))     p_ptr->bless_blade = TRUE;
4210                 if (have_flag(flgs, TR_XTRA_MIGHT))  p_ptr->xtra_might = TRUE;
4211                 if (have_flag(flgs, TR_SLOW_DIGEST)) p_ptr->slow_digest = TRUE;
4212                 if (have_flag(flgs, TR_REGEN))       p_ptr->regenerate = TRUE;
4213                 if (have_flag(flgs, TR_TELEPATHY))   p_ptr->telepathy = TRUE;
4214                 if (have_flag(flgs, TR_ESP_ANIMAL))  p_ptr->esp_animal = TRUE;
4215                 if (have_flag(flgs, TR_ESP_UNDEAD))  p_ptr->esp_undead = TRUE;
4216                 if (have_flag(flgs, TR_ESP_DEMON))   p_ptr->esp_demon = TRUE;
4217                 if (have_flag(flgs, TR_ESP_ORC))     p_ptr->esp_orc = TRUE;
4218                 if (have_flag(flgs, TR_ESP_TROLL))   p_ptr->esp_troll = TRUE;
4219                 if (have_flag(flgs, TR_ESP_GIANT))   p_ptr->esp_giant = TRUE;
4220                 if (have_flag(flgs, TR_ESP_DRAGON))  p_ptr->esp_dragon = TRUE;
4221                 if (have_flag(flgs, TR_ESP_HUMAN))   p_ptr->esp_human = TRUE;
4222                 if (have_flag(flgs, TR_ESP_EVIL))    p_ptr->esp_evil = TRUE;
4223                 if (have_flag(flgs, TR_ESP_GOOD))    p_ptr->esp_good = TRUE;
4224                 if (have_flag(flgs, TR_ESP_NONLIVING)) p_ptr->esp_nonliving = TRUE;
4225                 if (have_flag(flgs, TR_ESP_UNIQUE))  p_ptr->esp_unique = TRUE;
4226
4227                 if (have_flag(flgs, TR_SEE_INVIS))   p_ptr->see_inv = TRUE;
4228                 if (have_flag(flgs, TR_LEVITATION))     p_ptr->levitation = TRUE;
4229                 if (have_flag(flgs, TR_FREE_ACT))    p_ptr->free_act = TRUE;
4230                 if (have_flag(flgs, TR_HOLD_LIFE))   p_ptr->hold_life = TRUE;
4231                 if (have_flag(flgs, TR_WARNING)){
4232                         if (!o_ptr->inscription || !(my_strchr(quark_str(o_ptr->inscription),'$')))
4233                           p_ptr->warning = TRUE;
4234                 }
4235
4236                 if (have_flag(flgs, TR_TELEPORT))
4237                 {
4238                         if (object_is_cursed(o_ptr)) p_ptr->cursed |= TRC_TELEPORT;
4239                         else
4240                         {
4241                                 cptr insc = quark_str(o_ptr->inscription);
4242
4243                                 if (o_ptr->inscription && my_strchr(insc, '.'))
4244                                 {
4245                                         /*
4246                                          * {.} will stop random teleportation.
4247                                          */
4248                                 }
4249                                 else
4250                                 {
4251                                         /* Controlled random teleportation */
4252                                         p_ptr->cursed |= TRC_TELEPORT_SELF;
4253                                 }
4254                         }
4255                 }
4256
4257                 /* Immunity flags */
4258                 if (have_flag(flgs, TR_IM_FIRE)) p_ptr->immune_fire = TRUE;
4259                 if (have_flag(flgs, TR_IM_ACID)) p_ptr->immune_acid = TRUE;
4260                 if (have_flag(flgs, TR_IM_COLD)) p_ptr->immune_cold = TRUE;
4261                 if (have_flag(flgs, TR_IM_ELEC)) p_ptr->immune_elec = TRUE;
4262
4263                 /* Resistance flags */
4264                 if (have_flag(flgs, TR_RES_ACID))   p_ptr->resist_acid = TRUE;
4265                 if (have_flag(flgs, TR_RES_ELEC))   p_ptr->resist_elec = TRUE;
4266                 if (have_flag(flgs, TR_RES_FIRE))   p_ptr->resist_fire = TRUE;
4267                 if (have_flag(flgs, TR_RES_COLD))   p_ptr->resist_cold = TRUE;
4268                 if (have_flag(flgs, TR_RES_POIS))   p_ptr->resist_pois = TRUE;
4269                 if (have_flag(flgs, TR_RES_FEAR))   p_ptr->resist_fear = TRUE;
4270                 if (have_flag(flgs, TR_RES_CONF))   p_ptr->resist_conf = TRUE;
4271                 if (have_flag(flgs, TR_RES_SOUND))  p_ptr->resist_sound = TRUE;
4272                 if (have_flag(flgs, TR_RES_LITE))   p_ptr->resist_lite = TRUE;
4273                 if (have_flag(flgs, TR_RES_DARK))   p_ptr->resist_dark = TRUE;
4274                 if (have_flag(flgs, TR_RES_CHAOS))  p_ptr->resist_chaos = TRUE;
4275                 if (have_flag(flgs, TR_RES_DISEN))  p_ptr->resist_disen = TRUE;
4276                 if (have_flag(flgs, TR_RES_SHARDS)) p_ptr->resist_shard = TRUE;
4277                 if (have_flag(flgs, TR_RES_NEXUS))  p_ptr->resist_nexus = TRUE;
4278                 if (have_flag(flgs, TR_RES_BLIND))  p_ptr->resist_blind = TRUE;
4279                 if (have_flag(flgs, TR_RES_NETHER)) p_ptr->resist_neth = TRUE;
4280
4281                 if (have_flag(flgs, TR_REFLECT))  p_ptr->reflect = TRUE;
4282                 if (have_flag(flgs, TR_SH_FIRE))  p_ptr->sh_fire = TRUE;
4283                 if (have_flag(flgs, TR_SH_ELEC))  p_ptr->sh_elec = TRUE;
4284                 if (have_flag(flgs, TR_SH_COLD))  p_ptr->sh_cold = TRUE;
4285                 if (have_flag(flgs, TR_NO_MAGIC)) p_ptr->anti_magic = TRUE;
4286                 if (have_flag(flgs, TR_NO_TELE))  p_ptr->anti_tele = TRUE;
4287
4288                 /* Sustain flags */
4289                 if (have_flag(flgs, TR_SUST_STR)) p_ptr->sustain_str = TRUE;
4290                 if (have_flag(flgs, TR_SUST_INT)) p_ptr->sustain_int = TRUE;
4291                 if (have_flag(flgs, TR_SUST_WIS)) p_ptr->sustain_wis = TRUE;
4292                 if (have_flag(flgs, TR_SUST_DEX)) p_ptr->sustain_dex = TRUE;
4293                 if (have_flag(flgs, TR_SUST_CON)) p_ptr->sustain_con = TRUE;
4294                 if (have_flag(flgs, TR_SUST_CHR)) p_ptr->sustain_chr = TRUE;
4295
4296                 if (o_ptr->name2 == EGO_YOIYAMI) yoiyami = TRUE;
4297                 if (o_ptr->name2 == EGO_2WEAPON) easy_2weapon = TRUE;
4298                 if (o_ptr->name2 == EGO_RING_RES_TIME) p_ptr->resist_time = TRUE;
4299                 if (o_ptr->name2 == EGO_RING_THROW) p_ptr->mighty_throw = TRUE;
4300                 if (have_flag(flgs, TR_EASY_SPELL)) p_ptr->easy_spell = TRUE;
4301                 if (o_ptr->name2 == EGO_AMU_FOOL) p_ptr->heavy_spell = TRUE;
4302                 if (o_ptr->name2 == EGO_AMU_NAIVETY) down_saving = TRUE;
4303
4304                 if (o_ptr->curse_flags & TRC_LOW_MAGIC)
4305                 {
4306                         if (o_ptr->curse_flags & TRC_HEAVY_CURSE)
4307                         {
4308                                 p_ptr->to_m_chance += 10;
4309                         }
4310                         else
4311                         {
4312                                 p_ptr->to_m_chance += 3;
4313                         }
4314                 }
4315
4316                 if (o_ptr->tval == TV_CAPTURE) continue;
4317
4318                 /* Modify the base armor class */
4319                 p_ptr->ac += o_ptr->ac;
4320
4321                 /* The base armor class is always known */
4322                 p_ptr->dis_ac += o_ptr->ac;
4323
4324                 /* Apply the bonuses to armor class */
4325                 p_ptr->to_a += o_ptr->to_a;
4326
4327                 /* Apply the mental bonuses to armor class, if known */
4328                 if (object_is_known(o_ptr)) p_ptr->dis_to_a += o_ptr->to_a;
4329
4330                 if (o_ptr->curse_flags & TRC_LOW_MELEE)
4331                 {
4332                         int slot = i - INVEN_RARM;
4333                         if (slot < 2)
4334                         {
4335                                 if (o_ptr->curse_flags & TRC_HEAVY_CURSE)
4336                                 {
4337                                         p_ptr->to_h[slot] -= 15;
4338                                         if (o_ptr->ident & IDENT_MENTAL) p_ptr->dis_to_h[slot] -= 15;
4339                                 }
4340                                 else
4341                                 {
4342                                         p_ptr->to_h[slot] -= 5;
4343                                         if (o_ptr->ident & IDENT_MENTAL) p_ptr->dis_to_h[slot] -= 5;
4344                                 }
4345                         }
4346                         else
4347                         {
4348                                 if (o_ptr->curse_flags & TRC_HEAVY_CURSE)
4349                                 {
4350                                         p_ptr->to_h_b -= 15;
4351                                         if (o_ptr->ident & IDENT_MENTAL) p_ptr->dis_to_h_b -= 15;
4352                                 }
4353                                 else
4354                                 {
4355                                         p_ptr->to_h_b -= 5;
4356                                         if (o_ptr->ident & IDENT_MENTAL) p_ptr->dis_to_h_b -= 5;
4357                                 }
4358                         }
4359                 }
4360
4361                 if (o_ptr->curse_flags & TRC_LOW_AC)
4362                 {
4363                         if (o_ptr->curse_flags & TRC_HEAVY_CURSE)
4364                         {
4365                                 p_ptr->to_a -= 30;
4366                                 if (o_ptr->ident & IDENT_MENTAL) p_ptr->dis_to_a -= 30;
4367                         }
4368                         else
4369                         {
4370                                 p_ptr->to_a -= 10;
4371                                 if (o_ptr->ident & IDENT_MENTAL) p_ptr->dis_to_a -= 10;
4372                         }
4373                 }
4374
4375                 /* Hack -- do not apply "weapon" bonuses */
4376                 if (i == INVEN_RARM && buki_motteruka(i)) continue;
4377                 if (i == INVEN_LARM && buki_motteruka(i)) continue;
4378
4379                 /* Hack -- do not apply "bow" bonuses */
4380                 if (i == INVEN_BOW) continue;
4381
4382                 bonus_to_h = o_ptr->to_h;
4383                 bonus_to_d = o_ptr->to_d;
4384
4385                 if (p_ptr->pclass == CLASS_NINJA)
4386                 {
4387                         if (o_ptr->to_h > 0) bonus_to_h = (o_ptr->to_h+1)/2;
4388                         if (o_ptr->to_d > 0) bonus_to_d = (o_ptr->to_d+1)/2;
4389                 }
4390
4391                 /* To Bow and Natural attack */
4392
4393                 /* Apply the bonuses to hit/damage */
4394                 p_ptr->to_h_b += bonus_to_h;
4395                 p_ptr->to_h_m += bonus_to_h;
4396                 p_ptr->to_d_m += bonus_to_d;
4397
4398                 /* Apply the mental bonuses tp hit/damage, if known */
4399                 if (object_is_known(o_ptr)) p_ptr->dis_to_h_b += bonus_to_h;
4400
4401                 /* To Melee */
4402                 if ((i == INVEN_LEFT || i == INVEN_RIGHT) && !p_ptr->ryoute)
4403                 {
4404                         /* Apply the bonuses to hit/damage */
4405                         p_ptr->to_h[i-INVEN_RIGHT] += bonus_to_h;
4406                         p_ptr->to_d[i-INVEN_RIGHT] += bonus_to_d;
4407
4408                         /* Apply the mental bonuses tp hit/damage, if known */
4409                         if (object_is_known(o_ptr))
4410                         {
4411                                 p_ptr->dis_to_h[i-INVEN_RIGHT] += bonus_to_h;
4412                                 p_ptr->dis_to_d[i-INVEN_RIGHT] += bonus_to_d;
4413                         }
4414                 }
4415                 else if (p_ptr->migite && p_ptr->hidarite)
4416                 {
4417                         /* Apply the bonuses to hit/damage */
4418                         p_ptr->to_h[0] += (bonus_to_h > 0) ? (bonus_to_h+1)/2 : bonus_to_h;
4419                         p_ptr->to_h[1] += (bonus_to_h > 0) ? bonus_to_h/2 : bonus_to_h;
4420                         p_ptr->to_d[0] += (bonus_to_d > 0) ? (bonus_to_d+1)/2 : bonus_to_d;
4421                         p_ptr->to_d[1] += (bonus_to_d > 0) ? bonus_to_d/2 : bonus_to_d;
4422
4423                         /* Apply the mental bonuses tp hit/damage, if known */
4424                         if (object_is_known(o_ptr))
4425                         {
4426                                 p_ptr->dis_to_h[0] += (bonus_to_h > 0) ? (bonus_to_h+1)/2 : bonus_to_h;
4427                                 p_ptr->dis_to_h[1] += (bonus_to_h > 0) ? bonus_to_h/2 : bonus_to_h;
4428                                 p_ptr->dis_to_d[0] += (bonus_to_d > 0) ? (bonus_to_d+1)/2 : bonus_to_d;
4429                                 p_ptr->dis_to_d[1] += (bonus_to_d > 0) ? bonus_to_d/2 : bonus_to_d;
4430                         }
4431                 }
4432                 else
4433                 {
4434                         /* Apply the bonuses to hit/damage */
4435                         p_ptr->to_h[default_hand] += bonus_to_h;
4436                         p_ptr->to_d[default_hand] += bonus_to_d;
4437
4438                         /* Apply the mental bonuses to hit/damage, if known */
4439                         if (object_is_known(o_ptr))
4440                         {
4441                                 p_ptr->dis_to_h[default_hand] += bonus_to_h;
4442                                 p_ptr->dis_to_d[default_hand] += bonus_to_d;
4443                         }
4444                 }
4445         }
4446
4447         if (old_mighty_throw != p_ptr->mighty_throw)
4448         {
4449                 /* Redraw average damege display of Shuriken */
4450                 p_ptr->window |= PW_INVEN;
4451         }
4452
4453         if (p_ptr->cursed & TRC_TELEPORT) p_ptr->cursed &= ~(TRC_TELEPORT_SELF);
4454
4455         /* Monks get extra ac for armour _not worn_ */
4456         if (((p_ptr->pclass == CLASS_MONK) || (p_ptr->pclass == CLASS_FORCETRAINER)) && !heavy_armor())
4457         {
4458                 if (!(inventory[INVEN_BODY].k_idx))
4459                 {
4460                         p_ptr->to_a += (p_ptr->lev * 3) / 2;
4461                         p_ptr->dis_to_a += (p_ptr->lev * 3) / 2;
4462                 }
4463                 if (!(inventory[INVEN_OUTER].k_idx) && (p_ptr->lev > 15))
4464                 {
4465                         p_ptr->to_a += ((p_ptr->lev - 13) / 3);
4466                         p_ptr->dis_to_a += ((p_ptr->lev - 13) / 3);
4467                 }
4468                 if (!(inventory[INVEN_LARM].k_idx) && (p_ptr->lev > 10))
4469                 {
4470                         p_ptr->to_a += ((p_ptr->lev - 8) / 3);
4471                         p_ptr->dis_to_a += ((p_ptr->lev - 8) / 3);
4472                 }
4473                 if (!(inventory[INVEN_HEAD].k_idx) && (p_ptr->lev > 4))
4474                 {
4475                         p_ptr->to_a += (p_ptr->lev - 2) / 3;
4476                         p_ptr->dis_to_a += (p_ptr->lev -2) / 3;
4477                 }
4478                 if (!(inventory[INVEN_HANDS].k_idx))
4479                 {
4480                         p_ptr->to_a += (p_ptr->lev / 2);
4481                         p_ptr->dis_to_a += (p_ptr->lev / 2);
4482                 }
4483                 if (!(inventory[INVEN_FEET].k_idx))
4484                 {
4485                         p_ptr->to_a += (p_ptr->lev / 3);
4486                         p_ptr->dis_to_a += (p_ptr->lev / 3);
4487                 }
4488                 if (p_ptr->special_defense & KAMAE_BYAKKO)
4489                 {
4490                         p_ptr->stat_add[A_STR] += 2;
4491                         p_ptr->stat_add[A_DEX] += 2;
4492                         p_ptr->stat_add[A_CON] -= 3;
4493                 }
4494                 else if (p_ptr->special_defense & KAMAE_SEIRYU)
4495                 {
4496                 }
4497                 else if (p_ptr->special_defense & KAMAE_GENBU)
4498                 {
4499                         p_ptr->stat_add[A_INT] -= 1;
4500                         p_ptr->stat_add[A_WIS] -= 1;
4501                         p_ptr->stat_add[A_DEX] -= 2;
4502                         p_ptr->stat_add[A_CON] += 3;
4503                 }
4504                 else if (p_ptr->special_defense & KAMAE_SUZAKU)
4505                 {
4506                         p_ptr->stat_add[A_STR] -= 2;
4507                         p_ptr->stat_add[A_INT] += 1;
4508                         p_ptr->stat_add[A_WIS] += 1;
4509                         p_ptr->stat_add[A_DEX] += 2;
4510                         p_ptr->stat_add[A_CON] -= 2;
4511                 }
4512         }
4513
4514         if (p_ptr->special_defense & KATA_KOUKIJIN)
4515         {
4516                 for (i = 0; i < 6; i++)
4517                         p_ptr->stat_add[i] += 5;
4518                 p_ptr->to_a -= 50;
4519                 p_ptr->dis_to_a -= 50;
4520         }
4521
4522         /* Hack -- aura of fire also provides light */
4523         if (p_ptr->sh_fire) p_ptr->lite = TRUE;
4524
4525         /* Golems also get an intrinsic AC bonus */
4526         if (prace_is_(RACE_GOLEM) || prace_is_(RACE_ANDROID))
4527         {
4528                 p_ptr->to_a += 10 + (p_ptr->lev * 2 / 5);
4529                 p_ptr->dis_to_a += 10 + (p_ptr->lev * 2 / 5);
4530         }
4531
4532         /* Hex bonuses */
4533         if (p_ptr->realm1 == REALM_HEX)
4534         {
4535                 if (hex_spelling_any()) p_ptr->skill_stl -= (1 + p_ptr->magic_num2[0]);
4536                 if (hex_spelling(HEX_DETECT_EVIL)) p_ptr->esp_evil = TRUE;
4537                 if (hex_spelling(HEX_XTRA_MIGHT)) p_ptr->stat_add[A_STR] += 4;
4538                 if (hex_spelling(HEX_BUILDING))
4539                 {
4540                         p_ptr->stat_add[A_STR] += 4;
4541                         p_ptr->stat_add[A_DEX] += 4;
4542                         p_ptr->stat_add[A_CON] += 4;
4543                 }
4544                 if (hex_spelling(HEX_DEMON_AURA))
4545                 {
4546                         p_ptr->sh_fire = TRUE;
4547                         p_ptr->regenerate = TRUE;
4548                 }
4549                 if (hex_spelling(HEX_ICE_ARMOR))
4550                 {
4551                         p_ptr->sh_cold = TRUE; 
4552                         p_ptr->to_a += 30;
4553                         p_ptr->dis_to_a += 30;
4554                 }
4555                 if (hex_spelling(HEX_SHOCK_CLOAK))
4556                 {
4557                         p_ptr->sh_elec = TRUE;
4558                         new_speed += 3;
4559                 }
4560                 for (i = INVEN_RARM; i <= INVEN_FEET; i++)
4561                 {
4562                         int ac = 0;
4563                         o_ptr = &inventory[i];
4564                         if (!o_ptr->k_idx) continue;
4565                         if (!object_is_armour(o_ptr)) continue;
4566                         if (!object_is_cursed(o_ptr)) continue;
4567                         ac += 5;
4568                         if (o_ptr->curse_flags & TRC_HEAVY_CURSE) ac += 7;
4569                         if (o_ptr->curse_flags & TRC_PERMA_CURSE) ac += 13;
4570                         p_ptr->to_a += ac;
4571                         p_ptr->dis_to_a += ac;
4572                 }
4573         }
4574
4575         /* Calculate stats */
4576         for (i = 0; i < 6; i++)
4577         {
4578                 int top, use, ind;
4579
4580                 /* Extract the new "stat_use" value for the stat */
4581                 top = modify_stat_value(p_ptr->stat_max[i], p_ptr->stat_add[i]);
4582
4583                 /* Notice changes */
4584                 if (p_ptr->stat_top[i] != top)
4585                 {
4586                         /* Save the new value */
4587                         p_ptr->stat_top[i] = top;
4588
4589                         /* Redisplay the stats later */
4590                         p_ptr->redraw |= (PR_STATS);
4591
4592                         /* Window stuff */
4593                         p_ptr->window |= (PW_PLAYER);
4594                 }
4595
4596
4597                 /* Extract the new "stat_use" value for the stat */
4598                 use = modify_stat_value(p_ptr->stat_cur[i], p_ptr->stat_add[i]);
4599
4600                 if ((i == A_CHR) && (p_ptr->muta3 & MUT3_ILL_NORM))
4601                 {
4602                         /* 10 to 18/90 charisma, guaranteed, based on level */
4603                         if (use < 8 + 2 * p_ptr->lev)
4604                         {
4605                                 use = 8 + 2 * p_ptr->lev;
4606                         }
4607                 }
4608
4609                 /* Notice changes */
4610                 if (p_ptr->stat_use[i] != use)
4611                 {
4612                         /* Save the new value */
4613                         p_ptr->stat_use[i] = use;
4614
4615                         /* Redisplay the stats later */
4616                         p_ptr->redraw |= (PR_STATS);
4617
4618                         /* Window stuff */
4619                         p_ptr->window |= (PW_PLAYER);
4620                 }
4621
4622
4623                 /* Values: 3, 4, ..., 17 */
4624                 if (use <= 18) ind = (use - 3);
4625
4626                 /* Ranges: 18/00-18/09, ..., 18/210-18/219 */
4627                 else if (use <= 18+219) ind = (15 + (use - 18) / 10);
4628
4629                 /* Range: 18/220+ */
4630                 else ind = (37);
4631
4632                 /* Notice changes */
4633                 if (p_ptr->stat_ind[i] != ind)
4634                 {
4635                         /* Save the new index */
4636                         p_ptr->stat_ind[i] = ind;
4637
4638                         /* Change in CON affects Hitpoints */
4639                         if (i == A_CON)
4640                         {
4641                                 p_ptr->update |= (PU_HP);
4642                         }
4643
4644                         /* Change in INT may affect Mana/Spells */
4645                         else if (i == A_INT)
4646                         {
4647                                 if (mp_ptr->spell_stat == A_INT)
4648                                 {
4649                                         p_ptr->update |= (PU_MANA | PU_SPELLS);
4650                                 }
4651                         }
4652
4653                         /* Change in WIS may affect Mana/Spells */
4654                         else if (i == A_WIS)
4655                         {
4656                                 if (mp_ptr->spell_stat == A_WIS)
4657                                 {
4658                                         p_ptr->update |= (PU_MANA | PU_SPELLS);
4659                                 }
4660                         }
4661
4662                         /* Change in WIS may affect Mana/Spells */
4663                         else if (i == A_CHR)
4664                         {
4665                                 if (mp_ptr->spell_stat == A_CHR)
4666                                 {
4667                                         p_ptr->update |= (PU_MANA | PU_SPELLS);
4668                                 }
4669                         }
4670
4671                         /* Window stuff */
4672                         p_ptr->window |= (PW_PLAYER);
4673                 }
4674         }
4675
4676
4677         /* Apply temporary "stun" */
4678         if (p_ptr->stun > 50)
4679         {
4680                 p_ptr->to_h[0] -= 20;
4681                 p_ptr->to_h[1] -= 20;
4682                 p_ptr->to_h_b  -= 20;
4683                 p_ptr->to_h_m  -= 20;
4684                 p_ptr->dis_to_h[0] -= 20;
4685                 p_ptr->dis_to_h[1] -= 20;
4686                 p_ptr->dis_to_h_b  -= 20;
4687                 p_ptr->to_d[0] -= 20;
4688                 p_ptr->to_d[1] -= 20;
4689                 p_ptr->to_d_m -= 20;
4690                 p_ptr->dis_to_d[0] -= 20;
4691                 p_ptr->dis_to_d[1] -= 20;
4692         }
4693         else if (p_ptr->stun)
4694         {
4695                 p_ptr->to_h[0] -= 5;
4696                 p_ptr->to_h[1] -= 5;
4697                 p_ptr->to_h_b -= 5;
4698                 p_ptr->to_h_m -= 5;
4699                 p_ptr->dis_to_h[0] -= 5;
4700                 p_ptr->dis_to_h[1] -= 5;
4701                 p_ptr->dis_to_h_b -= 5;
4702                 p_ptr->to_d[0] -= 5;
4703                 p_ptr->to_d[1] -= 5;
4704                 p_ptr->to_d_m -= 5;
4705                 p_ptr->dis_to_d[0] -= 5;
4706                 p_ptr->dis_to_d[1] -= 5;
4707         }
4708
4709         /* Wraith form */
4710         if (p_ptr->wraith_form)
4711         {
4712                 p_ptr->reflect = TRUE;
4713                 p_ptr->pass_wall = TRUE;
4714         }
4715
4716         if (p_ptr->kabenuke)
4717         {
4718                 p_ptr->pass_wall = TRUE;
4719         }
4720
4721         /* Temporary blessing */
4722         if (IS_BLESSED())
4723         {
4724                 p_ptr->to_a += 5;
4725                 p_ptr->dis_to_a += 5;
4726                 p_ptr->to_h[0] += 10;
4727                 p_ptr->to_h[1] += 10;
4728                 p_ptr->to_h_b  += 10;
4729                 p_ptr->to_h_m  += 10;
4730                 p_ptr->dis_to_h[0] += 10;
4731                 p_ptr->dis_to_h[1] += 10;
4732                 p_ptr->dis_to_h_b += 10;
4733         }
4734
4735         if (p_ptr->magicdef)
4736         {
4737                 p_ptr->resist_blind = TRUE;
4738                 p_ptr->resist_conf = TRUE;
4739                 p_ptr->reflect = TRUE;
4740                 p_ptr->free_act = TRUE;
4741                 p_ptr->levitation = TRUE;
4742         }
4743
4744         /* Temporary "Hero" */
4745         if (IS_HERO())
4746         {
4747                 p_ptr->to_h[0] += 12;
4748                 p_ptr->to_h[1] += 12;
4749                 p_ptr->to_h_b  += 12;
4750                 p_ptr->to_h_m  += 12;
4751                 p_ptr->dis_to_h[0] += 12;
4752                 p_ptr->dis_to_h[1] += 12;
4753                 p_ptr->dis_to_h_b  += 12;
4754         }
4755
4756         /* Temporary "Beserk" */
4757         if (p_ptr->shero)
4758         {
4759                 p_ptr->to_h[0] += 12;
4760                 p_ptr->to_h[1] += 12;
4761                 p_ptr->to_h_b  -= 12;
4762                 p_ptr->to_h_m  += 12;
4763                 p_ptr->to_d[0] += 3+(p_ptr->lev/5);
4764                 p_ptr->to_d[1] += 3+(p_ptr->lev/5);
4765                 p_ptr->to_d_m  += 3+(p_ptr->lev/5);
4766                 p_ptr->dis_to_h[0] += 12;
4767                 p_ptr->dis_to_h[1] += 12;
4768                 p_ptr->dis_to_h_b  -= 12;
4769                 p_ptr->dis_to_d[0] += 3+(p_ptr->lev/5);
4770                 p_ptr->dis_to_d[1] += 3+(p_ptr->lev/5);
4771                 p_ptr->to_a -= 10;
4772                 p_ptr->dis_to_a -= 10;
4773                 p_ptr->skill_stl -= 7;
4774                 p_ptr->skill_dev -= 20;
4775                 p_ptr->skill_sav -= 30;
4776                 p_ptr->skill_srh -= 15;
4777                 p_ptr->skill_fos -= 15;
4778                 p_ptr->skill_tht -= 20;
4779                 p_ptr->skill_dig += 30;
4780         }
4781
4782         /* Temporary "fast" */
4783         if (IS_FAST())
4784         {
4785                 new_speed += 10;
4786         }
4787
4788         /* Temporary "slow" */
4789         if (p_ptr->slow)
4790         {
4791                 new_speed -= 10;
4792         }
4793
4794         /* Temporary "telepathy" */
4795         if (IS_TIM_ESP())
4796         {
4797                 p_ptr->telepathy = TRUE;
4798         }
4799
4800         if (p_ptr->ele_immune)
4801         {
4802                 if (p_ptr->special_defense & DEFENSE_ACID)
4803                         p_ptr->immune_acid = TRUE;
4804                 else if (p_ptr->special_defense & DEFENSE_ELEC)
4805                         p_ptr->immune_elec = TRUE;
4806                 else if (p_ptr->special_defense & DEFENSE_FIRE)
4807                         p_ptr->immune_fire = TRUE;
4808                 else if (p_ptr->special_defense & DEFENSE_COLD)
4809                         p_ptr->immune_cold = TRUE;
4810         }
4811
4812         /* Temporary see invisible */
4813         if (p_ptr->tim_invis)
4814         {
4815                 p_ptr->see_inv = TRUE;
4816         }
4817
4818         /* Temporary infravision boost */
4819         if (p_ptr->tim_infra)
4820         {
4821                 p_ptr->see_infra+=3;
4822         }
4823
4824         /* Temporary regeneration boost */
4825         if (p_ptr->tim_regen)
4826         {
4827                 p_ptr->regenerate = TRUE;
4828         }
4829
4830         /* Temporary levitation */
4831         if (p_ptr->tim_levitation)
4832         {
4833                 p_ptr->levitation = TRUE;
4834         }
4835
4836         /* Temporary reflection */
4837         if (p_ptr->tim_reflect)
4838         {
4839                 p_ptr->reflect = TRUE;
4840         }
4841
4842         /* Hack -- Hero/Shero -> Res fear */
4843         if (IS_HERO() || p_ptr->shero)
4844         {
4845                 p_ptr->resist_fear = TRUE;
4846         }
4847
4848
4849         /* Hack -- Telepathy Change */
4850         if (p_ptr->telepathy != old_telepathy)
4851         {
4852                 p_ptr->update |= (PU_MONSTERS);
4853         }
4854
4855         if ((p_ptr->esp_animal != old_esp_animal) ||
4856             (p_ptr->esp_undead != old_esp_undead) ||
4857             (p_ptr->esp_demon != old_esp_demon) ||
4858             (p_ptr->esp_orc != old_esp_orc) ||
4859             (p_ptr->esp_troll != old_esp_troll) ||
4860             (p_ptr->esp_giant != old_esp_giant) ||
4861             (p_ptr->esp_dragon != old_esp_dragon) ||
4862             (p_ptr->esp_human != old_esp_human) ||
4863             (p_ptr->esp_evil != old_esp_evil) ||
4864             (p_ptr->esp_good != old_esp_good) ||
4865             (p_ptr->esp_nonliving != old_esp_nonliving) ||
4866             (p_ptr->esp_unique != old_esp_unique))
4867         {
4868                 p_ptr->update |= (PU_MONSTERS);
4869         }
4870
4871         /* Hack -- See Invis Change */
4872         if (p_ptr->see_inv != old_see_inv)
4873         {
4874                 p_ptr->update |= (PU_MONSTERS);
4875         }
4876
4877         /* Bloating slows the player down (a little) */
4878         if (p_ptr->food >= PY_FOOD_MAX) new_speed -= 10;
4879
4880         if (p_ptr->special_defense & KAMAE_SUZAKU) new_speed += 10;
4881
4882         if ((p_ptr->migite && (empty_hands_status & EMPTY_HAND_RARM)) ||
4883             (p_ptr->hidarite && (empty_hands_status & EMPTY_HAND_LARM)))
4884         {
4885                 p_ptr->to_h[default_hand] += (p_ptr->skill_exp[GINOU_SUDE] - WEAPON_EXP_BEGINNER) / 200;
4886                 p_ptr->dis_to_h[default_hand] += (p_ptr->skill_exp[GINOU_SUDE] - WEAPON_EXP_BEGINNER) / 200;
4887         }
4888
4889         if (buki_motteruka(INVEN_RARM) && buki_motteruka(INVEN_LARM))
4890         {
4891                 int penalty1, penalty2;
4892                 penalty1 = ((100 - p_ptr->skill_exp[GINOU_NITOURYU] / 160) - (130 - inventory[INVEN_RARM].weight) / 8);
4893                 penalty2 = ((100 - p_ptr->skill_exp[GINOU_NITOURYU] / 160) - (130 - inventory[INVEN_LARM].weight) / 8);
4894                 if ((inventory[INVEN_RARM].name1 == ART_QUICKTHORN) && (inventory[INVEN_LARM].name1 == ART_TINYTHORN))
4895                 {
4896                         penalty1 = penalty1 / 2 - 5;
4897                         penalty2 = penalty2 / 2 - 5;
4898                         new_speed += 7;
4899                         p_ptr->to_a += 10;
4900                         p_ptr->dis_to_a += 10;
4901                 }
4902                 if (easy_2weapon)
4903                 {
4904                         if (penalty1 > 0) penalty1 /= 2;
4905                         if (penalty2 > 0) penalty2 /= 2;
4906                 }
4907                 else if ((inventory[INVEN_LARM].tval == TV_SWORD) && ((inventory[INVEN_LARM].sval == SV_MAIN_GAUCHE) || (inventory[INVEN_LARM].sval == SV_WAKIZASHI)))
4908                 {
4909                         penalty1 = MAX(0, penalty1 - 10);
4910                         penalty2 = MAX(0, penalty2 - 10);
4911                 }
4912                 if ((inventory[INVEN_RARM].name1 == ART_MUSASI_KATANA) && (inventory[INVEN_LARM].name1 == ART_MUSASI_WAKIZASI))
4913                 {
4914                         penalty1 = MIN(0, penalty1);
4915                         penalty2 = MIN(0, penalty2);
4916                         p_ptr->to_a += 10;
4917                         p_ptr->dis_to_a += 10;
4918                 }
4919                 else
4920                 {
4921                         if ((inventory[INVEN_RARM].name1 == ART_MUSASI_KATANA) && (penalty1 > 0))
4922                                 penalty1 /= 2;
4923                         if ((inventory[INVEN_LARM].name1 == ART_MUSASI_WAKIZASI) && (penalty2 > 0))
4924                                 penalty2 /= 2;
4925                 }
4926                 if (inventory[INVEN_RARM].tval == TV_POLEARM) penalty1 += 10;
4927                 if (inventory[INVEN_LARM].tval == TV_POLEARM) penalty2 += 10;
4928                 p_ptr->to_h[0] -= penalty1;
4929                 p_ptr->to_h[1] -= penalty2;
4930                 p_ptr->dis_to_h[0] -= penalty1;
4931                 p_ptr->dis_to_h[1] -= penalty2;
4932         }
4933
4934         /* Extract the current weight (in tenth pounds) */
4935         j = p_ptr->total_weight;
4936
4937         if (!p_ptr->riding)
4938         {
4939                 /* Extract the "weight limit" (in tenth pounds) */
4940                 i = (int)weight_limit();
4941         }
4942         else
4943         {
4944                 monster_type *riding_m_ptr = &m_list[p_ptr->riding];
4945                 monster_race *riding_r_ptr = &r_info[riding_m_ptr->r_idx];
4946                 int speed = riding_m_ptr->mspeed;
4947
4948                 if (riding_m_ptr->mspeed > 110)
4949                 {
4950                         new_speed = 110 + (s16b)((speed - 110) * (p_ptr->skill_exp[GINOU_RIDING] * 3 + p_ptr->lev * 160L - 10000L) / (22000L));
4951                         if (new_speed < 110) new_speed = 110;
4952                 }
4953                 else
4954                 {
4955                         new_speed = speed;
4956                 }
4957                 new_speed += (p_ptr->skill_exp[GINOU_RIDING] + p_ptr->lev *160L)/3200;
4958                 if (MON_FAST(riding_m_ptr)) new_speed += 10;
4959                 if (MON_SLOW(riding_m_ptr)) new_speed -= 10;
4960                 riding_levitation = (riding_r_ptr->flags7 & RF7_CAN_FLY) ? TRUE : FALSE;
4961                 if (riding_r_ptr->flags7 & (RF7_CAN_SWIM | RF7_AQUATIC)) p_ptr->can_swim = TRUE;
4962
4963                 if (!(riding_r_ptr->flags2 & RF2_PASS_WALL)) p_ptr->pass_wall = FALSE;
4964                 if (riding_r_ptr->flags2 & RF2_KILL_WALL) p_ptr->kill_wall = TRUE;
4965
4966                 if (p_ptr->skill_exp[GINOU_RIDING] < RIDING_EXP_SKILLED) j += (p_ptr->wt * 3 * (RIDING_EXP_SKILLED - p_ptr->skill_exp[GINOU_RIDING])) / RIDING_EXP_SKILLED;
4967
4968                 /* Extract the "weight limit" */
4969                 i = 1500 + riding_r_ptr->level * 25;
4970         }
4971
4972         /* XXX XXX XXX Apply "encumbrance" from weight */
4973         if (j > i) new_speed -= ((j - i) / (i / 5));
4974
4975         /* Searching slows the player down */
4976         if (p_ptr->action == ACTION_SEARCH) new_speed -= 10;
4977
4978         /* Actual Modifier Bonuses (Un-inflate stat bonuses) */
4979         p_ptr->to_a += ((int)(adj_dex_ta[p_ptr->stat_ind[A_DEX]]) - 128);
4980         p_ptr->to_d[0] += ((int)(adj_str_td[p_ptr->stat_ind[A_STR]]) - 128);
4981         p_ptr->to_d[1] += ((int)(adj_str_td[p_ptr->stat_ind[A_STR]]) - 128);
4982         p_ptr->to_d_m  += ((int)(adj_str_td[p_ptr->stat_ind[A_STR]]) - 128);
4983         p_ptr->to_h[0] += ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
4984         p_ptr->to_h[1] += ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
4985         p_ptr->to_h_b  += ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
4986         p_ptr->to_h_m  += ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
4987         p_ptr->to_h[0] += ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128);
4988         p_ptr->to_h[1] += ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128);
4989         p_ptr->to_h_b  += ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128);
4990         p_ptr->to_h_m  += ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128);
4991
4992         /* Displayed Modifier Bonuses (Un-inflate stat bonuses) */
4993         p_ptr->dis_to_a += ((int)(adj_dex_ta[p_ptr->stat_ind[A_DEX]]) - 128);
4994         p_ptr->dis_to_d[0] += ((int)(adj_str_td[p_ptr->stat_ind[A_STR]]) - 128);
4995         p_ptr->dis_to_d[1] += ((int)(adj_str_td[p_ptr->stat_ind[A_STR]]) - 128);
4996         p_ptr->dis_to_h[0] += ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
4997         p_ptr->dis_to_h[1] += ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
4998         p_ptr->dis_to_h_b  += ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
4999         p_ptr->dis_to_h[0] += ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128);
5000         p_ptr->dis_to_h[1] += ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128);
5001         p_ptr->dis_to_h_b  += ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128);
5002
5003
5004         /* Obtain the "hold" value */
5005         hold = adj_str_hold[p_ptr->stat_ind[A_STR]];
5006
5007
5008         /* Examine the "current bow" */
5009         o_ptr = &inventory[INVEN_BOW];
5010
5011         /* It is hard to carholdry a heavy bow */
5012         p_ptr->heavy_shoot = is_heavy_shoot(o_ptr);
5013         if (p_ptr->heavy_shoot)
5014         {
5015                 /* Hard to wield a heavy bow */
5016                 p_ptr->to_h_b  += 2 * (hold - o_ptr->weight / 10);
5017                 p_ptr->dis_to_h_b  += 2 * (hold - o_ptr->weight / 10);
5018         }
5019
5020         /* Compute "extra shots" if needed */
5021         if (o_ptr->k_idx)
5022         {
5023                 p_ptr->tval_ammo = bow_tval_ammo(o_ptr);
5024
5025                 /* Apply special flags */
5026                 if (o_ptr->k_idx && !p_ptr->heavy_shoot)
5027                 {
5028                         /* Extra shots */
5029                         p_ptr->num_fire = calc_num_fire(o_ptr);
5030
5031                         /* Snipers love Cross bows */
5032                         if ((p_ptr->pclass == CLASS_SNIPER) &&
5033                                 (p_ptr->tval_ammo == TV_BOLT))
5034                         {
5035                                 p_ptr->to_h_b += (10 + (p_ptr->lev / 5));
5036                                 p_ptr->dis_to_h_b += (10 + (p_ptr->lev / 5));
5037                         }
5038                 }
5039         }
5040
5041         if (p_ptr->ryoute)
5042                 hold *= 2;
5043
5044         for(i = 0 ; i < 2 ; i++)
5045         {
5046                 /* Examine the "main weapon" */
5047                 o_ptr = &inventory[INVEN_RARM+i];
5048
5049                 object_flags(o_ptr, flgs);
5050
5051                 /* Assume not heavy */
5052                 p_ptr->heavy_wield[i] = FALSE;
5053                 p_ptr->icky_wield[i] = FALSE;
5054                 p_ptr->riding_wield[i] = FALSE;
5055
5056                 if (!buki_motteruka(INVEN_RARM+i)) {p_ptr->num_blow[i]=1;continue;}
5057                 /* It is hard to hold a heavy weapon */
5058                 if (hold < o_ptr->weight / 10)
5059                 {
5060                         /* Hard to wield a heavy weapon */
5061                         p_ptr->to_h[i] += 2 * (hold - o_ptr->weight / 10);
5062                         p_ptr->dis_to_h[i] += 2 * (hold - o_ptr->weight / 10);
5063
5064                         /* Heavy weapon */
5065                         p_ptr->heavy_wield[i] = TRUE;
5066                 }
5067                 else if (p_ptr->ryoute && (hold < o_ptr->weight/5)) omoi = TRUE;
5068
5069                 if ((i == 1) && (o_ptr->tval == TV_SWORD) && ((o_ptr->sval == SV_MAIN_GAUCHE) || (o_ptr->sval == SV_WAKIZASHI)))
5070                 {
5071                         p_ptr->to_a += 5;
5072                         p_ptr->dis_to_a += 5;
5073                 }
5074
5075                 /* Normal weapons */
5076                 if (o_ptr->k_idx && !p_ptr->heavy_wield[i])
5077                 {
5078                         int str_index, dex_index;
5079
5080                         int num = 0, wgt = 0, mul = 0, div = 0;
5081
5082                         /* Analyze the class */
5083                         switch (p_ptr->pclass)
5084                         {
5085                                 /* Warrior */
5086                                 case CLASS_WARRIOR:
5087                                         num = 6; wgt = 70; mul = 5; break;
5088
5089                                 /* Berserker */
5090                                 case CLASS_BERSERKER:
5091                                         num = 6; wgt = 70; mul = 7; break;
5092
5093                                 /* Mage */
5094                                 case CLASS_MAGE:
5095                                 case CLASS_HIGH_MAGE:
5096                                 case CLASS_BLUE_MAGE:
5097                                         num = 3; wgt = 100; mul = 2; break;
5098
5099                                 /* Priest, Mindcrafter, Magic-Eater */
5100                                 case CLASS_PRIEST:
5101                                 case CLASS_MAGIC_EATER:
5102                                 case CLASS_MINDCRAFTER:
5103                                         num = 5; wgt = 100; mul = 3; break;
5104
5105                                 /* Rogue */
5106                                 case CLASS_ROGUE:
5107                                         num = 5; wgt = 40; mul = 3; break;
5108
5109                                 /* Ranger */
5110                                 case CLASS_RANGER:
5111                                         num = 5; wgt = 70; mul = 4; break;
5112
5113                                 /* Paladin */
5114                                 case CLASS_PALADIN:
5115                                 case CLASS_SAMURAI:
5116                                         num = 5; wgt = 70; mul = 4; break;
5117
5118                                 /* Weaponsmith */
5119                                 case CLASS_SMITH:
5120                                         num = 5; wgt = 150; mul = 5; break;
5121
5122                                 /* Warrior-Mage */
5123                                 case CLASS_WARRIOR_MAGE:
5124                                 case CLASS_RED_MAGE:
5125                                         num = 5; wgt = 70; mul = 3; break;
5126
5127                                 /* Chaos Warrior */
5128                                 case CLASS_CHAOS_WARRIOR:
5129                                         num = 5; wgt = 70; mul = 4; break;
5130
5131                                 /* Monk */
5132                                 case CLASS_MONK:
5133                                         num = 5; wgt = 60; mul = 3; break;
5134
5135                                 /* Tourist */
5136                                 case CLASS_TOURIST:
5137                                         num = 4; wgt = 100; mul = 3; break;
5138
5139                                 /* Imitator */
5140                                 case CLASS_IMITATOR:
5141                                         num = 5; wgt = 70; mul = 4; break;
5142
5143                                 /* Beastmaster */
5144                                 case CLASS_BEASTMASTER:
5145                                         num = 5; wgt = 70; mul = 3; break;
5146
5147                                 /* Cavalry */
5148                                 case CLASS_CAVALRY:
5149                                         if ((p_ptr->riding) && (have_flag(flgs, TR_RIDING))) {num = 5; wgt = 70; mul = 4;}
5150                                         else {num = 5; wgt = 100; mul = 3;}
5151                                         break;
5152
5153                                 /* Sorcerer */
5154                                 case CLASS_SORCERER:
5155                                         num = 1; wgt = 1; mul = 1; break;
5156
5157                                 /* Archer, Bard, Sniper */
5158                                 case CLASS_ARCHER:
5159                                 case CLASS_BARD:
5160                                 case CLASS_SNIPER:
5161                                         num = 4; wgt = 70; mul = 2; break;
5162
5163                                 /* ForceTrainer */
5164                                 case CLASS_FORCETRAINER:
5165                                         num = 4; wgt = 60; mul = 2; break;
5166
5167                                 /* Mirror Master */
5168                                 case CLASS_MIRROR_MASTER:
5169                                         num = 3; wgt = 100; mul = 3; break;
5170
5171                                 /* Ninja */
5172                                 case CLASS_NINJA:
5173                                         num = 4; wgt = 20; mul = 1; break;
5174                         }
5175
5176                         /* Hex - extra mights gives +1 bonus to max blows */
5177                         if (hex_spelling(HEX_XTRA_MIGHT) || hex_spelling(HEX_BUILDING)) { num++; wgt /= 2; mul += 2; }
5178
5179                         /* Enforce a minimum "weight" (tenth pounds) */
5180                         div = ((o_ptr->weight < wgt) ? wgt : o_ptr->weight);
5181
5182                         /* Access the strength vs weight */
5183                         str_index = (adj_str_blow[p_ptr->stat_ind[A_STR]] * mul / div);
5184
5185                         if (p_ptr->ryoute && !omoi) str_index++;
5186                         if (p_ptr->pclass == CLASS_NINJA) str_index = MAX(0, str_index-1);
5187
5188                         /* Maximal value */
5189                         if (str_index > 11) str_index = 11;
5190
5191                         /* Index by dexterity */
5192                         dex_index = (adj_dex_blow[p_ptr->stat_ind[A_DEX]]);
5193
5194                         /* Maximal value */
5195                         if (dex_index > 11) dex_index = 11;
5196
5197                         /* Use the blows table */
5198                         p_ptr->num_blow[i] = blows_table[str_index][dex_index];
5199
5200                         /* Maximal value */
5201                         if (p_ptr->num_blow[i] > num) p_ptr->num_blow[i] = num;
5202
5203                         /* Add in the "bonus blows" */
5204                         p_ptr->num_blow[i] += extra_blows[i];
5205
5206
5207                         if (p_ptr->pclass == CLASS_WARRIOR) p_ptr->num_blow[i] += (p_ptr->lev / 40);
5208                         else if (p_ptr->pclass == CLASS_BERSERKER)
5209                         {
5210                                 p_ptr->num_blow[i] += (p_ptr->lev / 23);
5211                         }
5212                         else if ((p_ptr->pclass == CLASS_ROGUE) && (o_ptr->weight < 50) && (p_ptr->stat_ind[A_DEX] >= 30)) p_ptr->num_blow[i] ++;
5213
5214                         if (p_ptr->special_defense & KATA_FUUJIN) p_ptr->num_blow[i] -= 1;
5215
5216                         if ((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) p_ptr->num_blow[i] = 1;
5217
5218
5219                         /* Require at least one blow */
5220                         if (p_ptr->num_blow[i] < 1) p_ptr->num_blow[i] = 1;
5221
5222                         /* Boost digging skill by weapon weight */
5223                         p_ptr->skill_dig += (o_ptr->weight / 10);
5224                 }
5225
5226                 /* Assume okay */
5227                 /* Priest weapon penalty for non-blessed edged weapons */
5228                 if ((p_ptr->pclass == CLASS_PRIEST) && (!(have_flag(flgs, TR_BLESSED))) &&
5229                     ((o_ptr->tval == TV_SWORD) || (o_ptr->tval == TV_POLEARM)))
5230                 {
5231                         /* Reduce the real bonuses */
5232                         p_ptr->to_h[i] -= 2;
5233                         p_ptr->to_d[i] -= 2;
5234
5235                         /* Reduce the mental bonuses */
5236                         p_ptr->dis_to_h[i] -= 2;
5237                         p_ptr->dis_to_d[i] -= 2;
5238
5239                         /* Icky weapon */
5240                         p_ptr->icky_wield[i] = TRUE;
5241                 }
5242                 else if (p_ptr->pclass == CLASS_BERSERKER)
5243                 {
5244                         p_ptr->to_h[i] += p_ptr->lev/5;
5245                         p_ptr->to_d[i] += p_ptr->lev/6;
5246                         p_ptr->dis_to_h[i] += p_ptr->lev/5;
5247                         p_ptr->dis_to_d[i] += p_ptr->lev/6;
5248                         if (((i == 0) && !p_ptr->hidarite) || p_ptr->ryoute)
5249                         {
5250                                 p_ptr->to_h[i] += p_ptr->lev/5;
5251                                 p_ptr->to_d[i] += p_ptr->lev/6;
5252                                 p_ptr->dis_to_h[i] += p_ptr->lev/5;
5253                                 p_ptr->dis_to_d[i] += p_ptr->lev/6;
5254                         }
5255                 }
5256                 else if (p_ptr->pclass == CLASS_SORCERER)
5257                 {
5258                         if (!((o_ptr->tval == TV_HAFTED) && ((o_ptr->sval == SV_WIZSTAFF) || (o_ptr->sval == SV_NAMAKE_HAMMER))))
5259                         {
5260                                 /* Reduce the real bonuses */
5261                                 p_ptr->to_h[i] -= 200;
5262                                 p_ptr->to_d[i] -= 200;
5263
5264                                 /* Reduce the mental bonuses */
5265                                 p_ptr->dis_to_h[i] -= 200;
5266                                 p_ptr->dis_to_d[i] -= 200;
5267
5268                                 /* Icky weapon */
5269                                 p_ptr->icky_wield[i] = TRUE;
5270                         }
5271                         else
5272                         {
5273                                 /* Reduce the real bonuses */
5274                                 p_ptr->to_h[i] -= 30;
5275                                 p_ptr->to_d[i] -= 10;
5276
5277                                 /* Reduce the mental bonuses */
5278                                 p_ptr->dis_to_h[i] -= 30;
5279                                 p_ptr->dis_to_d[i] -= 10;
5280                         }
5281                 }
5282                 /* Hex bonuses */
5283                 if (p_ptr->realm1 == REALM_HEX)
5284                 {
5285                         if (object_is_cursed(o_ptr))
5286                         {
5287                                 if (o_ptr->curse_flags & (TRC_CURSED)) { p_ptr->to_h[i] += 5; p_ptr->dis_to_h[i] += 5; }
5288                                 if (o_ptr->curse_flags & (TRC_HEAVY_CURSE)) { p_ptr->to_h[i] += 7; p_ptr->dis_to_h[i] += 7; }
5289                                 if (o_ptr->curse_flags & (TRC_PERMA_CURSE)) { p_ptr->to_h[i] += 13; p_ptr->dis_to_h[i] += 13; }
5290                                 if (o_ptr->curse_flags & (TRC_TY_CURSE)) { p_ptr->to_h[i] += 5; p_ptr->dis_to_h[i] += 5; }
5291                                 if (hex_spelling(HEX_RUNESWORD))
5292                                 {
5293                                         if (o_ptr->curse_flags & (TRC_CURSED)) { p_ptr->to_d[i] += 5; p_ptr->dis_to_d[i] += 5; }
5294                                         if (o_ptr->curse_flags & (TRC_HEAVY_CURSE)) { p_ptr->to_d[i] += 7; p_ptr->dis_to_d[i] += 7; }
5295                                         if (o_ptr->curse_flags & (TRC_PERMA_CURSE)) { p_ptr->to_d[i] += 13; p_ptr->dis_to_d[i] += 13; }
5296                                 }
5297                         }
5298                 }
5299                 if (p_ptr->riding)
5300                 {
5301                         if ((o_ptr->tval == TV_POLEARM) && ((o_ptr->sval == SV_LANCE) || (o_ptr->sval == SV_HEAVY_LANCE)))
5302                         {
5303                                 p_ptr->to_h[i] +=15;
5304                                 p_ptr->dis_to_h[i] +=15;
5305                                 p_ptr->to_dd[i] += 2;
5306                         }
5307                         else if (!(have_flag(flgs, TR_RIDING)))
5308                         {
5309                                 int penalty;
5310                                 if ((p_ptr->pclass == CLASS_BEASTMASTER) || (p_ptr->pclass == CLASS_CAVALRY))
5311                                 {
5312                                         penalty = 5;
5313                                 }
5314                                 else
5315                                 {
5316                                         penalty = r_info[m_list[p_ptr->riding].r_idx].level - p_ptr->skill_exp[GINOU_RIDING] / 80;
5317                                         penalty += 30;
5318                                         if (penalty < 30) penalty = 30;
5319                                 }
5320                                 p_ptr->to_h[i] -= penalty;
5321                                 p_ptr->dis_to_h[i] -= penalty;
5322
5323                                 /* Riding weapon */
5324                                 p_ptr->riding_wield[i] = TRUE;
5325                         }
5326                 }
5327         }
5328
5329         if (p_ptr->riding)
5330         {
5331                 int penalty = 0;
5332
5333                 p_ptr->riding_ryoute = FALSE;
5334
5335                 if (p_ptr->ryoute || (empty_hands(FALSE) == EMPTY_HAND_NONE)) p_ptr->riding_ryoute = TRUE;
5336                 else if (p_ptr->pet_extra_flags & PF_RYOUTE)
5337                 {
5338                         switch (p_ptr->pclass)
5339                         {
5340                         case CLASS_MONK:
5341                         case CLASS_FORCETRAINER:
5342                         case CLASS_BERSERKER:
5343                                 if ((empty_hands(FALSE) != EMPTY_HAND_NONE) && !buki_motteruka(INVEN_RARM) && !buki_motteruka(INVEN_LARM))
5344                                         p_ptr->riding_ryoute = TRUE;
5345                                 break;
5346                         }
5347                 }
5348
5349                 if ((p_ptr->pclass == CLASS_BEASTMASTER) || (p_ptr->pclass == CLASS_CAVALRY))
5350                 {
5351                         if (p_ptr->tval_ammo != TV_ARROW) penalty = 5;
5352                 }
5353                 else
5354                 {
5355                         penalty = r_info[m_list[p_ptr->riding].r_idx].level - p_ptr->skill_exp[GINOU_RIDING] / 80;
5356                         penalty += 30;
5357                         if (penalty < 30) penalty = 30;
5358                 }
5359                 if (p_ptr->tval_ammo == TV_BOLT) penalty *= 2;
5360                 p_ptr->to_h_b -= penalty;
5361                 p_ptr->dis_to_h_b -= penalty;
5362         }
5363
5364         /* Different calculation for monks with empty hands */
5365         if (((p_ptr->pclass == CLASS_MONK) || (p_ptr->pclass == CLASS_FORCETRAINER) || (p_ptr->pclass == CLASS_BERSERKER)) &&
5366                 (empty_hands_status & EMPTY_HAND_RARM) && !p_ptr->hidarite)
5367         {
5368                 int blow_base = p_ptr->lev + adj_dex_blow[p_ptr->stat_ind[A_DEX]];
5369                 p_ptr->num_blow[0] = 0;
5370
5371                 if (p_ptr->pclass == CLASS_FORCETRAINER)
5372                 {
5373                         if (blow_base > 18) p_ptr->num_blow[0]++;
5374                         if (blow_base > 31) p_ptr->num_blow[0]++;
5375                         if (blow_base > 44) p_ptr->num_blow[0]++;
5376                         if (blow_base > 58) p_ptr->num_blow[0]++;
5377                         if (p_ptr->magic_num1[0])
5378                         {
5379                                 p_ptr->to_d[0] += (p_ptr->magic_num1[0]/5);
5380                                 p_ptr->dis_to_d[0] += (p_ptr->magic_num1[0]/5);
5381                         }
5382                 }
5383                 else
5384                 {
5385                         if (blow_base > 12) p_ptr->num_blow[0]++;
5386                         if (blow_base > 22) p_ptr->num_blow[0]++;
5387                         if (blow_base > 31) p_ptr->num_blow[0]++;
5388                         if (blow_base > 39) p_ptr->num_blow[0]++;
5389                         if (blow_base > 46) p_ptr->num_blow[0]++;
5390                         if (blow_base > 53) p_ptr->num_blow[0]++;
5391                         if (blow_base > 59) p_ptr->num_blow[0]++;
5392                 }
5393
5394                 if (heavy_armor() && (p_ptr->pclass != CLASS_BERSERKER))
5395                         p_ptr->num_blow[0] /= 2;
5396                 else
5397                 {
5398                         p_ptr->to_h[0] += (p_ptr->lev / 3);
5399                         p_ptr->dis_to_h[0] += (p_ptr->lev / 3);
5400
5401                         p_ptr->to_d[0] += (p_ptr->lev / 6);
5402                         p_ptr->dis_to_d[0] += (p_ptr->lev / 6);
5403                 }
5404
5405                 if (p_ptr->special_defense & KAMAE_BYAKKO)
5406                 {
5407                         p_ptr->to_a -= 40;
5408                         p_ptr->dis_to_a -= 40;
5409                         
5410                 }
5411                 else if (p_ptr->special_defense & KAMAE_SEIRYU)
5412                 {
5413                         p_ptr->to_a -= 50;
5414                         p_ptr->dis_to_a -= 50;
5415                         p_ptr->resist_acid = TRUE;
5416                         p_ptr->resist_fire = TRUE;
5417                         p_ptr->resist_elec = TRUE;
5418                         p_ptr->resist_cold = TRUE;
5419                         p_ptr->resist_pois = TRUE;
5420                         p_ptr->sh_fire = TRUE;
5421                         p_ptr->sh_elec = TRUE;
5422                         p_ptr->sh_cold = TRUE;
5423                         p_ptr->levitation = TRUE;
5424                 }
5425                 else if (p_ptr->special_defense & KAMAE_GENBU)
5426                 {
5427                         p_ptr->to_a += (p_ptr->lev*p_ptr->lev)/50;
5428                         p_ptr->dis_to_a += (p_ptr->lev*p_ptr->lev)/50;
5429                         p_ptr->reflect = TRUE;
5430                         p_ptr->num_blow[0] -= 2;
5431                         if ((p_ptr->pclass == CLASS_MONK) && (p_ptr->lev > 42)) p_ptr->num_blow[0]--;
5432                         if (p_ptr->num_blow[0] < 0) p_ptr->num_blow[0] = 0;
5433                 }
5434                 else if (p_ptr->special_defense & KAMAE_SUZAKU)
5435                 {
5436                         p_ptr->to_h[0] -= (p_ptr->lev / 3);
5437                         p_ptr->to_d[0] -= (p_ptr->lev / 6);
5438
5439                         p_ptr->dis_to_h[0] -= (p_ptr->lev / 3);
5440                         p_ptr->dis_to_d[0] -= (p_ptr->lev / 6);
5441                         p_ptr->num_blow[0] /= 2;
5442                         p_ptr->levitation = TRUE;
5443                 }
5444
5445                 p_ptr->num_blow[0] += 1+extra_blows[0];
5446         }
5447
5448         if (p_ptr->riding) p_ptr->levitation = riding_levitation;
5449
5450         monk_armour_aux = FALSE;
5451
5452         if (heavy_armor())
5453         {
5454                 monk_armour_aux = TRUE;
5455         }
5456
5457         for (i = 0; i < 2; i++)
5458         {
5459                 if (buki_motteruka(INVEN_RARM+i))
5460                 {
5461                         int tval = inventory[INVEN_RARM+i].tval - TV_WEAPON_BEGIN;
5462                         int sval = inventory[INVEN_RARM+i].sval;
5463
5464                         p_ptr->to_h[i] += (p_ptr->weapon_exp[tval][sval] - WEAPON_EXP_BEGINNER) / 200;
5465                         p_ptr->dis_to_h[i] += (p_ptr->weapon_exp[tval][sval] - WEAPON_EXP_BEGINNER) / 200;
5466                         if ((p_ptr->pclass == CLASS_MONK) || (p_ptr->pclass == CLASS_FORCETRAINER))
5467                         {
5468                                 if (!s_info[p_ptr->pclass].w_max[tval][sval])
5469                                 {
5470                                         p_ptr->to_h[i] -= 40;
5471                                         p_ptr->dis_to_h[i] -= 40;
5472                                         p_ptr->icky_wield[i] = TRUE;
5473                                 }
5474                         }
5475                         else if (p_ptr->pclass == CLASS_NINJA)
5476                         {
5477                                 if ((s_info[CLASS_NINJA].w_max[tval][sval] <= WEAPON_EXP_BEGINNER) || (inventory[INVEN_LARM-i].tval == TV_SHIELD))
5478                                 {
5479                                         p_ptr->to_h[i] -= 40;
5480                                         p_ptr->dis_to_h[i] -= 40;
5481                                         p_ptr->icky_wield[i] = TRUE;
5482                                         p_ptr->num_blow[i] /= 2;
5483                                         if (p_ptr->num_blow[i] < 1) p_ptr->num_blow[i] = 1;
5484                                 }
5485                         }
5486
5487                         if (inventory[INVEN_RARM + i].name1 == ART_IRON_BALL) p_ptr->align -= 1000;
5488                 }
5489         }
5490
5491         /* Maximum speed is (+99). (internally it's 110 + 99) */
5492         /* Temporary lightspeed forces to be maximum speed */
5493         if ((p_ptr->lightspeed && !p_ptr->riding) || (new_speed > 209))
5494         {
5495                 new_speed = 209;
5496         }
5497
5498         /* Minimum speed is (-99). (internally it's 110 - 99) */
5499         if (new_speed < 11) new_speed = 11;
5500
5501         /* Display the speed (if needed) */
5502         if (p_ptr->pspeed != (byte)new_speed)
5503         {
5504                 p_ptr->pspeed = (byte)new_speed;
5505                 p_ptr->redraw |= (PR_SPEED);
5506         }
5507
5508         if (yoiyami)
5509         {
5510                 if (p_ptr->to_a > (0 - p_ptr->ac))
5511                         p_ptr->to_a = 0 - p_ptr->ac;
5512                 if (p_ptr->dis_to_a > (0 - p_ptr->dis_ac))
5513                         p_ptr->dis_to_a = 0 - p_ptr->dis_ac;
5514         }
5515
5516         /* Redraw armor (if needed) */
5517         if ((p_ptr->dis_ac != old_dis_ac) || (p_ptr->dis_to_a != old_dis_to_a))
5518         {
5519                 /* Redraw */
5520                 p_ptr->redraw |= (PR_ARMOR);
5521
5522                 /* Window stuff */
5523                 p_ptr->window |= (PW_PLAYER);
5524         }
5525
5526
5527         if (p_ptr->ryoute && !omoi)
5528         {
5529                 int bonus_to_h=0, bonus_to_d=0;
5530                 bonus_to_d = ((int)(adj_str_td[p_ptr->stat_ind[A_STR]]) - 128)/2;
5531                 bonus_to_h = ((int)(adj_str_th[p_ptr->stat_ind[A_STR]]) - 128) + ((int)(adj_dex_th[p_ptr->stat_ind[A_DEX]]) - 128);
5532
5533                 p_ptr->to_h[default_hand] += MAX(bonus_to_h,1);
5534                 p_ptr->dis_to_h[default_hand] += MAX(bonus_to_h,1);
5535                 p_ptr->to_d[default_hand] += MAX(bonus_to_d,1);
5536                 p_ptr->dis_to_d[default_hand] += MAX(bonus_to_d,1);
5537         }
5538
5539         if (((p_ptr->pclass == CLASS_MONK) || (p_ptr->pclass == CLASS_FORCETRAINER) || (p_ptr->pclass == CLASS_BERSERKER)) && (empty_hands(FALSE) == (EMPTY_HAND_RARM | EMPTY_HAND_LARM))) p_ptr->ryoute = FALSE;
5540
5541         /* Affect Skill -- stealth (bonus one) */
5542         p_ptr->skill_stl += 1;
5543
5544         if (IS_TIM_STEALTH()) p_ptr->skill_stl += 99;
5545
5546         /* Affect Skill -- disarming (DEX and INT) */
5547         p_ptr->skill_dis += adj_dex_dis[p_ptr->stat_ind[A_DEX]];
5548         p_ptr->skill_dis += adj_int_dis[p_ptr->stat_ind[A_INT]];
5549
5550         /* Affect Skill -- magic devices (INT) */
5551         p_ptr->skill_dev += adj_int_dev[p_ptr->stat_ind[A_INT]];
5552
5553         /* Affect Skill -- saving throw (WIS) */
5554         p_ptr->skill_sav += adj_wis_sav[p_ptr->stat_ind[A_WIS]];
5555
5556         /* Affect Skill -- digging (STR) */
5557         p_ptr->skill_dig += adj_str_dig[p_ptr->stat_ind[A_STR]];
5558
5559         /* Affect Skill -- disarming (Level, by Class) */
5560         p_ptr->skill_dis += ((cp_ptr->x_dis * p_ptr->lev / 10) + (ap_ptr->a_dis * p_ptr->lev / 50));
5561
5562         /* Affect Skill -- magic devices (Level, by Class) */
5563         p_ptr->skill_dev += ((cp_ptr->x_dev * p_ptr->lev / 10) + (ap_ptr->a_dev * p_ptr->lev / 50));
5564
5565         /* Affect Skill -- saving throw (Level, by Class) */
5566         p_ptr->skill_sav += ((cp_ptr->x_sav * p_ptr->lev / 10) + (ap_ptr->a_sav * p_ptr->lev / 50));
5567
5568         /* Affect Skill -- stealth (Level, by Class) */
5569         p_ptr->skill_stl += (cp_ptr->x_stl * p_ptr->lev / 10);
5570
5571         /* Affect Skill -- search ability (Level, by Class) */
5572         p_ptr->skill_srh += (cp_ptr->x_srh * p_ptr->lev / 10);
5573
5574         /* Affect Skill -- search frequency (Level, by Class) */
5575         p_ptr->skill_fos += (cp_ptr->x_fos * p_ptr->lev / 10);
5576
5577         /* Affect Skill -- combat (normal) (Level, by Class) */
5578         p_ptr->skill_thn += ((cp_ptr->x_thn * p_ptr->lev / 10) + (ap_ptr->a_thn * p_ptr->lev / 50));
5579
5580         /* Affect Skill -- combat (shooting) (Level, by Class) */
5581         p_ptr->skill_thb += ((cp_ptr->x_thb * p_ptr->lev / 10) + (ap_ptr->a_thb * p_ptr->lev / 50));
5582
5583         /* Affect Skill -- combat (throwing) (Level, by Class) */
5584         p_ptr->skill_tht += ((cp_ptr->x_thb * p_ptr->lev / 10) + (ap_ptr->a_thb * p_ptr->lev / 50));
5585
5586
5587         if ((prace_is_(RACE_S_FAIRY)) && (p_ptr->pseikaku != SEIKAKU_SEXY) && (p_ptr->cursed & TRC_AGGRAVATE))
5588         {
5589                 p_ptr->cursed &= ~(TRC_AGGRAVATE);
5590                 p_ptr->skill_stl = MIN(p_ptr->skill_stl - 3, (p_ptr->skill_stl + 2) / 2);
5591         }
5592
5593         /* Limit Skill -- stealth from 0 to 30 */
5594         if (p_ptr->skill_stl > 30) p_ptr->skill_stl = 30;
5595         if (p_ptr->skill_stl < 0) p_ptr->skill_stl = 0;
5596
5597         /* Limit Skill -- digging from 1 up */
5598         if (p_ptr->skill_dig < 1) p_ptr->skill_dig = 1;
5599
5600         if (p_ptr->anti_magic && (p_ptr->skill_sav < (90 + p_ptr->lev))) p_ptr->skill_sav = 90 + p_ptr->lev;
5601
5602         if (p_ptr->tsubureru) p_ptr->skill_sav = 10;
5603
5604         if ((p_ptr->ult_res || p_ptr->resist_magic || p_ptr->magicdef) && (p_ptr->skill_sav < (95 + p_ptr->lev))) p_ptr->skill_sav = 95 + p_ptr->lev;
5605
5606         if (down_saving) p_ptr->skill_sav /= 2;
5607
5608         /* Hack -- Each elemental immunity includes resistance */
5609         if (p_ptr->immune_acid) p_ptr->resist_acid = TRUE;
5610         if (p_ptr->immune_elec) p_ptr->resist_elec = TRUE;
5611         if (p_ptr->immune_fire) p_ptr->resist_fire = TRUE;
5612         if (p_ptr->immune_cold) p_ptr->resist_cold = TRUE;
5613
5614         /* Determine player alignment */
5615         for (i = 0, j = 0; i < 8; i++)
5616         {
5617                 switch (p_ptr->vir_types[i])
5618                 {
5619                 case V_JUSTICE:
5620                         p_ptr->align += p_ptr->virtues[i] * 2;
5621                         break;
5622                 case V_CHANCE:
5623                         /* Do nothing */
5624                         break;
5625                 case V_NATURE:
5626                 case V_HARMONY:
5627                         neutral[j++] = i;
5628                         break;
5629                 case V_UNLIFE:
5630                         p_ptr->align -= p_ptr->virtues[i];
5631                         break;
5632                 default:
5633                         p_ptr->align += p_ptr->virtues[i];
5634                         break;
5635                 }
5636         }
5637
5638         for (i = 0; i < j; i++)
5639         {
5640                 if (p_ptr->align > 0)
5641                 {
5642                         p_ptr->align -= p_ptr->virtues[neutral[i]] / 2;
5643                         if (p_ptr->align < 0) p_ptr->align = 0;
5644                 }
5645                 else if (p_ptr->align < 0)
5646                 {
5647                         p_ptr->align += p_ptr->virtues[neutral[i]] / 2;
5648                         if (p_ptr->align > 0) p_ptr->align = 0;
5649                 }
5650         }
5651
5652         /* Hack -- handle "xtra" mode */
5653         if (character_xtra) return;
5654
5655         /* Take note when "heavy bow" changes */
5656         if (p_ptr->old_heavy_shoot != p_ptr->heavy_shoot)
5657         {
5658                 /* Message */
5659                 if (p_ptr->heavy_shoot)
5660                 {
5661 #ifdef JP
5662                         msg_print("¤³¤ó¤Ê½Å¤¤µÝ¤òÁõÈ÷¤·¤Æ¤¤¤ë¤Î¤ÏÂçÊѤÀ¡£");
5663 #else
5664                         msg_print("You have trouble wielding such a heavy bow.");
5665 #endif
5666
5667                 }
5668                 else if (inventory[INVEN_BOW].k_idx)
5669                 {
5670 #ifdef JP
5671                         msg_print("¤³¤ÎµÝ¤Ê¤éÁõÈ÷¤·¤Æ¤¤¤Æ¤â¿É¤¯¤Ê¤¤¡£");
5672 #else
5673                         msg_print("You have no trouble wielding your bow.");
5674 #endif
5675
5676                 }
5677                 else
5678                 {
5679 #ifdef JP
5680                         msg_print("½Å¤¤µÝ¤òÁõÈ÷¤«¤é¤Ï¤º¤·¤ÆÂΤ¬³Ú¤Ë¤Ê¤Ã¤¿¡£");
5681 #else
5682                         msg_print("You feel relieved to put down your heavy bow.");
5683 #endif
5684
5685                 }
5686
5687                 /* Save it */
5688                 p_ptr->old_heavy_shoot = p_ptr->heavy_shoot;
5689         }
5690
5691         for (i = 0 ; i < 2 ; i++)
5692         {
5693                 /* Take note when "heavy weapon" changes */
5694                 if (p_ptr->old_heavy_wield[i] != p_ptr->heavy_wield[i])
5695                 {
5696                         /* Message */
5697                         if (p_ptr->heavy_wield[i])
5698                         {
5699 #ifdef JP
5700                                 msg_print("¤³¤ó¤Ê½Å¤¤Éð´ï¤òÁõÈ÷¤·¤Æ¤¤¤ë¤Î¤ÏÂçÊѤÀ¡£");
5701 #else
5702                                 msg_print("You have trouble wielding such a heavy weapon.");
5703 #endif
5704
5705                         }
5706                         else if (buki_motteruka(INVEN_RARM+i))
5707                         {
5708 #ifdef JP
5709                                 msg_print("¤³¤ì¤Ê¤éÁõÈ÷¤·¤Æ¤¤¤Æ¤â¿É¤¯¤Ê¤¤¡£");
5710 #else
5711                                 msg_print("You have no trouble wielding your weapon.");
5712 #endif
5713
5714                         }
5715                         else if (p_ptr->heavy_wield[1-i])
5716                         {
5717 #ifdef JP
5718                                 msg_print("¤Þ¤ÀÉð´ï¤¬½Å¤¤¡£");
5719 #else
5720                                 msg_print("You have still trouble wielding a heavy weapon.");
5721 #endif
5722
5723                         }
5724                         else
5725                         {
5726 #ifdef JP
5727                                 msg_print("½Å¤¤Éð´ï¤òÁõÈ÷¤«¤é¤Ï¤º¤·¤ÆÂΤ¬³Ú¤Ë¤Ê¤Ã¤¿¡£");
5728 #else
5729                                 msg_print("You feel relieved to put down your heavy weapon.");
5730 #endif
5731
5732                         }
5733
5734                         /* Save it */
5735                         p_ptr->old_heavy_wield[i] = p_ptr->heavy_wield[i];
5736                 }
5737
5738                 /* Take note when "heavy weapon" changes */
5739                 if (p_ptr->old_riding_wield[i] != p_ptr->riding_wield[i])
5740                 {
5741                         /* Message */
5742                         if (p_ptr->riding_wield[i])
5743                         {
5744 #ifdef JP
5745                                 msg_print("¤³¤ÎÉð´ï¤Ï¾èÇÏÃæ¤Ë»È¤¦¤Ë¤Ï¤à¤«¤Ê¤¤¤è¤¦¤À¡£");
5746 #else
5747                                 msg_print("This weapon is not suitable for use while riding.");
5748 #endif
5749
5750                         }
5751                         else if (!p_ptr->riding)
5752                         {
5753 #ifdef JP
5754                                 msg_print("¤³¤ÎÉð´ï¤ÏÅÌÊâ¤Ç»È¤¤¤ä¤¹¤¤¡£");
5755 #else
5756                                 msg_print("This weapon was not suitable for use while riding.");
5757 #endif
5758
5759                         }
5760                         else if (buki_motteruka(INVEN_RARM+i))
5761                         {
5762 #ifdef JP
5763                                 msg_print("¤³¤ì¤Ê¤é¾èÇÏÃæ¤Ë¤Ô¤Ã¤¿¤ê¤À¡£");
5764 #else
5765                                 msg_print("This weapon is suitable for use while riding.");
5766 #endif
5767
5768                         }
5769                         /* Save it */
5770                         p_ptr->old_riding_wield[i] = p_ptr->riding_wield[i];
5771                 }
5772
5773                 /* Take note when "illegal weapon" changes */
5774                 if (p_ptr->old_icky_wield[i] != p_ptr->icky_wield[i])
5775                 {
5776                         /* Message */
5777                         if (p_ptr->icky_wield[i])
5778                         {
5779 #ifdef JP
5780                                 msg_print("º£¤ÎÁõÈ÷¤Ï¤É¤¦¤â¼«Ê¬¤Ë¤Õ¤µ¤ï¤·¤¯¤Ê¤¤µ¤¤¬¤¹¤ë¡£");
5781 #else
5782                                 msg_print("You do not feel comfortable with your weapon.");
5783 #endif
5784                                 if (hack_mind)
5785                                 {
5786                                         chg_virtue(V_FAITH, -1);
5787                                 }
5788                         }
5789                         else if (buki_motteruka(INVEN_RARM+i))
5790                         {
5791 #ifdef JP
5792                                 msg_print("º£¤ÎÁõÈ÷¤Ï¼«Ê¬¤Ë¤Õ¤µ¤ï¤·¤¤µ¤¤¬¤¹¤ë¡£");
5793 #else
5794                                 msg_print("You feel comfortable with your weapon.");
5795 #endif
5796
5797                         }
5798                         else
5799                         {
5800 #ifdef JP
5801                                 msg_print("ÁõÈ÷¤ò¤Ï¤º¤·¤¿¤é¿ïʬ¤Èµ¤¤¬³Ú¤Ë¤Ê¤Ã¤¿¡£");
5802 #else
5803                                 msg_print("You feel more comfortable after removing your weapon.");
5804 #endif
5805
5806                         }
5807
5808                         /* Save it */
5809                         p_ptr->old_icky_wield[i] = p_ptr->icky_wield[i];
5810                 }
5811         }
5812
5813         if (p_ptr->riding && (p_ptr->old_riding_ryoute != p_ptr->riding_ryoute))
5814         {
5815                 /* Message */
5816                 if (p_ptr->riding_ryoute)
5817                 {
5818 #ifdef JP
5819                         msg_format("%sÇϤòÁà¤ì¤Ê¤¤¡£", (empty_hands(FALSE) == EMPTY_HAND_NONE) ? "ξ¼ê¤¬¤Õ¤µ¤¬¤Ã¤Æ¤¤¤Æ" : "");
5820 #else
5821                         msg_print("You are using both hand for fighting, and you can't control a riding pet.");
5822 #endif
5823                 }
5824                 else
5825                 {
5826 #ifdef JP
5827                         msg_format("%sÇϤòÁà¤ì¤ë¤è¤¦¤Ë¤Ê¤Ã¤¿¡£", (empty_hands(FALSE) == EMPTY_HAND_NONE) ? "¼ê¤¬¶õ¤¤¤Æ" : "");
5828 #else
5829                         msg_print("You began to control riding pet with one hand.");
5830 #endif
5831                 }
5832
5833                 p_ptr->old_riding_ryoute = p_ptr->riding_ryoute;
5834         }
5835
5836         if (((p_ptr->pclass == CLASS_MONK) || (p_ptr->pclass == CLASS_FORCETRAINER) || (p_ptr->pclass == CLASS_NINJA)) && (monk_armour_aux != monk_notify_aux))
5837         {
5838                 if (heavy_armor())
5839                 {
5840 #ifdef JP
5841 msg_print("ÁõÈ÷¤¬½Å¤¯¤Æ¥Ð¥é¥ó¥¹¤ò¼è¤ì¤Ê¤¤¡£");
5842 #else
5843                         msg_print("The weight of your armor disrupts your balance.");
5844 #endif
5845
5846                         if (hack_mind)
5847                         {
5848                                 chg_virtue(V_HARMONY, -1);
5849                         }
5850                 }
5851                 else
5852 #ifdef JP
5853 msg_print("¥Ð¥é¥ó¥¹¤¬¤È¤ì¤ë¤è¤¦¤Ë¤Ê¤Ã¤¿¡£");
5854 #else
5855                         msg_print("You regain your balance.");
5856 #endif
5857
5858                 monk_notify_aux = monk_armour_aux;
5859         }
5860
5861         for (i = 0; i < INVEN_PACK; i++)
5862         {
5863 #if 0
5864                 if ((inventory[i].tval == TV_SORCERY_BOOK) && (inventory[i].sval == 2)) have_dd_s = TRUE;
5865                 if ((inventory[i].tval == TV_TRUMP_BOOK) && (inventory[i].sval == 1)) have_dd_t = TRUE;
5866 #endif
5867                 if ((inventory[i].tval == TV_NATURE_BOOK) && (inventory[i].sval == 2)) have_sw = TRUE;
5868                 if ((inventory[i].tval == TV_CRAFT_BOOK) && (inventory[i].sval == 2)) have_kabe = TRUE;
5869         }
5870         for (this_o_idx = cave[py][px].o_idx; this_o_idx; this_o_idx = next_o_idx)
5871         {
5872                 object_type *o_ptr;
5873
5874                 /* Acquire object */
5875                 o_ptr = &o_list[this_o_idx];
5876
5877                 /* Acquire next object */
5878                 next_o_idx = o_ptr->next_o_idx;
5879
5880 #if 0
5881                 if ((o_ptr->tval == TV_SORCERY_BOOK) && (o_ptr->sval == 3)) have_dd_s = TRUE;
5882                 if ((o_ptr->tval == TV_TRUMP_BOOK) && (o_ptr->sval == 1)) have_dd_t = TRUE;
5883 #endif
5884                 if ((o_ptr->tval == TV_NATURE_BOOK) && (o_ptr->sval == 2)) have_sw = TRUE;
5885                 if ((o_ptr->tval == TV_CRAFT_BOOK) && (o_ptr->sval == 2)) have_kabe = TRUE;
5886         }
5887
5888         if (p_ptr->pass_wall && !p_ptr->kill_wall) p_ptr->no_flowed = TRUE;
5889 #if 0
5890         if (have_dd_s && ((p_ptr->realm1 == REALM_SORCERY) || (p_ptr->realm2 == REALM_SORCERY) || (p_ptr->pclass == CLASS_SORCERER)))
5891         {
5892                 const magic_type *s_ptr = &mp_ptr->info[REALM_SORCERY-1][SPELL_DD_S];
5893                 if (p_ptr->lev >= s_ptr->slevel) p_ptr->no_flowed = TRUE;
5894         }
5895
5896         if (have_dd_t && ((p_ptr->realm1 == REALM_TRUMP) || (p_ptr->realm2 == REALM_TRUMP) || (p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE)))
5897         {
5898                 const magic_type *s_ptr = &mp_ptr->info[REALM_TRUMP-1][SPELL_DD_T];
5899                 if (p_ptr->lev >= s_ptr->slevel) p_ptr->no_flowed = TRUE;
5900         }
5901 #endif
5902         if (have_sw && ((p_ptr->realm1 == REALM_NATURE) || (p_ptr->realm2 == REALM_NATURE) || (p_ptr->pclass == CLASS_SORCERER)))
5903         {
5904                 const magic_type *s_ptr = &mp_ptr->info[REALM_NATURE-1][SPELL_SW];
5905                 if (p_ptr->lev >= s_ptr->slevel) p_ptr->no_flowed = TRUE;
5906         }
5907
5908         if (have_kabe && ((p_ptr->realm1 == REALM_CRAFT) || (p_ptr->realm2 == REALM_CRAFT) || (p_ptr->pclass == CLASS_SORCERER)))
5909         {
5910                 const magic_type *s_ptr = &mp_ptr->info[REALM_CRAFT-1][SPELL_KABE];
5911                 if (p_ptr->lev >= s_ptr->slevel) p_ptr->no_flowed = TRUE;
5912         }
5913 }
5914
5915
5916
5917 /*
5918  * Handle "p_ptr->notice"
5919  */
5920 void notice_stuff(void)
5921 {
5922         /* Notice stuff */
5923         if (!p_ptr->notice) return;
5924
5925
5926         /* Actually do auto-destroy */
5927         if (p_ptr->notice & (PN_AUTODESTROY))
5928         {
5929                 p_ptr->notice &= ~(PN_AUTODESTROY);
5930                 autopick_delayed_alter();
5931         }
5932
5933         /* Combine the pack */
5934         if (p_ptr->notice & (PN_COMBINE))
5935         {
5936                 p_ptr->notice &= ~(PN_COMBINE);
5937                 combine_pack();
5938         }
5939
5940         /* Reorder the pack */
5941         if (p_ptr->notice & (PN_REORDER))
5942         {
5943                 p_ptr->notice &= ~(PN_REORDER);
5944                 reorder_pack();
5945         }
5946 }
5947
5948
5949 /*
5950  * Handle "p_ptr->update"
5951  */
5952 void update_stuff(void)
5953 {
5954         /* Update stuff */
5955         if (!p_ptr->update) return;
5956
5957
5958         if (p_ptr->update & (PU_BONUS))
5959         {
5960                 p_ptr->update &= ~(PU_BONUS);
5961                 calc_bonuses();
5962         }
5963
5964         if (p_ptr->update & (PU_TORCH))
5965         {
5966                 p_ptr->update &= ~(PU_TORCH);
5967                 calc_torch();
5968         }
5969
5970         if (p_ptr->update & (PU_HP))
5971         {
5972                 p_ptr->update &= ~(PU_HP);
5973                 calc_hitpoints();
5974         }
5975
5976         if (p_ptr->update & (PU_MANA))
5977         {
5978                 p_ptr->update &= ~(PU_MANA);
5979                 calc_mana();
5980         }
5981
5982         if (p_ptr->update & (PU_SPELLS))
5983         {
5984                 p_ptr->update &= ~(PU_SPELLS);
5985                 calc_spells();
5986         }
5987
5988
5989         /* Character is not ready yet, no screen updates */
5990         if (!character_generated) return;
5991
5992
5993         /* Character is in "icky" mode, no screen updates */
5994         if (character_icky) return;
5995
5996
5997         if (p_ptr->update & (PU_UN_LITE))
5998         {
5999                 p_ptr->update &= ~(PU_UN_LITE);
6000                 forget_lite();
6001         }
6002
6003         if (p_ptr->update & (PU_UN_VIEW))
6004         {
6005                 p_ptr->update &= ~(PU_UN_VIEW);
6006                 forget_view();
6007         }
6008
6009         if (p_ptr->update & (PU_VIEW))
6010         {
6011                 p_ptr->update &= ~(PU_VIEW);
6012                 update_view();
6013         }
6014
6015         if (p_ptr->update & (PU_LITE))
6016         {
6017                 p_ptr->update &= ~(PU_LITE);
6018                 update_lite();
6019         }
6020
6021
6022         if (p_ptr->update & (PU_FLOW))
6023         {
6024                 p_ptr->update &= ~(PU_FLOW);
6025                 update_flow();
6026         }
6027
6028         if (p_ptr->update & (PU_DISTANCE))
6029         {
6030                 p_ptr->update &= ~(PU_DISTANCE);
6031
6032                 /* Still need to call update_monsters(FALSE) after update_mon_lite() */ 
6033                 /* p_ptr->update &= ~(PU_MONSTERS); */
6034
6035                 update_monsters(TRUE);
6036         }
6037
6038         if (p_ptr->update & (PU_MON_LITE))
6039         {
6040                 p_ptr->update &= ~(PU_MON_LITE);
6041                 update_mon_lite();
6042         }
6043
6044         /*
6045          * Mega-Hack -- Delayed visual update
6046          * Only used if update_view(), update_lite() or update_mon_lite() was called
6047          */
6048         if (p_ptr->update & (PU_DELAY_VIS))
6049         {
6050                 p_ptr->update &= ~(PU_DELAY_VIS);
6051                 delayed_visual_update();
6052         }
6053
6054         if (p_ptr->update & (PU_MONSTERS))
6055         {
6056                 p_ptr->update &= ~(PU_MONSTERS);
6057                 update_monsters(FALSE);
6058         }
6059 }
6060
6061
6062 /*
6063  * Handle "p_ptr->redraw"
6064  */
6065 void redraw_stuff(void)
6066 {
6067         /* Redraw stuff */
6068         if (!p_ptr->redraw) return;
6069
6070
6071         /* Character is not ready yet, no screen updates */
6072         if (!character_generated) return;
6073
6074
6075         /* Character is in "icky" mode, no screen updates */
6076         if (character_icky) return;
6077
6078
6079
6080         /* Hack -- clear the screen */
6081         if (p_ptr->redraw & (PR_WIPE))
6082         {
6083                 p_ptr->redraw &= ~(PR_WIPE);
6084                 msg_print(NULL);
6085                 Term_clear();
6086         }
6087
6088
6089         if (p_ptr->redraw & (PR_MAP))
6090         {
6091                 p_ptr->redraw &= ~(PR_MAP);
6092                 prt_map();
6093         }
6094
6095
6096         if (p_ptr->redraw & (PR_BASIC))
6097         {
6098                 p_ptr->redraw &= ~(PR_BASIC);
6099                 p_ptr->redraw &= ~(PR_MISC | PR_TITLE | PR_STATS);
6100                 p_ptr->redraw &= ~(PR_LEV | PR_EXP | PR_GOLD);
6101                 p_ptr->redraw &= ~(PR_ARMOR | PR_HP | PR_MANA);
6102                 p_ptr->redraw &= ~(PR_DEPTH | PR_HEALTH | PR_UHEALTH);
6103                 prt_frame_basic();
6104                 prt_time();
6105                 prt_dungeon();
6106         }
6107
6108         if (p_ptr->redraw & (PR_EQUIPPY))
6109         {
6110                 p_ptr->redraw &= ~(PR_EQUIPPY);
6111                 print_equippy(); /* To draw / delete equippy chars */
6112         }
6113
6114         if (p_ptr->redraw & (PR_MISC))
6115         {
6116                 p_ptr->redraw &= ~(PR_MISC);
6117                 prt_field(rp_ptr->title, ROW_RACE, COL_RACE);
6118 /*              prt_field(cp_ptr->title, ROW_CLASS, COL_CLASS); */
6119
6120         }
6121
6122         if (p_ptr->redraw & (PR_TITLE))
6123         {
6124                 p_ptr->redraw &= ~(PR_TITLE);
6125                 prt_title();
6126         }
6127
6128         if (p_ptr->redraw & (PR_LEV))
6129         {
6130                 p_ptr->redraw &= ~(PR_LEV);
6131                 prt_level();
6132         }
6133
6134         if (p_ptr->redraw & (PR_EXP))
6135         {
6136                 p_ptr->redraw &= ~(PR_EXP);
6137                 prt_exp();
6138         }
6139
6140         if (p_ptr->redraw & (PR_STATS))
6141         {
6142                 p_ptr->redraw &= ~(PR_STATS);
6143                 prt_stat(A_STR);
6144                 prt_stat(A_INT);
6145                 prt_stat(A_WIS);
6146                 prt_stat(A_DEX);
6147                 prt_stat(A_CON);
6148                 prt_stat(A_CHR);
6149         }
6150
6151         if (p_ptr->redraw & (PR_STATUS))
6152         {
6153                 p_ptr->redraw &= ~(PR_STATUS);
6154                 prt_status();
6155         }
6156
6157         if (p_ptr->redraw & (PR_ARMOR))
6158         {
6159                 p_ptr->redraw &= ~(PR_ARMOR);
6160                 prt_ac();
6161         }
6162
6163         if (p_ptr->redraw & (PR_HP))
6164         {
6165                 p_ptr->redraw &= ~(PR_HP);
6166                 prt_hp();
6167         }
6168
6169         if (p_ptr->redraw & (PR_MANA))
6170         {
6171                 p_ptr->redraw &= ~(PR_MANA);
6172                 prt_sp();
6173         }
6174
6175         if (p_ptr->redraw & (PR_GOLD))
6176         {
6177                 p_ptr->redraw &= ~(PR_GOLD);
6178                 prt_gold();
6179         }
6180
6181         if (p_ptr->redraw & (PR_DEPTH))
6182         {
6183                 p_ptr->redraw &= ~(PR_DEPTH);
6184                 prt_depth();
6185         }
6186
6187         if (p_ptr->redraw & (PR_HEALTH))
6188         {
6189                 p_ptr->redraw &= ~(PR_HEALTH);
6190                 health_redraw(FALSE);
6191         }
6192
6193         if (p_ptr->redraw & (PR_UHEALTH))
6194         {
6195                 p_ptr->redraw &= ~(PR_UHEALTH);
6196                 health_redraw(TRUE);
6197         }
6198
6199
6200         if (p_ptr->redraw & (PR_EXTRA))
6201         {
6202                 p_ptr->redraw &= ~(PR_EXTRA);
6203                 p_ptr->redraw &= ~(PR_CUT | PR_STUN);
6204                 p_ptr->redraw &= ~(PR_HUNGER);
6205                 p_ptr->redraw &= ~(PR_STATE | PR_SPEED | PR_STUDY | PR_IMITATION | PR_STATUS);
6206                 prt_frame_extra();
6207         }
6208
6209         if (p_ptr->redraw & (PR_CUT))
6210         {
6211                 p_ptr->redraw &= ~(PR_CUT);
6212                 prt_cut();
6213         }
6214
6215         if (p_ptr->redraw & (PR_STUN))
6216         {
6217                 p_ptr->redraw &= ~(PR_STUN);
6218                 prt_stun();
6219         }
6220
6221         if (p_ptr->redraw & (PR_HUNGER))
6222         {
6223                 p_ptr->redraw &= ~(PR_HUNGER);
6224                 prt_hunger();
6225         }
6226
6227         if (p_ptr->redraw & (PR_STATE))
6228         {
6229                 p_ptr->redraw &= ~(PR_STATE);
6230                 prt_state();
6231         }
6232
6233         if (p_ptr->redraw & (PR_SPEED))
6234         {
6235                 p_ptr->redraw &= ~(PR_SPEED);
6236                 prt_speed();
6237         }
6238
6239         if (p_ptr->pclass == CLASS_IMITATOR)
6240         {
6241                 if (p_ptr->redraw & (PR_IMITATION))
6242                 {
6243                         p_ptr->redraw &= ~(PR_IMITATION);
6244                         prt_imitation();
6245                 }
6246         }
6247         else if (p_ptr->redraw & (PR_STUDY))
6248         {
6249                 p_ptr->redraw &= ~(PR_STUDY);
6250                 prt_study();
6251         }
6252 }
6253
6254
6255 /*
6256  * Handle "p_ptr->window"
6257  */
6258 void window_stuff(void)
6259 {
6260         int j;
6261
6262         u32b mask = 0L;
6263
6264
6265         /* Nothing to do */
6266         if (!p_ptr->window) return;
6267
6268         /* Scan windows */
6269         for (j = 0; j < 8; j++)
6270         {
6271                 /* Save usable flags */
6272                 if (angband_term[j]) mask |= window_flag[j];
6273         }
6274
6275         /* Apply usable flags */
6276         p_ptr->window &= mask;
6277
6278         /* Nothing to do */
6279         if (!p_ptr->window) return;
6280
6281
6282         /* Display inventory */
6283         if (p_ptr->window & (PW_INVEN))
6284         {
6285                 p_ptr->window &= ~(PW_INVEN);
6286                 fix_inven();
6287         }
6288
6289         /* Display equipment */
6290         if (p_ptr->window & (PW_EQUIP))
6291         {
6292                 p_ptr->window &= ~(PW_EQUIP);
6293                 fix_equip();
6294         }
6295
6296         /* Display spell list */
6297         if (p_ptr->window & (PW_SPELL))
6298         {
6299                 p_ptr->window &= ~(PW_SPELL);
6300                 fix_spell();
6301         }
6302
6303         /* Display player */
6304         if (p_ptr->window & (PW_PLAYER))
6305         {
6306                 p_ptr->window &= ~(PW_PLAYER);
6307                 fix_player();
6308         }
6309         
6310         /* Display monster list */
6311         if (p_ptr->window & (PW_MONSTER_LIST))
6312         {
6313                 p_ptr->window &= ~(PW_MONSTER_LIST);
6314                 fix_monster_list();
6315         }
6316         
6317         /* Display overhead view */
6318         if (p_ptr->window & (PW_MESSAGE))
6319         {
6320                 p_ptr->window &= ~(PW_MESSAGE);
6321                 fix_message();
6322         }
6323
6324         /* Display overhead view */
6325         if (p_ptr->window & (PW_OVERHEAD))
6326         {
6327                 p_ptr->window &= ~(PW_OVERHEAD);
6328                 fix_overhead();
6329         }
6330
6331         /* Display overhead view */
6332         if (p_ptr->window & (PW_DUNGEON))
6333         {
6334                 p_ptr->window &= ~(PW_DUNGEON);
6335                 fix_dungeon();
6336         }
6337
6338         /* Display monster recall */
6339         if (p_ptr->window & (PW_MONSTER))
6340         {
6341                 p_ptr->window &= ~(PW_MONSTER);
6342                 fix_monster();
6343         }
6344
6345         /* Display object recall */
6346         if (p_ptr->window & (PW_OBJECT))
6347         {
6348                 p_ptr->window &= ~(PW_OBJECT);
6349                 fix_object();
6350         }
6351 }
6352
6353
6354 /*
6355  * Handle "p_ptr->update" and "p_ptr->redraw" and "p_ptr->window"
6356  */
6357 void handle_stuff(void)
6358 {
6359         /* Update stuff */
6360         if (p_ptr->update) update_stuff();
6361
6362         /* Redraw stuff */
6363         if (p_ptr->redraw) redraw_stuff();
6364
6365         /* Window stuff */
6366         if (p_ptr->window) window_stuff();
6367 }
6368
6369
6370 s16b empty_hands(bool riding_control)
6371 {
6372         s16b status = EMPTY_HAND_NONE;
6373
6374         if (!inventory[INVEN_RARM].k_idx) status |= EMPTY_HAND_RARM;
6375         if (!inventory[INVEN_LARM].k_idx) status |= EMPTY_HAND_LARM;
6376
6377         if (riding_control && (status != EMPTY_HAND_NONE) && p_ptr->riding && !(p_ptr->pet_extra_flags & PF_RYOUTE))
6378         {
6379                 if (status & EMPTY_HAND_LARM) status &= ~(EMPTY_HAND_LARM);
6380                 else if (status & EMPTY_HAND_RARM) status &= ~(EMPTY_HAND_RARM);
6381         }
6382
6383         return status;
6384 }
6385
6386
6387 bool heavy_armor(void)
6388 {
6389         u16b monk_arm_wgt = 0;
6390
6391         if ((p_ptr->pclass != CLASS_MONK) && (p_ptr->pclass != CLASS_FORCETRAINER) && (p_ptr->pclass != CLASS_NINJA)) return FALSE;
6392
6393         /* Weight the armor */
6394         if(inventory[INVEN_RARM].tval > TV_SWORD) monk_arm_wgt += inventory[INVEN_RARM].weight;
6395         if(inventory[INVEN_LARM].tval > TV_SWORD) monk_arm_wgt += inventory[INVEN_LARM].weight;
6396         monk_arm_wgt += inventory[INVEN_BODY].weight;
6397         monk_arm_wgt += inventory[INVEN_HEAD].weight;
6398         monk_arm_wgt += inventory[INVEN_OUTER].weight;
6399         monk_arm_wgt += inventory[INVEN_HANDS].weight;
6400         monk_arm_wgt += inventory[INVEN_FEET].weight;
6401
6402         return (monk_arm_wgt > (100 + (p_ptr->lev * 4)));
6403 }
6404
6405 void update_playtime(void)
6406 {
6407         /* Check if the game has started */
6408         if (start_time != 0)
6409         {
6410                 u32b tmp = time(NULL);
6411                 playtime += (tmp - start_time);
6412                 start_time = tmp;
6413         }
6414 }