ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/recipe.C
(Generate patch)

Comparing deliantra/server/common/recipe.C (file contents):
Revision 1.2 by root, Tue Aug 29 08:01:36 2006 UTC vs.
Revision 1.7 by root, Thu Sep 14 22:34:00 2006 UTC

1
2
3/* Basic stuff for use with the alchemy code. Clearly some of this stuff 1/* Basic stuff for use with the alchemy code. Clearly some of this stuff
4 * could go into server/alchemy, but I left it here just in case it proves 2 * could go into server/alchemy, but I left it here just in case it proves
5 * more generally useful. 3 * more generally useful.
6 * 4 *
7 * Nov 1995 - file created by b.t. thomas@astro.psu.edu 5 * Nov 1995 - file created by b.t. thomas@astro.psu.edu
22 20
23#include <global.h> 21#include <global.h>
24#include <object.h> 22#include <object.h>
25#include <ctype.h> 23#include <ctype.h>
26 24
27static void build_stringlist(const char *str, char ***result_list, size_t *result_size); 25static void build_stringlist (const char *str, char ***result_list, size_t * result_size);
28 26
29static recipelist *formulalist; 27static recipelist *formulalist;
30 28
31static recipelist *init_recipelist(void) { 29static recipelist *
32 recipelist *tl = (recipelist *) malloc(sizeof(recipelist)); 30init_recipelist (void)
33 if(tl==NULL) 31{
34 fatal(OUT_OF_MEMORY); 32 recipelist *tl = new recipelist;
33
35 tl->total_chance=0; 34 tl->total_chance = 0;
36 tl->number=0; 35 tl->number = 0;
37 tl->items=NULL; 36 tl->items = NULL;
38 tl->next=NULL; 37 tl->next = NULL;
39 return tl; 38 return tl;
40} 39}
41 40
42static recipe *get_empty_formula(void) { 41static recipe *
43 recipe *t = (recipe *) malloc(sizeof(recipe)); 42get_empty_formula (void)
44 if(t==NULL) 43{
45 fatal(OUT_OF_MEMORY); 44 recipe *t = new recipe;
45
46 t->chance = 0; 46 t->chance = 0;
47 t->index = 0; 47 t->index = 0;
48 t->transmute = 0; 48 t->transmute = 0;
49 t->yield=0; 49 t->yield = 0;
50 t->diff=0; 50 t->diff = 0;
51 t->exp=0; 51 t->exp = 0;
52 t->keycode = 0; 52 t->keycode = 0;
53 t->title = NULL; 53 t->title = NULL;
54 t->arch_names = 0; 54 t->arch_names = 0;
55 t->arch_name = NULL; 55 t->arch_name = NULL;
56 t->skill = NULL; 56 t->skill = NULL;
57 t->cauldron = NULL; 57 t->cauldron = NULL;
58 t->ingred = NULL; 58 t->ingred = NULL;
59 t->next=NULL; 59 t->next = NULL;
60 return t; 60 return t;
61} 61}
62 62
63/* get_formulalist() - returns pointer to the formula list */ 63/* get_formulalist() - returns pointer to the formula list */
64 64
65recipelist * get_formulalist ( int i ) { 65recipelist *
66get_formulalist (int i)
67{
66 recipelist *fl=formulalist; 68 recipelist *fl = formulalist;
67 int number=i; 69 int number = i;
68 70
69 while(fl && number>1) { 71 while (fl && number > 1)
72 {
70 if(!(fl=fl->next)) break; 73 if (!(fl = fl->next))
74 break;
71 number--; 75 number--;
72 } 76 }
73 return fl; 77 return fl;
74} 78}
75 79
76/* check_recipe() - makes sure we actually have the requested artifact 80/* check_recipe() - makes sure we actually have the requested artifact
77 * and archetype. */ 81 * and archetype. */
78 82
83static int
79static int check_recipe(const recipe *rp) { 84check_recipe (const recipe *rp)
85{
80 size_t i; 86 size_t i;
81 int result; 87 int result;
82 88
83 result = 1; 89 result = 1;
84 for (i = 0; i < rp->arch_names; i++) { 90 for (i = 0; i < rp->arch_names; i++)
91 {
85 if (find_archetype(rp->arch_name[i]) != NULL) { 92 if (archetype::find (rp->arch_name[i]) != NULL)
93 {
86 artifact *art = locate_recipe_artifact(rp, i); 94 artifact *art = locate_recipe_artifact (rp, i);
95
87 if (!art && strcmp(rp->title, "NONE") != 0) { 96 if (!art && strcmp (rp->title, "NONE") != 0)
97 {
88 LOG(llevError,"\nWARNING: Formula %s of %s has no artifact.\n", rp->arch_name[i], rp->title); 98 LOG (llevError, "\nWARNING: Formula %s of %s has no artifact.\n", rp->arch_name[i], &rp->title);
89 result = 0; 99 result = 0;
90 } 100 }
91 } else { 101 }
102 else
103 {
92 LOG(llevError,"\nWARNING: Can't find archetype %s for formula %s\n", rp->arch_name[i], rp->title); 104 LOG (llevError, "\nWARNING: Can't find archetype %s for formula %s\n", rp->arch_name[i], &rp->title);
93 result = 0; 105 result = 0;
94 } 106 }
95 }
96 107 }
108
97 return result; 109 return result;
98} 110}
99 111
100 112
101/* 113/*
102 * init_formulae() - Builds up the lists of formula from the file in 114 * init_formulae() - Builds up the lists of formula from the file in
103 * the libdir. -b.t. 115 * the libdir. -b.t.
104 */ 116 */
105 117
118void
106void init_formulae(void) { 119init_formulae (void)
120{
107 static int has_been_done=0; 121 static int has_been_done = 0;
108 FILE *fp; 122 FILE *fp;
109 char filename[MAX_BUF], buf[MAX_BUF], *cp, *next; 123 char filename[MAX_BUF], buf[MAX_BUF], *cp, *next;
110 recipe *formula=NULL; 124 recipe *formula = NULL;
111 recipelist *fl=init_recipelist(); 125 recipelist *fl = init_recipelist ();
112 linked_char *tmp; 126 linked_char *tmp;
113 int value, comp; 127 int value, comp;
114 128
115 if(!formulalist) formulalist = fl; 129 if (!formulalist)
116 130 formulalist = fl;
131
117 if (has_been_done) return; 132 if (has_been_done)
118 else has_been_done = 1;
119
120 sprintf(filename, "%s/formulae", settings.datadir);
121 LOG(llevDebug, "Reading alchemical formulae from %s...",filename);
122 if ((fp = open_and_uncompress(filename, 0, &comp)) == NULL) {
123 LOG(llevError, "Can't open %s.\n", filename);
124 return; 133 return;
134 else
135 has_been_done = 1;
136
137 sprintf (filename, "%s/formulae", settings.datadir);
138 LOG (llevDebug, "Reading alchemical formulae from %s...", filename);
139 if ((fp = open_and_uncompress (filename, 0, &comp)) == NULL)
140 {
141 LOG (llevError, "Can't open %s.\n", filename);
142 return;
125 } 143 }
126 144
127 while (fgets(buf, MAX_BUF, fp)!=NULL) { 145 while (fgets (buf, MAX_BUF, fp) != NULL)
128 if (*buf=='#') continue; 146 {
147 if (*buf == '#')
148 continue;
129 if((cp=strchr(buf,'\n'))!=NULL) 149 if ((cp = strchr (buf, '\n')) != NULL)
130 *cp='\0'; 150 *cp = '\0';
131 cp=buf; 151 cp = buf;
132 while(*cp==' ') /* Skip blanks */ 152 while (*cp == ' ') /* Skip blanks */
133 cp++; 153 cp++;
134 154
135 if (!strncmp(cp, "Object", 6)) { 155 if (!strncmp (cp, "Object", 6))
156 {
136 formula=get_empty_formula(); 157 formula = get_empty_formula ();
137 formula->title = add_string(strchr(cp,' ') + 1); 158 formula->title = strchr (cp, ' ') + 1;
159 }
138 } else if (!strncmp(cp, "keycode", 7)) { 160 else if (!strncmp (cp, "keycode", 7))
161 {
139 formula->keycode = add_string(strchr(cp,' ') + 1); 162 formula->keycode = strchr (cp, ' ') + 1;
163 }
140 } else if (sscanf(cp, "trans %d", &value)) { 164 else if (sscanf (cp, "trans %d", &value))
165 {
141 formula->transmute = (uint16)value; 166 formula->transmute = (uint16) value;
167 }
142 } else if (sscanf(cp, "yield %d", &value)) { 168 else if (sscanf (cp, "yield %d", &value))
169 {
143 formula->yield = (uint16)value; 170 formula->yield = (uint16) value;
171 }
144 } else if (sscanf(cp, "chance %d", &value)) { 172 else if (sscanf (cp, "chance %d", &value))
173 {
145 formula->chance = (uint16)value; 174 formula->chance = (uint16) value;
175 }
146 } else if (sscanf(cp, "exp %d", &value)) { 176 else if (sscanf (cp, "exp %d", &value))
177 {
147 formula->exp = (uint16)value; 178 formula->exp = (uint16) value;
179 }
148 } else if (sscanf(cp, "diff %d", &value)) { 180 else if (sscanf (cp, "diff %d", &value))
181 {
149 formula->diff = (uint16)value; 182 formula->diff = (uint16) value;
183 }
150 } else if (!strncmp(cp, "ingred",6)) { 184 else if (!strncmp (cp, "ingred", 6))
185 {
151 int numb_ingred = 1; 186 int numb_ingred = 1;
187
152 cp = strchr(cp,' ') + 1; 188 cp = strchr (cp, ' ') + 1;
153 do { 189 do
190 {
154 if ((next=strchr(cp,','))!=NULL) 191 if ((next = strchr (cp, ',')) != NULL)
155 {*(next++) = '\0'; numb_ingred++;} 192 {
156 tmp = (linked_char*) malloc(sizeof(linked_char)); 193 *(next++) = '\0';
157 tmp->name = add_string(cp); 194 numb_ingred++;
195 }
196 tmp = new linked_char;
197
198 tmp->name = cp;
158 tmp->next = formula->ingred; 199 tmp->next = formula->ingred;
159 formula->ingred = tmp; 200 formula->ingred = tmp;
160 /* each ingredient's ASCII value is coadded. Later on this 201 /* each ingredient's ASCII value is coadded. Later on this
161 * value will be used allow us to search the formula lists 202 * value will be used allow us to search the formula lists
162 * quickly for the right recipe. 203 * quickly for the right recipe.
163 */ 204 */
164 formula->index += strtoint(cp); 205 formula->index += strtoint (cp);
206 }
165 } while ((cp=next)!=NULL); 207 while ((cp = next) != NULL);
166 /* now find the correct (# of ingred ordered) formulalist */ 208 /* now find the correct (# of ingred ordered) formulalist */
167 fl=formulalist; 209 fl = formulalist;
168 while(numb_ingred!=1) { 210 while (numb_ingred != 1)
211 {
169 if(!fl->next) 212 if (!fl->next)
170 fl->next = init_recipelist(); 213 fl->next = init_recipelist ();
171 fl = fl->next; 214 fl = fl->next;
172 numb_ingred--; 215 numb_ingred--;
173 } 216 }
174 fl->total_chance += formula->chance; 217 fl->total_chance += formula->chance;
175 fl->number++; 218 fl->number++;
176 formula->next = fl->items; 219 formula->next = fl->items;
177 fl->items = formula; 220 fl->items = formula;
221 }
178 } else if (!strncmp(cp, "arch",4)) { 222 else if (!strncmp (cp, "arch", 4))
223 {
179 build_stringlist(strchr(cp, ' ')+1, &formula->arch_name, &formula->arch_names); 224 build_stringlist (strchr (cp, ' ') + 1, &formula->arch_name, &formula->arch_names);
180 (void) check_recipe(formula); 225 check_recipe (formula);
226 }
181 } else if (!strncmp(cp, "skill", 5)) { 227 else if (!strncmp (cp, "skill", 5))
228 {
182 formula->skill = add_string(strchr(cp, ' ')+1); 229 formula->skill = strchr (cp, ' ') + 1;
230 }
183 } else if (!strncmp(cp, "cauldron", 8)) { 231 else if (!strncmp (cp, "cauldron", 8))
232 {
184 formula->cauldron = add_string(strchr(cp, ' ')+1); 233 formula->cauldron = strchr (cp, ' ') + 1;
234 }
185 } else 235 else
186 LOG(llevError,"Unknown input in file %s: %s\n", filename, buf); 236 LOG (llevError, "Unknown input in file %s: %s\n", filename, buf);
187 } 237 }
188 LOG(llevDebug,"done.\n"); 238 LOG (llevDebug, "done.\n");
189 close_and_delete(fp, comp); 239 close_and_delete (fp, comp);
190 /* Lastly, lets check for problems in formula we got */ 240 /* Lastly, lets check for problems in formula we got */
191 check_formulae(); 241 check_formulae ();
192} 242}
193 243
194/* check_formulae()- since we are doing a squential search on the 244/* check_formulae()- since we are doing a squential search on the
195 * formulae lists now, we have to be carefull that we dont have 2 245 * formulae lists now, we have to be carefull that we dont have 2
196 * formula with the exact same index value. Under the new nbatches 246 * formula with the exact same index value. Under the new nbatches
197 * code, it is possible to have multiples of ingredients in a cauldron 247 * code, it is possible to have multiples of ingredients in a cauldron
198 * which could result in an index formula mismatch. We *don't* check for 248 * which could result in an index formula mismatch. We *don't* check for
199 * that possibility here. -b.t. 249 * that possibility here. -b.t.
200 */ 250 */
251void
201void check_formulae( void ) { 252check_formulae (void)
253{
202 recipelist *fl; 254 recipelist *fl;
203 recipe *check, *formula; 255 recipe *check, *formula;
204 int numb = 1; 256 int numb = 1;
205 257
206 LOG(llevDebug,"Checking formulae lists..."); 258 LOG (llevDebug, "Checking formulae lists...");
207 259
208 for(fl=formulalist; fl!=NULL; fl = fl->next) { 260 for (fl = formulalist; fl != NULL; fl = fl->next)
261 {
209 for (formula=fl->items; formula!=NULL; formula=formula->next) 262 for (formula = fl->items; formula != NULL; formula = formula->next)
210 for (check=formula->next; check!=NULL; check=check->next) 263 for (check = formula->next; check != NULL; check = check->next)
211 if(check->index==formula->index) { 264 if (check->index == formula->index)
265 {
212 LOG(llevError," ERROR: On %d ingred list: ", numb); 266 LOG (llevError, " ERROR: On %d ingred list: ", numb);
213 LOG(llevError, "Formulae [%s] of %s and [%s] of %s have matching index id (%d)\n", 267 LOG (llevError, "Formulae [%s] of %s and [%s] of %s have matching index id (%d)\n",
214 formula->arch_name[0],formula->title,check->arch_name[0],check->title,formula->index); 268 formula->arch_name[0], &formula->title, check->arch_name[0], &check->title, formula->index);
215 } 269 }
216 numb++; 270 numb++;
217 } 271 }
218 272
219 LOG(llevDebug,"done.\n"); 273 LOG (llevDebug, "done.\n");
220 274
221} 275}
222 276
223/* Borrowed (again) from the artifacts code for this */ 277/* Borrowed (again) from the artifacts code for this */
224 278
279void
225void dump_alchemy( void ) { 280dump_alchemy (void)
281{
226 recipelist *fl=formulalist; 282 recipelist *fl = formulalist;
227 recipe *formula=NULL; 283 recipe *formula = NULL;
228 linked_char *next; 284 linked_char *next;
229 int num_ingred=1; 285 int num_ingred = 1;
230 286
231 fprintf(logfile, "\n"); 287 fprintf (logfile, "\n");
232 while(fl) { 288 while (fl)
289 {
233 fprintf(logfile, "\n Formulae with %d ingredient%s %d Formulae with total_chance=%d\n", 290 fprintf (logfile, "\n Formulae with %d ingredient%s %d Formulae with total_chance=%d\n",
234 num_ingred, num_ingred>1?"s.":".",fl->number,fl->total_chance); 291 num_ingred, num_ingred > 1 ? "s." : ".", fl->number, fl->total_chance);
235 for (formula=fl->items; formula!=NULL; formula=formula->next) { 292 for (formula = fl->items; formula != NULL; formula = formula->next)
293 {
236 artifact *art=NULL; 294 artifact *art = NULL;
237 char buf[MAX_BUF]; 295 char buf[MAX_BUF];
238 size_t i; 296 size_t i;
239 297
240 for (i = 0; i < formula->arch_names; i++) { 298 for (i = 0; i < formula->arch_names; i++)
299 {
241 const char *string = formula->arch_name[i]; 300 const char *string = formula->arch_name[i];
242 if(find_archetype(string)!=NULL) { 301
302 if (archetype::find (string) != NULL)
303 {
243 art = locate_recipe_artifact(formula, i); 304 art = locate_recipe_artifact (formula, i);
244 if (!art && strcmp(formula->title,"NONE")) 305 if (!art && strcmp (formula->title, "NONE"))
245 LOG(llevError,"Formula %s has no artifact\n",formula->title); 306 LOG (llevError, "Formula %s has no artifact\n", &formula->title);
246 else { 307 else
308 {
247 if(strcmp(formula->title,"NONE")) 309 if (strcmp (formula->title, "NONE"))
248 sprintf(buf,"%s of %s",string,formula->title); 310 sprintf (buf, "%s of %s", string, &formula->title);
249 else 311 else
250 sprintf(buf,"%s",string); 312 sprintf (buf, "%s", string);
251 fprintf(logfile,"%-30s(%d) bookchance %3d ",buf,formula->index, 313 fprintf (logfile, "%-30s(%d) bookchance %3d ", buf, formula->index, formula->chance);
252 formula->chance);
253 fprintf(logfile,"skill %s",formula->skill); 314 fprintf (logfile, "skill %s", &formula->skill);
254 fprintf(logfile,"\n"); 315 fprintf (logfile, "\n");
255 if (formula->ingred !=NULL) { 316 if (formula->ingred != NULL)
317 {
256 int nval=0,tval=0; 318 int nval = 0, tval = 0;
319
257 fprintf(logfile,"\tIngred: "); 320 fprintf (logfile, "\tIngred: ");
258 for (next=formula->ingred; next!=NULL; next=next->next) { 321 for (next = formula->ingred; next != NULL; next = next->next)
259 if(nval!=0) fprintf(logfile,","); 322 {
323 if (nval != 0)
324 fprintf (logfile, ",");
260 fprintf(logfile,"%s(%d)",next->name,(nval=strtoint(next->name))); 325 fprintf (logfile, "%s(%d)", &next->name, (nval = strtoint (next->name)));
261 tval += nval; 326 tval += nval;
327 }
328 fprintf (logfile, "\n");
329 if (tval != formula->index)
330 fprintf (logfile, "WARNING:ingredient list and formula values not equal.\n");
331 }
332 if (formula->skill != NULL)
333 fprintf (logfile, "\tSkill Required: %s", &formula->skill);
334 if (formula->cauldron != NULL)
335 fprintf (logfile, "\tCauldron: %s\n", &formula->cauldron);
336 fprintf (logfile, "\tDifficulty: %d\t Exp: %d\n", formula->diff, formula->exp);
337 }
262 } 338 }
263 fprintf(logfile,"\n"); 339 else
264 if(tval!=formula->index) fprintf(logfile, "WARNING:ingredient list and formula values not equal.\n"); 340 LOG (llevError, "Can't find archetype:%s for formula %s\n", string, &formula->title);
265 } 341 }
266 if (formula->skill != NULL)
267 fprintf(logfile, "\tSkill Required: %s", formula->skill);
268 if (formula->cauldron != NULL)
269 fprintf(logfile, "\tCauldron: %s\n", formula->cauldron);
270 fprintf(logfile, "\tDifficulty: %d\t Exp: %d\n", formula->diff,
271 formula->exp);
272 } 342 }
273 } else
274 LOG(llevError,"Can't find archetype:%s for formula %s\n", string,
275 formula->title);
276 }
277 }
278 fprintf(logfile,"\n"); 343 fprintf (logfile, "\n");
279 fl = fl->next; 344 fl = fl->next;
280 num_ingred++; 345 num_ingred++;
281 } 346 }
282} 347}
283 348
284/* Find a treasure with a matching name. The 'depth' parameter is 349/* Find a treasure with a matching name. The 'depth' parameter is
285 * only there to prevent infinite loops in treasure lists (a list 350 * only there to prevent infinite loops in treasure lists (a list
286 * referencing another list pointing back to the first one). */ 351 * referencing another list pointing back to the first one). */
352archetype *
287archetype *find_treasure_by_name (const treasure *t, const char *name, int depth) 353find_treasure_by_name (const treasure *t, const char *name, int depth)
288{ 354{
289 treasurelist *tl; 355 treasurelist *tl;
290 archetype *at; 356 archetype *at;
291 357
292 if (depth > 10) 358 if (depth > 10)
293 return NULL; 359 return NULL;
294 while (t != NULL) 360 while (t != NULL)
295 { 361 {
300 if (at != NULL) 366 if (at != NULL)
301 return at; 367 return at;
302 } 368 }
303 else 369 else
304 { 370 {
305 if (! strcasecmp (t->item->clone.name, name)) 371 if (!strcasecmp (t->item->clone.name, name))
306 return t->item; 372 return t->item;
307 } 373 }
308 if (t->next_yes != NULL) 374 if (t->next_yes != NULL)
309 { 375 {
310 at = find_treasure_by_name (t->next_yes, name, depth); 376 at = find_treasure_by_name (t->next_yes, name, depth);
328 * monsters' body parts, there may be several monsters with the same 394 * monsters' body parts, there may be several monsters with the same
329 * name. This is not a problem if these monsters have the same level 395 * name. This is not a problem if these monsters have the same level
330 * (e.g. sage & c_sage) or if only one of the monsters generates the 396 * (e.g. sage & c_sage) or if only one of the monsters generates the
331 * body parts that we are looking for (e.g. big_dragon and 397 * body parts that we are looking for (e.g. big_dragon and
332 * big_dragon_worthless). */ 398 * big_dragon_worthless). */
399long
333long find_ingred_cost (const char *name) 400find_ingred_cost (const char *name)
334{ 401{
335 archetype *at; 402 archetype *at;
336 archetype *at2; 403 archetype *at2;
337 artifactlist *al; 404 artifactlist *al;
338 artifact *art; 405 artifact *art;
339 long mult; 406 long mult;
340 char *cp; 407 char *cp;
341 char part1[100]; 408 char part1[100];
342 char part2[100]; 409 char part2[100];
343 410
344 /* same as atoi(), but skip number */ 411 /* same as atoi(), but skip number */
345 mult = 0; 412 mult = 0;
346 while (isdigit (*name)) 413 while (isdigit (*name))
347 { 414 {
351 if (mult > 0) 418 if (mult > 0)
352 name++; 419 name++;
353 else 420 else
354 mult = 1; 421 mult = 1;
355 /* first, try to match the name of an archetype */ 422 /* first, try to match the name of an archetype */
356 for (at = first_archetype; at != NULL; at = at->next) 423 for (at = first_archetype; at != NULL; at = at->next)
357 { 424 {
358 if (at->clone.title != NULL) 425 if (at->clone.title != NULL)
359 { 426 {
360 /* inefficient, but who cares? */ 427 /* inefficient, but who cares? */
361 sprintf (part1, "%s %s", at->clone.name, at->clone.title); 428 sprintf (part1, "%s %s", &at->clone.name, &at->clone.title);
362 if (! strcasecmp (part1, name)) 429 if (!strcasecmp (part1, name))
363 return mult * at->clone.value; 430 return mult * at->clone.value;
364 } 431 }
365 if (! strcasecmp (at->clone.name, name)) 432 if (!strcasecmp (at->clone.name, name))
366 return mult * at->clone.value; 433 return mult * at->clone.value;
367 } 434 }
368 /* second, try to match an artifact ("arch of something") */ 435 /* second, try to match an artifact ("arch of something") */
369 cp = strstr (name, " of "); 436 cp = strstr (name, " of ");
370 if (cp != NULL) 437 if (cp != NULL)
371 { 438 {
372 strcpy (part1, name); 439 strcpy (part1, name);
373 part1[cp - name] = '\0'; 440 part1[cp - name] = '\0';
374 strcpy (part2, cp + 4); 441 strcpy (part2, cp + 4);
375 /* find the first archetype matching the first part of the name */ 442 /* find the first archetype matching the first part of the name */
376 for (at = first_archetype; at != NULL; at = at->next) 443 for (at = first_archetype; at != NULL; at = at->next)
377 if (! strcasecmp (at->clone.name, part1) && at->clone.title == NULL) 444 if (!strcasecmp (at->clone.name, part1) && at->clone.title == NULL)
378 break; 445 break;
379 if (at != NULL) 446 if (at != NULL)
380 { 447 {
381 /* find the first artifact derived from that archetype (same type) */ 448 /* find the first artifact derived from that archetype (same type) */
382 for (al = first_artifactlist; al != NULL; al = al->next) 449 for (al = first_artifactlist; al != NULL; al = al->next)
383 if (al->type == at->clone.type) 450 if (al->type == at->clone.type)
384 { 451 {
385 for (art = al->items; art != NULL; art = art->next) 452 for (art = al->items; art != NULL; art = art->next)
386 if (! strcasecmp (art->item->name, part2)) 453 if (!strcasecmp (art->item->name, part2))
387 return mult * at->clone.value * art->item->value; 454 return mult * at->clone.value * art->item->value;
388 } 455 }
389 } 456 }
390 } 457 }
391 /* third, try to match a body part ("arch's something") */ 458 /* third, try to match a body part ("arch's something") */
394 { 461 {
395 strcpy (part1, name); 462 strcpy (part1, name);
396 part1[cp - name] = '\0'; 463 part1[cp - name] = '\0';
397 strcpy (part2, cp + 3); 464 strcpy (part2, cp + 3);
398 /* examine all archetypes matching the first part of the name */ 465 /* examine all archetypes matching the first part of the name */
399 for (at = first_archetype; at != NULL; at = at->next) 466 for (at = first_archetype; at != NULL; at = at->next)
400 if (! strcasecmp (at->clone.name, part1) && at->clone.title == NULL) 467 if (!strcasecmp (at->clone.name, part1) && at->clone.title == NULL)
401 { 468 {
402 if (at->clone.randomitems != NULL) 469 if (at->clone.randomitems != NULL)
403 { 470 {
404 at2 = find_treasure_by_name (at->clone.randomitems->items, 471 at2 = find_treasure_by_name (at->clone.randomitems->items, part2, 0);
405 part2, 0);
406 if (at2 != NULL) 472 if (at2 != NULL)
407 return mult * at2->clone.value * isqrt (at->clone.level * 2); 473 return mult * at2->clone.value * isqrt (at->clone.level * 2);
408 } 474 }
409 } 475 }
410 } 476 }
411 /* failed to find any matching items -- formula should be checked */ 477 /* failed to find any matching items -- formula should be checked */
412 return -1; 478 return -1;
413} 479}
414 480
415/* code copied from dump_alchemy() and modified by Raphael Quinet */ 481/* code copied from dump_alchemy() and modified by Raphael Quinet */
482void
416void dump_alchemy_costs (void) 483dump_alchemy_costs (void)
417{ 484{
418 recipelist *fl=formulalist; 485 recipelist *fl = formulalist;
419 recipe *formula=NULL; 486 recipe *formula = NULL;
420 linked_char *next; 487 linked_char *next;
421 int num_ingred=1; 488 int num_ingred = 1;
422 int num_errors=0; 489 int num_errors = 0;
423 long cost; 490 long cost;
424 long tcost; 491 long tcost;
425 492
426 fprintf (logfile, "\n"); 493 fprintf (logfile, "\n");
427 while (fl) { 494 while (fl)
495 {
428 fprintf(logfile, "\n Formulae with %d ingredient%s %d Formulae with total_chance=%d\n", 496 fprintf (logfile, "\n Formulae with %d ingredient%s %d Formulae with total_chance=%d\n",
429 num_ingred, num_ingred>1?"s.":".",fl->number,fl->total_chance); 497 num_ingred, num_ingred > 1 ? "s." : ".", fl->number, fl->total_chance);
430 for (formula = fl->items; formula != NULL; formula = formula->next) { 498 for (formula = fl->items; formula != NULL; formula = formula->next)
499 {
431 artifact *art=NULL; 500 artifact *art = NULL;
432 archetype *at=NULL; 501 archetype *at = NULL;
433 char buf[MAX_BUF]; 502 char buf[MAX_BUF];
434 size_t i; 503 size_t i;
435 504
436 for (i = 0; i < formula->arch_names; i++) { 505 for (i = 0; i < formula->arch_names; i++)
437 const char *string = formula->arch_name[i];
438 if ((at = find_archetype (string)) != NULL) {
439 art = locate_recipe_artifact (formula, i);
440 if (!art && strcmp (formula->title,"NONE"))
441 LOG (llevError, "Formula %s has no artifact\n", formula->title);
442 else
443 { 506 {
507 const char *string = formula->arch_name[i];
508
509 if ((at = archetype::find (string)) != NULL)
510 {
511 art = locate_recipe_artifact (formula, i);
512 if (!art && strcmp (formula->title, "NONE"))
513 LOG (llevError, "Formula %s has no artifact\n", &formula->title);
514 else
515 {
444 if (! strcmp (formula->title, "NONE")) 516 if (!strcmp (formula->title, "NONE"))
445 sprintf (buf, "%s", string); 517 sprintf (buf, "%s", string);
518 else
519 sprintf (buf, "%s of %s", string, &formula->title);
520 fprintf (logfile, "\n%-40s bookchance %3d skill %s\n", buf, formula->chance, &(formula->skill));
521 if (formula->ingred != NULL)
522 {
523 tcost = 0;
524 for (next = formula->ingred; next != NULL; next = next->next)
525 {
526 cost = find_ingred_cost (next->name);
527 if (cost < 0)
528 num_errors++;
529 fprintf (logfile, "\t%-33s%5ld\n", &next->name, cost);
530 if (cost < 0 || tcost < 0)
531 tcost = -1;
532 else
533 tcost += cost;
534 }
535 if (art != NULL && art->item != NULL)
536 cost = at->clone.value * art->item->value;
537 else
538 cost = at->clone.value;
539 fprintf (logfile, "\t\tBuying result costs: %5ld", cost);
540 if (formula->yield > 1)
541 {
542 fprintf (logfile, " to %ld (max %d items)\n", cost * formula->yield, formula->yield);
543 cost = cost * (formula->yield + 1L) / 2L;
544 }
545 else
546 fprintf (logfile, "\n");
547 fprintf (logfile, "\t\tIngredients cost: %5ld\n\t\tComment: ", tcost);
548 if (tcost < 0)
549 fprintf (logfile, "Could not find some ingredients. Check the formula!\n");
550 else if (tcost > cost)
551 fprintf (logfile, "Ingredients are much too expensive. Useless formula.\n");
552 else if (tcost * 2L > cost)
553 fprintf (logfile, "Ingredients are too expensive.\n");
554 else if (tcost * 10L < cost)
555 fprintf (logfile, "Ingredients are too cheap.\n");
556 else
557 fprintf (logfile, "OK.\n");
558 }
559 }
560 }
446 else 561 else
447 sprintf (buf, "%s of %s", string, formula->title); 562 LOG (llevError, "Can't find archetype:%s for formula %s\n", string, &formula->title);
448 fprintf (logfile, "\n%-40s bookchance %3d skill %s\n",
449 buf, formula->chance, formula->skill);
450 if (formula->ingred !=NULL)
451 {
452 tcost = 0;
453 for (next = formula->ingred; next != NULL; next = next->next)
454 {
455 cost = find_ingred_cost (next->name);
456 if (cost < 0)
457 num_errors++;
458 fprintf (logfile,"\t%-33s%5ld\n", next->name, cost);
459 if (cost < 0 || tcost < 0)
460 tcost = -1;
461 else
462 tcost += cost;
463 }
464 if (art != NULL && art->item != NULL)
465 cost = at->clone.value * art->item->value;
466 else
467 cost = at->clone.value;
468 fprintf (logfile, "\t\tBuying result costs: %5ld", cost);
469 if (formula->yield > 1)
470 {
471 fprintf (logfile, " to %ld (max %d items)\n",
472 cost * formula->yield, formula->yield);
473 cost = cost * (formula->yield + 1L) / 2L;
474 }
475 else
476 fprintf (logfile, "\n");
477 fprintf (logfile, "\t\tIngredients cost: %5ld\n\t\tComment: ", tcost);
478 if (tcost < 0)
479 fprintf (logfile, "Could not find some ingredients. Check the formula!\n");
480 else if (tcost > cost)
481 fprintf (logfile, "Ingredients are much too expensive. Useless formula.\n");
482 else if (tcost * 2L > cost)
483 fprintf (logfile, "Ingredients are too expensive.\n");
484 else if (tcost * 10L < cost)
485 fprintf (logfile, "Ingredients are too cheap.\n");
486 else
487 fprintf (logfile, "OK.\n");
488 }
489 } 563 }
490 } 564 }
491 else
492 LOG(llevError, "Can't find archetype:%s for formula %s\n", string,
493 formula->title);
494 }
495 }
496 fprintf (logfile,"\n"); 565 fprintf (logfile, "\n");
497 fl = fl->next; 566 fl = fl->next;
498 num_ingred++; 567 num_ingred++;
499 } 568 }
500 if (num_errors > 0) 569 if (num_errors > 0)
501 fprintf (logfile, "WARNING: %d objects required by the formulae do not exist in the game.\n", 570 fprintf (logfile, "WARNING: %d objects required by the formulae do not exist in the game.\n", num_errors);
502 num_errors);
503} 571}
504 572
573const char *
505const char * ingred_name (const char *name) { 574ingred_name (const char *name)
575{
506 const char *cp=name; 576 const char *cp = name;
507 577
578 if (atoi (cp))
508 if(atoi(cp)) cp = strchr(cp,' ') + 1; 579 cp = strchr (cp, ' ') + 1;
509 return cp; 580 return cp;
510} 581}
511 582
512/* strtoint() - we use this to convert buf into an integer 583/* strtoint() - we use this to convert buf into an integer
513 * equal to the coadded sum of the (lowercase) character 584 * equal to the coadded sum of the (lowercase) character
514 * ASCII values in buf (times prepended integers). 585 * ASCII values in buf (times prepended integers).
515 */ 586 */
516 587
588int
517int strtoint (const char *buf) { 589strtoint (const char *buf)
590{
518 const char *cp = ingred_name(buf); 591 const char *cp = ingred_name (buf);
519 int val=0, len=strlen(cp), mult=numb_ingred(buf); 592 int val = 0, len = strlen (cp), mult = numb_ingred (buf);
520 593
521 while (len) { 594 while (len)
595 {
522 val += tolower(*cp); 596 val += tolower (*cp);
597 cp++;
523 cp++; len--; 598 len--;
524 } 599 }
525 return val*mult; 600 return val * mult;
526} 601}
527 602
603artifact *
528artifact * locate_recipe_artifact(const recipe *rp, size_t idx) { 604locate_recipe_artifact (const recipe *rp, size_t idx)
605{
529 object *item=get_archetype(rp->arch_name[idx]); 606 object *item = get_archetype (rp->arch_name[idx]);
530 artifactlist *at=NULL; 607 artifactlist *at = NULL;
531 artifact *art=NULL; 608 artifact *art = NULL;
532 609
610 if (!item)
533 if(!item) return (artifact *) NULL; 611 return (artifact *) NULL;
534 612
535 if((at=find_artifactlist(item->type))) 613 if ((at = find_artifactlist (item->type)))
536 for(art=at->items;art;art=art->next) 614 for (art = at->items; art; art = art->next)
537 if(!strcmp(art->item->name,rp->title)) break; 615 if (!strcmp (art->item->name, rp->title))
538 616 break;
617
539 free_object(item); 618 free_object (item);
540 619
541 return art; 620 return art;
542} 621}
543 622
623int
544int numb_ingred (const char *buf) { 624numb_ingred (const char *buf)
625{
545 int numb; 626 int numb;
546 627
547 if((numb=atoi(buf))) return numb; 628 if ((numb = atoi (buf)))
629 return numb;
630 else
548 else return 1; 631 return 1;
549} 632}
550 633
634recipelist *
551recipelist * get_random_recipelist ( void ) { 635get_random_recipelist (void)
636{
552 recipelist *fl=NULL; 637 recipelist *fl = NULL;
553 int number=0,roll=0; 638 int number = 0, roll = 0;
554 639
555 /* first, determine # of recipelist we have */ 640 /* first, determine # of recipelist we have */
556 for(fl=get_formulalist(1);fl;fl=fl->next) number++; 641 for (fl = get_formulalist (1); fl; fl = fl->next)
557 642 number++;
643
558 /* now, randomly choose one */ 644 /* now, randomly choose one */
559 if(number>0) roll=RANDOM()%number; 645 if (number > 0)
560 646 roll = RANDOM () % number;
647
561 fl=get_formulalist(1); 648 fl = get_formulalist (1);
562 while(roll && fl) { 649 while (roll && fl)
650 {
651 if (fl->next)
563 if(fl->next) fl = fl->next; 652 fl = fl->next;
653 else
564 else break; 654 break;
565 roll--; 655 roll--;
566 } 656 }
567 if(!fl) /* failed! */ 657 if (!fl) /* failed! */
568 LOG(llevError,"get_random_recipelist(): no recipelists found!\n"); 658 LOG (llevError, "get_random_recipelist(): no recipelists found!\n");
569 else if(fl->total_chance==0) fl=get_random_recipelist(); 659 else if (fl->total_chance == 0)
660 fl = get_random_recipelist ();
570 661
571 return fl; 662 return fl;
572} 663}
573 664
665recipe *
574recipe * get_random_recipe ( recipelist *rpl ) { 666get_random_recipe (recipelist * rpl)
667{
575 recipelist *fl=rpl; 668 recipelist *fl = rpl;
576 recipe *rp=NULL; 669 recipe *rp = NULL;
577 int r=0; 670 int r = 0;
578 671
579 /* looks like we have to choose a random one */ 672 /* looks like we have to choose a random one */
580 if(fl==NULL) if((fl=get_random_recipelist())==NULL) return rp; 673 if (fl == NULL)
581 674 if ((fl = get_random_recipelist ()) == NULL)
675 return rp;
676
582 if (fl->total_chance > 0) { 677 if (fl->total_chance > 0)
678 {
583 r=RANDOM()%fl->total_chance; 679 r = RANDOM () % fl->total_chance;
584 for (rp=fl->items;rp;rp=rp->next) { 680 for (rp = fl->items; rp; rp = rp->next)
681 {
585 r -= rp->chance; 682 r -= rp->chance;
586 if (r<0) break; 683 if (r < 0)
587 } 684 break;
685 }
588 } 686 }
589 return rp; 687 return rp;
590} 688}
591 689
690void
592void free_all_recipes(void) 691free_all_recipes (void)
593{ 692{
594 recipelist *fl=formulalist,*flnext; 693 recipelist *fl = formulalist, *flnext;
595 recipe *formula=NULL,*next; 694 recipe *formula = NULL, *next;
596 linked_char *lchar, *charnext; 695 linked_char *lchar, *charnext;
597 696
598 LOG(llevDebug,"Freeing all the recipes\n"); 697 LOG (llevDebug, "Freeing all the recipes\n");
599 for (fl=formulalist; fl!=NULL; fl=flnext) { 698 for (fl = formulalist; fl != NULL; fl = flnext)
699 {
600 flnext=fl->next; 700 flnext = fl->next;
601 701
602 for (formula=fl->items; formula!=NULL; formula=next) { 702 for (formula = fl->items; formula != NULL; formula = next)
703 {
603 next=formula->next; 704 next = formula->next;
604 705
605 free(formula->arch_name[0]); 706 free (formula->arch_name[0]);
606 free(formula->arch_name); 707 free (formula->arch_name);
607 if (formula->title) 708
608 free_string(formula->title);
609 if (formula->skill)
610 free_string(formula->skill);
611 if (formula->cauldron)
612 free_string(formula->cauldron);
613 for (lchar=formula->ingred; lchar; lchar=charnext) { 709 for (lchar = formula->ingred; lchar; lchar = charnext)
710 {
614 charnext=lchar->next; 711 charnext = lchar->next;
615 free_string(lchar->name);
616 free(lchar); 712 delete lchar;
617 } 713 }
618 free(formula); 714 delete formula;
619 } 715 }
620 free(fl); 716
717 delete fl;
621 } 718 }
622} 719}
623 720
624/** 721/**
625 * Split a comma separated string list into words. 722 * Split a comma separated string list into words.
630 * caller is responsible for freeing both *result_list and **result_list. 727 * caller is responsible for freeing both *result_list and **result_list.
631 * 728 *
632 * @param result_size pointer to return value for the size of the newly 729 * @param result_size pointer to return value for the size of the newly
633 * created list 730 * created list
634 */ 731 */
732static void
635static void build_stringlist(const char *str, char ***result_list, size_t *result_size) 733build_stringlist (const char *str, char ***result_list, size_t * result_size)
636{ 734{
637 char *dup; 735 char *dup;
638 char *p; 736 char *p;
639 size_t size; 737 size_t size;
640 size_t i; 738 size_t i;
641 739
642 dup = strdup_local(str); 740 dup = strdup_local (str);
643 if (dup == NULL) 741 if (dup == NULL)
644 fatal(OUT_OF_MEMORY); 742 fatal (OUT_OF_MEMORY);
645 743
646 size = 0; 744 size = 0;
647 for (p = strtok(dup, ","); p != NULL; p = strtok(NULL, ",")) 745 for (p = strtok (dup, ","); p != NULL; p = strtok (NULL, ","))
648 size++; 746 size++;
649 747
650 *result_list = (char **) malloc(size*sizeof(*result_list)); 748 *result_list = (char **) malloc (size * sizeof (*result_list));
651 if (*result_list == NULL) 749
652 fatal(OUT_OF_MEMORY);
653 *result_size = size; 750 *result_size = size;
654 751
655 for (i = 0; i < size; i++) { 752 for (i = 0; i < size; i++)
753 {
656 (*result_list)[i] = dup; 754 (*result_list)[i] = dup;
657 dup = dup+strlen(dup)+1; 755 dup = dup + strlen (dup) + 1;
658 } 756 }
659} 757}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines