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.104 by root, Mon Apr 12 05:22:37 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 *
213 /* All is a very generic match - low match value */ 212 /* All is a very generic match - low match value */
214 if (!strcmp (cp, "all")) 213 if (!strcmp (cp, "all"))
215 return 1; 214 return 1;
216 215
217 /* unpaid is a little more specific */ 216 /* unpaid is a little more specific */
218 if (!strcmp (cp, "unpaid") && QUERY_FLAG (op, FLAG_UNPAID)) 217 if (!strcmp (cp, "unpaid") && op->flag [FLAG_UNPAID])
219 return 2; 218 return 2;
220 219
221 if (!strcmp (cp, "cursed") && QUERY_FLAG (op, FLAG_KNOWN_CURSED) && (QUERY_FLAG (op, FLAG_CURSED) || QUERY_FLAG (op, FLAG_DAMNED))) 220 if (!strcmp (cp, "cursed") && op->flag [FLAG_KNOWN_CURSED] && (op->flag [FLAG_CURSED] || op->flag [FLAG_DAMNED]))
222 return 2; 221 return 2;
223 222
224 if (!strcmp (cp, "unlocked") && !QUERY_FLAG (op, FLAG_INV_LOCKED)) 223 if (!strcmp (cp, "unlocked") && !op->flag [FLAG_INV_LOCKED])
225 return 2; 224 return 2;
226 225
227 /* Allow for things like '100 arrows' */ 226 /* Allow for things like '100 arrows' */
228 if ((count = atoi (cp)) != 0) 227 if ((count = atoi (cp)) != 0)
229 { 228 {
300 return 0; 299 return 0;
301} 300}
302 301
303//-GPL 302//-GPL
304 303
304void
305archetype::do_delete ()
306{
307 delete this;
308}
309
305archetype::archetype (const char *name) 310archetype::archetype (const char *name)
306{ 311{
307 arch = this; 312 arch = this;
308 this->archname = this->name = this->name_pl = name; 313 this->archname = this->name = this->name_pl = name;
309} 314}
349 return 0; 354 return 0;
350 else 355 else
351 return i->second; 356 return i->second;
352} 357}
353 358
359void
360archetype::post_load_check ()
361{
362 object::post_load_check ();
363
364 assert (("obj_original MUST NOT be set for archetypes", !flag [FLAG_OBJ_ORIGINAL]));
365}
366
354archetype * 367archetype *
355archetype::read (object_thawer &f) 368archetype::read (object_thawer &f)
356{ 369{
357 assert (f.kw == KW_object); 370 assert (f.kw == KW_object);
358 371
367 f.next (); 380 f.next ();
368 381
369#if 0 382#if 0
370 // implementing it here in the server does neither allow multiple inheritence 383 // implementing it here in the server does neither allow multiple inheritence
371 // nor does it cleanly "just override". it would allow use in map files, though, 384 // nor does it cleanly "just override". it would allow use in map files, though,
372 // and other resource files dynamically laoded (as opposed to being preprocessed). 385 // and other resource files dynamically loaded (as opposed to being preprocessed).
373 // not that any of this is relevant as of yet... 386 // not that any of this is relevant as of yet...
374 if (f.kw == KW_inherit) 387 if (f.kw == KW_inherit)
375 { 388 {
376 if (archetype *at = find (f.get_str ())) 389 if (archetype *at = find (f.get_str ()))
377 *op = at->clone; 390 *op = at->clone;
434 goto fail; 447 goto fail;
435 } 448 }
436 } 449 }
437 450
438 // assemble new chain 451 // assemble new chain
439 new_head->min_x = new_head->max_x = new_head->x; 452 new_head->max_x = new_head->x;
440 new_head->min_y = new_head->max_y = new_head->y;
441 453
442 archetype *less = new_head; 454 archetype *less = new_head;
443 for (auto (p, parts.begin () + 1); p != parts.end (); ++p) 455 for (auto (p, parts.begin () + 1); p != parts.end (); ++p)
444 { 456 {
445 archetype *at = *p; 457 archetype *at = *p;
450 at->flag [FLAG_ALIVE] = new_head->flag [FLAG_ALIVE]; 462 at->flag [FLAG_ALIVE] = new_head->flag [FLAG_ALIVE];
451 at->flag [FLAG_NO_PICK] = new_head->flag [FLAG_NO_PICK]; 463 at->flag [FLAG_NO_PICK] = new_head->flag [FLAG_NO_PICK];
452 at->flag [FLAG_MONSTER] = new_head->flag [FLAG_MONSTER]; 464 at->flag [FLAG_MONSTER] = new_head->flag [FLAG_MONSTER];
453 at->flag [FLAG_IS_FLOOR] = new_head->flag [FLAG_IS_FLOOR]; 465 at->flag [FLAG_IS_FLOOR] = new_head->flag [FLAG_IS_FLOOR];
454 466
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); 467 new_head->max_x = max (new_head->max_x, at->x);
458 new_head->max_y = max (new_head->max_y, at->y);
459 468
460 at->head = new_head; 469 at->head = new_head;
461 less->more = at; 470 less->more = at;
462 less = at; 471 less = at;
463 } 472 }
592 601
593/* 602/*
594 * Returns the first archetype using the given type. 603 * Returns the first archetype using the given type.
595 * Used in treasure-generation. 604 * Used in treasure-generation.
596 */ 605 */
597archetype * 606static archetype *
598type_to_archetype (int type) 607type_to_archetype (int type)
599{ 608{
600 for_all_archetypes (at) 609 for_all_archetypes (at)
601 if (at->type == type && at->head_ () != at) 610 if (at->type == type && at->head_ () != at)
602 return at; 611 return at;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines