OSDN Git Service

refactor compare_weapon_aux
[hengband/hengband.git] / src / types.h
1 /* File: types.h */
2
3 /*
4  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
5  *
6  * This software may be copied and distributed for educational, research,
7  * and not for profit purposes provided that this copyright and statement
8  * are included in all such copies.  Other copyrights may also apply.
9  */
10
11 /* Purpose: global type declarations */
12
13
14 /*
15  * This file should ONLY be included by "angband.h"
16  */
17
18 /*
19  * Note that "char" may or may not be signed, and that "signed char"
20  * may or may not work on all machines.  So always use "s16b" or "s32b"
21  * for signed values.  Also, note that unsigned values cause math problems
22  * in many cases, so try to only use "u16b" and "u32b" for "bit flags",
23  * unless you really need the extra bit of information, or you really
24  * need to restrict yourself to a single byte for storage reasons.
25  *
26  * Also, if possible, attempt to restrict yourself to sub-fields of
27  * known size (use "s16b" or "s32b" instead of "int", and "byte" instead
28  * of "bool"), and attempt to align all fields along four-byte words, to
29  * optimize storage issues on 32-bit machines.  Also, avoid "bit flags"
30  * since these increase the code size and slow down execution.  When
31  * you need to store bit flags, use one byte per flag, or, where space
32  * is an issue, use a "byte" or "u16b" or "u32b", and add special code
33  * to access the various bit flags.
34  *
35  * Many of these structures were developed to reduce the number of global
36  * variables, facilitate structured program design, allow the use of ascii
37  * template files, simplify access to indexed data, or facilitate efficient
38  * clearing of many variables at once.
39  *
40  * Certain data is saved in multiple places for efficient access, currently,
41  * this includes the tval/sval/weight fields in "object_type", various fields
42  * in "header_type", and the "m_idx" and "o_idx" fields in "cave_type".  All
43  * of these could be removed, but this would, in general, slow down the game
44  * and increase the complexity of the code.
45  */
46
47
48
49
50
51 /*
52  * Feature state structure
53  *
54  * - Action (FF_*)
55  * - Result (f_info ID)
56  */
57 typedef struct feature_state feature_state;
58
59 struct feature_state
60 {
61         byte action;
62         s16b result;
63 };
64
65
66 /*
67  * Information about terrain "features"
68  */
69
70 typedef struct feature_type feature_type;
71
72 struct feature_type
73 {
74         u32b name;                /* Name (offset) */
75         u32b text;                /* Text (offset) */
76         s16b tag;                 /* Tag (offset) */
77
78         s16b mimic;               /* Feature to mimic */
79
80         u32b flags[FF_FLAG_SIZE]; /* Flags */
81
82         u16b priority;            /* Map priority */
83         s16b destroyed;           /* Default destroyed state */
84
85         feature_state state[MAX_FEAT_STATES];
86
87         byte subtype;
88         byte power;
89
90         byte d_attr[F_LIT_MAX];   /* Default feature attribute */
91         byte d_char[F_LIT_MAX];   /* Default feature character */
92
93         byte x_attr[F_LIT_MAX];   /* Desired feature attribute */
94         byte x_char[F_LIT_MAX];   /* Desired feature character */
95 };
96
97
98 /*
99  * Information about object "kinds", including player knowledge.
100  *
101  * Only "aware" and "tried" are saved in the savefile
102  */
103
104 typedef struct object_kind object_kind;
105
106 struct object_kind
107 {
108         u32b name;                      /* Name (offset) */
109         u32b text;                      /* Text (offset) */
110         u32b flavor_name;               /* Flavor name (offset) */
111
112         byte tval;                      /* Object type */
113         byte sval;                      /* Object sub type */
114
115         s16b pval;                      /* Object extra info */
116
117         s16b to_h;                      /* Bonus to hit */
118         s16b to_d;                      /* Bonus to damage */
119         s16b to_a;                      /* Bonus to armor */
120
121         s16b ac;                        /* Base armor */
122
123         byte dd, ds;            /* Damage dice/sides */
124
125         s16b weight;            /* Weight */
126
127         s32b cost;                      /* Object "base cost" */
128
129         u32b flags[TR_FLAG_SIZE];       /* Flags */
130
131         u32b gen_flags;         /* flags for generate */
132
133         byte locale[4];         /* Allocation level(s) */
134         byte chance[4];         /* Allocation chance(s) */
135
136         byte level;                     /* Level */
137         byte extra;                     /* Something */
138
139
140         byte d_attr;            /* Default object attribute */
141         byte d_char;            /* Default object character */
142
143
144         byte x_attr;            /* Desired object attribute */
145         byte x_char;            /* Desired object character */
146
147
148         s16b flavor;            /* Special object flavor (or zero) */
149
150         bool easy_know;         /* This object is always known (if aware) */
151
152
153         bool aware;                     /* The player is "aware" of the item's effects */
154
155         bool tried;                     /* The player has "tried" one of the items */
156
157         byte act_idx;           /* Activative ability index */
158 };
159
160
161
162 /*
163  * Information about "artifacts".
164  *
165  * Note that the save-file only writes "cur_num" to the savefile.
166  *
167  * Note that "max_num" is always "1" (if that artifact "exists")
168  */
169
170 typedef struct artifact_type artifact_type;
171
172 struct artifact_type
173 {
174         u32b name;                      /* Name (offset) */
175         u32b text;                      /* Text (offset) */
176
177         byte tval;                      /* Artifact type */
178         byte sval;                      /* Artifact sub type */
179
180         s16b pval;                      /* Artifact extra info */
181
182         s16b to_h;                      /* Bonus to hit */
183         s16b to_d;                      /* Bonus to damage */
184         s16b to_a;                      /* Bonus to armor */
185
186         s16b ac;                        /* Base armor */
187
188         byte dd, ds;            /* Damage when hits */
189
190         s16b weight;            /* Weight */
191
192         s32b cost;                      /* Artifact "cost" */
193
194         u32b flags[TR_FLAG_SIZE];       /* Artifact Flags */
195
196         u32b gen_flags;         /* flags for generate */
197
198         byte level;                     /* Artifact level */
199         byte rarity;            /* Artifact rarity */
200
201         byte cur_num;           /* Number created (0 or 1) */
202         byte max_num;           /* Unused (should be "1") */
203
204         s16b floor_id;          /* Leaved on this location last time */
205
206         byte act_idx;           /* Activative ability index */
207 };
208
209
210 /*
211  * Information about "ego-items".
212  */
213
214 typedef struct ego_item_type ego_item_type;
215
216 struct ego_item_type
217 {
218         u32b name;                      /* Name (offset) */
219         u32b text;                      /* Text (offset) */
220
221         byte slot;                      /* Standard slot value */
222         byte rating;            /* Rating boost */
223
224         byte level;                     /* Minimum level */
225         byte rarity;            /* Object rarity */
226
227         byte max_to_h;          /* Maximum to-hit bonus */
228         byte max_to_d;          /* Maximum to-dam bonus */
229         byte max_to_a;          /* Maximum to-ac bonus */
230
231         byte max_pval;          /* Maximum pval */
232
233         s32b cost;                      /* Ego-item "cost" */
234
235         u32b flags[TR_FLAG_SIZE];       /* Ego-Item Flags */
236
237         u32b gen_flags;         /* flags for generate */
238
239         byte act_idx;           /* Activative ability index */
240 };
241
242
243
244
245 /*
246  * Monster blow structure
247  *
248  *      - Method (RBM_*)
249  *      - Effect (RBE_*)
250  *      - Damage Dice
251  *      - Damage Sides
252  */
253
254 typedef struct monster_blow monster_blow;
255
256 struct monster_blow
257 {
258         byte method;
259         byte effect;
260         byte d_dice;
261         byte d_side;
262 };
263
264
265 typedef struct mbe_info_type mbe_info_type;
266
267 struct mbe_info_type
268 {
269         int power;        /* The attack "power" */
270         int explode_type; /* Explosion effect */
271 };
272
273
274 /*
275  * Monster "race" information, including racial memories
276  *
277  * Note that "d_attr" and "d_char" are used for MORE than "visual" stuff.
278  *
279  * Note that "x_attr" and "x_char" are used ONLY for "visual" stuff.
280  *
281  * Note that "cur_num" (and "max_num") represent the number of monsters
282  * of the given race currently on (and allowed on) the current level.
283  * This information yields the "dead" flag for Unique monsters.
284  *
285  * Note that "max_num" is reset when a new player is created.
286  * Note that "cur_num" is reset when a new level is created.
287  *
288  * Note that several of these fields, related to "recall", can be
289  * scrapped if space becomes an issue, resulting in less "complete"
290  * monster recall (no knowledge of spells, etc).  All of the "recall"
291  * fields have a special prefix to aid in searching for them.
292  */
293
294
295 typedef struct monster_race monster_race;
296
297 struct monster_race
298 {
299         u32b name;                              /* Name (offset) */
300 #ifdef JP
301         u32b E_name;                    /* ±Ñ¸ì̾ (offset) */
302 #endif
303         u32b text;                              /* Text (offset) */
304
305         byte hdice;                             /* Creatures hit dice count */
306         byte hside;                             /* Creatures hit dice sides */
307
308         s16b ac;                                /* Armour Class */
309
310         s16b sleep;                             /* Inactive counter (base) */
311         byte aaf;                               /* Area affect radius (1-100) */
312         byte speed;                             /* Speed (normally 110) */
313
314         s32b mexp;                              /* Exp value for kill */
315
316         s16b extra;                             /* Unused (for now) */
317
318         byte freq_spell;                /* Spell frequency */
319
320         u32b flags1;                    /* Flags 1 (general) */
321         u32b flags2;                    /* Flags 2 (abilities) */
322         u32b flags3;                    /* Flags 3 (race/resist) */
323         u32b flags4;                    /* Flags 4 (inate/breath) */
324         u32b flags5;                    /* Flags 5 (normal spells) */
325         u32b flags6;                    /* Flags 6 (special spells) */
326         u32b flags7;                    /* Flags 7 (movement related abilities) */
327         u32b flags8;                    /* Flags 8 (wilderness info) */
328         u32b flags9;                    /* Flags 9 (drops info) */
329         u32b flagsr;                    /* Flags R (resistances info) */
330
331         monster_blow blow[4];   /* Up to four blows per round */
332
333         s16b next_r_idx;
334         u32b next_exp;
335
336         byte level;                             /* Level of creature */
337         byte rarity;                    /* Rarity of creature */
338
339
340         byte d_attr;                    /* Default monster attribute */
341         byte d_char;                    /* Default monster character */
342
343
344         byte x_attr;                    /* Desired monster attribute */
345         byte x_char;                    /* Desired monster character */
346
347
348         byte max_num;                   /* Maximum population allowed per level */
349
350         byte cur_num;                   /* Monster population on current level */
351
352         s16b floor_id;                  /* Location of unique monster */
353
354
355         s16b r_sights;                  /* Count sightings of this monster */
356         s16b r_deaths;                  /* Count deaths from this monster */
357
358         s16b r_pkills;                  /* Count visible monsters killed in this life */
359         s16b r_akills;                  /* Count all monsters killed in this life */
360         s16b r_tkills;                  /* Count monsters killed in all lives */
361
362         byte r_wake;                    /* Number of times woken up (?) */
363         byte r_ignore;                  /* Number of times ignored (?) */
364
365         byte r_xtra1;                   /* Something (unused) */
366         byte r_xtra2;                   /* Something (unused) */
367
368         byte r_drop_gold;               /* Max number of gold dropped at once */
369         byte r_drop_item;               /* Max number of item dropped at once */
370
371         byte r_cast_spell;              /* Max number of other spells seen */
372
373         byte r_blows[4];                /* Number of times each blow type was seen */
374
375         u32b r_flags1;                  /* Observed racial flags */
376         u32b r_flags2;                  /* Observed racial flags */
377         u32b r_flags3;                  /* Observed racial flags */
378         u32b r_flags4;                  /* Observed racial flags */
379         u32b r_flags5;                  /* Observed racial flags */
380         u32b r_flags6;                  /* Observed racial flags */
381         /* u32b r_flags7; */                    /* Observed racial flags */
382         u32b r_flagsr;                  /* Observed racial resistance flags */
383 };
384
385
386
387 /*
388  * Information about "vault generation"
389  */
390
391 typedef struct vault_type vault_type;
392
393 struct vault_type
394 {
395         u32b name;                      /* Name (offset) */
396         u32b text;                      /* Text (offset) */
397
398         byte typ;                       /* Vault type */
399
400         byte rat;                       /* Vault rating */
401
402         byte hgt;                       /* Vault height */
403         byte wid;                       /* Vault width */
404 };
405
406
407 /*
408  * Information about "skill"
409  */
410
411 typedef struct skill_table skill_table;
412
413 struct skill_table
414 {
415         s16b w_start[5][64];      /* start weapon exp */
416         s16b w_max[5][64];        /* max weapon exp */
417         s16b s_start[10];         /* start skill */
418         s16b s_max[10];           /* max skill */
419 };
420
421
422 /*
423  * A single "grid" in a Cave
424  *
425  * Note that several aspects of the code restrict the actual cave
426  * to a max size of 256 by 256.  In partcular, locations are often
427  * saved as bytes, limiting each coordinate to the 0-255 range.
428  *
429  * The "o_idx" and "m_idx" fields are very interesting.  There are
430  * many places in the code where we need quick access to the actual
431  * monster or object(s) in a given cave grid.  The easiest way to
432  * do this is to simply keep the index of the monster and object
433  * (if any) with the grid, but this takes 198*66*4 bytes of memory.
434  * Several other methods come to mind, which require only half this
435  * amound of memory, but they all seem rather complicated, and would
436  * probably add enough code that the savings would be lost.  So for
437  * these reasons, we simply store an index into the "o_list" and
438  * "m_list" arrays, using "zero" when no monster/object is present.
439  *
440  * Note that "o_idx" is the index of the top object in a stack of
441  * objects, using the "next_o_idx" field of objects (see below) to
442  * create the singly linked list of objects.  If "o_idx" is zero
443  * then there are no objects in the grid.
444  *
445  * Note the special fields for the "MONSTER_FLOW" code.
446  */
447
448 typedef struct cave_type cave_type;
449
450 struct cave_type
451 {
452         u16b info;              /* Hack -- cave flags */
453
454         s16b feat;              /* Hack -- feature type */
455
456         s16b o_idx;             /* Object in this grid */
457
458         s16b m_idx;             /* Monster in this grid */
459
460         s16b special;   /* Special cave info */
461
462         s16b mimic;             /* Feature to mimic */
463
464         byte cost;              /* Hack -- cost of flowing */
465         byte dist;              /* Hack -- distance from player */
466         byte when;              /* Hack -- when cost was computed */
467 };
468
469
470
471 /*
472  * Simple structure to hold a map location
473  */
474 typedef struct coord coord;
475
476 struct coord
477 {
478         byte y;
479         byte x;
480 };
481
482
483
484 /*
485  * Object information, for a specific object.
486  *
487  * Note that a "discount" on an item is permanent and never goes away.
488  *
489  * Note that inscriptions are now handled via the "quark_str()" function
490  * applied to the "note" field, which will return NULL if "note" is zero.
491  *
492  * Note that "object" records are "copied" on a fairly regular basis,
493  * and care must be taken when handling such objects.
494  *
495  * Note that "object flags" must now be derived from the object kind,
496  * the artifact and ego-item indexes, and the two "xtra" fields.
497  *
498  * Each cave grid points to one (or zero) objects via the "o_idx"
499  * field (above).  Each object then points to one (or zero) objects
500  * via the "next_o_idx" field, forming a singly linked list, which
501  * in game terms, represents a "stack" of objects in the same grid.
502  *
503  * Each monster points to one (or zero) objects via the "hold_o_idx"
504  * field (below).  Each object then points to one (or zero) objects
505  * via the "next_o_idx" field, forming a singly linked list, which
506  * in game terms, represents a pile of objects held by the monster.
507  *
508  * The "held_m_idx" field is used to indicate which monster, if any,
509  * is holding the object.  Objects being held have "ix=0" and "iy=0".
510  */
511
512 typedef struct object_type object_type;
513
514 struct object_type
515 {
516         s16b k_idx;                     /* Kind index (zero if "dead") */
517
518         byte iy;                        /* Y-position on map, or zero */
519         byte ix;                        /* X-position on map, or zero */
520
521         byte tval;                      /* Item type (from kind) */
522         byte sval;                      /* Item sub-type (from kind) */
523
524         s16b pval;                      /* Item extra-parameter */
525
526         byte discount;          /* Discount (if any) */
527
528         byte number;            /* Number of items */
529
530         s16b weight;            /* Item weight */
531
532         byte name1;                     /* Artifact type, if any */
533         byte name2;                     /* Ego-Item type, if any */
534
535         byte xtra1;                     /* Extra info type (now unused) */
536         byte xtra2;                     /* Extra info activation index */
537         byte xtra3;                     /* Extra info for weaponsmith */
538         s16b xtra4;                     /* Extra info fuel or captured monster's current HP */
539         s16b xtra5;                     /* Extra info captured monster's max HP */
540
541         s16b to_h;                      /* Plusses to hit */
542         s16b to_d;                      /* Plusses to damage */
543         s16b to_a;                      /* Plusses to AC */
544
545         s16b ac;                        /* Normal AC */
546
547         byte dd, ds;            /* Damage dice/sides */
548
549         s16b timeout;           /* Timeout Counter */
550
551         byte ident;                     /* Special flags  */
552
553         byte marked;            /* Object is marked */
554
555         u16b inscription;       /* Inscription index */
556         u16b art_name;      /* Artifact name (random artifacts) */
557
558         byte feeling;          /* Game generated inscription number (eg, pseudo-id) */
559
560         u32b art_flags[TR_FLAG_SIZE];        /* Extra Flags for ego and artifacts */
561
562         u32b curse_flags;        /* Flags for curse */
563
564         s16b next_o_idx;        /* Next object in stack (if any) */
565
566         s16b held_m_idx;        /* Monster holding us (if any) */
567 };
568
569
570
571 /*
572  * Monster information, for a specific monster.
573  *
574  * Note: fy, fx constrain dungeon size to 256x256
575  *
576  * The "hold_o_idx" field points to the first object of a stack
577  * of objects (if any) being carried by the monster (see above).
578  */
579
580 typedef struct monster_type monster_type;
581
582 struct monster_type
583 {
584         s16b r_idx;             /* Monster race index */
585         s16b ap_r_idx;          /* Monster race appearance index */
586         byte sub_align;         /* Sub-alignment for a neutral monster */
587
588         byte fy;                /* Y location on map */
589         byte fx;                /* X location on map */
590
591         s16b hp;                /* Current Hit points */
592         s16b maxhp;             /* Max Hit points */
593         s16b max_maxhp;         /* Max Max Hit points */
594         u32b dealt_damage;              /* Sum of damages dealt by player */
595
596         s16b mtimed[MAX_MTIMED];        /* Timed status counter */
597
598         byte mspeed;            /* Monster "speed" */
599         s16b energy_need;       /* Monster "energy" */
600
601         byte cdis;              /* Current dis from player */
602
603         byte mflag;             /* Extra monster flags */
604         byte mflag2;            /* Extra monster flags */
605
606         bool ml;                /* Monster is "visible" */
607
608         s16b hold_o_idx;        /* Object being held (if any) */
609
610         s16b target_y;          /* Can attack !los player */
611         s16b target_x;          /* Can attack !los player */
612
613         u16b nickname;          /* Monster's Nickname */
614
615         u32b exp;
616
617         u32b smart;                     /* Field for "smart_learn" */
618
619         s16b parent_m_idx;
620 };
621
622
623
624
625 /*
626  * An entry for the object/monster allocation functions
627  *
628  * Pass 1 is determined from allocation information
629  * Pass 2 is determined from allocation restriction
630  * Pass 3 is determined from allocation calculation
631  */
632
633 typedef struct alloc_entry alloc_entry;
634
635 struct alloc_entry
636 {
637         s16b index;             /* The actual index */
638
639         byte level;             /* Base dungeon level */
640         byte prob1;             /* Probability, pass 1 */
641         byte prob2;             /* Probability, pass 2 */
642         byte prob3;             /* Probability, pass 3 */
643
644         u16b total;             /* Unused for now */
645 };
646
647
648
649 /*
650  * Available "options"
651  *
652  *      - Address of actual option variable (or NULL)
653  *
654  *      - Normal Value (TRUE or FALSE)
655  *
656  *      - Option Page Number (or zero)
657  *
658  *      - Savefile Set (or zero)
659  *      - Savefile Bit in that set
660  *
661  *      - Textual name (or NULL)
662  *      - Textual description
663  */
664
665 typedef struct option_type option_type;
666
667 struct option_type
668 {
669         bool    *o_var;
670
671         byte    o_norm;
672
673         byte    o_page;
674
675         byte    o_set;
676         byte    o_bit;
677
678         cptr    o_text;
679         cptr    o_desc;
680 };
681
682
683 /*
684  * Structure for the "quests"
685  */
686 typedef struct quest_type quest_type;
687
688 struct quest_type
689 {
690         s16b status;            /* Is the quest taken, completed, finished? */
691
692         s16b type;              /* The quest type */
693
694         char name[60];          /* Quest name */
695         s16b level;             /* Dungeon level */
696         s16b r_idx;             /* Monster race */
697
698         s16b cur_num;           /* Number killed */
699         s16b max_num;           /* Number required */
700
701         s16b k_idx;             /* object index */
702         s16b num_mon;           /* number of monsters on level */
703
704         byte flags;             /* quest flags */
705         byte dungeon;           /* quest dungeon */
706
707         byte complev;           /* player level (complete) */
708         u32b comptime;          /* quest clear time*/
709 };
710
711
712 /*
713  * A store owner
714  */
715 typedef struct owner_type owner_type;
716
717 struct owner_type
718 {
719         cptr owner_name;        /* Name */
720
721         s16b max_cost;          /* Purse limit */
722
723         byte max_inflate;       /* Inflation (max) */
724         byte min_inflate;       /* Inflation (min) */
725
726         byte haggle_per;        /* Haggle unit */
727
728         byte insult_max;        /* Insult limit */
729
730         byte owner_race;        /* Owner race */
731 };
732
733
734
735
736 /*
737  * A store, with an owner, various state flags, a current stock
738  * of items, and a table of items that are often purchased.
739  */
740 typedef struct store_type store_type;
741
742 struct store_type
743 {
744         byte type;                              /* Store type */
745
746         byte owner;                             /* Owner index */
747         byte extra;                             /* Unused for now */
748
749         s16b insult_cur;                /* Insult counter */
750
751         s16b good_buy;                  /* Number of "good" buys */
752         s16b bad_buy;                   /* Number of "bad" buys */
753
754         s32b store_open;                /* Closed until this turn */
755
756         s32b last_visit;                /* Last visited on this turn */
757
758         s16b table_num;                 /* Table -- Number of entries */
759         s16b table_size;                /* Table -- Total Size of Array */
760         s16b *table;                    /* Table -- Legal item kinds */
761
762         s16b stock_num;                 /* Stock -- Number of entries */
763         s16b stock_size;                /* Stock -- Total Size of Array */
764         object_type *stock;             /* Stock -- Actual stock items */
765 };
766
767
768 /*
769  * The "name" of spell 'N' is stored as spell_names[X][N],
770  * where X is 0 for mage-spells and 1 for priest-spells.
771  */
772 typedef struct magic_type magic_type;
773
774 struct magic_type
775 {
776         byte slevel;            /* Required level (to learn) */
777         byte smana;                     /* Required mana (to cast) */
778         byte sfail;                     /* Minimum chance of failure */
779         byte sexp;                      /* Encoded experience bonus */
780 };
781
782
783 /*
784  * Information about the player's "magic"
785  *
786  * Note that a player with a "spell_book" of "zero" is illiterate.
787  */
788
789 typedef struct player_magic player_magic;
790
791 struct player_magic
792 {
793         int spell_book;         /* Tval of spell books (if any) */
794         int spell_xtra;         /* Something for later */
795
796         int spell_stat;         /* Stat for spells (if any)  */
797         int spell_type;         /* Spell type (mage/priest) */
798
799         int spell_first;                /* Level of first spell */
800         int spell_weight;               /* Weight that hurts spells */
801
802         magic_type info[MAX_MAGIC][32];    /* The available spells */
803 };
804
805
806
807 /*
808  * Player sex info
809  */
810
811 typedef struct player_sex player_sex;
812
813 struct player_sex
814 {
815         cptr title;                     /* Type of sex */
816         cptr winner;            /* Name of winner */
817 #ifdef JP
818         cptr E_title;           /* ±Ñ¸ìÀ­ÊÌ */
819         cptr E_winner;          /* ±Ñ¸ìÀ­ÊÌ */
820 #endif
821 };
822
823
824 /*
825  * Player racial info
826  */
827
828 typedef struct player_race player_race;
829
830 struct player_race
831 {
832         cptr title;                     /* Type of race */
833
834 #ifdef JP
835         cptr E_title;           /* ±Ñ¸ì¼ï² */
836 #endif
837         s16b r_adj[6];          /* Racial stat bonuses */
838
839         s16b r_dis;                     /* disarming */
840         s16b r_dev;                     /* magic devices */
841         s16b r_sav;                     /* saving throw */
842         s16b r_stl;                     /* stealth */
843         s16b r_srh;                     /* search ability */
844         s16b r_fos;                     /* search frequency */
845         s16b r_thn;                     /* combat (normal) */
846         s16b r_thb;                     /* combat (shooting) */
847
848         byte r_mhp;                     /* Race hit-dice modifier */
849         byte r_exp;                     /* Race experience factor */
850
851         byte b_age;                     /* base age */
852         byte m_age;                     /* mod age */
853
854         byte m_b_ht;            /* base height (males) */
855         byte m_m_ht;            /* mod height (males) */
856         byte m_b_wt;            /* base weight (males) */
857         byte m_m_wt;            /* mod weight (males) */
858
859         byte f_b_ht;            /* base height (females) */
860         byte f_m_ht;            /* mod height (females)   */
861         byte f_b_wt;            /* base weight (females) */
862         byte f_m_wt;            /* mod weight (females) */
863
864         byte infra;                     /* Infra-vision range */
865
866         u32b choice;        /* Legal class choices */
867 /*    byte choice_xtra;   */
868 };
869
870
871 /*
872  * Player class info
873  */
874
875 typedef struct player_class player_class;
876
877 struct player_class
878 {
879         cptr title;                     /* Type of class */
880
881 #ifdef JP
882         cptr E_title;           /* ±Ñ¸ì¿¦¶È */
883 #endif
884         s16b c_adj[6];          /* Class stat modifier */
885
886         s16b c_dis;                     /* class disarming */
887         s16b c_dev;                     /* class magic devices */
888         s16b c_sav;                     /* class saving throws */
889         s16b c_stl;                     /* class stealth */
890         s16b c_srh;                     /* class searching ability */
891         s16b c_fos;                     /* class searching frequency */
892         s16b c_thn;                     /* class to hit (normal) */
893         s16b c_thb;                     /* class to hit (bows) */
894
895         s16b x_dis;                     /* extra disarming */
896         s16b x_dev;                     /* extra magic devices */
897         s16b x_sav;                     /* extra saving throws */
898         s16b x_stl;                     /* extra stealth */
899         s16b x_srh;                     /* extra searching ability */
900         s16b x_fos;                     /* extra searching frequency */
901         s16b x_thn;                     /* extra to hit (normal) */
902         s16b x_thb;                     /* extra to hit (bows) */
903
904         s16b c_mhp;                     /* Class hit-dice adjustment */
905         s16b c_exp;                     /* Class experience factor */
906
907         byte pet_upkeep_div; /* Pet upkeep divider */
908 };
909
910
911 typedef struct player_seikaku player_seikaku;
912 struct player_seikaku
913 {
914         cptr title;                     /* Type of seikaku */
915
916 #ifdef JP
917         cptr E_title;           /* ±Ñ¸ìÀ­³Ê */
918 #endif
919
920         s16b a_adj[6];          /* seikaku stat bonuses */
921
922         s16b a_dis;                     /* seikaku disarming */
923         s16b a_dev;                     /* seikaku magic devices */
924         s16b a_sav;                     /* seikaku saving throw */
925         s16b a_stl;                     /* seikaku stealth */
926         s16b a_srh;                     /* seikaku search ability */
927         s16b a_fos;                     /* seikaku search frequency */
928         s16b a_thn;                     /* seikaku combat (normal) */
929         s16b a_thb;                     /* seikaku combat (shooting) */
930
931         s16b a_mhp;                     /* Race hit-dice modifier */
932
933         byte no;                        /* ¤Î */
934         byte sex;                       /* seibetu seigen */
935 };
936
937
938 /*
939  * Most of the "player" information goes here.
940  *
941  * This stucture gives us a large collection of player variables.
942  *
943  * This structure contains several "blocks" of information.
944  *   (1) the "permanent" info
945  *   (2) the "variable" info
946  *   (3) the "transient" info
947  *
948  * All of the "permanent" info, and most of the "variable" info,
949  * is saved in the savefile.  The "transient" info is recomputed
950  * whenever anything important changes.
951  */
952
953 typedef struct player_type player_type;
954
955 struct player_type
956 {
957         s16b oldpy;             /* Previous player location -KMW- */
958         s16b oldpx;             /* Previous player location -KMW- */
959
960         byte psex;                      /* Sex index */
961         byte prace;                     /* Race index */
962         byte pclass;            /* Class index */
963         byte pseikaku;          /* Seikaku index */
964         byte realm1;        /* First magic realm */
965         byte realm2;        /* Second magic realm */
966         byte oops;                      /* Unused */
967
968         byte hitdie;            /* Hit dice (sides) */
969         u16b expfact;       /* Experience factor
970                              * Note: was byte, causing overflow for Amberite
971                              * characters (such as Amberite Paladins)
972                              */
973
974         s16b age;                       /* Characters age */
975         s16b ht;                        /* Height */
976         s16b wt;                        /* Weight */
977         s16b sc;                        /* Social Class */
978
979
980         s32b au;                        /* Current Gold */
981
982         s32b max_max_exp;       /* Max max experience (only to calculate score) */
983         s32b max_exp;           /* Max experience */
984         s32b exp;                       /* Cur experience */
985         u32b exp_frac;          /* Cur exp frac (times 2^16) */
986
987         s16b lev;                       /* Level */
988
989         s16b town_num;                  /* Current town number */
990         s16b arena_number;              /* monster number in arena -KMW- */
991         bool inside_arena;              /* Is character inside arena? */
992         s16b inside_quest;              /* Inside quest level */
993         bool inside_battle;             /* Is character inside tougijou? */
994
995         s32b wilderness_x;      /* Coordinates in the wilderness */
996         s32b wilderness_y;
997         bool wild_mode;
998
999         s32b mhp;                       /* Max hit pts */
1000         s32b chp;                       /* Cur hit pts */
1001         u32b chp_frac;          /* Cur hit frac (times 2^16) */
1002
1003         s32b msp;                       /* Max mana pts */
1004         s32b csp;                       /* Cur mana pts */
1005         u32b csp_frac;          /* Cur mana frac (times 2^16) */
1006
1007         s16b max_plv;           /* Max Player Level */
1008
1009         s16b stat_max[6];       /* Current "maximal" stat values */
1010         s16b stat_max_max[6];   /* Maximal "maximal" stat values */
1011         s16b stat_cur[6];       /* Current "natural" stat values */
1012
1013         s16b learned_spells;
1014         s16b add_spells;
1015
1016         u32b count;
1017
1018         s16b fast;              /* Timed -- Fast */
1019         s16b slow;              /* Timed -- Slow */
1020         s16b blind;             /* Timed -- Blindness */
1021         s16b paralyzed;         /* Timed -- Paralysis */
1022         s16b confused;          /* Timed -- Confusion */
1023         s16b afraid;            /* Timed -- Fear */
1024         s16b image;             /* Timed -- Hallucination */
1025         s16b poisoned;          /* Timed -- Poisoned */
1026         s16b cut;               /* Timed -- Cut */
1027         s16b stun;              /* Timed -- Stun */
1028
1029         s16b protevil;          /* Timed -- Protection */
1030         s16b invuln;            /* Timed -- Invulnerable */
1031         s16b ult_res;           /* Timed -- Ultimate Resistance */
1032         s16b hero;              /* Timed -- Heroism */
1033         s16b shero;             /* Timed -- Super Heroism */
1034         s16b shield;            /* Timed -- Shield Spell */
1035         s16b blessed;           /* Timed -- Blessed */
1036         s16b tim_invis;         /* Timed -- See Invisible */
1037         s16b tim_infra;         /* Timed -- Infra Vision */
1038         s16b tsuyoshi;          /* Timed -- Tsuyoshi Special */
1039         s16b ele_attack;        /* Timed -- Elemental Attack */
1040         s16b ele_immune;        /* Timed -- Elemental Immune */
1041
1042         s16b oppose_acid;       /* Timed -- oppose acid */
1043         s16b oppose_elec;       /* Timed -- oppose lightning */
1044         s16b oppose_fire;       /* Timed -- oppose heat */
1045         s16b oppose_cold;       /* Timed -- oppose cold */
1046         s16b oppose_pois;       /* Timed -- oppose poison */
1047
1048
1049         s16b tim_esp;       /* Timed ESP */
1050         s16b wraith_form;   /* Timed wraithform */
1051
1052         s16b resist_magic;  /* Timed Resist Magic (later) */
1053         s16b tim_regen;
1054         s16b kabenuke;
1055         s16b tim_stealth;
1056         s16b tim_levitation;
1057         s16b tim_sh_touki;
1058         s16b lightspeed;
1059         s16b tsubureru;
1060         s16b magicdef;
1061         s16b tim_res_nether;    /* Timed -- Nether resistance */
1062         s16b tim_res_time;      /* Timed -- Time resistance */
1063         byte mimic_form;
1064         s16b tim_mimic;
1065         s16b tim_sh_fire;
1066         s16b tim_sh_holy;
1067         s16b tim_eyeeye;
1068
1069         /* for mirror master */
1070         s16b tim_reflect;       /* Timed -- Reflect */
1071         s16b multishadow;       /* Timed -- Multi-shadow */
1072         s16b dustrobe;          /* Timed -- Robe of dust */
1073
1074         s16b chaos_patron;
1075         u32b muta1;
1076         u32b muta2;
1077         u32b muta3;
1078
1079         s16b virtues[8];
1080         s16b vir_types[8];
1081
1082         s16b word_recall;         /* Word of recall counter */
1083         s16b alter_reality;       /* Alter reality counter */
1084         byte recall_dungeon;      /* Dungeon set to be recalled */
1085
1086         s16b energy_need;         /* Energy needed for next move */
1087         s16b enchant_energy_need;         /* Energy needed for next upkeep effect        */
1088
1089         s16b food;                /* Current nutrition */
1090
1091         u32b special_attack;      /* Special attack capacity -LM- */
1092         u32b special_defense;     /* Special block capacity -LM- */
1093         byte action;              /* Currently action */
1094
1095         u32b spell_learned1;      /* bit mask of spells learned */
1096         u32b spell_learned2;      /* bit mask of spells learned */
1097         u32b spell_worked1;       /* bit mask of spells tried and worked */
1098         u32b spell_worked2;       /* bit mask of spells tried and worked */
1099         u32b spell_forgotten1;    /* bit mask of spells learned but forgotten */
1100         u32b spell_forgotten2;    /* bit mask of spells learned but forgotten */
1101         byte spell_order[64];     /* order spells learned/remembered/forgotten */
1102
1103         s16b spell_exp[64];       /* Proficiency of spells */
1104         s16b weapon_exp[5][64];   /* Proficiency of weapons */
1105         s16b skill_exp[10];       /* Proficiency of misc. skill */
1106
1107         s32b magic_num1[108];     /* Array for non-spellbook type magic */
1108         byte magic_num2[108];     /* Flags for non-spellbook type magics */
1109
1110         s16b mane_spell[MAX_MANE];
1111         s16b mane_dam[MAX_MANE];
1112         s16b mane_num;
1113
1114         s16b concent;      /* Sniper's concentration level */
1115
1116         s16b player_hp[PY_MAX_LEVEL];
1117         char died_from[80];       /* What killed the player */
1118         cptr last_message;        /* Last message on death or retirement */
1119         char history[4][60];      /* Textual "history" for the Player */
1120
1121         u16b total_winner;        /* Total winner */
1122         u16b panic_save;          /* Panic save */
1123
1124         u16b noscore;             /* Cheating flags */
1125
1126         bool wait_report_score;   /* Waiting to report score */
1127         bool is_dead;             /* Player is dead */
1128
1129         bool wizard;              /* Player is in wizard mode */
1130
1131         s16b riding;              /* Riding on a monster of this index */
1132         byte knowledge;           /* Knowledge about yourself */
1133         s32b visit;               /* Visited towns */
1134
1135         byte start_race;          /* Race at birth */
1136         s32b old_race1;           /* Record of race changes */
1137         s32b old_race2;           /* Record of race changes */
1138         s16b old_realm;           /* Record of realm changes */
1139
1140         s16b pet_follow_distance; /* Length of the imaginary "leash" for pets */
1141         s16b pet_extra_flags;     /* Various flags for controling pets */
1142
1143         s16b today_mon;           /* Wanted monster */
1144
1145         bool dtrap;               /* Whether you are on trap-safe grids */
1146         s16b floor_id;            /* Current floor location */ 
1147
1148         bool autopick_autoregister; /* auto register is in-use or not */
1149
1150         byte feeling;           /* Most recent dungeon feeling */
1151         s32b feeling_turn;      /* The turn of the last dungeon feeling */
1152
1153
1154         /*** Temporary fields ***/
1155
1156         bool playing;                   /* True if player is playing */
1157         bool leaving;                   /* True if player is leaving */
1158
1159         byte exit_bldg;                 /* Goal obtained in arena? -KMW- */
1160
1161         bool leaving_dungeon;   /* True if player is leaving the dungeon */
1162         bool teleport_town;
1163         bool enter_dungeon;     /* Just enter the dungeon */
1164
1165         s16b health_who;        /* Health bar trackee */
1166
1167         s16b monster_race_idx;  /* Monster race trackee */
1168
1169         s16b object_kind_idx;   /* Object kind trackee */
1170
1171         s16b new_spells;        /* Number of spells available */
1172         s16b old_spells;
1173
1174         s16b old_food_aux;      /* Old value of food */
1175
1176         bool old_cumber_armor;
1177         bool old_cumber_glove;
1178         bool old_heavy_wield[2];
1179         bool old_heavy_shoot;
1180         bool old_icky_wield[2];
1181         bool old_riding_wield[2];
1182         bool old_riding_ryoute;
1183         bool old_monlite;
1184
1185         s16b old_lite;          /* Old radius of lite (if any) */
1186
1187         bool cumber_armor;      /* Mana draining armor */
1188         bool cumber_glove;      /* Mana draining gloves */
1189         bool heavy_wield[2];    /* Heavy weapon */
1190         bool heavy_shoot;       /* Heavy shooter */
1191         bool icky_wield[2];     /* Icky weapon */
1192         bool riding_wield[2];   /* Riding weapon */
1193         bool riding_ryoute;     /* Riding weapon */
1194         bool monlite;
1195
1196         s16b cur_lite;          /* Radius of lite (if any) */
1197
1198
1199         u32b notice;            /* Special Updates (bit flags) */
1200         u32b update;            /* Pending Updates (bit flags) */
1201         u32b redraw;            /* Normal Redraws (bit flags) */
1202         u32b window;            /* Window Redraws (bit flags) */
1203
1204         s16b stat_use[6];       /* Current modified stats */
1205         s16b stat_top[6];       /* Maximal modified stats */
1206
1207         bool sutemi;
1208         bool counter;
1209
1210         s32b align;                             /* Good/evil/neutral */
1211         s16b run_py;
1212         s16b run_px;
1213
1214
1215         /*** Extracted fields ***/
1216
1217         u32b total_weight;      /* Total weight being carried */
1218
1219         s16b stat_add[6];       /* Modifiers to stat values */
1220         s16b stat_ind[6];       /* Indexes into stat tables */
1221
1222         bool immune_acid;       /* Immunity to acid */
1223         bool immune_elec;       /* Immunity to lightning */
1224         bool immune_fire;       /* Immunity to fire */
1225         bool immune_cold;       /* Immunity to cold */
1226
1227         bool resist_acid;       /* Resist acid */
1228         bool resist_elec;       /* Resist lightning */
1229         bool resist_fire;       /* Resist fire */
1230         bool resist_cold;       /* Resist cold */
1231         bool resist_pois;       /* Resist poison */
1232
1233         bool resist_conf;       /* Resist confusion */
1234         bool resist_sound;      /* Resist sound */
1235         bool resist_lite;       /* Resist light */
1236         bool resist_dark;       /* Resist darkness */
1237         bool resist_chaos;      /* Resist chaos */
1238         bool resist_disen;      /* Resist disenchant */
1239         bool resist_shard;      /* Resist shards */
1240         bool resist_nexus;      /* Resist nexus */
1241         bool resist_blind;      /* Resist blindness */
1242         bool resist_neth;       /* Resist nether */
1243         bool resist_fear;       /* Resist fear */
1244         bool resist_time;       /* Resist time */
1245
1246         bool reflect;       /* Reflect 'bolt' attacks */
1247         bool sh_fire;       /* Fiery 'immolation' effect */
1248         bool sh_elec;       /* Electric 'immolation' effect */
1249         bool sh_cold;       /* Cold 'immolation' effect */
1250
1251         bool anti_magic;    /* Anti-magic */
1252         bool anti_tele;     /* Prevent teleportation */
1253
1254         bool sustain_str;       /* Keep strength */
1255         bool sustain_int;       /* Keep intelligence */
1256         bool sustain_wis;       /* Keep wisdom */
1257         bool sustain_dex;       /* Keep dexterity */
1258         bool sustain_con;       /* Keep constitution */
1259         bool sustain_chr;       /* Keep charisma */
1260
1261         u32b cursed;            /* Player is cursed */
1262
1263         bool can_swim;          /* No damage falling */
1264         bool levitation;                /* No damage falling */
1265         bool lite;              /* Permanent light */
1266         bool free_act;          /* Never paralyzed */
1267         bool see_inv;           /* Can see invisible */
1268         bool regenerate;        /* Regenerate hit pts */
1269         bool hold_life;         /* Resist life draining */
1270
1271         bool telepathy;         /* Telepathy */
1272         bool esp_animal;
1273         bool esp_undead;
1274         bool esp_demon;
1275         bool esp_orc;
1276         bool esp_troll;
1277         bool esp_giant;
1278         bool esp_dragon;
1279         bool esp_human;
1280         bool esp_evil;
1281         bool esp_good;
1282         bool esp_nonliving;
1283         bool esp_unique;
1284
1285         bool slow_digest;       /* Slower digestion */
1286         bool bless_blade;       /* Blessed blade */
1287         bool xtra_might;        /* Extra might bow */
1288         bool impact[2];         /* Earthquake blows */
1289         bool pass_wall;     /* Permanent wraithform */
1290         bool kill_wall;
1291         bool dec_mana;
1292         bool easy_spell;
1293         bool heavy_spell;
1294         bool warning;
1295         bool mighty_throw;
1296         bool see_nocto;         /* Noctovision */
1297
1298         s16b to_dd[2]; /* Extra dice/sides */
1299         s16b to_ds[2];
1300
1301         s16b dis_to_h[2];       /* Known bonus to hit (wield) */
1302         s16b dis_to_h_b;        /* Known bonus to hit (bow) */
1303         s16b dis_to_d[2];       /* Known bonus to dam (wield) */
1304         s16b dis_to_a;          /* Known bonus to ac */
1305
1306         s16b dis_ac;            /* Known base ac */
1307
1308         s16b to_h[2];                   /* Bonus to hit (wield) */
1309         s16b to_h_b;                    /* Bonus to hit (bow) */
1310         s16b to_h_m;                    /* Bonus to hit (misc) */
1311         s16b to_d[2];                   /* Bonus to dam (wield) */
1312         s16b to_d_m;                    /* Bonus to dam (misc) */
1313         s16b to_a;                      /* Bonus to ac */
1314
1315         s16b to_m_chance;               /* Minusses to cast chance */
1316
1317         bool ryoute;
1318         bool migite;
1319         bool hidarite;
1320         bool no_flowed;
1321
1322         s16b ac;                        /* Base ac */
1323
1324         s16b see_infra;         /* Infravision range */
1325
1326         s16b skill_dis;         /* Skill: Disarming */
1327         s16b skill_dev;         /* Skill: Magic Devices */
1328         s16b skill_sav;         /* Skill: Saving throw */
1329         s16b skill_stl;         /* Skill: Stealth factor */
1330         s16b skill_srh;         /* Skill: Searching ability */
1331         s16b skill_fos;         /* Skill: Searching frequency */
1332         s16b skill_thn;         /* Skill: To hit (normal) */
1333         s16b skill_thb;         /* Skill: To hit (shooting) */
1334         s16b skill_tht;         /* Skill: To hit (throwing) */
1335         s16b skill_dig;         /* Skill: Digging */
1336
1337         s16b num_blow[2];       /* Number of blows */
1338         s16b num_fire;          /* Number of shots */
1339
1340         byte tval_xtra;         /* Correct xtra tval */
1341
1342         byte tval_ammo;         /* Correct ammo tval */
1343
1344         byte pspeed;            /* Current speed */
1345 };
1346
1347
1348 /*
1349  * A structure to hold "rolled" information
1350  */
1351 typedef struct birther birther;
1352
1353 struct birther
1354 {
1355         byte psex;         /* Sex index */
1356         byte prace;        /* Race index */
1357         byte pclass;       /* Class index */
1358         byte pseikaku;     /* Seikaku index */
1359         byte realm1;       /* First magic realm */
1360         byte realm2;       /* Second magic realm */
1361
1362         s16b age;
1363         s16b ht;
1364         s16b wt;
1365         s16b sc;
1366
1367         s32b au;
1368
1369         s16b stat_max[6];       /* Current "maximal" stat values */
1370         s16b stat_max_max[6];   /* Maximal "maximal" stat values */
1371         s16b player_hp[PY_MAX_LEVEL];
1372
1373         s16b chaos_patron;
1374
1375         s16b vir_types[8];
1376
1377         char history[4][60];
1378
1379         bool quick_ok;
1380 };
1381
1382
1383 /* For Monk martial arts */
1384
1385 typedef struct martial_arts martial_arts;
1386
1387 struct martial_arts
1388 {
1389         cptr    desc;       /* A verbose attack description */
1390         int     min_level;  /* Minimum level to use */
1391         int     chance;     /* Chance of 'success' */
1392         int     dd;         /* Damage dice */
1393         int     ds;         /* Damage sides */
1394         int     effect;     /* Special effects */
1395 };
1396
1397 typedef struct kamae kamae;
1398
1399 struct kamae
1400 {
1401         cptr    desc;       /* A verbose kamae description */
1402         int     min_level;  /* Minimum level to use */
1403         cptr    info;
1404 };
1405
1406 /* Mindcrafters */
1407 typedef struct mind_type mind_type;
1408 struct mind_type
1409 {
1410         int     min_lev;
1411         int     mana_cost;
1412         int     fail;
1413         cptr    name;
1414 };
1415
1416 typedef struct mind_power mind_power;
1417 struct mind_power
1418 {
1419         mind_type info[MAX_MIND_POWERS];
1420 };
1421
1422 /* Imitator */
1423
1424 typedef struct monster_power monster_power;
1425 struct monster_power
1426 {
1427         int     level;
1428         int     smana;
1429         int     fail;
1430         int     manedam;
1431         int     manefail;
1432         int     use_stat;
1433         cptr    name;
1434 };
1435
1436
1437 /*
1438  * A structure to describe a building.
1439  * From Kamband
1440  */
1441 typedef struct building_type building_type;
1442
1443 struct building_type
1444 {
1445         char name[20];                  /* proprietor name */
1446         char owner_name[20];            /* proprietor name */
1447         char owner_race[20];            /* proprietor race */
1448
1449         char act_names[8][30];          /* action names */
1450         s32b member_costs[8];           /* Costs for class members of building */
1451         s32b other_costs[8];                /* Costs for nonguild members */
1452         char letters[8];                /* action letters */
1453         s16b actions[8];                /* action codes */
1454         s16b action_restr[8];           /* action restrictions */
1455
1456         s16b member_class[MAX_CLASS];   /* which classes are part of guild */
1457         s16b member_race[MAX_RACES];    /* which classes are part of guild */
1458         s16b member_realm[MAX_MAGIC+1]; /* which realms are part of guild */
1459 };
1460
1461
1462 /* Border */
1463 typedef struct border_type border_type;
1464 struct border_type
1465 {
1466         s16b north[MAX_WID];
1467         s16b south[MAX_WID];
1468         s16b east[MAX_HGT];
1469         s16b west[MAX_HGT];
1470         s16b north_west;
1471         s16b north_east;
1472         s16b south_west;
1473         s16b south_east;
1474 };
1475
1476
1477 /*
1478  * A structure describing a wilderness area
1479  * with a terrain or a town
1480  */
1481 typedef struct wilderness_type wilderness_type;
1482 struct wilderness_type
1483 {
1484         int         terrain;
1485         int         town;
1486         int         road;
1487         u32b        seed;
1488         s16b        level;
1489         byte        entrance;
1490 };
1491
1492
1493 /*
1494  * A structure describing a town with
1495  * stores and buildings
1496  */
1497 typedef struct town_type town_type;
1498 struct town_type
1499 {
1500         char        name[32];
1501         u32b        seed;      /* Seed for RNG */
1502         store_type      *store;    /* The stores [MAX_STORES] */
1503         byte        numstores;
1504 };
1505
1506 /* Dungeons */
1507 typedef struct dun_type dun_type;
1508 struct dun_type
1509 {
1510         byte min_level; /* Minimum level in the dungeon */
1511         byte max_level; /* Maximum dungeon level allowed */
1512
1513         cptr name;      /* The name of the dungeon */
1514 };
1515
1516 /*
1517  * Sort-array element
1518  */
1519 typedef struct tag_type tag_type;
1520
1521 struct tag_type
1522 {
1523         int     tag;
1524         int     index;
1525 };
1526
1527 typedef bool (*monster_hook_type)(int r_idx);
1528
1529
1530 /*
1531  * This seems like a pretty standard "typedef"
1532  */
1533 typedef int (*inven_func)(object_type *);
1534
1535
1536 /*
1537  * Semi-Portable High Score List Entry (128 bytes) -- BEN
1538  *
1539  * All fields listed below are null terminated ascii strings.
1540  *
1541  * In addition, the "number" fields are right justified, and
1542  * space padded, to the full available length (minus the "null").
1543  *
1544  * Note that "string comparisons" are thus valid on "pts".
1545  */
1546
1547 typedef struct high_score high_score;
1548
1549 struct high_score
1550 {
1551         char what[8];           /* Version info (string) */
1552
1553         char pts[10];           /* Total Score (number) */
1554
1555         char gold[10];          /* Total Gold (number) */
1556
1557         char turns[10];         /* Turns Taken (number) */
1558
1559         char day[10];           /* Time stamp (string) */
1560
1561         char who[16];           /* Player Name (string) */
1562
1563         char uid[8];            /* Player UID (number) */
1564
1565         char sex[2];            /* Player Sex (string) */
1566         char p_r[3];            /* Player Race (number) */
1567         char p_c[3];            /* Player Class (number) */
1568         char p_a[3];            /* Player Seikaku (number) */
1569
1570         char cur_lev[4];                /* Current Player Level (number) */
1571         char cur_dun[4];                /* Current Dungeon Level (number) */
1572         char max_lev[4];                /* Max Player Level (number) */
1573         char max_dun[4];                /* Max Dungeon Level (number) */
1574
1575         char how[40];           /* Method of death (string) */
1576 };
1577
1578
1579 typedef struct
1580 {
1581         s16b feat;    /* Feature tile */
1582         byte percent; /* Chance of type */
1583 }
1584 feat_prob;
1585
1586
1587 /* A structure for the != dungeon types */
1588 typedef struct dungeon_info_type dungeon_info_type;
1589 struct dungeon_info_type {
1590         u32b name;              /* Name */
1591         u32b text;              /* Description */
1592
1593         byte dy;
1594         byte dx;
1595
1596         feat_prob floor[DUNGEON_FEAT_PROB_NUM]; /* Floor probability */
1597         feat_prob fill[DUNGEON_FEAT_PROB_NUM];  /* Cave wall probability */
1598         s16b outer_wall;                        /* Outer wall tile */
1599         s16b inner_wall;                        /* Inner wall tile */
1600         s16b stream1;                           /* stream tile */
1601         s16b stream2;                           /* stream tile */
1602
1603         s16b mindepth;         /* Minimal depth */
1604         s16b maxdepth;         /* Maximal depth */
1605         byte min_plev;         /* Minimal plev needed to enter -- it's an anti-cheating mesure */
1606         s16b pit;
1607         s16b nest;
1608         byte mode;              /* Mode of combinaison of the monster flags */
1609
1610         int min_m_alloc_level;  /* Minimal number of monsters per level */
1611         int max_m_alloc_chance; /* There is a 1/max_m_alloc_chance chance per round of creating a new monster */
1612
1613         u32b flags1;            /* Flags 1 */
1614
1615         u32b mflags1;           /* The monster flags that are allowed */
1616         u32b mflags2;
1617         u32b mflags3;
1618         u32b mflags4;
1619         u32b mflags5;
1620         u32b mflags6;
1621         u32b mflags7;
1622         u32b mflags8;
1623         u32b mflags9;
1624         u32b mflagsr;
1625
1626         char r_char[5];         /* Monster race allowed */
1627         int final_object;       /* The object you'll find at the bottom */
1628         int final_artifact;     /* The artifact you'll find at the bottom */
1629         int final_guardian;     /* The artifact's guardian. If an artifact is specified, then it's NEEDED */
1630
1631         byte special_div;       /* % of monsters affected by the flags/races allowed, to add some variety */
1632         int tunnel_percent;
1633         int obj_great;
1634         int obj_good;
1635 };
1636
1637
1638 /*
1639  *  A structure type for entry of auto-picker/destroyer
1640  */
1641 typedef struct {
1642         cptr name;          /* Items which have 'name' as part of its name match */
1643         cptr insc;          /* Items will be auto-inscribed as 'insc' */
1644         u32b flag[2];       /* Misc. keyword to be matched */
1645         byte action;        /* Auto-pickup or Destroy or Leave items */
1646         byte dice;          /* Weapons which have more than 'dice' dice match */
1647         byte bonus;         /* Items which have more than 'bonus' magical bonus match */
1648 } autopick_type;
1649
1650
1651 /*
1652  *  A structure type for the saved floor
1653  */
1654 typedef struct 
1655 {
1656         s16b floor_id;        /* No recycle until 65536 IDs are all used */
1657         byte savefile_id;     /* ID for savefile (from 0 to MAX_SAVED_FLOOR) */
1658         s16b dun_level;
1659         s32b last_visit;      /* Time count of last visit. 0 for new floor. */
1660         u32b visit_mark;      /* Older has always smaller mark. */
1661         s16b upper_floor_id;  /* a floor connected with level teleportation */
1662         s16b lower_floor_id;  /* a floor connected with level tel. and trap door */
1663 } saved_floor_type;
1664
1665
1666 /*
1667  *  A structure type for terrain template of saving dungeon floor
1668  */
1669 typedef struct
1670 {
1671         u16b info;
1672         s16b feat;
1673         s16b mimic;
1674         s16b special;
1675         u16b occurrence;
1676 } cave_template_type;
1677
1678
1679 /*
1680  * A structure type for arena entry
1681  */
1682 typedef struct
1683 {
1684         s16b r_idx; /* Monster (0 means victory prizing) */
1685         byte tval;  /* tval of prize (0 means no prize) */
1686         byte sval;  /* sval of prize */
1687 } arena_type;
1688
1689
1690 /*
1691  * A structure type for doors
1692  */
1693 typedef struct
1694 {
1695         s16b open;
1696         s16b broken;
1697         s16b closed;
1698         s16b locked[MAX_LJ_DOORS];
1699         s16b num_locked;
1700         s16b jammed[MAX_LJ_DOORS];
1701         s16b num_jammed;
1702 } door_type;
1703
1704
1705 #ifdef TRAVEL
1706 /*
1707  *  A structure type for travel command
1708  */
1709 typedef struct {
1710         int run; /* Remaining grid number */
1711         int cost[MAX_HGT][MAX_WID];
1712         int x; /* Target X */
1713         int y; /* Target Y */
1714         int dir; /* Running direction */
1715 } travel_type;
1716 #endif
1717
1718 typedef struct {
1719         cptr flag;
1720         byte index;
1721         byte level;
1722         s32b value;
1723         struct {
1724                 int constant;
1725                 int dice;
1726         } timeout;
1727         cptr desc;
1728 } activation_type;
1729
1730 typedef struct {
1731         int flag;
1732         int type;
1733         cptr name;
1734 } dragonbreath_type;