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.94 by root, Fri Nov 6 12:49:19 2009 UTC vs.
Revision 1.101 by root, Fri Mar 26 01:04:43 2010 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version. 11 * option) any later version.
23 */ 23 */
24 24
25#include <cassert> 25#include <cassert>
26 26
27#include <global.h> 27#include <global.h>
28#include <loader.h>
29 28
30#include <tr1/functional> 29#include <tr1/functional>
31#include <tr1/unordered_map> 30#include <tr1/unordered_map>
32 31
33archetype *loading_arch; // ugly flag to object loader etc. to suppress/request special processing 32archetype *loading_arch; // ugly flag to object loader etc. to suppress/request special processing
54static std::vector<archetype *> postponed_arch; 53static std::vector<archetype *> postponed_arch;
55 54
56//+GPL 55//+GPL
57 56
58/* 57/*
59 * Creates an object. This function is called by get_archetype() 58 * Creates an object. This function is called by get_archetype ()
60 * if it fails to find the appropriate archetype. 59 * if it fails to find the appropriate archetype.
61 * Thus get_archetype() will be guaranteed to always return 60 * Thus get_archetype() will be guaranteed to always return
62 * an object, and never NULL. 61 * an object, and never NULL.
63 */ 62 */
64static object * 63static object *
349 return 0; 348 return 0;
350 else 349 else
351 return i->second; 350 return i->second;
352} 351}
353 352
353void
354archetype::post_load_check ()
355{
356 object::post_load_check ();
357
358 assert (("obj_original MUST NOT be set for archetypes", !flag [FLAG_OBJ_ORIGINAL]));
359}
360
354archetype * 361archetype *
355archetype::read (object_thawer &f) 362archetype::read (object_thawer &f)
356{ 363{
357 assert (f.kw == KW_object); 364 assert (f.kw == KW_object);
358 365
434 goto fail; 441 goto fail;
435 } 442 }
436 } 443 }
437 444
438 // assemble new chain 445 // assemble new chain
439 new_head->min_x = new_head->max_x = new_head->x; 446 new_head->max_x = new_head->x;
440 new_head->min_y = new_head->max_y = new_head->y;
441 447
442 archetype *less = new_head; 448 archetype *less = new_head;
443 for (auto (p, parts.begin () + 1); p != parts.end (); ++p) 449 for (auto (p, parts.begin () + 1); p != parts.end (); ++p)
444 { 450 {
445 archetype *at = *p; 451 archetype *at = *p;
450 at->flag [FLAG_ALIVE] = new_head->flag [FLAG_ALIVE]; 456 at->flag [FLAG_ALIVE] = new_head->flag [FLAG_ALIVE];
451 at->flag [FLAG_NO_PICK] = new_head->flag [FLAG_NO_PICK]; 457 at->flag [FLAG_NO_PICK] = new_head->flag [FLAG_NO_PICK];
452 at->flag [FLAG_MONSTER] = new_head->flag [FLAG_MONSTER]; 458 at->flag [FLAG_MONSTER] = new_head->flag [FLAG_MONSTER];
453 at->flag [FLAG_IS_FLOOR] = new_head->flag [FLAG_IS_FLOOR]; 459 at->flag [FLAG_IS_FLOOR] = new_head->flag [FLAG_IS_FLOOR];
454 460
455 new_head->min_x = min (new_head->min_x, at->x);
456 new_head->min_y = min (new_head->min_y, at->y);
457 new_head->max_x = max (new_head->max_x, at->x); 461 new_head->max_x = max (new_head->max_x, at->x);
458 new_head->max_y = max (new_head->max_y, at->y);
459 462
460 at->head = new_head; 463 at->head = new_head;
461 less->more = at; 464 less->more = at;
462 less = at; 465 less = at;
463 } 466 }
592 595
593/* 596/*
594 * Returns the first archetype using the given type. 597 * Returns the first archetype using the given type.
595 * Used in treasure-generation. 598 * Used in treasure-generation.
596 */ 599 */
597archetype * 600static archetype *
598type_to_archetype (int type) 601type_to_archetype (int type)
599{ 602{
600 for_all_archetypes (at) 603 for_all_archetypes (at)
601 if (at->type == type && at->head_ () != at) 604 if (at->type == type && at->head_ () != at)
602 return at; 605 return at;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines