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

Comparing deliantra/server/server/apply.C (file contents):
Revision 1.217 by root, Tue Jan 5 12:44:28 2010 UTC vs.
Revision 1.229 by root, Fri Mar 26 20:17:48 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 (©) 2001,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2001 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.
172 */ 172 */
173int 173int
174apply_potion (object *op, object *tmp) 174apply_potion (object *op, object *tmp)
175{ 175{
176 int got_one = 0, i; 176 int got_one = 0, i;
177 object *force = 0, *floor = 0; 177 object *force = 0;
178 178
179 floor = GET_MAP_OB (op->map, op->x, op->y); 179 object *floor = GET_MAP_OB (op->map, op->x, op->y);
180 180
181 if (get_map_flags (op->map, NULL, op->x, op->y, NULL, NULL) & P_SAFE) 181 if (get_map_flags (op->map, NULL, op->x, op->y, NULL, NULL) & P_SAFE)
182 { 182 {
183 op->failmsg ("Gods prevent you from using this here, it's sacred ground!"); 183 op->failmsg ("Gods prevent you from using this here, it's sacred ground!");
184 184
1488 if (victim->type == PLAYER && EXIT_PATH (trap)) 1488 if (victim->type == PLAYER && EXIT_PATH (trap))
1489 { 1489 {
1490 /* Basically, don't show exits leading to random maps the 1490 /* Basically, don't show exits leading to random maps the
1491 * players output. 1491 * players output.
1492 */ 1492 */
1493 if (trap->msg && !EXIT_PATH (trap).starts_with ("/!")) 1493 if (trap->msg && EXIT_PATH (trap) != shstr_random_map_exit)
1494 victim->statusmsg (trap->msg, NDI_NAVY); 1494 victim->statusmsg (trap->msg, NDI_NAVY);
1495 1495
1496 trap->play_sound (trap->sound); 1496 trap->play_sound (trap->sound);
1497 victim->enter_exit (trap); 1497 victim->enter_exit (trap);
1498 } 1498 }
1576 : lev_diff < 15 ? "This book is way beyond your comprehension." 1576 : lev_diff < 15 ? "This book is way beyond your comprehension."
1577 : "This book is totally beyond your comprehension."); 1577 : "This book is totally beyond your comprehension.");
1578 return; 1578 return;
1579 } 1579 }
1580 1580
1581 // we currently don't use the message types for anything.
1581 readable_message_type *msgType = get_readable_message_type (tmp); 1582 // readable_message_type *msgType = get_readable_message_type (tmp);
1583
1584 tmp->play_sound (tmp->sound ? tmp->sound : sound_find ("apply_book"));
1582 1585
1583 if (player *pl = op->contr) 1586 if (player *pl = op->contr)
1584 if (client *ns = pl->ns) 1587 if (client *ns = pl->ns)
1585 pl->infobox (MSG_CHANNEL ("book"), format ("T<%s>\n\n%s", (char *)long_desc (tmp, op), &tmp->msg)); 1588 pl->infobox (MSG_CHANNEL ("book"), format ("T<%s>\n\n%s", (char *)long_desc (tmp, op), &tmp->msg));
1586 1589
1998 int atnr_winner[NROFATTACKS]; /* winning candidates for resistance improvement */ 2001 int atnr_winner[NROFATTACKS]; /* winning candidates for resistance improvement */
1999 int winners = 0; /* number of winners */ 2002 int winners = 0; /* number of winners */
2000 int i; /* index */ 2003 int i; /* index */
2001 2004
2002 /* let's make sure and doublecheck the parameters */ 2005 /* let's make sure and doublecheck the parameters */
2003 if (meal->type != FLESH || !is_dragon_pl (op)) 2006 if (meal->type != FLESH || !op->is_dragon ())
2004 return 0; 2007 return 0;
2005 2008
2006 /* now grab the 'dragon_skin'- and 'dragon_ability'-forces 2009 /* now grab the 'dragon_skin'- and 'dragon_ability'-forces
2007 from the player's inventory */ 2010 from the player's inventory */
2008 for (tmp = op->inv; tmp; tmp = tmp->below) 2011 for (tmp = op->inv; tmp; tmp = tmp->below)
2146 if (op->type != PLAYER) 2149 if (op->type != PLAYER)
2147 op->stats.hp = op->stats.maxhp; 2150 op->stats.hp = op->stats.maxhp;
2148 else 2151 else
2149 { 2152 {
2150 /* check if this is a dragon (player), eating some flesh */ 2153 /* check if this is a dragon (player), eating some flesh */
2151 if (tmp->type == FLESH && is_dragon_pl (op) && dragon_eat_flesh (op, tmp)) 2154 if (tmp->type == FLESH && op->is_dragon () && dragon_eat_flesh (op, tmp))
2152 ; 2155 ;
2153 else 2156 else
2154 { 2157 {
2155 /* usual case - no dragon meal: */ 2158 /* usual case - no dragon meal: */
2156 if (op->stats.food + tmp->stats.food > 999) 2159 if (op->stats.food + tmp->stats.food > 999)
2171 2174
2172 if (!QUERY_FLAG (tmp, FLAG_CURSED)) 2175 if (!QUERY_FLAG (tmp, FLAG_CURSED))
2173 { 2176 {
2174 const char *buf; 2177 const char *buf;
2175 2178
2176 if (!is_dragon_pl (op)) 2179 if (!op->is_dragon ())
2177 { 2180 {
2178 /* eating message for normal players */ 2181 /* eating message for normal players */
2179 if (tmp->type == DRINK) 2182 if (tmp->type == DRINK)
2180 buf = format ("Ahhh...that %s tasted good.", &tmp->name); 2183 buf = format ("Ahhh...that %s tasted good.", &tmp->name);
2181 else 2184 else
2266 hit_player (op, poison->stats.hp, tmp, AT_POISON, 1); 2269 hit_player (op, poison->stats.hp, tmp, AT_POISON, 1);
2267 } 2270 }
2268 2271
2269 op->stats.food -= op->stats.food / 4; 2272 op->stats.food -= op->stats.food / 4;
2270 poison->destroy (); 2273 poison->destroy ();
2271}
2272
2273/**
2274 * This function return true if the exit is not a 2 ways one or it is 2 ways, valid exit.
2275 * A valid 2 way exit means:
2276 * -You can come back (there is another exit at the other side)
2277 * -You are
2278 * ° the owner of the exit
2279 * ° or in the same party as the owner
2280 *
2281 * Note: a owner in a 2 way exit is saved as the owner's name
2282 * in the field exit->name cause the field exit->owner doesn't
2283 * survive in the swapping (in fact the whole exit doesn't survive).
2284 */
2285static int
2286is_legal_2ways_exit (object *op, object *exit)
2287{
2288 if (exit->stats.exp != 1)
2289 return 1; /*This is not a 2 way, so it is legal */
2290
2291#if 0 //TODO
2292 if (!has_been_loaded (EXIT_PATH (exit)) && exit->race)
2293 return 0; /* This is a reset town portal */
2294#endif
2295
2296 LOG (llevError | logBacktrace, "sync map load due to %s\n", exit->debug_desc ());
2297
2298 maptile *exitmap = maptile::find_sync (EXIT_PATH (exit), exit->map);
2299
2300 if (exitmap)
2301 {
2302 exitmap->load_sync ();
2303
2304 object *tmp = exitmap->at (EXIT_X (exit), EXIT_Y (exit)).bot;
2305
2306 if (!tmp)
2307 return 0;
2308
2309 for (; tmp; tmp = tmp->above)
2310 {
2311 if (tmp->type != EXIT)
2312 continue; /*Not an exit */
2313
2314 if (!EXIT_PATH (tmp))
2315 continue; /*Not a valid exit */
2316
2317 if ((EXIT_X (tmp) != exit->x) || (EXIT_Y (tmp) != exit->y))
2318 continue; /*Not in the same place */
2319
2320 if (exit->map->path != EXIT_PATH (tmp))
2321 continue; /*Not in the same map */
2322
2323 /* From here we have found the exit is valid. However we do
2324 * here the check of the exit owner. It is important for the
2325 * town portals to prevent strangers from visiting your appartments
2326 */
2327 if (!exit->race)
2328 return 1; /*No owner, free for all! */
2329
2330 object *exit_owner = 0;
2331
2332 for_all_players (pp)
2333 {
2334 if (!pp->ob)
2335 continue;
2336
2337 if (pp->ob->name != exit->race)
2338 continue;
2339
2340 exit_owner = pp->ob; /*We found a player which correspond to the player name */
2341 break;
2342 }
2343
2344 if (!exit_owner)
2345 return 0; /* No more owner */
2346
2347 if (exit_owner->contr == op->contr)
2348 return 1; /*It is your exit */
2349
2350 if (exit_owner && /*There is a owner */
2351 (op->contr) && /*A player tries to pass */
2352 ((exit_owner->contr->party == NULL) || /*No pass if controller has no party */
2353 (exit_owner->contr->party != op->contr->party))) /* Or not the same as op */
2354 return 0;
2355
2356 return 1;
2357 }
2358 }
2359
2360 return 0;
2361} 2274}
2362 2275
2363/** 2276/**
2364 * This function will try to apply a lighter and in case no lighter 2277 * This function will try to apply a lighter and in case no lighter
2365 * is specified it will try to find a lighter in the players inventory, 2278 * is specified it will try to find a lighter in the players inventory,
2673 while (*find == ' ') 2586 while (*find == ' ')
2674 find++; 2587 find++;
2675 2588
2676 memset (got, 0, MAX_BUF); 2589 memset (got, 0, MAX_BUF);
2677 2590
2678 if ((separator = strchr (find, ';'))) 2591 if ((separator = (char *) strchr (find, ';')))
2679 len = separator - find; 2592 len = separator - find;
2680 else 2593 else
2681 len = strlen (find); 2594 len = strlen (find);
2682 2595
2683 if (len > MAX_BUF - 1) 2596 min_it (len, MAX_BUF - 1);
2684 len = MAX_BUF - 1;
2685 2597
2686 strcpy (got, find); 2598 strcpy (got, find);
2687 got[len] = '\0'; 2599 got[len] = '\0';
2688 2600
2689 /* Now create new item, remove used ones when required. */ 2601 /* Now create new item, remove used ones when required. */
2768 2680
2769 case EXIT: 2681 case EXIT:
2770 if (who->type != PLAYER) 2682 if (who->type != PLAYER)
2771 return 0; 2683 return 0;
2772 2684
2773 if (!EXIT_PATH (op) || !is_legal_2ways_exit (who, op)) 2685 if (!EXIT_PATH (op))
2774 who->failmsg (format ("The %s is closed. H<And will stay closed, until somebody fires up the map editor and adds it.>", query_name (op))); 2686 who->failmsg (format ("The %s is closed. H<And will stay closed, until somebody fires up the map editor and adds it.>", query_name (op)));
2775 else 2687 else
2776 { 2688 {
2777 /* Don't display messages for random maps. */ 2689 /* Don't display messages for random maps. */
2778 if (op->msg && !EXIT_PATH (op).starts_with ("/!")) 2690 if (op->msg && EXIT_PATH (op) != shstr_random_map_exit)
2779 who->statusmsg (op->msg, NDI_NAVY); 2691 who->statusmsg (op->msg, NDI_NAVY);
2780 2692
2781 who->enter_exit (op); 2693 who->enter_exit (op);
2782 } 2694 }
2783 2695
3600 case SKILL: 3512 case SKILL:
3601 if (player *pl = who->contr) 3513 if (player *pl = who->contr)
3602 { 3514 {
3603 if (IS_COMBAT_SKILL (op->subtype)) 3515 if (IS_COMBAT_SKILL (op->subtype))
3604 { 3516 {
3605 if (skill_flags [op->subtype] & SF_NEED_WEAPON) 3517 if (skill_flags [op->subtype] & SF_NEED_ITEM)
3606 { 3518 {
3607 for (object *item = who->inv; item; item = item->below) 3519 for (object *item = who->inv; item; item = item->below)
3608 if (item->type == WEAPON && item->flag [FLAG_APPLIED]) 3520 if (item->type == item->weapontype && item->flag [FLAG_APPLIED])
3609 { 3521 {
3610 if (item->skill == op->skill) 3522 if (item->skill == op->skill)
3611 { 3523 {
3612 who->change_weapon (pl->combat_ob = item); 3524 who->change_weapon (pl->combat_ob = item);
3613 goto found_weapon; 3525 goto found_weapon;
3626 else 3538 else
3627 who->change_weapon (pl->combat_ob = op); 3539 who->change_weapon (pl->combat_ob = op);
3628 } 3540 }
3629 else if (IS_RANGED_SKILL (op->subtype)) 3541 else if (IS_RANGED_SKILL (op->subtype))
3630 { 3542 {
3631 if (skill_flags [op->subtype] & SF_NEED_BOW) 3543 if (skill_flags [op->subtype] & SF_NEED_ITEM)
3632 { 3544 {
3633 for (object *item = who->inv; item; item = item->below) 3545 for (object *item = who->inv; item; item = item->below)
3634 if (item->type == BOW && item->flag [FLAG_APPLIED]) 3546 if (item->type == item->weapontype && item->flag [FLAG_APPLIED])
3635 { 3547 {
3636 //TODO: bows should/must all have skill missile weapon right now 3548 //TODO: bows should/must all have skill missile weapon right now
3637 who->change_weapon (pl->ranged_ob = item); 3549 who->change_weapon (pl->ranged_ob = item);
3638 goto found_bow; 3550 goto found_bow;
3639 } 3551 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines