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

Comparing deliantra/server/server/skills.C (file contents):
Revision 1.56 by root, Thu Sep 11 13:46:22 2008 UTC vs.
Revision 1.68 by root, Sat Oct 17 21:40:38 2009 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 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2003,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2003,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 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * it under the terms of the GNU General Public License as published by 9 * the terms of the Affero GNU General Public License as published by the
10 * the Free Software Foundation, either version 3 of the License, or 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * (at your option) any later version. 11 * option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. 19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>.
20 * 21 *
21 * The authors can be reached via e-mail to <support@deliantra.net> 22 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 23 */
23 24
24#include <global.h> 25#include <global.h>
41 /* Only prohibit stealing if the player does not have a free 42 /* Only prohibit stealing if the player does not have a free
42 * hand available and in fact does have hands. 43 * hand available and in fact does have hands.
43 */ 44 */
44 if (op->type == PLAYER && op->slot[body_arm].used <= 0 && op->slot[body_arm].info) 45 if (op->type == PLAYER && op->slot[body_arm].used <= 0 && op->slot[body_arm].info)
45 { 46 {
46 new_draw_info (NDI_UNIQUE, 0, op, "But you have no free hands to steal with!"); 47 new_draw_info (NDI_UNIQUE, 0, op, "But you have no free hands to steal with! "
48 "H<Try to unapply weapons or things you hold in your hands, use the C<body> command.>");
47 return -1; 49 return -1;
48 } 50 }
49 51
50 /* ADJUSTMENTS */ 52 /* ADJUSTMENTS */
51 53
101{ 103{
102 object *success = NULL, *tmp = NULL, *next; 104 object *success = NULL, *tmp = NULL, *next;
103 int roll = 0, chance = 0, stats_value; 105 int roll = 0, chance = 0, stats_value;
104 rv_vector rv; 106 rv_vector rv;
105 107
106 stats_value = ((who->stats.Dex + who->stats.Int) * 3) / 2; 108 stats_value = (who->stats.Dex + who->stats.Int) * 3 / 2;
107 109
108 /* if the victim is aware of a thief in the area (FLAG_NO_STEAL set on them) 110 /* if the victim is aware of a thief in the area (FLAG_NO_STEAL set on them)
109 * they will try to prevent stealing if they can. Only unseen theives will 111 * they will try to prevent stealing if they can. Only unseen theives will
110 * have much chance of success. 112 * have much chance of success.
111 */ 113 */
112 if (op->type != PLAYER && QUERY_FLAG (op, FLAG_NO_STEAL)) 114 if (!op->is_player () && op->flag [FLAG_NO_STEAL])
113 { 115 {
114 if (can_detect_enemy (op, who, &rv)) 116 if (can_detect_enemy (op, who, &rv))
115 { 117 {
116 npc_call_help (op); 118 npc_call_help (op);
117 CLEAR_FLAG (op, FLAG_UNAGGRESSIVE); 119 CLEAR_FLAG (op, FLAG_UNAGGRESSIVE);
118 new_draw_info (NDI_UNIQUE, 0, who, "Your attempt is prevented!"); 120 new_draw_info (NDI_UNIQUE, 0, who, "Your attempt is prevented!");
119 return 0; 121 return 0;
120 } 122 }
121 else /* help npc to detect thief next time by raising its wisdom */ 123 else /* help npc to detect thief next time by raising its wisdom */
122 op->stats.Wis += (op->stats.Int / 5) + 1; 124 op->stats.Wis += (op->stats.Int / 5) + 1;
125
123 if (op->stats.Wis > MAX_STAT) 126 if (op->stats.Wis > MAX_STAT)
124 op->stats.Wis = MAX_STAT; 127 op->stats.Wis = MAX_STAT;
125 } 128 }
126 129
127 if (op->type == PLAYER && QUERY_FLAG (op, FLAG_WIZ)) 130 if (op->is_player () && op->flag [FLAG_WIZ])
128 { 131 {
129 new_draw_info (NDI_UNIQUE, 0, who, "You can't steal from the dungeon master!\n"); 132 new_draw_info (NDI_UNIQUE, 0, who, "You can't steal from the dungeon master!\n");
130 return 0; 133 return 0;
131 } 134 }
132 135
133 // only allow stealing between hostile players (TODO: probably should change) 136 // only allow stealing between hostile players (TODO: probably should change)
134 if (op->type == PLAYER && who->type == PLAYER && (who->contr->peaceful || op->contr->peaceful)) 137 if (op->is_player () && who->is_player () && (who->contr->peaceful || op->contr->peaceful))
135 { 138 {
136 new_draw_info (NDI_UNIQUE, 0, who, "You can't steal from other players!\n"); 139 new_draw_info (NDI_UNIQUE, 0, who, "You can't steal from other players!\n");
137 return 0; 140 return 0;
138 } 141 }
139 142
200 203
201 if ((roll >= skill->level) || !chance 204 if ((roll >= skill->level) || !chance
202 || (tmp && tmp->weight > (250 * (random_roll (0, stats_value + skill->level * 10 - 1, who, PREFER_LOW))))) 205 || (tmp && tmp->weight > (250 * (random_roll (0, stats_value + skill->level * 10 - 1, who, PREFER_LOW)))))
203 { 206 {
204 /* victim figures out where the thief is! */ 207 /* victim figures out where the thief is! */
205 if (who->hide) 208 if (who->flag [FLAG_HIDDEN])
206 make_visible (who); 209 make_visible (who);
207 210
208 if (op->type != PLAYER) 211 if (op->type != PLAYER)
209 { 212 {
210 /* The unaggressives look after themselves 8) */ 213 /* The unaggressives look after themselves 8) */
428 op->invisible += 100; /* set the level of 'hiddeness' */ 431 op->invisible += 100; /* set the level of 'hiddeness' */
429 432
430 if (op->type == PLAYER) 433 if (op->type == PLAYER)
431 op->contr->tmp_invis = 1; 434 op->contr->tmp_invis = 1;
432 435
433 op->hide = 1; 436 op->flag [FLAG_HIDDEN] = 1;
434 return 1; 437 return 1;
435 } 438 }
436 439
437 return 0; 440 return 0;
438} 441}
447 if (QUERY_FLAG (op, FLAG_MAKE_INVIS)) 450 if (QUERY_FLAG (op, FLAG_MAKE_INVIS))
448 { 451 {
449 new_draw_info (NDI_UNIQUE, 0, op, "You don't need to hide while invisible!"); 452 new_draw_info (NDI_UNIQUE, 0, op, "You don't need to hide while invisible!");
450 return 0; 453 return 0;
451 } 454 }
452 else if (!op->hide && op->invisible > 0 && op->type == PLAYER) 455 else if (!op->flag [FLAG_HIDDEN] && op->invisible > 0 && op->type == PLAYER)
453 { 456 {
454 new_draw_info (NDI_UNIQUE, 0, op, "Your attempt to hide breaks the invisibility spell!"); 457 new_draw_info (NDI_UNIQUE, 0, op, "Your attempt to hide breaks the invisibility spell!");
455 make_visible (op); 458 make_visible (op);
456 } 459 }
457 460
532 || (pl->type == PLAYER && tmp->type == PLAYER && pl->contr->party != tmp->contr->party)) 535 || (pl->type == PLAYER && tmp->type == PLAYER && pl->contr->party != tmp->contr->party))
533 exp = skill_attack (tmp, pl, pl->facing, "kicked", skill); /* pl makes an attack */ 536 exp = skill_attack (tmp, pl, pl->facing, "kicked", skill); /* pl makes an attack */
534 537
535 return exp; /* note that calc_skill_exp() is already called by skill_attack() */ 538 return exp; /* note that calc_skill_exp() is already called by skill_attack() */
536 } 539 }
537
538 /* If the space has fly on set (no matter what the space is),
539 * we should get the effects - after all, the player is
540 * effectively flying.
541 */
542 if (tmp->move_on & MOVE_FLY_LOW)
543 {
544 pl->x = x;
545 pl->y = y;
546 pl->map = m;
547 stop_jump (pl, i, spaces);
548
549 return calc_skill_exp (pl, NULL, skill);
550 }
551 } 540 }
552 541
553 if (OB_TYPE_MOVE_BLOCK (pl, GET_MAP_MOVE_BLOCK (m, x, y))) 542 if (OB_TYPE_MOVE_BLOCK (pl, GET_MAP_MOVE_BLOCK (m, x, y)))
554 { 543 {
555 new_draw_info (NDI_UNIQUE, 0, pl, "Your jump is blocked."); 544 new_draw_info (NDI_UNIQUE, 0, pl, "Your jump is blocked.");
558 } 547 }
559 548
560 pl->x = x; 549 pl->x = x;
561 pl->y = y; 550 pl->y = y;
562 pl->map = m; 551 pl->map = m;
552
553 if (m->at (x, y).move_on & pl->move_type)
554 {
555 new_draw_info (NDI_UNIQUE, 0, pl, "Your jump is stopped.");
556 stop_jump (pl, i, spaces);
557 return 0;
558 }
563 } 559 }
564 560
565 stop_jump (pl, i, spaces); 561 stop_jump (pl, i, spaces);
566 562
567 return calc_skill_exp (pl, NULL, skill); 563 return calc_skill_exp (pl, NULL, skill);
1057} 1053}
1058 1054
1059/* remove_trap() - This skill will disarm any previously discovered trap 1055/* remove_trap() - This skill will disarm any previously discovered trap
1060 * the algorithm is based (almost totally) on the old command_disarm() - b.t. 1056 * the algorithm is based (almost totally) on the old command_disarm() - b.t.
1061 */ 1057 */
1062
1063int 1058int
1064remove_trap (object *op, int dir, object *skill) 1059remove_trap (object *op, int dir, object *skill)
1065{ 1060{
1066 object *tmp, *tmp2; 1061 object *tmp, *tmp2;
1067 int i, success = 0, mflags; 1062 int i, success = 0, mflags;
1100 } 1095 }
1101 } 1096 }
1102 if ((tmp->type == RUNE || tmp->type == TRAP) && tmp->stats.Cha <= 1) 1097 if ((tmp->type == RUNE || tmp->type == TRAP) && tmp->stats.Cha <= 1)
1103 { 1098 {
1104 trap_show (tmp, tmp); 1099 trap_show (tmp, tmp);
1100
1105 if (trap_disarm (op, tmp, 1, skill) && (!tmp->owner || tmp->owner->type != PLAYER)) 1101 if (trap_disarm (op, tmp, 1, skill) && (!tmp->owner || tmp->owner->type != PLAYER))
1106 { 1102 {
1107 tmp->stats.exp = tmp->stats.Cha * tmp->level; 1103 tmp->stats.exp = tmp->stats.Cha * tmp->level;
1108 success += calc_skill_exp (op, tmp, skill); 1104 success += calc_skill_exp (op, tmp, skill);
1109 } 1105 }
1135 /* Check all objects - we could stop at floor objects, 1131 /* Check all objects - we could stop at floor objects,
1136 * but if someone buries an altar, I don't see a problem with 1132 * but if someone buries an altar, I don't see a problem with
1137 * going through all the objects, and it shouldn't be much slower 1133 * going through all the objects, and it shouldn't be much slower
1138 * than extra checks on object attributes. 1134 * than extra checks on object attributes.
1139 */ 1135 */
1140 for (tmp = pl->below; tmp != NULL; tmp = tmp->below) 1136 for (tmp = pl->below; tmp; tmp = tmp->below)
1141 { 1137 {
1142 /* Only if the altar actually belongs to someone do you get special benefits */ 1138 /* Only if the altar actually belongs to someone do you get special benefits */
1143 if (tmp && tmp->type == HOLY_ALTAR && tmp->other_arch) 1139 if (tmp && tmp->type == HOLY_ALTAR && tmp->other_arch)
1144 { 1140 {
1145 sprintf (buf, "You pray over the %s.", &tmp->name); 1141 sprintf (buf, "You pray over the %s.", &tmp->name);
1220 * ordinary inscribable 'books' (anything that is not a SPELL). b.t. 1216 * ordinary inscribable 'books' (anything that is not a SPELL). b.t.
1221 */ 1217 */
1222static int 1218static int
1223write_note (object *pl, object *item, const char *msg, object *skill) 1219write_note (object *pl, object *item, const char *msg, object *skill)
1224{ 1220{
1225 if (strstr (msg, "\nendmsg")) 1221 if (!msg_is_safe (msg))
1226 { 1222 {
1227 new_draw_info (NDI_UNIQUE, 0, pl, "Trying to cheat now are we?"); 1223 new_draw_info (NDI_UNIQUE, 0, pl, "Trying to cheat now are we?");
1224 LOG (llevInfo, "write_note: player %s tried to write bogus note %s\n", &pl->name, msg);
1228 return 0; 1225 return 0;
1229 } 1226 }
1230 1227
1231 int len = strlen (msg); 1228 int len = strlen (msg);
1232 1229
1237 } 1234 }
1238 1235
1239 if (INVOKE_OBJECT (INSCRIBE_NOTE, item, ARG_PLAYER (pl->contr), ARG_STRING (msg), ARG_OBJECT (skill))) 1236 if (INVOKE_OBJECT (INSCRIBE_NOTE, item, ARG_PLAYER (pl->contr), ARG_STRING (msg), ARG_OBJECT (skill)))
1240 return RESULT_INT (0); 1237 return RESULT_INT (0);
1241 1238
1242 char buf[1024]; 1239 STRLEN char_len = utf8_length ((U8 *)msg, (U8 *)(msg+len));
1243 1240
1244 if (len < sizeof (buf) - 2) 1241 if (char_len <= item->weight_limit)
1245 { 1242 {
1246 snprintf (buf, sizeof (buf), "%s\n", msg);
1247
1248 object *newbook = arch_to_object (item->other_arch); 1243 object *newbook = arch_to_object (item->other_arch);
1249 item->decrease (); 1244 item->decrease ();
1250 newbook->nrof = 1; 1245 newbook->nrof = 1;
1251 newbook->msg = buf; 1246 newbook->msg = shstr (msg);
1252 newbook->flag [FLAG_IDENTIFIED] = true; 1247 newbook->flag [FLAG_IDENTIFIED] = true;
1253 1248
1254 if (item->subtype == 1) // mailscrolls 1249 if (item->subtype == 1) // mailscrolls
1255 { 1250 {
1256 newbook->name = item->name; 1251 newbook->name = item->name;
1259 1254
1260 pl->insert (newbook); 1255 pl->insert (newbook);
1261 1256
1262 pl->contr->play_sound (sound_find ("inscribe_success")); 1257 pl->contr->play_sound (sound_find ("inscribe_success"));
1263 new_draw_info_format (NDI_UNIQUE, 0, pl, "You write in the %s.", &item->name); 1258 new_draw_info_format (NDI_UNIQUE, 0, pl, "You write in the %s.", &item->name);
1264 return strlen (msg); 1259 return char_len;
1265 } 1260 }
1266 else 1261 else
1267 new_draw_info_format (NDI_UNIQUE, 0, pl, "Your message won't fit in the %s!", &item->name); 1262 new_draw_info_format (NDI_UNIQUE, 0, pl, "Your message won't fit in the %s! H<It is only big enough for %d characters, your message had %d characters.>",
1263 &item->name, item->weight_limit, char_len);
1268 1264
1269 return 0; 1265 return 0;
1270} 1266}
1271 1267
1272/* write_scroll() - this routine allows players to inscribe spell scrolls 1268/* write_scroll() - this routine allows players to inscribe spell scrolls
1485 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 1481 for (tmp = op->inv; tmp != NULL; tmp = tmp->below)
1486 { 1482 {
1487 /* can't toss invisible or inv-locked items */ 1483 /* can't toss invisible or inv-locked items */
1488 if (tmp->invisible || QUERY_FLAG (tmp, FLAG_INV_LOCKED)) 1484 if (tmp->invisible || QUERY_FLAG (tmp, FLAG_INV_LOCKED))
1489 continue; 1485 continue;
1490 if (!request || !strcmp (query_name (tmp), request) || !strcmp (tmp->name, request)) 1486 if (!request || !strcmp (query_name (tmp), request) || !strcmp (&tmp->name, request))
1491 break; 1487 break;
1492 } 1488 }
1493 } 1489 }
1494 1490
1495 /* this should prevent us from throwing away 1491 /* this should prevent us from throwing away
1726 { 1722 {
1727 throw_ob->last_sp += eff_str / 3; /* fly a little further */ 1723 throw_ob->last_sp += eff_str / 3; /* fly a little further */
1728 throw_ob->stats.dam += throw_ob->inv->stats.dam + throw_ob->magic + 2; 1724 throw_ob->stats.dam += throw_ob->inv->stats.dam + throw_ob->magic + 2;
1729 throw_ob->stats.wc -= throw_ob->magic + throw_ob->inv->stats.wc; 1725 throw_ob->stats.wc -= throw_ob->magic + throw_ob->inv->stats.wc;
1730 /* only throw objects get directional faces */ 1726 /* only throw objects get directional faces */
1731 if (GET_ANIM_ID (throw_ob) && NUM_ANIMATIONS (throw_ob)) 1727 if (throw_ob->has_anim () && throw_ob->anim_frames ())
1732 SET_ANIMATION (throw_ob, dir); 1728 throw_ob->set_anim_frame (dir);
1733 } 1729 }
1734 else 1730 else
1735 { 1731 {
1736 uint16 mat = throw_ob->materials; 1732 uint16 mat = throw_ob->materials;
1737 1733

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines