annotate Monsters.cpp @ 1076:9b6e252658e8

more DecalBuilder
author zipi
date Sat, 25 May 2013 14:43:27 +0100
parents 6005142abce0
children 5d5c78088274
rev   line source
0
Ritor1
parents:
diff changeset
1 #include <stdlib.h>
Ritor1
parents:
diff changeset
2 #include <stdio.h>
Ritor1
parents:
diff changeset
3 #include <string.h>
Ritor1
parents:
diff changeset
4
Ritor1
parents:
diff changeset
5 #include "Monsters.h"
Ritor1
parents:
diff changeset
6 #include "FrameTableInc.h"
Ritor1
parents:
diff changeset
7 #include "Allocator.h"
Ritor1
parents:
diff changeset
8 #include "LOD.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 0
diff changeset
9 #include "texts.h"
0
Ritor1
parents:
diff changeset
10 #include "mm7_data.h"
Ritor1
parents:
diff changeset
11
Ritor1
parents:
diff changeset
12
Ritor1
parents:
diff changeset
13
Ritor1
parents:
diff changeset
14
Ritor1
parents:
diff changeset
15
Ritor1
parents:
diff changeset
16 struct MonsterStats *pMonsterStats;
Ritor1
parents:
diff changeset
17 struct MonsterList *pMonsterList;
Ritor1
parents:
diff changeset
18
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
19 unsigned int ParseSpellType(struct FrameTableTxtLine* tbl, int* next_token);
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
20
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
21 int ParseAttackType(const char *damage_type_str);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
22 void ParseDamage( char *damage_str, unsigned __int8* dice_rolls, unsigned __int8* dice_sides, unsigned __int8* dmg_bonus );
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
23 int ParseMissleAttackType(const char *missle_attack_str);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
24 int ParseSpecialAttack(const char *spec_att_str);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
25
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
26 //----- (004548E2) --------------------------------------------------------
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
27 unsigned int ParseSpellType( struct FrameTableTxtLine * tbl, int* next_token )
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
28 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
29
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
30 if (!tbl->pProperties[0] )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
31 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
32 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
33 return 0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
34 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
35 if ( !_strcmpi(tbl->pProperties[0], "Dispel") ) //dispel magic
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
36 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
37 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
38 return 80;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
39 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
40 else if ( !_strcmpi(tbl->pProperties[0], "Day") ) //day of protection
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
41 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
42 *next_token+=2;;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
43 return 85;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
44 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
45 else if ( !_strcmpi(tbl->pProperties[0], "Hour") ) //hour of power
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
46 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
47 *next_token+=2;;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
48 return 86;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
49 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
50 else if ( !_strcmpi(tbl->pProperties[0], "Shield") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
51 return 17;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
52 else if ( !_strcmpi(tbl->pProperties[0], "Spirit") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
53 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
54 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
55 return 52;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
56 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
57 else if ( !_strcmpi(tbl->pProperties[0], "Power") ) //power cure
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
58 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
59 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
60 return 77;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
61 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
62 else if ( !_strcmpi(tbl->pProperties[0], "Meteor") ) //meteot shower
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
63 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
64 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
65 return 9;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
66 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
67 else if ( !_strcmpi(tbl->pProperties[0], "Lightning") ) //Lightning bolt
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
68 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
69 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
70 return 18;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
71 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
72 else if ( !_strcmpi(tbl->pProperties[0], "Implosion") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
73 return 20;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
74 else if ( !_strcmpi(tbl->pProperties[0], "Stone") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
75 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
76 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
77 return 38;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
78 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
79 else if ( !_strcmpi(tbl->pProperties[0], "Haste") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
80 return 5;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
81 else if ( !_strcmpi(tbl->pProperties[0], "Heroism") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
82 return 51;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
83 else if ( !_strcmpi(tbl->pProperties[0], "Pain") ) //pain reflection
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
84 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
85 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
86 return 95;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
87 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
88 else if ( !_strcmpi(tbl->pProperties[0], "Sparks") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
89 return 15;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
90 else if ( !_strcmpi(tbl->pProperties[0], "Light") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
91 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
92 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
93 return 78;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
94 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
95 else if ( !_strcmpi(tbl->pProperties[0], "Toxic") ) //toxic cloud
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
96 {
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
97 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
98 return 90;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
99 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
100 else if ( !_strcmpi(tbl->pProperties[0], "ShrapMetal") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
101 return 93;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
102 else if ( !_strcmpi(tbl->pProperties[0], "Paralyze") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
103 return 81;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
104 else if ( !_strcmpi(tbl->pProperties[0], "Fireball") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
105 return 6;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
106 else if ( !_strcmpi(tbl->pProperties[0], "Incinerate") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
107 return 11;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
108 else if ( !_strcmpi(tbl->pProperties[0], "Fire") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
109 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
110 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
111 return 2;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
112 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
113 else if ( !_strcmpi(tbl->pProperties[0], "Rock") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
114 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
115 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
116 return 41;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
117 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
118 else if ( !_strcmpi(tbl->pProperties[0], "Mass") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
119 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
120 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
121 return 44;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
122 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
123 else if ( !_strcmpi(tbl->pProperties[0], "Ice") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
124 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
125 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
126 return 26;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
127 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
128 else if ( !_strcmpi(tbl->pProperties[0], "Acid") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
129 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
130 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
131 return 29;
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
132 }
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
133 else if ( !_strcmpi(tbl->pProperties[0], "Bless") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
134 return 46;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
135 else if ( !_strcmpi(tbl->pProperties[0], "Dragon") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
136 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
137 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
138 return 97;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
139 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
140 else if ( !_strcmpi(tbl->pProperties[0], "Reanimate") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
141 return 89;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
142 else if ( !_strcmpi(tbl->pProperties[0], "Summon") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
143 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
144 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
145 return 82;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
146 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
147 else if ( !_strcmpi(tbl->pProperties[0], "Fate") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
148 return 47;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
149 else if ( !_strcmpi(tbl->pProperties[0], "Harm") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
150 return 70;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
151 else if ( !_strcmpi(tbl->pProperties[0], "Mind") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
152 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
153 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
154 return 57;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
155 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
156 else if ( !_strcmpi(tbl->pProperties[0], "Blades") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
157 return 39;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
158 else if ( !_strcmpi(tbl->pProperties[0], "Psychic") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
159 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
160 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
161 return 65;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
162 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
163 else if ( !_strcmpi(tbl->pProperties[0], "Hammerhands") )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
164 return 73;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
165 else
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
166 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
167 sprintf(pTmpBuf, "Unknown monster spell %s", tbl->pProperties[0]);
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
168 MessageBoxA(nullptr, pTmpBuf, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Itemdata.cpp:1562", 0);
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
169 ++*next_token;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
170 return 0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
171 }
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
172 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
173
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
174 //----- (00454CB4) --------------------------------------------------------
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
175 int ParseAttackType( const char *damage_type_str )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
176 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
177
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
178 switch (tolower(*damage_type_str))
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
179 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
180 case 'f': return 0; //fire
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
181 case 'a': return 1; //air
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
182 case 'w': return 2; //water
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
183 case 'e': return 3; //earth
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
184
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
185 case 's': return 6; //spirit
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
186 case 'm': return 7; //mind
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
187 //m ?? 8
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
188 case 'l': return 9; //light
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
189 case 'd': return 10; //dark
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
190 // d?? 11
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
191 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
192 return 4; //phis
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
193
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
194 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
195
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
196 //----- (00454D7D) --------------------------------------------------------
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
197 void ParseDamage( char *damage_str, unsigned __int8* dice_rolls, unsigned __int8* dice_sides, unsigned __int8* dmg_bonus )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
198 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
199 int str_len=0;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
200 int str_pos=0;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
201 bool dice_flag=false;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
202
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
203 *dice_rolls = 0;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
204 *dice_sides = 1;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
205 *dmg_bonus = 0;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
206
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
207 str_len = strlen(damage_str);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
208 if (str_len<=0)
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
209 return;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
210 for (str_pos=0;str_pos<str_len;++str_pos )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
211 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
212 if (tolower(damage_str[str_pos])=='d')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
213 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
214 damage_str[str_pos]='\0';
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
215 *dice_rolls=atoi(damage_str);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
216 *dice_sides=atoi(&damage_str[str_pos+1]);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
217 dice_flag=true;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
218 damage_str[str_pos]='d';
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
219 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
220 else if (tolower(damage_str[str_pos])=='+')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
221 *dmg_bonus=atoi(&damage_str[str_pos+1]);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
222 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
223 if (!dice_flag)
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
224 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
225 if ((*damage_str>='0')&&(*damage_str<='9'))
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
226 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
227 *dice_rolls =atoi(damage_str);
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
228 *dice_sides = 1;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
229 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
230 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
231 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
232
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
233 //----- (00454E3A) --------------------------------------------------------
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
234 int ParseMissleAttackType(const char *missle_attack_str)
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
235 {
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
236 if ( !_strcmpi(missle_attack_str, "ARROW") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
237 return 1;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
238 else if ( !_strcmpi(missle_attack_str, "ARROWF") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
239 return 2;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
240 else if ( !_strcmpi(missle_attack_str, "FIRE") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
241 return 3;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
242 else if ( !_strcmpi(missle_attack_str, "AIR") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
243 return 4;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
244 else if ( !_strcmpi(missle_attack_str, "WATER") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
245 return 5;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
246 else if ( !_strcmpi(missle_attack_str, "EARTH") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
247 return 6;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
248 else if ( !_strcmpi(missle_attack_str, "SPIRIT") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
249 return 7;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
250 else if ( !_strcmpi(missle_attack_str, "MIND") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
251 return 8;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
252 else if ( !_strcmpi(missle_attack_str, "BODY") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
253 return 9;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
254 else if ( !_strcmpi(missle_attack_str, "LIGHT") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
255 return 10;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
256 else if ( !_strcmpi(missle_attack_str, "DARK") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
257 return 11;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
258 else if ( !_strcmpi(missle_attack_str, "ENER") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
259 return 13;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
260 else return 0;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
261 }
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
262
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
263
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
264 int ParseSpecialAttack(char *spec_att_str)
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
265 {
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
266 _strlwr(spec_att_str);
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
267 if ( strstr(spec_att_str, "curse") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
268 return 1;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
269 else if ( strstr(spec_att_str, "weak") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
270 return 2;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
271 else if ( strstr(spec_att_str, "asleep") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
272 return 3;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
273 else if ( strstr(spec_att_str, "afraid") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
274 return 23;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
275 else if ( strstr(spec_att_str, "drunk") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
276 return 4;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
277 else if ( strstr(spec_att_str, "insane") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
278 return 5;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
279 else if ( strstr(spec_att_str, "poison1") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
280 return 6;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
281 else if ( strstr(spec_att_str, "poison2") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
282 return 7;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
283 else if ( strstr(spec_att_str, "poison3") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
284 return 8;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
285 else if ( strstr(spec_att_str, "disease1") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
286 return 9;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
287 else if ( strstr(spec_att_str, "disease2") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
288 return 10;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
289 else if ( strstr(spec_att_str, "disease3") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
290 return 11;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
291 else if ( strstr(spec_att_str, "paralyze") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
292 return 12;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
293 else if ( strstr(spec_att_str, "uncon") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
294 return 13;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
295 else if ( strstr(spec_att_str, "dead") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
296 return 14;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
297 else if ( strstr(spec_att_str, "stone") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
298 return 15;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
299 else if ( strstr(spec_att_str, "errad") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
300 return 16;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
301 else if ( strstr(spec_att_str, "brkitem") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
302 return 17;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
303 else if ( strstr(spec_att_str, "brkarmor") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
304 return 18;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
305 else if ( strstr(spec_att_str, "brkweapon") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
306 return 19;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
307 else if ( strstr(spec_att_str, "steal") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
308 return 20;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
309 else if ( strstr(spec_att_str, "age") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
310 return 21;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
311 else if ( strstr(spec_att_str, "drainsp") )
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
312 return 22;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
313 else return 0;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
314 }
0
Ritor1
parents:
diff changeset
315
Ritor1
parents:
diff changeset
316 //----- (004598FC) --------------------------------------------------------
Ritor1
parents:
diff changeset
317 bool MonsterList::FromFileTxt(const char *Args)
Ritor1
parents:
diff changeset
318 {
Ritor1
parents:
diff changeset
319 MonsterList *v2; // ebx@1
Ritor1
parents:
diff changeset
320 FILE *v3; // eax@1
Ritor1
parents:
diff changeset
321 unsigned int v4; // esi@3
Ritor1
parents:
diff changeset
322 void *v5; // eax@9
Ritor1
parents:
diff changeset
323 FILE *v6; // ST14_4@11
Ritor1
parents:
diff changeset
324 char *i; // eax@11
Ritor1
parents:
diff changeset
325 signed int v8; // esi@12
Ritor1
parents:
diff changeset
326 unsigned __int16 v9; // ax@16
Ritor1
parents:
diff changeset
327 const char *v10; // ST18_4@16
Ritor1
parents:
diff changeset
328 unsigned __int16 v11; // ax@16
Ritor1
parents:
diff changeset
329 const char *v12; // ST14_4@16
Ritor1
parents:
diff changeset
330 unsigned __int16 v13; // ax@16
Ritor1
parents:
diff changeset
331 const char *v14; // ST10_4@16
Ritor1
parents:
diff changeset
332 __int16 v15; // ax@16
Ritor1
parents:
diff changeset
333 const char *v16; // ST0C_4@16
Ritor1
parents:
diff changeset
334 int v17; // esi@16
Ritor1
parents:
diff changeset
335 unsigned __int8 v18; // al@16
Ritor1
parents:
diff changeset
336 signed int v19; // esi@16
Ritor1
parents:
diff changeset
337 unsigned __int16 v20; // ax@17
Ritor1
parents:
diff changeset
338 int v21; // ecx@17
Ritor1
parents:
diff changeset
339 char Buf; // [sp+4h] [bp-304h]@3
Ritor1
parents:
diff changeset
340 FrameTableTxtLine v24; // [sp+1F8h] [bp-110h]@4
Ritor1
parents:
diff changeset
341 FrameTableTxtLine v25; // [sp+274h] [bp-94h]@4
Ritor1
parents:
diff changeset
342 int v26; // [sp+2F0h] [bp-18h]@16
Ritor1
parents:
diff changeset
343 char v27; // [sp+2F4h] [bp-14h]@14
Ritor1
parents:
diff changeset
344 char v28; // [sp+2F5h] [bp-13h]@14
Ritor1
parents:
diff changeset
345 char v29; // [sp+2F6h] [bp-12h]@14
Ritor1
parents:
diff changeset
346 char v30; // [sp+2F7h] [bp-11h]@14
Ritor1
parents:
diff changeset
347 char v31; // [sp+2F8h] [bp-10h]@14
Ritor1
parents:
diff changeset
348 char v32; // [sp+2F9h] [bp-Fh]@14
Ritor1
parents:
diff changeset
349 char v33; // [sp+2FAh] [bp-Eh]@14
Ritor1
parents:
diff changeset
350 char v34; // [sp+2FBh] [bp-Dh]@14
Ritor1
parents:
diff changeset
351 char v35; // [sp+2FCh] [bp-Ch]@14
Ritor1
parents:
diff changeset
352 char v36; // [sp+2FDh] [bp-Bh]@14
Ritor1
parents:
diff changeset
353 char v37; // [sp+2FEh] [bp-Ah]@14
Ritor1
parents:
diff changeset
354 char v38; // [sp+2FFh] [bp-9h]@14
Ritor1
parents:
diff changeset
355 char v39; // [sp+300h] [bp-8h]@14
Ritor1
parents:
diff changeset
356 char v40; // [sp+301h] [bp-7h]@14
Ritor1
parents:
diff changeset
357 char v41; // [sp+302h] [bp-6h]@14
Ritor1
parents:
diff changeset
358 char v42; // [sp+303h] [bp-5h]@14
Ritor1
parents:
diff changeset
359 FILE *File; // [sp+304h] [bp-4h]@1
Ritor1
parents:
diff changeset
360 unsigned int Argsa; // [sp+310h] [bp+8h]@3
Ritor1
parents:
diff changeset
361 int Argsb; // [sp+310h] [bp+8h]@16
Ritor1
parents:
diff changeset
362
Ritor1
parents:
diff changeset
363 v2 = this;
Ritor1
parents:
diff changeset
364 v3 = fopen(Args, "r");
Ritor1
parents:
diff changeset
365 File = v3;
Ritor1
parents:
diff changeset
366 if ( !v3 )
Ritor1
parents:
diff changeset
367 Abortf("MonsterRaceListStruct::load - Unable to open file: %s.");
Ritor1
parents:
diff changeset
368 v4 = 0;
Ritor1
parents:
diff changeset
369 Argsa = 0;
Ritor1
parents:
diff changeset
370 if ( fgets(&Buf, 490, v3) )
Ritor1
parents:
diff changeset
371 {
Ritor1
parents:
diff changeset
372 do
Ritor1
parents:
diff changeset
373 {
Ritor1
parents:
diff changeset
374 *strchr(&Buf, 10) = 0;
Ritor1
parents:
diff changeset
375 memcpy(&v25, frame_table_txt_parser(&Buf, &v24), sizeof(v25));
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
376 if ( v25.uPropCount && *v25.pProperties[0] != 47 )
0
Ritor1
parents:
diff changeset
377 ++Argsa;
Ritor1
parents:
diff changeset
378 }
Ritor1
parents:
diff changeset
379 while ( fgets(&Buf, 490, File) );
Ritor1
parents:
diff changeset
380 v4 = Argsa;
Ritor1
parents:
diff changeset
381 }
Ritor1
parents:
diff changeset
382 v2->uNumMonsters = v4;
Ritor1
parents:
diff changeset
383 v5 = pAllocator->AllocNamedChunk(v2->pMonsters, 152 * v4, "Mon Race");
Ritor1
parents:
diff changeset
384 v2->pMonsters = (MonsterDesc *)v5;
Ritor1
parents:
diff changeset
385 if ( !v5 )
Ritor1
parents:
diff changeset
386 Abortf("MonsterRaceListStruct::load - Out of Memory!");
Ritor1
parents:
diff changeset
387 v6 = File;
Ritor1
parents:
diff changeset
388 v2->uNumMonsters = 0;
Ritor1
parents:
diff changeset
389 fseek(v6, 0, 0);
Ritor1
parents:
diff changeset
390 for ( i = fgets(&Buf, 490, File); i; i = fgets(&Buf, 490, File) )
Ritor1
parents:
diff changeset
391 {
Ritor1
parents:
diff changeset
392 *strchr(&Buf, 10) = 0;
Ritor1
parents:
diff changeset
393 memcpy(&v25, frame_table_txt_parser(&Buf, &v24), sizeof(v25));
Ritor1
parents:
diff changeset
394 v8 = 0;
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
395 if ( v25.uPropCount && *v25.pProperties[0] != 47 )
0
Ritor1
parents:
diff changeset
396 {
Ritor1
parents:
diff changeset
397 strcpy(v2->pMonsters[v2->uNumMonsters].pMonsterName, v25.pProperties[0]);
Ritor1
parents:
diff changeset
398 v35 = 0;
Ritor1
parents:
diff changeset
399 v36 = 1;
Ritor1
parents:
diff changeset
400 v37 = 7;
Ritor1
parents:
diff changeset
401 v38 = 2;
Ritor1
parents:
diff changeset
402 v39 = 3;
Ritor1
parents:
diff changeset
403 v40 = 4;
Ritor1
parents:
diff changeset
404 v41 = 5;
Ritor1
parents:
diff changeset
405 v42 = 6;
Ritor1
parents:
diff changeset
406 v27 = 1;
Ritor1
parents:
diff changeset
407 v28 = 2;
Ritor1
parents:
diff changeset
408 v29 = 3;
Ritor1
parents:
diff changeset
409 v30 = 4;
Ritor1
parents:
diff changeset
410 v31 = 4;
Ritor1
parents:
diff changeset
411 v32 = 5;
Ritor1
parents:
diff changeset
412 v33 = 6;
Ritor1
parents:
diff changeset
413 v34 = 7;
Ritor1
parents:
diff changeset
414 do
Ritor1
parents:
diff changeset
415 {
Ritor1
parents:
diff changeset
416 strcpy(
Ritor1
parents:
diff changeset
417 v2->pMonsters[v2->uNumMonsters].pSpriteNames[(unsigned __int8)*(&v35 + v8)],
Ritor1
parents:
diff changeset
418 v25.pProperties[(unsigned __int8)*(&v27 + v8)]);
Ritor1
parents:
diff changeset
419 ++v8;
Ritor1
parents:
diff changeset
420 }
Ritor1
parents:
diff changeset
421 while ( v8 < 8 );
Ritor1
parents:
diff changeset
422 v9 = atoi(v25.pProperties[8]);
Ritor1
parents:
diff changeset
423 v10 = v25.pProperties[9];
Ritor1
parents:
diff changeset
424 v2->pMonsters[v2->uNumMonsters].uMonsterHeight = v9;
Ritor1
parents:
diff changeset
425 v11 = atoi(v10);
Ritor1
parents:
diff changeset
426 v12 = v25.pProperties[10];
Ritor1
parents:
diff changeset
427 v2->pMonsters[v2->uNumMonsters].uMovementSpeed = v11;
Ritor1
parents:
diff changeset
428 v13 = atoi(v12);
Ritor1
parents:
diff changeset
429 v14 = v25.pProperties[11];
Ritor1
parents:
diff changeset
430 v2->pMonsters[v2->uNumMonsters].uMonsterRadius = v13;
Ritor1
parents:
diff changeset
431 v15 = atoi(v14);
Ritor1
parents:
diff changeset
432 v16 = v25.pProperties[12];
Ritor1
parents:
diff changeset
433 v2->pMonsters[v2->uNumMonsters].uToHitRadius = v15;
Ritor1
parents:
diff changeset
434 v17 = (unsigned __int8)atoi(v16);
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
435 Argsb = atoi(v25.pProperties[13]) & 0xFF;
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
436 v26 = atoi(v25.pProperties[14]) & 0xFF;
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
437 v18 = atoi(v25.pProperties[15]);
0
Ritor1
parents:
diff changeset
438 v2->pMonsters[v2->uNumMonsters].uTintColor = v18 | ((v26 | ((Argsb | (v17 << 8)) << 8)) << 8);
Ritor1
parents:
diff changeset
439 v19 = 0;
Ritor1
parents:
diff changeset
440 do
Ritor1
parents:
diff changeset
441 {
701
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
442 v20 = atoi(v25.pProperties[v19 + 16]);
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
443 v21 = v19++ ;
d5b16a44d9b3 frame_table parser, new files for UI func
Gloval
parents: 698
diff changeset
444 v2->pMonsters[v2->uNumMonsters].pSoundSampleIDs[v21] = v20;
0
Ritor1
parents:
diff changeset
445 }
Ritor1
parents:
diff changeset
446 while ( v19 < 4 );
Ritor1
parents:
diff changeset
447 ++v2->uNumMonsters;
Ritor1
parents:
diff changeset
448 }
Ritor1
parents:
diff changeset
449 }
Ritor1
parents:
diff changeset
450 fclose(File);
Ritor1
parents:
diff changeset
451 return 1;
Ritor1
parents:
diff changeset
452 }
Ritor1
parents:
diff changeset
453
Ritor1
parents:
diff changeset
454 //----- (004598AF) --------------------------------------------------------
Ritor1
parents:
diff changeset
455 void MonsterList::FromFile(void *pSerialized)
Ritor1
parents:
diff changeset
456 {
Ritor1
parents:
diff changeset
457 uNumMonsters = *(int *)pSerialized;
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
458 pMonsters = (MonsterDesc *)pAllocator->AllocNamedChunk(pMonsters, sizeof(MonsterDesc) * uNumMonsters, "Mon Race");
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
459 memcpy(pMonsters, (char *)pSerialized + 4, sizeof(MonsterDesc) * uNumMonsters);
0
Ritor1
parents:
diff changeset
460 }
Ritor1
parents:
diff changeset
461
Ritor1
parents:
diff changeset
462 //----- (00459860) --------------------------------------------------------
Ritor1
parents:
diff changeset
463 void MonsterList::ToFile()
Ritor1
parents:
diff changeset
464 {
Ritor1
parents:
diff changeset
465 MonsterList *v1; // esi@1
Ritor1
parents:
diff changeset
466 FILE *v2; // eax@1
Ritor1
parents:
diff changeset
467 FILE *v3; // edi@1
Ritor1
parents:
diff changeset
468
Ritor1
parents:
diff changeset
469 v1 = this;
Ritor1
parents:
diff changeset
470 v2 = fopen("data\\dmonlist.bin", "wb");
Ritor1
parents:
diff changeset
471 v3 = v2;
Ritor1
parents:
diff changeset
472 if ( !v2 )
Ritor1
parents:
diff changeset
473 Abortf("Unable to save dmonlist.bin!");
Ritor1
parents:
diff changeset
474 fwrite(v1, 4u, 1u, v2);
Ritor1
parents:
diff changeset
475 fwrite(v1->pMonsters, 0x98u, v1->uNumMonsters, v3);
Ritor1
parents:
diff changeset
476 fclose(v3);
Ritor1
parents:
diff changeset
477 }
Ritor1
parents:
diff changeset
478
Ritor1
parents:
diff changeset
479
Ritor1
parents:
diff changeset
480 //----- (004563FF) --------------------------------------------------------
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
481 signed int MonsterStats::FindMonsterByTextureName(const char *monster_textr_name)
0
Ritor1
parents:
diff changeset
482 {
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
483 for (int i=1; i<uNumMonsters; ++i)
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
484 {
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
485 if((pInfos[i].pName )&& (!_strcmpi(pInfos[i].pPictureName, monster_textr_name)))
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
486 return i;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
487 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
488 return -1;
0
Ritor1
parents:
diff changeset
489 }
Ritor1
parents:
diff changeset
490
Ritor1
parents:
diff changeset
491
Ritor1
parents:
diff changeset
492 //----- (00454F4E) --------------------------------------------------------
Ritor1
parents:
diff changeset
493 void MonsterStats::InitializePlacements()
Ritor1
parents:
diff changeset
494 {
237
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
495 int i;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
496 char* test_string;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
497 unsigned char c;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
498 bool break_loop;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
499 unsigned int temp_str_len;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
500 char* tmp_pos;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
501 int decode_step;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
502 int item_counter;
0
Ritor1
parents:
diff changeset
503
Ritor1
parents:
diff changeset
504 pMonsterPlacementTXT_Raw = (char *)pEvents_LOD->LoadRaw("placemon.txt", 0);
Ritor1
parents:
diff changeset
505 strtok(pMonsterPlacementTXT_Raw, "\r");
237
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
506 for (i=1; i<31; ++i)
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
507 {
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
508 test_string = strtok(NULL, "\r") + 1;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
509 break_loop = false;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
510 decode_step=0;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
511 do
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
512 {
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
513 c = *(unsigned char*)test_string;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
514 temp_str_len = 0;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
515 while((c!='\t')&&(c>0))
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
516 {
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
517 ++temp_str_len;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
518 c=test_string[temp_str_len];
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
519 }
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
520 tmp_pos=test_string+temp_str_len;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
521 if (*tmp_pos == 0)
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
522 break_loop = true;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
523 *tmp_pos = 0;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
524 if (temp_str_len)
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
525 {
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
526 if (decode_step==1)
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
527 pPlaceStrings[i]=RemoveQuotes(test_string);
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
528 }
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
529 else
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
530 {
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
531 break_loop = true;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
532 }
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
533 ++decode_step;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
534 test_string=tmp_pos+1;
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
535 } while ((decode_step<3)&&!break_loop);
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
536 }
2799737f8a74 more text parsers refactor
Gloval
parents: 190
diff changeset
537 uNumPlacements = 31;
0
Ritor1
parents:
diff changeset
538 }
Ritor1
parents:
diff changeset
539
Ritor1
parents:
diff changeset
540 //----- (0045501E) --------------------------------------------------------
Ritor1
parents:
diff changeset
541 void MonsterStats::Initialize()
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
542 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
543 int i,j;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
544 char* test_string;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
545 unsigned char c;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
546 bool break_loop;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
547 unsigned int temp_str_len;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
548 char* tmp_pos;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
549 int decode_step;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
550 int item_counter;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
551 int curr_rec_num;
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
552 char parse_str[64];
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
553 char Src[120];
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
554 FrameTableTxtLine parsed_field;
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
555
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
556 if ( pMonstersTXT_Raw )
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
557 pAllocator->FreeChunk(pMonstersTXT_Raw);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
558 pMonstersTXT_Raw = NULL;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
559 pMonstersTXT_Raw = (char *)pEvents_LOD->LoadRaw("monsters.txt", 0);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
560 strtok(pMonstersTXT_Raw, "\r");
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
561 strtok(NULL, "\r");
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
562 strtok(NULL, "\r");
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
563 strtok(NULL, "\r");
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
564 uNumMonsters = 265;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
565 curr_rec_num=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
566 for (i=0;i<uNumMonsters-1;++i)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
567 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
568 test_string = strtok(NULL, "\r") + 1;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
569 break_loop = false;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
570 decode_step=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
571 do
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
572 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
573 c = *(unsigned char*)test_string;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
574 temp_str_len = 0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
575 while((c!='\t')&&(c>0))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
576 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
577 ++temp_str_len;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
578 c=test_string[temp_str_len];
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
579 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
580 tmp_pos=test_string+temp_str_len;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
581 if (*tmp_pos == 0)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
582 break_loop = true;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
583 *tmp_pos = 0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
584 if (temp_str_len)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
585 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
586 switch (decode_step)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
587 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
588 case 0:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
589 curr_rec_num=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
590 pInfos[curr_rec_num].uID=curr_rec_num;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
591 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
592 case 1:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
593 pInfos[curr_rec_num].pName=RemoveQuotes(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
594 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
595 case 2:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
596 pInfos[curr_rec_num].pPictureName=RemoveQuotes(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
597 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
598 case 3:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
599 pInfos[curr_rec_num].uLevel=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
600 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
601 case 4:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
602 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
603 int str_len=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
604 int str_pos=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
605 pInfos[curr_rec_num].uHP=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
606 if (test_string[0]=='"')
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
607 test_string[0]=' ';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
608 str_len=strlen(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
609 if (str_len==0)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
610 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
611 while ((test_string[str_pos]!=',')&&(str_pos<str_len))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
612 ++str_pos;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
613 if (str_len==str_pos)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
614 pInfos[curr_rec_num].uHP=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
615 else
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
616 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
617 test_string[str_pos]='\0';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
618 pInfos[curr_rec_num].uHP=1000*atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
619 pInfos[curr_rec_num].uHP+=atoi(&test_string[str_pos+1]);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
620 test_string[str_pos]=',';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
621 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
622 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
623 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
624 case 5:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
625 pInfos[curr_rec_num].uAC=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
626 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
627 case 6:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
628 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
629 int str_len=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
630 int str_pos=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
631 pInfos[curr_rec_num].uExp=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
632 if (test_string[0]=='"')
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
633 test_string[0]=' ';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
634 str_len=strlen(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
635 if (str_len==0)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
636 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
637 while ((test_string[str_pos]!=',')&&(str_pos<str_len))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
638 ++str_pos;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
639 if (str_len==str_pos)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
640 pInfos[curr_rec_num].uExp=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
641 else
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
642 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
643 test_string[str_pos]='\0';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
644 pInfos[curr_rec_num].uExp=1000*atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
645 pInfos[curr_rec_num].uExp+=atoi(&test_string[str_pos+1]);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
646 test_string[str_pos]=',';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
647 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
648 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
649 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
650 case 7:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
651 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
652 int str_len=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
653 int str_pos=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
654 bool chance_flag=false;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
655 bool dice_flag=false;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
656 bool item_type_flag=false;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
657 char* item_name;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
658 pInfos[curr_rec_num].uTreasureDropChance=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
659 pInfos[curr_rec_num].uTreasureDiceRolls=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
660 pInfos[curr_rec_num].uTreasureDiceSides=0;
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
661 pInfos[curr_rec_num].uTreasureType=0;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
662 pInfos[curr_rec_num].uTreasureLevel=0;
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
663 if (test_string[0]=='"')
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
664 test_string[0]=' ';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
665 str_len=strlen(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
666 do
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
667 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
668 switch(tolower(test_string[str_pos]))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
669 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
670 case '%': chance_flag=true; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
671 case 'd': dice_flag=true; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
672 case 'l': item_type_flag=true; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
673 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
674 ++str_pos;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
675 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
676 while(str_pos<str_len);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
677 if (chance_flag)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
678 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
679 pInfos[curr_rec_num].uTreasureDropChance=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
680 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
681 else
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
682 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
683 if ((!dice_flag)&&(!item_type_flag))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
684 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
685 pInfos[curr_rec_num].uTreasureDropChance=100;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
686 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
687 if (dice_flag)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
688 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
689 str_pos=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
690 dice_flag=false;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
691 do
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
692 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
693 switch(tolower(test_string[str_pos]))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
694 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
695 case '%':
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
696 pInfos[curr_rec_num].uTreasureDiceRolls=atoi(&test_string[str_pos+1]);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
697 dice_flag=true;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
698 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
699 case 'd':
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
700 if(!dice_flag)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
701 pInfos[curr_rec_num].uTreasureDiceRolls=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
702 pInfos[curr_rec_num].uTreasureDiceSides=atoi(&test_string[str_pos+1]);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
703 str_pos=str_len;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
704 break;
0
Ritor1
parents:
diff changeset
705
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
706 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
707 ++str_pos;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
708 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
709 while(str_pos<str_len);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
710 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
711 if (item_type_flag)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
712 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
713 str_pos=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
714 do
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
715 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
716 if (tolower(test_string[str_pos])=='l')
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
717 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
718 ++str_pos;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
719 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
720 while(str_pos<str_len);
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
721
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
722 pInfos[curr_rec_num].uTreasureLevel=test_string[str_pos+1]-'0';
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
723 item_name=&test_string[str_pos+2];
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
724 if (*item_name)
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
725 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
726 if ( !_strcmpi(item_name, "WEAPON"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
727 pInfos[curr_rec_num].uTreasureType= 20;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
728 else if ( !_strcmpi(item_name, "ARMOR"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
729 pInfos[curr_rec_num].uTreasureType= 21;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
730 else if ( !_strcmpi(item_name, "MISC"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
731 pInfos[curr_rec_num].uTreasureType= 22;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
732 else if ( !_strcmpi(item_name, "SWORD"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
733 pInfos[curr_rec_num].uTreasureType= 23;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
734 else if ( !_strcmpi(item_name, "DAGGER"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
735 pInfos[curr_rec_num].uTreasureType= 24;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
736 else if ( !_strcmpi(item_name, "AXE"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
737 pInfos[curr_rec_num].uTreasureType= 25;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
738 else if ( !_strcmpi(item_name, "SPEAR"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
739 pInfos[curr_rec_num].uTreasureType= 26;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
740 else if ( !_strcmpi(item_name, "BOW"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
741 pInfos[curr_rec_num].uTreasureType= 27;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
742 else if ( !_strcmpi(item_name, "MACE"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
743 pInfos[curr_rec_num].uTreasureType= 28;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
744 else if ( !_strcmpi(item_name, "CLUB"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
745 pInfos[curr_rec_num].uTreasureType= 29;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
746 else if ( !_strcmpi(item_name, "STAFF"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
747 pInfos[curr_rec_num].uTreasureType= 30;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
748 else if ( !_strcmpi(item_name, "LEATHER"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
749 pInfos[curr_rec_num].uTreasureType= 31;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
750 else if ( !_strcmpi(item_name, "CHAIN"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
751 pInfos[curr_rec_num].uTreasureType= 32;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
752 else if ( !_strcmpi(item_name, "PLATE"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
753 pInfos[curr_rec_num].uTreasureType= 33;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
754 else if ( !_strcmpi(item_name, "SHIELD"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
755 pInfos[curr_rec_num].uTreasureType= 34;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
756 else if ( !_strcmpi(item_name, "HELM"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
757 pInfos[curr_rec_num].uTreasureType= 35;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
758 else if ( !_strcmpi(item_name, "BELT"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
759 pInfos[curr_rec_num].uTreasureType= 36;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
760 else if ( !_strcmpi(item_name, "CAPE"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
761 pInfos[curr_rec_num].uTreasureType= 37;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
762 else if ( !_strcmpi(item_name, "GAUNTLETS"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
763 pInfos[curr_rec_num].uTreasureType= 38;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
764 else if ( !_strcmpi(item_name, "BOOTS"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
765 pInfos[curr_rec_num].uTreasureType= 39;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
766 else if ( !_strcmpi(item_name, "RING"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
767 pInfos[curr_rec_num].uTreasureType= 40;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
768 else if ( !_strcmpi(item_name, "AMULET"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
769 pInfos[curr_rec_num].uTreasureType= 41;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
770 else if ( !_strcmpi(item_name, "WAND"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
771 pInfos[curr_rec_num].uTreasureType= 42;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
772 else if ( !_strcmpi(item_name, "SCROLL"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
773 pInfos[curr_rec_num].uTreasureType= 43;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
774 else if ( !_strcmpi(item_name, "GEM"))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
775 pInfos[curr_rec_num].uTreasureType= 46;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
776 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
777 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
778
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
779 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
780 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
781 case 8:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
782 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
783 pInfos[curr_rec_num].bQuestMonster=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
784 if (atoi(test_string))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
785 pInfos[curr_rec_num].bQuestMonster=1;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
786 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
787 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
788 case 9:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
789 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
790 pInfos[curr_rec_num].uFlying=false;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
791 if (_strnicmp(test_string, "n",1))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
792 pInfos[curr_rec_num].uFlying=true;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
793 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
794 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
795 case 10:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
796 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
797 switch(tolower(test_string[0]))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
798 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
799 case 's': pInfos[curr_rec_num].uMovementType=0;// short
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
800 if (tolower(test_string[1])!='h')
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
801 pInfos[curr_rec_num].uMovementType=5; //??
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
802 break; //short
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
803 case 'l': pInfos[curr_rec_num].uMovementType=2; break; //long
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
804 case 'm': pInfos[curr_rec_num].uMovementType=1; break; //med
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
805 case 'g': pInfos[curr_rec_num].uMovementType=3; break; //???
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
806 default:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
807 pInfos[curr_rec_num].uMovementType=4; //free
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
808 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
809 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
810 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
811 case 11:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
812 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
813 switch(tolower(test_string[0]))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
814 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
815 case 's': pInfos[curr_rec_num].uAIType=0; break; // suicide
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
816 case 'w': pInfos[curr_rec_num].uAIType=1; break; //wimp
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
817 case 'n': pInfos[curr_rec_num].uAIType=2; break; //normal
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
818 default:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
819 pInfos[curr_rec_num].uAIType=3; //Agress
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
820 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
821 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
822 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
823 case 12:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
824 pInfos[curr_rec_num].uHostilityType=(MonsterInfo::HostilityRadius)atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
825 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
826 case 13:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
827 pInfos[curr_rec_num].uBaseSpeed=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
828 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
829 case 14:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
830 pInfos[curr_rec_num].uRecoveryTime=atoi(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
831 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
832 case 15:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
833 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
834 int str_len=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
835 int str_pos=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
836 pInfos[curr_rec_num].uAttackPreference=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
837 pInfos[curr_rec_num].uNumCharactersAttackedPerSpecialAbility=0;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
838 str_len=strlen(test_string);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
839 for (str_pos=0;str_pos<str_len;++str_pos )
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
840 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
841 switch(tolower(test_string[str_pos]))
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
842 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
843 case '0': pInfos[curr_rec_num].uAttackPreference|=0x0004; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
844 case '2': pInfos[curr_rec_num].uNumCharactersAttackedPerSpecialAbility=2; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
845 case '3': pInfos[curr_rec_num].uNumCharactersAttackedPerSpecialAbility=3; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
846 case '4': pInfos[curr_rec_num].uNumCharactersAttackedPerSpecialAbility=4; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
847 case 'c': pInfos[curr_rec_num].uAttackPreference|=0x0010; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
848 case 'd': pInfos[curr_rec_num].uAttackPreference|=0x0008; break;
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
849 case 'e': pInfos[curr_rec_num].uAttackPreference|=0x1000; break;
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
850 case 'f': pInfos[curr_rec_num].uAttackPreference|=0x0400; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
851 case 'h': pInfos[curr_rec_num].uAttackPreference|=0x0800; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
852 case 'k': pInfos[curr_rec_num].uAttackPreference|=0x0001; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
853 case 'm': pInfos[curr_rec_num].uAttackPreference|=0x0100; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
854 case 'o': pInfos[curr_rec_num].uAttackPreference|=0x0400; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
855 case 'p': pInfos[curr_rec_num].uAttackPreference|=0x0002; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
856 case 'r': pInfos[curr_rec_num].uAttackPreference|=0x0040; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
857 case 's': pInfos[curr_rec_num].uAttackPreference|=0x0020; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
858 case 't': pInfos[curr_rec_num].uAttackPreference|=0x0080; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
859 case 'w': pInfos[curr_rec_num].uAttackPreference|=0x2000; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
860 case 'x': pInfos[curr_rec_num].uAttackPreference|=0x0200; break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
861 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
862 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
863 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
864 break;
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
865 case 16:
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
866 {
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
867 int str_len=0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
868 int str_pos=0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
869 pInfos[curr_rec_num].uSpecialAttackType=1;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
870 pInfos[curr_rec_num].uSpecialAttack=0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
871 str_len=strlen(test_string);
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
872 if (str_len>1)
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
873 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
874 for (str_pos=0;str_pos<str_len;++str_pos )
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
875 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
876 if (tolower(test_string[str_pos])=='x')
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
877 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
878 test_string[str_pos]='\0';
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
879 pInfos[curr_rec_num].uSpecialAttackType=atoi(&test_string[str_pos+1]);
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
880 test_string[str_pos]='x';
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
881 break;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
882 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
883 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
884 pInfos[curr_rec_num].uSpecialAttack=ParseSpecialAttack(test_string);
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
885 }
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
886 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
887 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
888 case 17:
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
889 pInfos[curr_rec_num].uAttack1Type=ParseAttackType(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
890 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
891 case 18:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
892 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
893 ParseDamage(test_string, &pInfos[curr_rec_num].uAttack1DamageDiceRolls,
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
894 &pInfos[curr_rec_num].uAttack1DamageDiceSides,
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
895 &pInfos[curr_rec_num].uAttack1DamageBonus);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
896 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
897 break;
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
898 case 19:
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
899 pInfos[curr_rec_num].uMissleAttack1Type=ParseMissleAttackType(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
900 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
901 case 20:
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
902 pInfos[curr_rec_num].uAttack2Chance=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
903 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
904 case 21:
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
905 pInfos[curr_rec_num].uAttack2Type=ParseAttackType(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
906 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
907 case 22:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
908 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
909 ParseDamage(test_string, &pInfos[curr_rec_num].uAttack2DamageDiceRolls,
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
910 &pInfos[curr_rec_num].uAttack2DamageDiceSides,
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
911 &pInfos[curr_rec_num].uAttack2DamageBonus);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
912 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
913 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
914 case 23:
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
915 pInfos[curr_rec_num].uMissleAttack2Type=ParseMissleAttackType(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
916 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
917 case 24:
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
918 pInfos[curr_rec_num].uSpell1UseChance=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
919 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
920 case 25:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
921 {
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
922 int param_num;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
923 char type_flag;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
924 strcpy(parse_str,test_string);
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
925 parse_str[0]=' ';
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
926 parse_str[strlen(parse_str)-1]=' ';
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
927 frame_table_txt_parser(parse_str,&parsed_field);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
928 if (parsed_field.uPropCount>2)
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
929 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
930 param_num=1;
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
931 pInfos[curr_rec_num].uSpell1ID=ParseSpellType(&parsed_field,&param_num);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
932 type_flag=*parsed_field.pProperties[param_num];
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
933 pInfos[curr_rec_num].uSpellSkillAndMastery1=atoi(parsed_field.pProperties[param_num+1])&0x003F;
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
934 switch(type_flag)
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
935 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
936 case 'E': pInfos[curr_rec_num].uSpellSkillAndMastery1|=0x0040; break;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
937 case 'M': pInfos[curr_rec_num].uSpellSkillAndMastery1|=0x0080; break;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
938 case 'G': pInfos[curr_rec_num].uSpellSkillAndMastery1|=0x0100; break;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
939 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
940 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
941 else
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
942 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
943 pInfos[curr_rec_num].uSpell1ID=0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
944 pInfos[curr_rec_num].uSpellSkillAndMastery1=0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
945 }
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
946
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
947 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
948 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
949 case 26:
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
950 pInfos[curr_rec_num].uSpell2UseChance=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
951 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
952 case 27:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
953 {
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
954 int param_num;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
955 char type_flag;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
956 strcpy(parse_str,test_string);
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
957 parse_str[0]=' ';
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
958 parse_str[strlen(parse_str)-1]=' ';
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
959 frame_table_txt_parser(parse_str,&parsed_field);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
960 if (parsed_field.uPropCount>2)
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
961 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
962 param_num=1;
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
963 pInfos[curr_rec_num].uSpell2ID=ParseSpellType(&parsed_field,&param_num);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
964 type_flag=*parsed_field.pProperties[param_num];
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
965 pInfos[curr_rec_num].uSpellSkillAndMastery2=atoi(parsed_field.pProperties[param_num+1])&0x003F;
703
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
966 switch(type_flag)
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
967 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
968 case 'E': pInfos[curr_rec_num].uSpellSkillAndMastery2|=0x0040; break;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
969 case 'M': pInfos[curr_rec_num].uSpellSkillAndMastery2|=0x0080; break;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
970 case 'G': pInfos[curr_rec_num].uSpellSkillAndMastery2|=0x0100; break;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
971 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
972 }
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
973 else
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
974 {
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
975 pInfos[curr_rec_num].uSpell2ID=0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
976 pInfos[curr_rec_num].uSpellSkillAndMastery2=0;
a9c1fb7483c2 monster parser almost complete.
Gloval
parents: 701
diff changeset
977 }
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
978 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
979 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
980 case 28:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
981 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
982 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
983 pInfos[curr_rec_num].uResFire=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
984 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
985 pInfos[curr_rec_num].uResFire=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
986 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
987 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
988 case 29:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
989 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
990 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
991 pInfos[curr_rec_num].uResAir=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
992 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
993 pInfos[curr_rec_num].uResAir=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
994 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
995 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
996 case 30:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
997 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
998 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
999 pInfos[curr_rec_num].uResWater=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1000 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1001 pInfos[curr_rec_num].uResWater=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1002 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1003 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1004 case 31:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1005 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1006 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1007 pInfos[curr_rec_num].uResEarth=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1008 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1009 pInfos[curr_rec_num].uResEarth=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1010 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1011 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1012 case 32:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1013 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1014 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1015 pInfos[curr_rec_num].uResMind=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1016 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1017 pInfos[curr_rec_num].uResMind=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1018 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1019 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1020 case 33:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1021 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1022 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1023 pInfos[curr_rec_num].uResSpirit=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1024 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1025 pInfos[curr_rec_num].uResSpirit=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1026 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1027 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1028 case 34:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1029 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1030 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1031 pInfos[curr_rec_num].uResBody=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1032 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1033 pInfos[curr_rec_num].uResBody=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1034 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1035 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1036 case 35:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1037 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1038 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1039 pInfos[curr_rec_num].uResLight=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1040 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1041 pInfos[curr_rec_num].uResLight=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1042 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1043 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1044 case 36:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1045 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1046 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1047 pInfos[curr_rec_num].uResDark=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1048 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1049 pInfos[curr_rec_num].uResDark=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1050 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1051 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1052 case 37:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1053 {
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1054 if (tolower(test_string[0])=='i')
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1055 pInfos[curr_rec_num].uResPhysical=200;
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1056 else
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1057 pInfos[curr_rec_num].uResPhysical=atoi(test_string);
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1058 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1059 break;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1060 case 38:
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1061 {
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1062 int param_num;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1063 char type_flag;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1064 pInfos[curr_rec_num].uSpecialAbilityType=0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1065 pInfos[curr_rec_num].uSpecialAbilityDamageDiceBonus=0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1066 strcpy(parse_str,test_string);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1067 parse_str[0]=' ';
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1068 parse_str[strlen(parse_str)-1]=' ';
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1069 frame_table_txt_parser(parse_str,&parsed_field);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1070 if ( parsed_field.uPropCount )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1071 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1072 // v74 = v94.field_0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1073 if ( parsed_field.uPropCount < 10 )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1074 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1075 if (! _strcmpi(parsed_field.pProperties[0], "shot") )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1076 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1077 pInfos[curr_rec_num].uSpecialAbilityType=1;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1078 pInfos[curr_rec_num].uSpecialAbilityDamageDiceBonus=atoi((char *)(parsed_field.pProperties[1] + 1));
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1079 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1080 else if (!_strcmpi(parsed_field.pProperties[0], "summon") )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1081 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1082 pInfos[curr_rec_num].uSpecialAbilityType=2;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1083 if ( parsed_field.uPropCount > 1 )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1084 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1085 pTmpBuf[0] = 0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1086 strcpy(pTmpBuf, parsed_field.pProperties[2]);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1087 if ( parsed_field.uPropCount > 2 )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1088 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1089 int prop_cnt = 3;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1090 if ( parsed_field.uPropCount > 3 )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1091 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1092 do
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1093 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1094 strcat(pTmpBuf, " ");
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1095 char test_char = parsed_field.pProperties[prop_cnt][0];
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1096 strcat(pTmpBuf, parsed_field.pProperties[prop_cnt]);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1097 if ( prop_cnt == (parsed_field.uPropCount - 1) )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1098 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1099 switch (tolower(test_char))
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1100 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1101 case 'a': pInfos[curr_rec_num].uSpecialAbilityDamageDiceRolls = 1; break;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1102 case 'b': pInfos[curr_rec_num].uSpecialAbilityDamageDiceRolls = 2; break;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1103 case 'c': pInfos[curr_rec_num].uSpecialAbilityDamageDiceRolls = 3; break;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1104 default:
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1105 pInfos[curr_rec_num].uSpecialAbilityDamageDiceRolls = 0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1106 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1107
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1108 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1109 ++prop_cnt;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1110 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1111 while ( prop_cnt < parsed_field.uPropCount );
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1112 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1113 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1114 else
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1115 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1116 pInfos[curr_rec_num].uSpecialAbilityDamageDiceRolls = 0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1117 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1118 if ( pMonsterList->uNumMonsters )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1119 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1120 pInfos[curr_rec_num].field_3C_some_special_attack = pMonsterList->GetMonsterIDByName(pTmpBuf) + 1;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1121 if ( pInfos[curr_rec_num].field_3C_some_special_attack == -1 )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1122 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1123 sprintf(Src, "Can't create random monster: '%s' See MapStats!", pTmpBuf);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1124 MessageBoxA(nullptr, Src, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Itemdata.cpp:2239", 0);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1125 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1126 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1127 pInfos[curr_rec_num].uSpecialAbilityDamageDiceSides = 0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1128 if ( !_strcmpi(parsed_field.pProperties[1], "ground") )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1129 pInfos[curr_rec_num].uSpecialAbilityDamageDiceSides = 1;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1130 if ( pInfos[curr_rec_num].field_3C_some_special_attack == -1 )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1131 pInfos[curr_rec_num].uSpecialAbilityType = 0;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1132 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1133 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1134 else if (!_strcmpi(parsed_field.pProperties[0], "explode") )
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1135 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1136 pInfos[curr_rec_num].uSpecialAbilityType = 3;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1137 ParseDamage((char*)parsed_field.pProperties[1], &pInfos[curr_rec_num].uSpecialAbilityDamageDiceRolls,
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1138 &pInfos[curr_rec_num].uSpecialAbilityDamageDiceSides,
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1139 &pInfos[curr_rec_num].uSpecialAbilityDamageDiceBonus);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1140 pInfos[curr_rec_num].field_3C_some_special_attack = ParseAttackType(test_string);
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1141 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1142 }
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1143 }
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1144 }
698
b097497f07e2 monster table continue fixinf
Gloval
parents: 694
diff changeset
1145 break;
694
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1146 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1147 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1148 else
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1149 {
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1150 break_loop = true;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1151 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1152 ++decode_step;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1153 test_string=tmp_pos+1;
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1154 } while ((decode_step<39)&&!break_loop);
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1155 }
52329962fcdb monster table init rework started
Gloval
parents: 237
diff changeset
1156 uNumMonsters = i;
0
Ritor1
parents:
diff changeset
1157 }
Ritor1
parents:
diff changeset
1158
Ritor1
parents:
diff changeset
1159
Ritor1
parents:
diff changeset
1160 //----- (0044FA08) --------------------------------------------------------
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1161 signed __int16 MonsterList::GetMonsterIDByName( const char *pMonsterName )
0
Ritor1
parents:
diff changeset
1162 {
751
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1163 if (!pMonsterName)
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1164 return -1;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1165 for (signed __int16 i=1; i<=uNumMonsters; ++i)
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1166 {
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1167 if( (!_strcmpi(pMonsters[i].pMonsterName, pMonsterName)))
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1168 return i;
6005142abce0 monster init refactored
Gloval
parents: 703
diff changeset
1169 }
0
Ritor1
parents:
diff changeset
1170 }