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

Comparing deliantra/server/common/arch.C (file contents):
Revision 1.55 by root, Tue Apr 17 19:12:32 2007 UTC vs.
Revision 1.60 by root, Thu May 17 21:32:08 2007 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game for X-windows 2 * CrossFire, A Multiplayer game
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (C) 1992 Frank Tore Johansen
7 * 7 *
335 object *op = object::create (); 335 object *op = object::create ();
336 archetype *at = get (f.get_str ()); 336 archetype *at = get (f.get_str ());
337 f.get (op->name); 337 f.get (op->name);
338 f.next (); 338 f.next ();
339 339
340#if 0
340 if (f.kw == KW_inherit) 341 if (f.kw == KW_inherit)
341 { 342 {
342 if (archetype *at = find (f.get_str ())) 343 if (archetype *at = find (f.get_str ()))
343 *op = at->clone; 344 *op = at->clone;
344 else 345 else
345 LOG (llevError, "archetype '%s' tries to inherit from non-existent archetype '%s'.\n", 346 LOG (llevError, "archetype '%s' tries to inherit from non-existent archetype '%s'.\n",
346 &at->name, f.get_str ()); 347 &at->name, f.get_str ());
347 348
348 f.next (); 349 f.next ();
349 } 350 }
351#endif
350 352
351 if (!op->parse_kv (f)) 353 if (!op->parse_kv (f))
352 goto fail; 354 goto fail;
355
356 op->post_load_check ();
353 357
354 parts.push_back (std::make_pair (at, op)); 358 parts.push_back (std::make_pair (at, op));
355 359
356 if (f.kw != KW_more) 360 if (f.kw != KW_more)
357 break; 361 break;
524} 528}
525 529
526archetype * 530archetype *
527archetype::get (const char *name) 531archetype::get (const char *name)
528{ 532{
533 if (!name)
534 {
535 LOG (llevError, "null archetype requested\n");
536 name = "(null)";
537 }
538
529 archetype *at = find (name); 539 archetype *at = find (name);
530 540
531 if (!at) 541 if (!at)
532 { 542 {
533 archetypes.push_back (at = new archetype); 543 archetypes.push_back (at = new archetype);
534 at->name = name; 544 at->name = at->clone.name = at->clone.name_pl = name;
535 at->hash_add (); 545 at->hash_add ();
536 } 546 }
537 547
538 return at; 548 return at;
539} 549}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines