ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/arch.C
Revision: 1.49
Committed: Mon Apr 16 12:37:08 2007 UTC (17 years, 1 month ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.48: +83 -44 lines
Log Message:
rewrote archetype loader to try harder to cleanly replace archetypes

File Contents

# Content
1 /*
2 * CrossFire, A Multiplayer game for X-windows
3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 * The authors can be reached via e-mail at <crossfire@schmorp.de>
23 */
24
25 #include <cassert>
26
27 #include <global.h>
28 #include <funcpoint.h>
29 #include <loader.h>
30
31 #include <tr1/functional>
32 #include <tr1/unordered_map>
33
34 /* The naming of these functions is really poor - they are all
35 * pretty much named '.._arch_...', but they may more may not
36 * return archetypes. Some make the arch_to_object call, and thus
37 * return an object. Perhaps those should be called 'archob' functions
38 * to denote they return an object derived from the archetype.
39 * MSW 2003-04-29
40 */
41
42 bool loading_arch; // ugly flag to object laoder etc. to suppress/request special processing
43
44 // the hashtable
45 typedef std::tr1::unordered_map
46 <
47 const char *,
48 arch_ptr,
49 str_hash,
50 str_equal,
51 slice_allocator< std::pair<const char *const, arch_ptr> >
52 > HT;
53
54 static HT ht (5000);
55 static std::vector<archetype *> archetypes;
56
57 /**
58 * GROS - This function retrieves an archetype given the name that appears
59 * during the game (for example, "writing pen" instead of "stylus").
60 * It does not use the hashtable system, but browse the whole archlist each time.
61 * I suggest not to use it unless you really need it because of performance issue.
62 * It is currently used by scripting extensions (create-object).
63 * Params:
64 * - name: the name we're searching for (ex: "writing pen");
65 * Return value:
66 * - the archetype found or null if nothing was found.
67 */
68 archetype *
69 find_archetype_by_object_name (const char *name)
70 {
71 shstr_cmp name_cmp (name);
72
73 for (archetype *at = first_archetype; at; at = at->next)
74 if (at->clone.name == name_cmp)
75 return at;
76
77 return 0;
78 }
79
80 /**
81 * This function retrieves an archetype by type and name that appears during
82 * the game. It is basically the same as find_archetype_by_object_name()
83 * except that it considers only items of the given type.
84 */
85 archetype *
86 find_archetype_by_object_type_name (int type, const char *name)
87 {
88 shstr_cmp name_cmp (name);
89
90 for (archetype *at = first_archetype; at; at = at->next)
91 if (at->clone.name == name_cmp && at->clone.type == type)
92 return at;
93
94 return 0;
95 }
96
97 /* This is a lot like the above function. Instead, we are trying to match
98 * the arch->skill values. type is the type of object to match
99 * against (eg, to only match against skills or only skill objects for example).
100 * If type is -1, ew don't match on type.
101 */
102 object *
103 get_archetype_by_skill_name (const char *skill, int type)
104 {
105 shstr_cmp skill_cmp (skill);
106
107 for (archetype *at = first_archetype; at; at = at->next)
108 if (at->clone.skill == skill_cmp && (type == -1 || type == at->clone.type))
109 return arch_to_object (at);
110
111 return 0;
112 }
113
114 /* similiar to above - this returns the first archetype
115 * that matches both the type and subtype. type and subtype
116 * can be -1 to say ignore, but in this case, the match it does
117 * may not be very useful. This function is most useful when
118 * subtypes are known to be unique for a particular type
119 * (eg, skills)
120 */
121 archetype *
122 get_archetype_by_type_subtype (int type, int subtype)
123 {
124 for (archetype *at = first_archetype; at; at = at->next)
125 if ((type == -1 || type == at->clone.type) && (subtype == -1 || subtype == at->clone.subtype))
126 return at;
127
128 return 0;
129 }
130
131 /**
132 * GROS - this returns a new object given the name that appears during the game
133 * (for example, "writing pen" instead of "stylus").
134 * Params:
135 * - name: The name we're searching for (ex: "writing pen");
136 * Return value:
137 * - a corresponding object if found; a singularity object if not found.
138 * Note by MSW - it appears that it takes the full name and keeps
139 * shortening it until it finds a match. I re-wrote this so that it
140 * doesn't malloc it each time - not that this function is used much,
141 * but it otherwise had a big memory leak.
142 */
143 object *
144 get_archetype_by_object_name (const char *name)
145 {
146 char tmpname[MAX_BUF];
147 int i;
148
149 assign (tmpname, name);
150
151 for (i = strlen (tmpname); i > 0; i--)
152 {
153 tmpname[i] = 0;
154
155 if (archetype *at = find_archetype_by_object_name (tmpname))
156 return arch_to_object (at);
157 }
158
159 return create_singularity (name);
160 }
161
162 /* This is a subset of the parse_id command. Basically, name can be
163 * a string seperated lists of things to match, with certain keywords.
164 * pl is the player (only needed to set count properly)
165 * op is the item we are trying to match. Calling function takes care
166 * of what action might need to be done and if it is valid
167 * (pickup, drop, etc.) Return NONZERO if we have a match. A higher
168 * value means a better match. 0 means no match.
169 *
170 * Brief outline of the procedure:
171 * We take apart the name variable into the individual components.
172 * cases for 'all' and unpaid are pretty obvious.
173 * Next, we check for a count (either specified in name, or in the
174 * player object.)
175 * If count is 1, make a quick check on the name.
176 * IF count is >1, we need to make plural name. Return if match.
177 * Last, make a check on the full name.
178 */
179 int
180 item_matched_string (object *pl, object *op, const char *name)
181 {
182 char *cp, local_name[MAX_BUF];
183 int count, retval = 0;
184
185 assign (local_name, name); /* strtok is destructive to name */
186
187 for (cp = strtok (local_name, ","); cp; cp = strtok (NULL, ","))
188 {
189 while (cp[0] == ' ')
190 ++cp; /* get rid of spaces */
191
192 /* LOG(llevDebug,"Trying to match %s\n", cp); */
193 /* All is a very generic match - low match value */
194 if (!strcmp (cp, "all"))
195 return 1;
196
197 /* unpaid is a little more specific */
198 if (!strcmp (cp, "unpaid") && QUERY_FLAG (op, FLAG_UNPAID))
199 return 2;
200 if (!strcmp (cp, "cursed") && QUERY_FLAG (op, FLAG_KNOWN_CURSED) && (QUERY_FLAG (op, FLAG_CURSED) || QUERY_FLAG (op, FLAG_DAMNED)))
201 return 2;
202
203 if (!strcmp (cp, "unlocked") && !QUERY_FLAG (op, FLAG_INV_LOCKED))
204 return 2;
205
206 /* Allow for things like '100 arrows' */
207 if ((count = atoi (cp)) != 0)
208 {
209 cp = strchr (cp, ' ');
210 while (cp && cp[0] == ' ')
211 ++cp; /* get rid of spaces */
212 }
213 else
214 {
215 if (pl->type == PLAYER)
216 count = pl->contr->count;
217 else
218 count = 0;
219 }
220
221 if (!cp || cp[0] == '\0' || count < 0)
222 return 0;
223
224
225 /* The code here should go from highest retval to lowest. That
226 * is because of the 'else' handling - we don't want to match on
227 * something and set a low retval, even though it may match a higher retcal
228 * later. So keep it in descending order here, so we try for the best
229 * match first, and work downward.
230 */
231 if (!strcasecmp (cp, query_name (op)))
232 retval = 20;
233 else if (!strcasecmp (cp, query_short_name (op)))
234 retval = 18;
235 else if (!strcasecmp (cp, query_base_name (op, 0)))
236 retval = 16;
237 else if (!strcasecmp (cp, query_base_name (op, 1)))
238 retval = 16;
239 else if (op->custom_name && !strcasecmp (cp, op->custom_name))
240 retval = 15;
241 else if (!strncasecmp (cp, query_base_name (op, 0), strlen (cp)))
242 retval = 14;
243 else if (!strncasecmp (cp, query_base_name (op, 1), strlen (cp)))
244 retval = 14;
245 /* Do substring checks, so things like 'Str+1' will match.
246 * retval of these should perhaps be lower - they are lower
247 * then the specific strcasecmp aboves, but still higher than
248 * some other match criteria.
249 */
250 else if (strstr (query_base_name (op, 1), cp))
251 retval = 12;
252 else if (strstr (query_base_name (op, 0), cp))
253 retval = 12;
254 else if (strstr (query_short_name (op), cp))
255 retval = 12;
256 /* Check against plural/non plural based on count. */
257 else if (count > 1 && !strcasecmp (cp, op->name_pl))
258 retval = 6;
259 else if (count == 1 && !strcasecmp (op->name, cp))
260 retval = 6;
261 /* base name matched - not bad */
262 else if (strcasecmp (cp, op->name) == 0 && !count)
263 retval = 4;
264 /* Check for partial custom name, but give a real low priority */
265 else if (op->custom_name && strstr (op->custom_name, cp))
266 retval = 3;
267
268 if (retval)
269 {
270 if (pl->type == PLAYER)
271 pl->contr->count = count;
272
273 return retval;
274 }
275 }
276
277 return 0;
278 }
279
280 archetype::archetype ()
281 {
282 clone.arch = this;
283
284 CLEAR_FLAG (&clone, FLAG_FREED); /* This shouldn't matter, since copy_to */
285 SET_FLAG (&clone, FLAG_REMOVED); /* doesn't copy these flags... */
286 }
287
288 archetype::~archetype ()
289 {
290 //TODO: nuke ->more's
291 }
292
293 static void
294 unlink (archetype *at)
295 {
296 if (at->head)
297 at = at->head;
298
299 // destroy this archetype's link, making singletons out of its parts
300 while (at)
301 {
302 archetype *more = at->more;
303 at->clone.destroy_inv ();
304 at->head = at->more = 0;
305 at = more;
306 }
307 }
308
309 // dire hack, need to rationalise
310 void
311 overwrite (archetype *at, object *op)
312 {
313 at->clone = *op;
314
315 at->clone.arch = at;
316 at->clone.inv = op->inv; op->inv = 0;
317
318 op->destroy ();
319 }
320
321 bool
322 archetype::load (object_thawer &f)
323 {
324 assert (f.kw == KW_object);
325
326 typedef std::pair<archetype *, object *> part;
327 std::vector<part> parts;
328
329 for (;;)
330 {
331 archetype *at = get (f.get_str ());
332 object *op = object::create ();
333
334 if (!op->parse_kv (f))
335 goto fail;
336
337 parts.push_back (std::make_pair (at, op));
338
339 if (f.kw != KW_more)
340 break;
341
342 f.next ();
343 assert (f.kw == KW_object);
344 }
345
346 {
347 archetype *head = parts.front ().first;
348
349 // check that all archetypes belong to the same object or are heads
350 for (AUTODECL (p, parts.begin ()); p != parts.end (); ++p)
351 {
352 archetype *at = p->first;
353
354 if (at->head != head && at->head)
355 {
356 LOG (llevError, "%s: unable to overwrite foreign non-head archetype with non-head archetype\n", &at->name);
357 goto fail;
358 }
359
360 if (at->next && at != head)
361 {
362 LOG (llevError, "%s: unable to overwrite foreign head archetype with non-head archetype\n", &at->name);
363 goto fail;
364 }
365 }
366
367 // sever chain of existing head object
368 for (archetype *more, *at = head; at; at = more)
369 {
370 more = at->more;
371
372 at->head = 0;
373 at->more = 0;
374 }
375
376 // replace/update head
377 overwrite (head, parts.front ().second);
378 head->tail_x = 0;
379 head->tail_y = 0;
380
381 // link into list of heads, if not already there
382 if (!head->next)
383 {
384 head->next = first_archetype;
385 first_archetype = head;
386 }
387
388 // reassemble new chain
389 archetype *prev = head;
390 for (AUTODECL (p, parts.begin () + 1); p != parts.end (); ++p)
391 {
392 archetype *at = p->first;
393 overwrite (at, p->second);
394
395 if (at->clone.x > head->tail_x) head->tail_x = at->clone.x;
396 if (at->clone.y > head->tail_y) head->tail_y = at->clone.y;
397
398 at->head = head;
399 at->clone.head = &head->clone;
400 prev->more = at;
401 prev->clone.more = &at->clone;
402
403 prev = at;
404 }
405 }
406
407 return true;
408
409 fail:
410 for (AUTODECL (p, parts.begin ()); p != parts.end (); ++p)
411 p->second->destroy (true);
412
413 return false;
414 }
415
416 /*
417 * Reads/parses the archetype-file, and copies into a linked list
418 * of archetype-structures.
419 */
420 static bool
421 load_archetypes (object_thawer &f)
422 {
423 for (;;)
424 {
425 switch (f.kw)
426 {
427 case KW_object:
428 loading_arch = true;
429 if (!archetype::load (f))
430 {
431 loading_arch = false;
432 return false;
433 }
434
435 loading_arch = false;
436 continue;
437
438 case KW_EOF:
439 return true;
440
441 default:
442 if (!f.parse_error ("archetypes file"))
443 return false;
444 }
445
446 f.next ();
447 }
448 }
449
450 /*
451 * First initialises the archtype hash-table (init_archetable()).
452 * Reads and parses the archetype file (with the first and second-pass
453 * functions).
454 */
455 bool
456 load_archetype_file (const char *filename)
457 {
458 object_thawer f (filename);
459
460 f.next ();
461
462 // make sure the next - long - step is only done after a tick
463 coroapi::wait_for_tick_begin ();
464
465 if (!load_archetypes (f))
466 return false;
467
468 warn_archetypes = 1;
469
470 empty_archetype = archetype::find ("empty_archetype");
471 if (!empty_archetype)
472 return false;
473
474 coroapi::cede ();
475
476 return true;
477 }
478
479 /*
480 * Creates and returns a new object which is a copy of the given archetype.
481 * This function returns NULL on failure.
482 */
483 object *
484 arch_to_object (archetype *at)
485 {
486 if (!at)
487 {
488 if (warn_archetypes)
489 LOG (llevError, "Couldn't find archetype.\n");
490
491 return NULL;
492 }
493
494 object *op = at->clone.clone ();
495 op->arch = at;
496 op->instantiate ();
497 return op;
498 }
499
500 /*
501 * Creates an object. This function is called by get_archetype()
502 * if it fails to find the appropriate archetype.
503 * Thus get_archetype() will be guaranteed to always return
504 * an object, and never NULL.
505 */
506 object *
507 create_singularity (const char *name)
508 {
509 object *op;
510 char buf[MAX_BUF];
511
512 sprintf (buf, "%s (%s)", ARCH_SINGULARITY, name);
513 op = object::create ();
514 op->name = op->name_pl = buf;
515 SET_FLAG (op, FLAG_NO_PICK);
516 return op;
517 }
518
519 /*
520 * Finds which archetype matches the given name, and returns a new
521 * object containing a copy of the archetype.
522 */
523 object *
524 get_archetype (const char *name)
525 {
526 archetype *at = archetype::find (name);
527
528 if (!at)
529 return create_singularity (name);
530
531 return arch_to_object (at);
532 }
533
534 /*
535 * Hash-function used by the arch-hashtable.
536 */
537
538 unsigned long
539 hasharch (const char *str, int tablesize)
540 {
541 unsigned long hash = 0;
542 unsigned int i = 0;
543 const char *p;
544
545 /* use the one-at-a-time hash function, which supposedly is
546 * better than the djb2-like one used by perl5.005, but
547 * certainly is better then the bug used here before.
548 * see http://burtleburtle.net/bob/hash/doobs.html
549 */
550 for (p = str; i < MAXSTRING && *p; p++, i++)
551 {
552 hash += *p;
553 hash += hash << 10;
554 hash ^= hash >> 6;
555 }
556
557 hash += hash << 3;
558 hash ^= hash >> 11;
559 hash += hash << 15;
560
561 return hash % tablesize;
562 }
563
564 /*
565 * Finds, using the hashtable, which archetype matches the given name.
566 * returns a pointer to the found archetype, otherwise NULL.
567 */
568 archetype *
569 archetype::find (const char *name)
570 {
571 if (!name)
572 return 0;
573
574 AUTODECL (i, ht.find (name));
575
576 if (i == ht.end ())
577 return 0;
578 else
579 return i->second;
580 }
581
582 archetype *
583 archetype::get (const char *name)
584 {
585 archetype *at = find (name);
586
587 if (!at)
588 {
589 archetypes.push_back (at = new archetype);
590 at->name = name;
591 at->hash_add ();
592 }
593
594 return at;
595 }
596
597 /*
598 * Adds an archetype to the hashtable.
599 */
600 void
601 archetype::hash_add ()
602 {
603 ht.insert (std::make_pair (name, this));
604 }
605
606 void
607 archetype::hash_del ()
608 {
609 ht.erase (name);
610 }
611
612 /*
613 * Returns the first archetype using the given type.
614 * Used in treasure-generation.
615 */
616 archetype *
617 type_to_archetype (int type)
618 {
619 for (archetype *at = first_archetype; at; at = at->more == 0 ? at->next : at->more)
620 if (at->clone.type == type)
621 return at;
622
623 return 0;
624 }
625
626 /*
627 * Returns a new object copied from the first archetype matching
628 * the given type.
629 * Used in treasure-generation.
630 */
631 object *
632 clone_arch (int type)
633 {
634 archetype *at;
635
636 if ((at = type_to_archetype (type)) == NULL)
637 {
638 LOG (llevError, "Can't clone archetype %d\n", type);
639 return 0;
640 }
641
642 object *op = at->clone.clone ();
643 op->instantiate ();
644 return op;
645 }
646
647 /*
648 * member: make instance from class
649 */
650
651 object *
652 object_create_arch (archetype *at)
653 {
654 object *op, *prev = 0, *head = 0;
655
656 while (at)
657 {
658 op = arch_to_object (at);
659 op->x = at->clone.x;
660 op->y = at->clone.y;
661
662 if (head)
663 op->head = head, prev->more = op;
664
665 if (!head)
666 head = op;
667
668 prev = op;
669 at = at->more;
670 }
671
672 return (head);
673 }
674