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.49 by root, Mon Apr 16 12:37:08 2007 UTC vs.
Revision 1.55 by root, Tue Apr 17 19:12:32 2007 UTC

309// dire hack, need to rationalise 309// dire hack, need to rationalise
310void 310void
311overwrite (archetype *at, object *op) 311overwrite (archetype *at, object *op)
312{ 312{
313 at->clone = *op; 313 at->clone = *op;
314
315 at->clone.arch = at; 314 at->clone.arch = at;
315
316 at->clone.inv = op->inv; op->inv = 0; 316 at->clone.inv = op->inv; op->inv = 0;
317 317
318 op->destroy (); 318 op->destroy ();
319} 319}
320 320
321bool 321archetype *
322archetype::load (object_thawer &f) 322archetype::read (object_thawer &f)
323{ 323{
324 assert (f.kw == KW_object); 324 assert (f.kw == KW_object);
325
326 loading_arch = true; // hack to tell parse_kv et al. to behave
325 327
326 typedef std::pair<archetype *, object *> part; 328 typedef std::pair<archetype *, object *> part;
327 std::vector<part> parts; 329 std::vector<part> parts;
328 330
331 coroapi::cede_to_tick_every (100);
332
329 for (;;) 333 for (;;)
330 { 334 {
335 object *op = object::create ();
331 archetype *at = get (f.get_str ()); 336 archetype *at = get (f.get_str ());
332 object *op = object::create (); 337 f.get (op->name);
338 f.next ();
339
340 if (f.kw == KW_inherit)
341 {
342 if (archetype *at = find (f.get_str ()))
343 *op = at->clone;
344 else
345 LOG (llevError, "archetype '%s' tries to inherit from non-existent archetype '%s'.\n",
346 &at->name, f.get_str ());
347
348 f.next ();
349 }
333 350
334 if (!op->parse_kv (f)) 351 if (!op->parse_kv (f))
335 goto fail; 352 goto fail;
336 353
337 parts.push_back (std::make_pair (at, op)); 354 parts.push_back (std::make_pair (at, op));
338 355
339 if (f.kw != KW_more) 356 if (f.kw != KW_more)
340 break; 357 break;
341 358
342 f.next (); 359 f.next ();
360
343 assert (f.kw == KW_object); 361 if (f.kw != KW_object)
362 {
363 f.parse_error ("more object");
364 goto fail;
365 }
344 } 366 }
345 367
346 { 368 {
347 archetype *head = parts.front ().first; 369 archetype *head = parts.front ().first;
348 370
349 // check that all archetypes belong to the same object or are heads 371 // check that all archetypes belong to the same object or are heads
350 for (AUTODECL (p, parts.begin ()); p != parts.end (); ++p) 372 for (auto (p, parts.begin ()); p != parts.end (); ++p)
351 { 373 {
352 archetype *at = p->first; 374 archetype *at = p->first;
353 375
354 if (at->head != head && at->head) 376 if (at->head != head && at->head)
355 { 377 {
377 overwrite (head, parts.front ().second); 399 overwrite (head, parts.front ().second);
378 head->tail_x = 0; 400 head->tail_x = 0;
379 head->tail_y = 0; 401 head->tail_y = 0;
380 402
381 // link into list of heads, if not already there 403 // link into list of heads, if not already there
382 if (!head->next) 404 if (!head->linked)
383 { 405 {
406 head->linked = true;
384 head->next = first_archetype; 407 head->next = first_archetype;
385 first_archetype = head; 408 first_archetype = head;
386 } 409 }
387 410
388 // reassemble new chain 411 // reassemble new chain
389 archetype *prev = head; 412 archetype *prev = head;
390 for (AUTODECL (p, parts.begin () + 1); p != parts.end (); ++p) 413 for (auto (p, parts.begin () + 1); p != parts.end (); ++p)
391 { 414 {
392 archetype *at = p->first; 415 archetype *at = p->first;
393 overwrite (at, p->second); 416 overwrite (at, p->second);
394 417
395 if (at->clone.x > head->tail_x) head->tail_x = at->clone.x; 418 if (at->clone.x > head->tail_x) head->tail_x = at->clone.x;
400 prev->more = at; 423 prev->more = at;
401 prev->clone.more = &at->clone; 424 prev->clone.more = &at->clone;
402 425
403 prev = at; 426 prev = at;
404 } 427 }
428
429 loading_arch = false;
430 return head;
405 } 431 }
406 432
407 return true;
408
409fail: 433fail:
410 for (AUTODECL (p, parts.begin ()); p != parts.end (); ++p) 434 for (auto (p, parts.begin ()); p != parts.end (); ++p)
411 p->second->destroy (true); 435 p->second->destroy (true);
412 436
413 return false;
414}
415
416/*
417 * Reads/parses the archetype-file, and copies into a linked list
418 * of archetype-structures.
419 */
420static bool
421load_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; 437 loading_arch = false;
436 continue; 438 return 0;
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} 439}
449 440
450/* 441/*
451 * First initialises the archtype hash-table (init_archetable()). 442 * Initialize global archtype pointers:
452 * Reads and parses the archetype file (with the first and second-pass
453 * functions).
454 */ 443 */
455bool 444void
456load_archetype_file (const char *filename) 445init_archetype_pointers ()
457{ 446{
458 object_thawer f (filename); 447 ring_arch = archetype::find ("ring");
459 448 amulet_arch = archetype::find ("amulet");
460 f.next (); 449 staff_arch = archetype::find ("staff");
461 450 crown_arch = archetype::find ("crown");
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"); 451 empty_archetype = archetype::find ("empty_archetype");
471 if (!empty_archetype)
472 return false;
473
474 coroapi::cede ();
475
476 return true;
477} 452}
478 453
479/* 454/*
480 * Creates and returns a new object which is a copy of the given archetype. 455 * Creates and returns a new object which is a copy of the given archetype.
481 * This function returns NULL on failure. 456 * This function returns NULL on failure.
483object * 458object *
484arch_to_object (archetype *at) 459arch_to_object (archetype *at)
485{ 460{
486 if (!at) 461 if (!at)
487 { 462 {
488 if (warn_archetypes)
489 LOG (llevError, "Couldn't find archetype.\n"); 463 LOG (llevError, "Couldn't find archetype.\n");
490
491 return NULL; 464 return 0;
492 } 465 }
493 466
494 object *op = at->clone.clone (); 467 object *op = at->clone.clone ();
495 op->arch = at; 468 op->arch = at;
496 op->instantiate (); 469 op->instantiate ();
470
497 return op; 471 return op;
498} 472}
499 473
500/* 474/*
501 * Creates an object. This function is called by get_archetype() 475 * Creates an object. This function is called by get_archetype()
530 504
531 return arch_to_object (at); 505 return arch_to_object (at);
532} 506}
533 507
534/* 508/*
535 * Hash-function used by the arch-hashtable.
536 */
537
538unsigned long
539hasharch (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. 509 * Finds, using the hashtable, which archetype matches the given name.
566 * returns a pointer to the found archetype, otherwise NULL. 510 * returns a pointer to the found archetype, otherwise NULL.
567 */ 511 */
568archetype * 512archetype *
569archetype::find (const char *name) 513archetype::find (const char *name)
570{ 514{
571 if (!name) 515 if (!name)
572 return 0; 516 return 0;
573 517
574 AUTODECL (i, ht.find (name)); 518 auto (i, ht.find (name));
575 519
576 if (i == ht.end ()) 520 if (i == ht.end ())
577 return 0; 521 return 0;
578 else 522 else
579 return i->second; 523 return i->second;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines