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

Comparing deliantra/server/common/living.C (file contents):
Revision 1.100 by root, Sat Nov 7 18:30:05 2009 UTC vs.
Revision 1.107 by root, Fri Mar 26 00:05:45 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,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 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
262/* Rather than having a whole bunch of if (flag) new_draw.. else new_draw, 262/* Rather than having a whole bunch of if (flag) new_draw.. else new_draw,
263 * make this macro to clean those up. Not usuable outside change_abil 263 * make this macro to clean those up. Not usuable outside change_abil
264 * function since some of the values passed to new_draw_info are hardcoded. 264 * function since some of the values passed to new_draw_info are hardcoded.
265 */ 265 */
266#define DIFF_MSG(flag, msg1, msg2) \ 266#define DIFF_MSG(flag, msg1, msg2) \
267 new_draw_info(NDI_UNIQUE, 0, op, (flag>0)?msg1:msg2); 267 new_draw_info (NDI_UNIQUE, 0, op, (flag > 0) ? msg1 : msg2);
268 268
269/* return 1 if we sucessfully changed a stat, 0 if nothing was changed. */ 269/* return 1 if we sucessfully changed a stat, 0 if nothing was changed. */
270 270
271/* flag is set to 1 if we are applying the object, -1 if we are removing 271/* flag is set to 1 if we are applying the object, -1 if we are removing
272 * the object. 272 * the object.
415 (op->move_type & MOVE_FLY_LOW ? "You fly lower in the air" : "You float down to the ground.")); 415 (op->move_type & MOVE_FLY_LOW ? "You fly lower in the air" : "You float down to the ground."));
416 } 416 }
417 417
418 if (tmp->move_type & MOVE_SWIM) 418 if (tmp->move_type & MOVE_SWIM)
419 DIFF_MSG (flag, "You feel ready for a swim", "You no longer feel like swimming"); 419 DIFF_MSG (flag, "You feel ready for a swim", "You no longer feel like swimming");
420
421 /* Changing move status may mean you are affected by things you weren't before */
422 check_move_on (op, op);
423 } 420 }
424 421
425 /* becoming UNDEAD... a special treatment for this flag. Only those not 422 /* becoming UNDEAD... a special treatment for this flag. Only those not
426 * originally undead may change their status 423 * originally undead may change their status
427 */ 424 */
607 { 604 {
608 tmp = present_arch_in_ob (at, this); 605 tmp = present_arch_in_ob (at, this);
609 606
610 if (!tmp) 607 if (!tmp)
611 { 608 {
612 tmp = arch_to_object (at); 609 tmp = at->instance ();
613 tmp = insert_ob_in_ob (tmp, this); 610 tmp = insert_ob_in_ob (tmp, this);
614 SET_FLAG (tmp, FLAG_APPLIED); 611 SET_FLAG (tmp, FLAG_APPLIED);
615 } 612 }
616 } 613 }
617 614
637 if (!tmp) 634 if (!tmp)
638 { 635 {
639 if (!value) 636 if (!value)
640 return; 637 return;
641 638
642 tmp = arch_to_object (at); 639 tmp = at->instance ();
643 tmp = insert_ob_in_ob (tmp, this); 640 tmp = insert_ob_in_ob (tmp, this);
644 SET_FLAG (tmp, FLAG_APPLIED); 641 SET_FLAG (tmp, FLAG_APPLIED);
645 } 642 }
646 643
647 if (value) 644 if (value)
764 int prot[NROFATTACKS], vuln[NROFATTACKS], potion_resist[NROFATTACKS]; 761 int prot[NROFATTACKS], vuln[NROFATTACKS], potion_resist[NROFATTACKS];
765 object *grace_obj = NULL, *mana_obj = NULL, *tmp; 762 object *grace_obj = NULL, *mana_obj = NULL, *tmp;
766 float old_speed = speed; 763 float old_speed = speed;
767 int stat_sum [NUM_STATS]; 764 int stat_sum [NUM_STATS];
768 765
766 MoveType move_type; // we use change_move_type to change it, so use a local copy
767
769 /* First task is to clear all the values back to their original values */ 768 /* First task is to clear all the values back to their original values */
770 if (type == PLAYER) 769 if (type == PLAYER)
771 { 770 {
771 contr->delayed_update = false;
772
772 for (int i = 0; i < NUM_STATS; i++) 773 for (int i = 0; i < NUM_STATS; i++)
773 stat_sum [i] = contr->orig_stats.stat (i); 774 stat_sum [i] = contr->orig_stats.stat (i);
774 775
775 if (settings.spell_encumbrance == TRUE) 776 if (settings.spell_encumbrance == TRUE)
776 contr->encumbrance = 0; 777 contr->encumbrance = 0;
909 && !tmp->flag [FLAG_CURSED] 910 && !tmp->flag [FLAG_CURSED]
910 && !tmp->flag [FLAG_DAMNED]) 911 && !tmp->flag [FLAG_DAMNED])
911 continue; 912 continue;
912 913
913 for (int i = 0; i < NUM_STATS; i++) 914 for (int i = 0; i < NUM_STATS; i++)
914 stat_sum [i] = stat_sum [i] + tmp->stats.stat (i); 915 stat_sum [i] += tmp->stats.stat (i);
915 916
916 if (digest_types [tmp->type]) 917 if (digest_types [tmp->type])
917 { 918 {
918 contr->digestion += tmp->stats.food; 919 contr->digestion += tmp->stats.food;
919 contr->gen_hp += tmp->stats.hp; 920 contr->gen_hp += tmp->stats.hp;
1172 1173
1173 if (type == PLAYER) 1174 if (type == PLAYER)
1174 { 1175 {
1175 // clamp various player stats 1176 // clamp various player stats
1176 for (int i = 0; i < NUM_STATS; ++i) 1177 for (int i = 0; i < NUM_STATS; ++i)
1177 stats.stat (i) = clamp (stat_sum [i], MIN_STAT, MAX_STAT); 1178 stats.stat (i) = stat_sum [i];
1179
1180 check_stat_bounds (&stats);
1178 1181
1179 contr->digestion = clamp (contr->digestion, MIN_DIGESTION, MAX_DIGESTION); 1182 contr->digestion = clamp (contr->digestion, MIN_DIGESTION, MAX_DIGESTION);
1180 1183
1181 /* Figure out the players sp/mana/hp totals. */ 1184 /* Figure out the players sp/mana/hp totals. */
1182 int pl_level; 1185 int pl_level;
1183 1186
1184 check_stat_bounds (&(stats));
1185 pl_level = level;
1186
1187 if (pl_level < 1)
1188 pl_level = 1; /* safety, we should always get 1 levels worth of hp! */ 1187 pl_level = max (1, level); /* safety, we should always get 1 levels worth of hp! */
1189 1188
1190 /* You basically get half a con bonus/level. But we do take into account rounding, 1189 /* You basically get half a con bonus/level. But we do take into account rounding,
1191 * so if your bonus is 7, you still get 7 worth of bonus every 2 levels. 1190 * so if your bonus is 7, you still get 7 worth of bonus every 2 levels.
1192 */ 1191 */
1193 stats.maxhp = 0; 1192 stats.maxhp = 0;
1356 speed *= speed_reduce_from_disease; 1355 speed *= speed_reduce_from_disease;
1357 1356
1358 /* Put a lower limit on speed. Note with this speed, you move once every 1357 /* Put a lower limit on speed. Note with this speed, you move once every
1359 * 25 ticks or so. This amounts to once every 3 seconds of realtime. 1358 * 25 ticks or so. This amounts to once every 3 seconds of realtime.
1360 */ 1359 */
1361 if (speed < 0.04f && type == PLAYER) 1360 max_it (speed, is_player () ? MIN_PLAYER_SPEED : MIN_ACTIVE_SPEED);
1362 speed = 0.04f;
1363 1361
1364 if (speed != old_speed) 1362 if (speed != old_speed)
1365 set_speed (speed); 1363 set_speed (speed);
1366 1364
1367 if (type == PLAYER) 1365 if (type == PLAYER)
1402 if (move_type == 0) 1400 if (move_type == 0)
1403 move_type = MOVE_WALK; 1401 move_type = MOVE_WALK;
1404 else if (move_type & (MOVE_FLY_LOW | MOVE_FLY_HIGH)) 1402 else if (move_type & (MOVE_FLY_LOW | MOVE_FLY_HIGH))
1405 move_type &= ~MOVE_WALK; 1403 move_type &= ~MOVE_WALK;
1406 1404
1405 // now apply the new move_type
1406 if (this->move_type != move_type)
1407 change_move_type (move_type);
1408
1407 /* It is quite possible that a player's spell costing might have changed, 1409 /* It is quite possible that a player's spell costing might have changed,
1408 * so we will check that now. 1410 * so we will check that now.
1409 */ 1411 */
1410 if (type == PLAYER) 1412 if (is_player ())
1411 { 1413 contr->update_spells ();
1412 esrv_update_stats (contr);
1413 esrv_update_spells (contr);
1414 }
1415 1414
1416 // update the mapspace, if we are on a map 1415 // update the mapspace, if we are on a map
1417 if (!flag [FLAG_REMOVED] && map) 1416 if (!flag [FLAG_REMOVED] && map)
1418 map->at (x, y).flags_ = 0; 1417 map->at (x, y).flags_ = 0;
1419} 1418}
1609 { 1608 {
1610 changed = true; 1609 changed = true;
1611 1610
1612 op->level++; 1611 op->level++;
1613 1612
1614 if (op && op == who && op->stats.exp > 1 && is_dragon_pl (who)) 1613 if (op && op == who && op->stats.exp > 1 && who->is_dragon ())
1615 dragon_level_gain (who); 1614 dragon_level_gain (who);
1616 1615
1617 /* Only roll these if it is the player (who) that gained the level */ 1616 /* Only roll these if it is the player (who) that gained the level */
1618 if (op == who && (who->level < 11) && who->type == PLAYER) 1617 if (op == who && (who->level < 11) && who->type == PLAYER)
1619 { 1618 {
1652 new_draw_info (NDI_UNIQUE | NDI_RED, 0, who, buf); 1651 new_draw_info (NDI_UNIQUE | NDI_RED, 0, who, buf);
1653 } 1652 }
1654 } 1653 }
1655 1654
1656 if (changed) 1655 if (changed)
1657 { 1656 who->update_stats (); // should cause esrv_update_stats and esrv_update_spells
1658 who->update_stats ();
1659 esrv_update_stats (who->contr);
1660 /* check if the spell data has changed */
1661 esrv_update_spells (who->contr);
1662 }
1663} 1657}
1664 1658
1665/* 1659/*
1666 * Returns how much experience is needed for a player to become 1660 * Returns how much experience is needed for a player to become
1667 * the given level. level should really never exceed max_level 1661 * the given level. level should really never exceed max_level

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines