--- deliantra/server/include/object.h 2009/11/05 15:57:16 1.214 +++ deliantra/server/include/object.h 2009/11/29 09:41:28 1.222 @@ -95,6 +95,8 @@ { uint64 seq; + enum { MAX_LEN = 3 + 16 + 1 + 1 }; // <1. + hex + > + \0 + static UUID cur; // last uuid generated static void init (); static UUID gen (); @@ -104,26 +106,9 @@ operator uint64() { return seq; } void operator =(uint64 seq) { this->seq = seq; } - typedef char BUF [32]; - - bool parse (const char *s) - { - return sscanf (s, "<1.%" SCNx64 ">", &seq) == 1; - } - - const char *c_str (char *buf, int len) const - { - snprintf (buf, len, "<1.%" PRIx64 ">", seq); - - return buf; - } - - const char *c_str () const - { - static BUF buf; - - return c_str (buf, sizeof (buf)); - } + bool parse (const char *s); + char *append (char *buf) const; + char *c_str () const; }; //+GPL @@ -141,8 +126,8 @@ struct body_slot { - signed char info:4; /* body info as loaded from the file */ signed char used:4; /* Calculated value based on items equipped */ + signed char info:4; /* body info as loaded from the file */ }; typedef struct oblnk @@ -182,9 +167,8 @@ bool ACC (RW, flag[NUM_FLAGS]); #endif - shstr ACC (RW, materialname); /* specific material name */ + materialtype_t *material; // What material this object consists of //TODO, make perl-accessible shstr ACC (RW, skill); /* Name of the skill this object uses/grants */ -// materialtype_t *ACC (RW, material); /* What material this object consists of */ object_ptr ACC (RW, owner); /* Pointer to the object which controls this one */ object_ptr ACC (RW, enemy); /* Monster/player to follow even if not closest */ object_ptr ACC (RW, attacked_by); /* This object start to attack us! only player & monster */ @@ -229,13 +213,13 @@ sint8 ACC (RW, glow_radius); /* indicates the glow radius of the object */ uint8 ACC (RW, weapontype); /* type of weapon */ + body_slot slot [NUM_BODY_LOCATIONS]; + faceidx ACC (RW, face); /* the graphical face */ faceidx ACC (RW, sound); /* the sound face */ faceidx ACC (RW, sound_destroy); /* played on destroy */ - body_slot slot [NUM_BODY_LOCATIONS]; - sint32 ACC (RW, weight); /* Attributes of the object */ sint32 ACC (RW, weight_limit);/* Weight-limit of object */ @@ -506,15 +490,18 @@ MTH void update_weight (); // return the dominant material of this item, always return something - const materialtype_t *dominant_material () const; + const materialtype_t *dominant_material () const + { + return material; + } // return the volume of this object in cm³ MTH uint64 volume () const { return (uint64)total_weight () - * 1000 - * (type == CONTAINER ? 1000 : 1) - / dominant_material ()->density; + * 1024 // 1000 actually + * (type == CONTAINER ? 128 : 1) + / dominant_material ()->density; // ugh, division } MTH bool is_arch () const { return this == (const object *)(const archetype *)arch; } @@ -533,7 +520,7 @@ && (subtype == SP_BULLET || subtype == SP_MAGIC_MISSILE)); } MTH bool is_range () const { return type == BOW || type == ROD || type == WAND || type == HORN; } - MTH bool has_active_speed () const { return FABS(speed) >= MIN_ACTIVE_SPEED; } + MTH bool has_active_speed () const { return speed >= MIN_ACTIVE_SPEED; } // temporary: wether the object can be saved in a map file // contr => is a player @@ -647,6 +634,8 @@ // insert object at same map position as 'where' // handles both inventory and map "positions" MTH object *insert_at (object *where, object *originator = 0, int flags = 0); + // check whether we can put this into the map, respect max_nrof, max_volume, max_items + MTH bool can_drop_at (maptile *m, int x, int y, object *originator = 0); MTH void drop_unpaid_items (); MTH void activate (); @@ -762,7 +751,7 @@ // move this object to the top of its env's inventory to speed up // searches for it. -static object * +static inline object * splay (object *ob) { if (ob->above && ob->env) @@ -814,6 +803,8 @@ MTH static object *get (const char *name); // (find() || singularity)->instance() MTH object *instance (); + MTH void post_load_check (); // do some adjustments after parsing + object_vector_index ACC (RW, archid); // index in archvector shstr ACC (RW, archname); /* More definite name, like "generate_kobold" */ @@ -834,9 +825,12 @@ } inline void -object_freezer::put (keyword k, archetype *v) +object_freezer::put (const keyword_string k, archetype *v) { - put (k, v ? &v->archname : (const char *)0); + if (expect_true (v)) + put (k, v->archname); + else + put (k); } typedef object_vector objectvec; @@ -904,8 +898,6 @@ #define INS_ON_TOP 0x0008 #define INS_BELOW_ORIGINATOR 0x0010 -#define ARCH_DEPLETION "depletion" - //-GPL #endif