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

Comparing deliantra/server/server/player.C (file contents):
Revision 1.133 by root, Sat May 12 22:04:20 2007 UTC vs.
Revision 1.137 by root, Thu May 17 14:14:55 2007 UTC

147 draw_ext_info_format (NDI_UNIQUE | NDI_GREEN, 0, op, 147 draw_ext_info_format (NDI_UNIQUE | NDI_GREEN, 0, op,
148 MSG_TYPE_ADMIN, MSG_TYPE_ADMIN_NEWS, "INFORMATION: %s\n%s\n", (char *)"%s\n%s", subject, news); 148 MSG_TYPE_ADMIN, MSG_TYPE_ADMIN_NEWS, "INFORMATION: %s\n%s\n", (char *)"%s\n%s", subject, news);
149 close_and_delete (fp, comp); 149 close_and_delete (fp, comp);
150} 150}
151 151
152float
153player::weapon_speed () const
154{
155 return ob->speed / weapon_sp * .5f;//TODO, the .5 is arbitrary
156}
157
152/* This loads the first map an puts the player on it. */ 158/* This loads the first map an puts the player on it. */
153static void 159static void
154set_first_map (object *op) 160set_first_map (object *op)
155{ 161{
156 op->contr->maplevel = first_map_path; 162 op->contr->maplevel = first_map_path;
1544 { 1550 {
1545 new_draw_info (NDI_UNIQUE, 0, op, "You can't shoot yourself!"); 1551 new_draw_info (NDI_UNIQUE, 0, op, "You can't shoot yourself!");
1546 return 0; 1552 return 0;
1547 } 1553 }
1548 1554
1549 if (player *pl = op->contr) 1555 if (op->contr)
1550 { 1556 bow = op->current_weapon;
1551 bow = pl->ranged_ob;
1552 if (!op->change_weapon (bow))
1553 return 0;
1554 }
1555 else 1557 else
1556 { 1558 {
1557 for (bow = op->inv; bow; bow = bow->below) 1559 for (bow = op->inv; bow; bow = bow->below)
1558 /* Don't check for applied - monsters don't apply bows - in that way, they 1560 /* Don't check for applied - monsters don't apply bows - in that way, they
1559 * don't need to switch back and forth between bows and weapons. 1561 * don't need to switch back and forth between bows and weapons.
1632 if (arrow->slaying) 1634 if (arrow->slaying)
1633 arrow->spellarg = strdup (arrow->slaying); 1635 arrow->spellarg = strdup (arrow->slaying);
1634 1636
1635 if (player *pl = op->contr) 1637 if (player *pl = op->contr)
1636 { 1638 {
1639 if (!pl->has_hit)
1640 {
1637 pl->has_hit = 1; 1641 pl->has_hit = 1;
1642 pl->ob->speed_left += pl->weapon_speed () - pl->ob->speed;
1643 }
1638#if 0 1644#if 0
1639 float speed = pl->weapon_sp; 1645 float speed = pl->weapon_sp;
1640 1646
1641 /* penalize ROF for bestarrow */ 1647 /* penalize ROF for bestarrow */
1642 if (pl->bowtype == bow_bestarrow) 1648 if (pl->bowtype == bow_bestarrow)
1746 } 1752 }
1747 1753
1748 return ret; 1754 return ret;
1749} 1755}
1750 1756
1751
1752/* Fires a misc (wand/rod/horn) object in 'dir'. 1757/* Fires a misc (wand/rod/horn) object in 'dir'.
1753 * Broken apart from 'fire' to keep it more readable. 1758 * Broken apart from 'fire' to keep it more readable.
1754 */ 1759 */
1755void 1760void
1756fire_misc_object (object *op, int dir) 1761fire_misc_object (object *op, int dir)
1844 object *ob = pl->ranged_ob; 1849 object *ob = pl->ranged_ob;
1845 1850
1846 if (!ob) 1851 if (!ob)
1847 return; 1852 return;
1848 1853
1854 if (!op->change_weapon (ob))
1855 return;
1856
1849 switch (ob->type) 1857 switch (ob->type)
1850 { 1858 {
1851 case BOW: 1859 case BOW:
1852 player_fire_bow (op, dir); 1860 player_fire_bow (op, dir);
1853 break; 1861 break;
1859 case BUILDER: 1867 case BUILDER:
1860 apply_map_builder (op, dir); 1868 apply_map_builder (op, dir);
1861 break; 1869 break;
1862 1870
1863 case SKILL: 1871 case SKILL:
1864 case SKILL_TOOL:
1865 do_skill (op, op, ob, dir, 0); 1872 do_skill (op, op, ob, dir, 0);
1866 break; 1873 break;
1867 1874
1868 default: 1875 default:
1869 fire_misc_object (op, dir); 1876 fire_misc_object (op, dir);
2097 2104
2098 /* If the creature is a pet, push it even if the player is not 2105 /* If the creature is a pet, push it even if the player is not
2099 * peaceful. Our assumption is the creature is a pet if the 2106 * peaceful. Our assumption is the creature is a pet if the
2100 * player owns it and it is either friendly or unagressive. 2107 * player owns it and it is either friendly or unagressive.
2101 */ 2108 */
2102 if ((op->type == PLAYER) 2109 if (op->type == PLAYER
2103#if COZY_SERVER
2104 &&
2105 ((mon->owner && mon->owner->contr 2110 && ((mon->owner && mon->owner->contr
2106 && same_party (mon->owner->contr->party, op->contr->party)) || mon->owner == op) 2111 && same_party (mon->owner->contr->party, op->contr->party))
2107#else
2108 && mon->owner == op 2112 || mon->owner == op)
2109#endif
2110 && (QUERY_FLAG (mon, FLAG_UNAGGRESSIVE) || QUERY_FLAG (mon, FLAG_FRIENDLY))) 2113 && (QUERY_FLAG (mon, FLAG_UNAGGRESSIVE) || QUERY_FLAG (mon, FLAG_FRIENDLY)))
2111 { 2114 {
2112 /* If we're braced, we don't want to switch places with it */ 2115 /* If we're braced, we don't want to switch places with it */
2113 if (op->contr->braced) 2116 if (op->contr->braced)
2114 return; 2117 return;
2124 /* in certain circumstances, you shouldn't attack friendly 2127 /* in certain circumstances, you shouldn't attack friendly
2125 * creatures. Note that if you are braced, you can't push 2128 * creatures. Note that if you are braced, you can't push
2126 * someone, but put it inside this loop so that you won't 2129 * someone, but put it inside this loop so that you won't
2127 * attack them either. 2130 * attack them either.
2128 */ 2131 */
2129 if ((mon->type == PLAYER || mon->enemy != op) && 2132 if ((mon->type == PLAYER || mon->enemy != op)
2130 (mon->type == PLAYER || QUERY_FLAG (mon, FLAG_UNAGGRESSIVE) || QUERY_FLAG (mon, FLAG_FRIENDLY)) && ( 2133 && (mon->type == PLAYER || QUERY_FLAG (mon, FLAG_UNAGGRESSIVE) || QUERY_FLAG (mon, FLAG_FRIENDLY))
2131#ifdef PROHIBIT_PLAYERKILL
2132 (op->contr->peaceful 2134 && ((op->contr->peaceful
2133 || (mon->type == PLAYER 2135 || (mon->type == PLAYER && mon->contr->peaceful))
2134 && mon->contr->
2135 peaceful)) &&
2136#else
2137 op->contr->peaceful &&
2138#endif
2139 !on_battleground)) 2136 && !on_battleground))
2140 { 2137 {
2141 if (!op->contr->braced) 2138 if (!op->contr->braced)
2142 { 2139 {
2143 play_sound_map (op->map, op->x, op->y, SOUND_PUSH_PLAYER); 2140 play_sound_map (op->map, op->x, op->y, SOUND_PUSH_PLAYER);
2144 push_ob (mon, dir, op); 2141 push_ob (mon, dir, op);
2167 * that party_number -1 is no party, so attacks can still happen. 2164 * that party_number -1 is no party, so attacks can still happen.
2168 */ 2165 */
2169 else if ((mon->stats.hp >= 0) && QUERY_FLAG (mon, FLAG_ALIVE) && 2166 else if ((mon->stats.hp >= 0) && QUERY_FLAG (mon, FLAG_ALIVE) &&
2170 ((mon->type != PLAYER || op->contr->party == NULL || op->contr->party != mon->contr->party))) 2167 ((mon->type != PLAYER || op->contr->party == NULL || op->contr->party != mon->contr->party)))
2171 { 2168 {
2169 if (!op->contr->has_hit)
2170 {
2172 op->contr->has_hit = 1; 2171 op->contr->has_hit = 1;
2172 op->speed_left += op->contr->weapon_speed () - op->speed;
2173 }
2173 2174
2174 skill_attack (mon, op, 0, 0, 0); 2175 skill_attack (mon, op, 0, 0, 0);
2175 2176
2176 /* If attacking another player, that player gets automatic 2177 /* If attacking another player, that player gets automatic
2177 * hitback, and doesn't loose luck either. 2178 * hitback, and doesn't loose luck either.
2563 } 2564 }
2564 2565
2565 /* Digestion */ 2566 /* Digestion */
2566 if (--op->last_eat < 0) 2567 if (--op->last_eat < 0)
2567 { 2568 {
2568#ifdef COZY_SERVER
2569 int dg = op->contr->digestion >= 0 && op->contr->digestion < 2 ? 2 : op->contr->digestion;
2570 int bonus = dg > 0 ? dg : 0, penalty = dg < 0 ? -dg : 0;
2571#else
2572 int bonus = op->contr->digestion > 0 ? op->contr->digestion : 0, penalty = op->contr->digestion < 0 ? -op->contr->digestion : 0; 2569 int bonus = op->contr->digestion > 0 ? op->contr->digestion : 0, penalty = op->contr->digestion < 0 ? -op->contr->digestion : 0;
2573#endif
2574 2570
2575 if (op->contr->gen_hp > 0) 2571 if (op->contr->gen_hp > 0)
2576 op->last_eat = 25 * (1 + bonus) / (op->contr->gen_hp + penalty + 1); 2572 op->last_eat = 25 * (1 + bonus) / (op->contr->gen_hp + penalty + 1);
2577 else 2573 else
2578 op->last_eat = 25 * (1 + bonus) / (penalty + 1); 2574 op->last_eat = 25 * (1 + bonus) / (penalty + 1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines