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

Comparing deliantra/server/server/monster.C (file contents):
Revision 1.72 by root, Fri Nov 6 12:27:06 2009 UTC vs.
Revision 1.89 by root, Sun May 2 11:52:56 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 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.
65 if (npc->enemy) 65 if (npc->enemy)
66 { 66 {
67 /* I broke these if's apart to better be able to see what 67 /* I broke these if's apart to better be able to see what
68 * the grouping checks are. Code is the same. 68 * the grouping checks are. Code is the same.
69 */ 69 */
70 if (QUERY_FLAG (npc->enemy, FLAG_REMOVED) || 70 if (npc->enemy->flag [FLAG_REMOVED] ||
71 QUERY_FLAG (npc->enemy, FLAG_FREED) || 71 npc->enemy->flag [FLAG_FREED] ||
72 !on_same_map (npc, npc->enemy) || npc == npc->enemy || QUERY_FLAG (npc, FLAG_NEUTRAL) || QUERY_FLAG (npc->enemy, FLAG_NEUTRAL)) 72 !on_same_map (npc, npc->enemy) || npc == npc->enemy || npc->flag [FLAG_NEUTRAL] || npc->enemy->flag [FLAG_NEUTRAL])
73 npc->enemy = 0; 73 npc->enemy = 0;
74 74
75 else if (QUERY_FLAG (npc, FLAG_FRIENDLY) && ((QUERY_FLAG (npc->enemy, FLAG_FRIENDLY) 75 else if (npc->flag [FLAG_FRIENDLY] && ((npc->enemy->flag [FLAG_FRIENDLY]
76 && !(should_arena_attack (npc, npc->owner, npc->enemy))) 76 && !(should_arena_attack (npc, npc->owner, npc->enemy)))
77 || ((npc->enemy->type == PLAYER) && !(should_arena_attack (npc, npc->owner, npc->enemy))) 77 || ((npc->enemy->type == PLAYER) && !(should_arena_attack (npc, npc->owner, npc->enemy)))
78 || npc->enemy == npc->owner)) 78 || npc->enemy == npc->owner))
79 npc->enemy = 0; 79 npc->enemy = 0;
80 80
81 81
82 else if (!QUERY_FLAG (npc, FLAG_FRIENDLY) && (!QUERY_FLAG (npc->enemy, FLAG_FRIENDLY) && npc->enemy->type != PLAYER)) 82 else if (!npc->flag [FLAG_FRIENDLY] && (!npc->enemy->flag [FLAG_FRIENDLY] && npc->enemy->type != PLAYER))
83 npc->enemy = 0; 83 npc->enemy = 0;
84 84
85 /* I've noticed that pets could sometimes get an arrow as the 85 /* I've noticed that pets could sometimes get an arrow as the
86 * target enemy - this code below makes sure the enemy is something 86 * target enemy - this code below makes sure the enemy is something
87 * that should be attacked. My guess is that the arrow hits 87 * that should be attacked. My guess is that the arrow hits
88 * the creature/owner, and so the creature then takes that 88 * the creature/owner, and so the creature then takes that
89 * as the enemy to attack. 89 * as the enemy to attack.
90 */ 90 */
91 else if (!QUERY_FLAG (npc->enemy, FLAG_MONSTER) 91 else if (!npc->enemy->flag [FLAG_MONSTER]
92 && !QUERY_FLAG (npc->enemy, FLAG_GENERATOR) 92 && !npc->enemy->flag [FLAG_GENERATOR]
93 && npc->enemy->type != PLAYER 93 && npc->enemy->type != PLAYER
94 && npc->enemy->type != GOLEM) 94 && npc->enemy->type != GOLEM)
95 npc->enemy = 0; 95 npc->enemy = 0;
96 } 96 }
97 97
153 * Currently, only move_monster calls this function. 153 * Currently, only move_monster calls this function.
154 * Fix function so that we always make calls to get_rangevector 154 * Fix function so that we always make calls to get_rangevector
155 * if we have a valid target - function as not doing so in 155 * if we have a valid target - function as not doing so in
156 * many cases. 156 * many cases.
157 */ 157 */
158object * 158static object *
159find_enemy (object *npc, rv_vector * rv) 159find_enemy (object *npc, rv_vector * rv)
160{ 160{
161 object *attacker, *tmp = NULL; 161 object *attacker, *tmp = NULL;
162 162
163 attacker = npc->attacked_by; /* save this for later use. This can be a attacker. */ 163 attacker = npc->attacked_by; /* save this for later use. This can be a attacker. */
164 npc->attacked_by = 0; /* always clear the attacker entry */ 164 npc->attacked_by = 0; /* always clear the attacker entry */
165 165
166 /* if we berserk, we don't care about others - we attack all we can find */ 166 /* if we berserk, we don't care about others - we attack all we can find */
167 if (QUERY_FLAG (npc, FLAG_BERSERK)) 167 if (npc->flag [FLAG_BERSERK])
168 { 168 {
169 tmp = find_nearest_living_creature (npc); 169 tmp = find_nearest_living_creature (npc);
170 170
171 if (tmp) 171 if (tmp)
172 get_rangevector (npc, tmp, rv, 0); 172 get_rangevector (npc, tmp, rv, 0);
201 if (attacker) /* if we have an attacker, check him */ 201 if (attacker) /* if we have an attacker, check him */
202 { 202 {
203 /* TODO: that's not finished */ 203 /* TODO: that's not finished */
204 /* we don't want a fight evil vs evil or good against non evil */ 204 /* we don't want a fight evil vs evil or good against non evil */
205 205
206 if (QUERY_FLAG (npc, FLAG_NEUTRAL) || QUERY_FLAG (attacker, FLAG_NEUTRAL) || /* neutral */ 206 if (npc->flag [FLAG_NEUTRAL] || attacker->flag [FLAG_NEUTRAL] || /* neutral */
207 (QUERY_FLAG (npc, FLAG_FRIENDLY) && QUERY_FLAG (attacker, FLAG_FRIENDLY)) || 207 (npc->flag [FLAG_FRIENDLY] && attacker->flag [FLAG_FRIENDLY]) ||
208 (!QUERY_FLAG (npc, FLAG_FRIENDLY) && (!QUERY_FLAG (attacker, FLAG_FRIENDLY) && attacker->type != PLAYER))) 208 (!npc->flag [FLAG_FRIENDLY] && (!attacker->flag [FLAG_FRIENDLY] && attacker->type != PLAYER)))
209 CLEAR_FLAG (npc, FLAG_SLEEP); /* skip it, but lets wakeup */ 209 npc->clr_flag (FLAG_SLEEP); /* skip it, but lets wakeup */
210 else if (on_same_map (npc, attacker)) /* that's the only thing we must know... */ 210 else if (on_same_map (npc, attacker)) /* that's the only thing we must know... */
211 { 211 {
212 CLEAR_FLAG (npc, FLAG_SLEEP); /* well, NOW we really should wake up! */ 212 npc->clr_flag (FLAG_SLEEP); /* well, NOW we really should wake up! */
213 npc->enemy = attacker; 213 npc->enemy = attacker;
214 return attacker; /* yes, we face our attacker! */ 214 return attacker; /* yes, we face our attacker! */
215 } 215 }
216 } 216 }
217 217
218 /* we have no legal enemy or attacker, so we try to target a new one */ 218 /* we have no legal enemy or attacker, so we try to target a new one */
219 if (!QUERY_FLAG (npc, FLAG_UNAGGRESSIVE) && !QUERY_FLAG (npc, FLAG_FRIENDLY) && !QUERY_FLAG (npc, FLAG_NEUTRAL)) 219 if (!npc->flag [FLAG_UNAGGRESSIVE] && !npc->flag [FLAG_FRIENDLY] && !npc->flag [FLAG_NEUTRAL])
220 { 220 {
221 npc->enemy = get_nearest_player (npc); 221 npc->enemy = get_nearest_player (npc);
222 if (npc->enemy) 222 if (npc->enemy)
223 tmp = check_enemy (npc, rv); 223 tmp = check_enemy (npc, rv);
224 } 224 }
231/* Sees if this monster should wake up. 231/* Sees if this monster should wake up.
232 * Currently, this is only called from move_monster, and 232 * Currently, this is only called from move_monster, and
233 * if enemy is set, then so should be rv. 233 * if enemy is set, then so should be rv.
234 * returns 1 if the monster should wake up, 0 otherwise. 234 * returns 1 if the monster should wake up, 0 otherwise.
235 */ 235 */
236int 236static int
237check_wakeup (object *op, object *enemy, rv_vector *rv) 237check_wakeup (object *op, object *enemy, rv_vector *rv)
238{ 238{
239 /* Trim work - if no enemy, no need to do anything below */ 239 /* Trim work - if no enemy, no need to do anything below */
240 if (!enemy) 240 if (!enemy)
241 return 0; 241 return 0;
265 /* enemy should already be on this map, so don't really need to check 265 /* enemy should already be on this map, so don't really need to check
266 * for that. 266 * for that.
267 */ 267 */
268 if (rv->distance <= radius) 268 if (rv->distance <= radius)
269 { 269 {
270 CLEAR_FLAG (op, FLAG_SLEEP); 270 op->clr_flag (FLAG_SLEEP);
271 return 1; 271 return 1;
272 } 272 }
273 273
274 return 0; 274 return 0;
275} 275}
276 276
277int 277static int
278move_randomly (object *op) 278move_randomly (object *op)
279{ 279{
280 /* Give up to 15 chances for a monster to move randomly */ 280 /* Give up to 15 chances for a monster to move randomly */
281 for (int i = 0; i < 15; i++) 281 for (int i = 0; i < 15; i++)
282 if (move_object (op, rndm (8) + 1)) 282 if (op->move (rndm (8) + 1))
283 return 1; 283 return 1;
284 284
285 return 0; 285 return 0;
286} 286}
287 287
298 int i; 298 int i;
299 299
300 if (!can_pick (monster, item)) 300 if (!can_pick (monster, item))
301 return 0; 301 return 0;
302 302
303 if (QUERY_FLAG (item, FLAG_UNPAID)) 303 if (item->flag [FLAG_UNPAID])
304 return 0; 304 return 0;
305 305
306 if (monster->pick_up & 64) /* All */ 306 if (monster->pick_up & 64) /* All */
307 flag = 1; 307 flag = 1;
308 308
317 case FOOD: 317 case FOOD:
318 flag = monster->pick_up & 4; 318 flag = monster->pick_up & 4;
319 break; 319 break;
320 320
321 case WEAPON: 321 case WEAPON:
322 flag = (monster->pick_up & 8) || QUERY_FLAG (monster, FLAG_USE_WEAPON); 322 flag = (monster->pick_up & 8) || monster->flag [FLAG_USE_WEAPON];
323 break; 323 break;
324 324
325 case ARMOUR: 325 case ARMOUR:
326 case SHIELD: 326 case SHIELD:
327 case HELMET: 327 case HELMET:
328 case BOOTS: 328 case BOOTS:
329 case GLOVES: 329 case GLOVES:
330 case GIRDLE: 330 case GIRDLE:
331 flag = (monster->pick_up & 16) || QUERY_FLAG (monster, FLAG_USE_ARMOUR); 331 flag = (monster->pick_up & 16) || monster->flag [FLAG_USE_ARMOUR];
332 break; 332 break;
333 333
334 case SKILL: 334 case SKILL:
335 flag = QUERY_FLAG (monster, FLAG_CAN_USE_SKILL); 335 flag = monster->flag [FLAG_CAN_USE_SKILL];
336 break; 336 break;
337 337
338 case RING: 338 case RING:
339 flag = QUERY_FLAG (monster, FLAG_USE_RING); 339 flag = monster->flag [FLAG_USE_RING];
340 break; 340 break;
341 341
342 case WAND: 342 case WAND:
343 case HORN: 343 case HORN:
344 case ROD: 344 case ROD:
345 flag = QUERY_FLAG (monster, FLAG_USE_RANGE); 345 flag = monster->flag [FLAG_USE_RANGE];
346 break; 346 break;
347 347
348 case SPELLBOOK: 348 case SPELLBOOK:
349 flag = monster->arch && QUERY_FLAG (monster->arch, FLAG_CAST_SPELL); 349 flag = monster->arch && monster->arch->flag [FLAG_CAST_SPELL];
350 break; 350 break;
351 351
352 case SCROLL: 352 case SCROLL:
353 flag = QUERY_FLAG (monster, FLAG_USE_SCROLL); 353 flag = monster->flag [FLAG_USE_SCROLL];
354 break; 354 break;
355 355
356 case BOW: 356 case BOW:
357 case ARROW: 357 case ARROW:
358 flag = QUERY_FLAG (monster, FLAG_USE_BOW); 358 flag = monster->flag [FLAG_USE_BOW];
359 break; 359 break;
360 } 360 }
361 361
362 /* Simplistic check - if the monster has a location to equip it, he will 362 /* Simplistic check - if the monster has a location to equip it, he will
363 * pick it up. Note that this doesn't handle cases where an item may 363 * pick it up. Note that this doesn't handle cases where an item may
403 next = tmp->below; 403 next = tmp->below;
404 if (monster_can_pick (monster, tmp)) 404 if (monster_can_pick (monster, tmp))
405 { 405 {
406 tmp->remove (); 406 tmp->remove ();
407 tmp = insert_ob_in_ob (tmp, monster); 407 tmp = insert_ob_in_ob (tmp, monster);
408 (void) monster_check_apply (monster, tmp); 408 monster_check_apply (monster, tmp);
409 } 409 }
410
410 /* We could try to re-establish the cycling, of the space, but probably 411 /* We could try to re-establish the cycling, of the space, but probably
411 * not a big deal to just bail out. 412 * not a big deal to just bail out.
412 */ 413 */
413 if (next && next->destroyed ()) 414 if (next && next->destroyed ())
414 return; 415 return;
432 switch (tmp->type) 433 switch (tmp->type)
433 { 434 {
434 case T_HANDLE: 435 case T_HANDLE:
435 case TRIGGER: 436 case TRIGGER:
436 if (monster->will_apply & 1) 437 if (monster->will_apply & 1)
437 manual_apply (monster, tmp, 0); 438 monster->apply (tmp);
438 break; 439 break;
439 440
440 case TREASURE: 441 case TREASURE:
441 if (monster->will_apply & 2) 442 if (monster->will_apply & 2)
442 manual_apply (monster, tmp, 0); 443 monster->apply (tmp);
443 break; 444 break;
444 445
445 } 446 }
446 if (QUERY_FLAG (tmp, FLAG_IS_FLOOR)) 447 if (tmp->flag [FLAG_IS_FLOOR])
447 break; 448 break;
448 } 449 }
449} 450}
450 451
451/* Returns 1 is monster should cast spell sp at an enemy 452/* Returns 1 is monster should cast spell sp at an enemy
488{ 489{
489 object *other_weap; 490 object *other_weap;
490 int val = 0, i; 491 int val = 0, i;
491 492
492 for (other_weap = who->inv; other_weap; other_weap = other_weap->below) 493 for (other_weap = who->inv; other_weap; other_weap = other_weap->below)
493 if (other_weap->type == item->type && QUERY_FLAG (other_weap, FLAG_APPLIED)) 494 if (other_weap->type == item->type && other_weap->flag [FLAG_APPLIED])
494 break; 495 break;
495 496
496 if (!other_weap) /* No other weapons */ 497 if (!other_weap) /* No other weapons */
497 return 1; 498 return 1;
498 499
521{ 522{
522 object *other_armour; 523 object *other_armour;
523 int val = 0, i; 524 int val = 0, i;
524 525
525 for (other_armour = who->inv; other_armour; other_armour = other_armour->below) 526 for (other_armour = who->inv; other_armour; other_armour = other_armour->below)
526 if (other_armour->type == item->type && QUERY_FLAG (other_armour, FLAG_APPLIED)) 527 if (other_armour->type == item->type && other_armour->flag [FLAG_APPLIED])
527 break; 528 break;
528 529
529 if (other_armour == NULL) /* No other armour, use the new */ 530 if (other_armour == NULL) /* No other armour, use the new */
530 return 1; 531 return 1;
531 532
569void 570void
570monster_check_apply (object *mon, object *item) 571monster_check_apply (object *mon, object *item)
571{ 572{
572 int flag = 0; 573 int flag = 0;
573 574
574 if (item->type == SPELLBOOK && mon->arch && (QUERY_FLAG (mon->arch, FLAG_CAST_SPELL))) 575 if (item->type == SPELLBOOK && mon->arch && (mon->arch->flag [FLAG_CAST_SPELL]))
575 { 576 {
576 SET_FLAG (mon, FLAG_CAST_SPELL); 577 mon->set_flag (FLAG_CAST_SPELL);
577 return; 578 return;
578 } 579 }
579 580
580 /* If for some reason, this item is already applied, no more work to do */ 581 /* If for some reason, this item is already applied, no more work to do */
581 if (QUERY_FLAG (item, FLAG_APPLIED)) 582 if (item->flag [FLAG_APPLIED])
582 return; 583 return;
583 584
584 /* Might be better not to do this - if the monster can fire a bow, 585 /* Might be better not to do this - if the monster can fire a bow,
585 * it is possible in his wanderings, he will find one to use. In 586 * it is possible in his wanderings, he will find one to use. In
586 * which case, it would be nice to have ammo for it. 587 * which case, it would be nice to have ammo for it.
587 */ 588 */
588 if (QUERY_FLAG (mon, FLAG_USE_BOW) && item->type == ARROW) 589 if (mon->flag [FLAG_USE_BOW] && item->type == ARROW)
589 { 590 {
590 /* Check for the right kind of bow */ 591 /* Check for the right kind of bow */
591 object *bow; 592 object *bow;
592 593
593 for (bow = mon->inv; bow; bow = bow->below) 594 for (bow = mon->inv; bow; bow = bow->below)
594 if (bow->type == BOW && bow->race == item->race) 595 if (bow->type == BOW && bow->race == item->race)
595 { 596 {
596 SET_FLAG (mon, FLAG_READY_BOW); 597 mon->set_flag (FLAG_READY_BOW);
597 LOG (llevMonster, "Found correct bow for arrows.\n");
598 return; /* nothing more to do for arrows */ 598 return; /* nothing more to do for arrows */
599 } 599 }
600 } 600 }
601 601
602 if (item->type == TREASURE && mon->will_apply & WILL_APPLY_TREASURE) 602 if (item->type == TREASURE && mon->will_apply & WILL_APPLY_TREASURE)
603 flag = 1; 603 flag = 1;
604 /* Eating food gets hp back */ 604 /* Eating food gets hp back */
605 else if (item->type == FOOD && mon->will_apply & WILL_APPLY_FOOD) 605 else if (item->type == FOOD && mon->will_apply & WILL_APPLY_FOOD)
606 flag = 1; 606 flag = 1;
607 else if (item->type == SCROLL && QUERY_FLAG (mon, FLAG_USE_SCROLL)) 607 else if (item->type == SCROLL && mon->flag [FLAG_USE_SCROLL])
608 { 608 {
609 if (!item->inv) 609 if (!item->inv)
610 LOG (llevDebug, "Monster %d having scroll %d with empty inventory!", mon->count, item->count); 610 LOG (llevDebug, "Monster %d having scroll %d with empty inventory!", mon->count, item->count);
611 else if (monster_should_cast_spell (mon, item->inv)) 611 else if (monster_should_cast_spell (mon, item->inv))
612 SET_FLAG (mon, FLAG_READY_SCROLL); 612 mon->set_flag (FLAG_READY_SCROLL);
613 /* Don't use it right now */ 613 /* Don't use it right now */
614 return; 614 return;
615 } 615 }
616 else if (item->type == WEAPON) 616 else if (item->type == WEAPON)
617 flag = check_good_weapon (mon, item); 617 flag = check_good_weapon (mon, item);
625 /* We never really 'ready' the wand/rod/horn, because that would mean the 625 /* We never really 'ready' the wand/rod/horn, because that would mean the
626 * weapon would get undone. 626 * weapon would get undone.
627 */ 627 */
628 if (!(can_apply_object (mon, item) & CAN_APPLY_NOT_MASK)) 628 if (!(can_apply_object (mon, item) & CAN_APPLY_NOT_MASK))
629 { 629 {
630 SET_FLAG (mon, FLAG_READY_RANGE); 630 mon->set_flag (FLAG_READY_RANGE);
631 SET_FLAG (item, FLAG_APPLIED); 631 item->set_flag (FLAG_APPLIED);
632 } 632 }
633 return; 633 return;
634 } 634 }
635 else if (item->type == BOW) 635 else if (item->type == BOW)
636 { 636 {
637 /* We never really 'ready' the bow, because that would mean the 637 /* We never really 'ready' the bow, because that would mean the
638 * weapon would get undone. 638 * weapon would get undone.
639 */ 639 */
640 if (!(can_apply_object (mon, item) & CAN_APPLY_NOT_MASK)) 640 if (!(can_apply_object (mon, item) & CAN_APPLY_NOT_MASK))
641 SET_FLAG (mon, FLAG_READY_BOW); 641 mon->set_flag (FLAG_READY_BOW);
642 return; 642 return;
643 } 643 }
644 else if (item->type == SKILL) 644 else if (item->type == SKILL)
645 { 645 {
646 /* 646 /*
647 * skills are specials: monsters must have the 'FLAG_READY_SKILL' flag set, 647 * skills are specials: monsters must have the 'FLAG_READY_SKILL' flag set,
648 * else they can't use the skill... 648 * else they can't use the skill...
649 * Skills also don't need to get applied, so return now. 649 * Skills also don't need to get applied, so return now.
650 */ 650 */
651 SET_FLAG (mon, FLAG_READY_SKILL); 651 mon->set_flag (FLAG_READY_SKILL);
652 return; 652 return;
653 } 653 }
654 654
655 /* if we don't match one of the above types, return now. 655 /* if we don't match one of the above types, return now.
656 * can_apply_object will say that we can apply things like flesh, 656 * can_apply_object will say that we can apply things like flesh,
669 669
670 /* should only be applying this item, not unapplying it. 670 /* should only be applying this item, not unapplying it.
671 * also, ignore status of curse so they can take off old armour. 671 * also, ignore status of curse so they can take off old armour.
672 * monsters have some advantages after all. 672 * monsters have some advantages after all.
673 */ 673 */
674 manual_apply (mon, item, AP_APPLY | AP_IGNORE_CURSE); 674 mon->apply (item, AP_APPLY | AP_IGNORE_CURSE);
675} 675}
676 676
677static int 677static int
678can_hit (object *ob1, object *ob2, rv_vector * rv) 678can_hit (object *ob1, object *ob2, rv_vector * rv)
679{ 679{
680 object *more; 680 object *more;
681 rv_vector rv1; 681 rv_vector rv1;
682 682
683 if (QUERY_FLAG (ob1, FLAG_CONFUSED) && !(rndm (3))) 683 if (ob1->flag [FLAG_CONFUSED] && !(rndm (3)))
684 return 0; 684 return 0;
685 685
686 if (abs (rv->distance_x) < 2 && abs (rv->distance_y) < 2) 686 if (abs (rv->distance_x) < 2 && abs (rv->distance_y) < 2)
687 return 1; 687 return 1;
688 688
785 static int circle[12] = { 3, 3, 4, 5, 5, 6, 7, 7, 8, 1, 1, 2 }; 785 static int circle[12] = { 3, 3, 4, 5, 5, 6, 7, 7, 8, 1, 1, 2 };
786 786
787 if (++ob->move_status > 11) 787 if (++ob->move_status > 11)
788 ob->move_status = 0; 788 ob->move_status = 0;
789 789
790 if (!(move_object (ob, circle[ob->move_status]))) 790 if (!(ob->move (circle[ob->move_status])))
791 move_object (ob, rndm (8) + 1); 791 ob->move (rndm (8) + 1);
792} 792}
793 793
794static void 794static void
795circ2_move (object *ob) 795circ2_move (object *ob)
796{ 796{
797 static int circle[20] = { 3, 3, 3, 4, 4, 5, 5, 5, 6, 6, 7, 7, 7, 8, 8, 1, 1, 1, 2, 2 }; 797 static int circle[20] = { 3, 3, 3, 4, 4, 5, 5, 5, 6, 6, 7, 7, 7, 8, 8, 1, 1, 1, 2, 2 };
798 798
799 if (++ob->move_status > 19) 799 if (++ob->move_status > 19)
800 ob->move_status = 0; 800 ob->move_status = 0;
801 801
802 if (!(move_object (ob, circle[ob->move_status]))) 802 if (!(ob->move (circle[ob->move_status])))
803 move_object (ob, rndm (8) + 1); 803 ob->move (rndm (8) + 1);
804} 804}
805 805
806static void 806static void
807pace_movev (object *ob) 807pace_movev (object *ob)
808{ 808{
809 if (ob->move_status++ > 6) 809 if (ob->move_status++ > 6)
810 ob->move_status = 0; 810 ob->move_status = 0;
811 811
812 if (ob->move_status < 4) 812 if (ob->move_status < 4)
813 move_object (ob, 5); 813 ob->move (5);
814 else 814 else
815 move_object (ob, 1); 815 ob->move (1);
816} 816}
817 817
818static void 818static void
819pace_moveh (object *ob) 819pace_moveh (object *ob)
820{ 820{
821 if (ob->move_status++ > 6) 821 if (ob->move_status++ > 6)
822 ob->move_status = 0; 822 ob->move_status = 0;
823 823
824 if (ob->move_status < 4) 824 if (ob->move_status < 4)
825 move_object (ob, 3); 825 ob->move (3);
826 else 826 else
827 move_object (ob, 7); 827 ob->move (7);
828} 828}
829 829
830static void 830static void
831pace2_movev (object *ob) 831pace2_movev (object *ob)
832{ 832{
833 if (ob->move_status++ > 16) 833 if (ob->move_status++ > 16)
834 ob->move_status = 0; 834 ob->move_status = 0;
835 835
836 if (ob->move_status < 6) 836 if (ob->move_status < 6)
837 move_object (ob, 5); 837 ob->move (5);
838 else if (ob->move_status < 8) 838 else if (ob->move_status < 8)
839 return; 839 return;
840 else if (ob->move_status < 13) 840 else if (ob->move_status < 13)
841 move_object (ob, 1); 841 ob->move (1);
842 else 842 else
843 return; 843 return;
844} 844}
845 845
846static void 846static void
848{ 848{
849 if (ob->move_status++ > 16) 849 if (ob->move_status++ > 16)
850 ob->move_status = 0; 850 ob->move_status = 0;
851 851
852 if (ob->move_status < 6) 852 if (ob->move_status < 6)
853 move_object (ob, 3); 853 ob->move (3);
854 else if (ob->move_status < 8) 854 else if (ob->move_status < 8)
855 return; 855 return;
856 else if (ob->move_status < 13) 856 else if (ob->move_status < 13)
857 move_object (ob, 7); 857 ob->move (7);
858 else 858 else
859 return; 859 return;
860} 860}
861 861
862static void 862static void
863rand_move (object *ob) 863rand_move (object *ob)
864{ 864{
865 if (ob->move_status < 1 || ob->move_status > 8 || !(move_object (ob, ob->move_status || !(rndm (9))))) 865 if (ob->move_status < 1 || ob->move_status > 8 || !(ob->move (ob->move_status || !(rndm (9)))))
866 for (int i = 0; i < 5; i++) 866 for (int i = 0; i < 5; i++)
867 if (move_object (ob, ob->move_status = rndm (8) + 1)) 867 if (ob->move (ob->move_status = rndm (8) + 1))
868 return; 868 return;
869} 869}
870 870
871#define MAX_KNOWN_SPELLS 20 871#define MAX_KNOWN_SPELLS 20
872 872
873/* Returns a randomly selected spell. This logic is still 873/* Returns a randomly selected spell. This logic is still
874 * less than ideal. This code also only seems to deal with 874 * less than ideal. This code also only seems to deal with
875 * wizard spells, as the check is against sp, and not grace. 875 * wizard spells, as the check is against sp, and not grace.
876 * can mosnters know cleric spells? 876 * can mosnters know cleric spells?
877 */ 877 */
878object * 878static object *
879monster_choose_random_spell (object *monster) 879monster_choose_random_spell (object *monster)
880{ 880{
881 object *altern[MAX_KNOWN_SPELLS]; 881 object *altern[MAX_KNOWN_SPELLS];
882 int i = 0; 882 int i = 0;
883 883
906 * part is the part of the monster we are checking against. 906 * part is the part of the monster we are checking against.
907 * pl is the target. 907 * pl is the target.
908 * dir is the direction to case. 908 * dir is the direction to case.
909 * rv is the vector which describes where the enemy is. 909 * rv is the vector which describes where the enemy is.
910 */ 910 */
911int 911static int
912monster_cast_spell (object *head, object *part, object *pl, int dir, rv_vector * rv) 912monster_cast_spell (object *head, object *part, object *pl, int dir, rv_vector * rv)
913{ 913{
914 object *spell_item; 914 object *spell_item;
915 object *owner; 915 object *owner;
916 rv_vector rv1; 916 rv_vector rv1;
922 * other monsters) 922 * other monsters)
923 */ 923 */
924 if (!(dir = path_to_player (part, pl, 0))) 924 if (!(dir = path_to_player (part, pl, 0)))
925 return 0; 925 return 0;
926 926
927 if (QUERY_FLAG (head, FLAG_FRIENDLY) && (owner = head->owner) != NULL) 927 if (head->flag [FLAG_FRIENDLY] && (owner = head->owner) != NULL)
928 { 928 {
929 get_rangevector (head, owner, &rv1, 0x1); 929 get_rangevector (head, owner, &rv1, 0x1);
930 if (dirdiff (dir, rv1.direction) < 2) 930 if (dirdiff (dir, rv1.direction) < 2)
931 return 0; /* Might hit owner with spell */ 931 return 0; /* Might hit owner with spell */
932 } 932 }
933 933
934 if (QUERY_FLAG (head, FLAG_CONFUSED)) 934 if (head->flag [FLAG_CONFUSED])
935 dir = absdir (dir + rndm (3) + rndm (3) - 2); 935 dir = absdir (dir + rndm (3) + rndm (3) - 2);
936 936
937 /* If the monster hasn't already chosen a spell, choose one 937 /* If the monster hasn't already chosen a spell, choose one
938 * I'm not sure if it really make sense to pre-select spells (events 938 * I'm not sure if it really make sense to pre-select spells (events
939 * could be different by the time the monster goes again). 939 * could be different by the time the monster goes again).
940 */ 940 */
941 if (head->spellitem == NULL) 941 if (head->spellitem == NULL)
942 { 942 {
943 if ((spell_item = monster_choose_random_spell (head)) == NULL) 943 if ((spell_item = monster_choose_random_spell (head)) == NULL)
944 { 944 {
945 LOG (llevMonster, "Turned off spells in %s\n", &head->name);
946 CLEAR_FLAG (head, FLAG_CAST_SPELL); /* Will be turned on when picking up book */ 945 head->clr_flag (FLAG_CAST_SPELL); /* Will be turned on when picking up book */
947 return 0; 946 return 0;
948 } 947 }
949 948
950 if (spell_item->type == SPELLBOOK) 949 if (spell_item->type == SPELLBOOK)
951 { 950 {
982 head->spellitem = NULL; 981 head->spellitem = NULL;
983 982
984 return cast_spell (part, part, dir, spell_item, NULL); 983 return cast_spell (part, part, dir, spell_item, NULL);
985} 984}
986 985
987int 986static int
988monster_use_scroll (object *head, object *part, object *pl, int dir, rv_vector * rv) 987monster_use_scroll (object *head, object *part, object *pl, int dir, rv_vector * rv)
989{ 988{
990 object *scroll; 989 object *scroll;
991 object *owner; 990 object *owner;
992 rv_vector rv1; 991 rv_vector rv1;
998 * other monsters) 997 * other monsters)
999 */ 998 */
1000 if (!(dir = path_to_player (part, pl, 0))) 999 if (!(dir = path_to_player (part, pl, 0)))
1001 return 0; 1000 return 0;
1002 1001
1003 if (QUERY_FLAG (head, FLAG_FRIENDLY) && (owner = head->owner) != NULL) 1002 if (head->flag [FLAG_FRIENDLY] && (owner = head->owner) != NULL)
1004 { 1003 {
1005 get_rangevector (head, owner, &rv1, 0x1); 1004 get_rangevector (head, owner, &rv1, 0x1);
1006 if (dirdiff (dir, rv1.direction) < 2) 1005 if (dirdiff (dir, rv1.direction) < 2)
1007 { 1006 {
1008 return 0; /* Might hit owner with spell */ 1007 return 0; /* Might hit owner with spell */
1009 } 1008 }
1010 } 1009 }
1011 1010
1012 if (QUERY_FLAG (head, FLAG_CONFUSED)) 1011 if (head->flag [FLAG_CONFUSED])
1013 dir = absdir (dir + rndm (3) + rndm (3) - 2); 1012 dir = absdir (dir + rndm (3) + rndm (3) - 2);
1014 1013
1015 for (scroll = head->inv; scroll; scroll = scroll->below) 1014 for (scroll = head->inv; scroll; scroll = scroll->below)
1016 if (scroll->type == SCROLL && monster_should_cast_spell (head, scroll->inv)) 1015 if (scroll->type == SCROLL && monster_should_cast_spell (head, scroll->inv))
1017 break; 1016 break;
1018 1017
1019 /* Used up all his scrolls, so nothing do to */ 1018 /* Used up all his scrolls, so nothing do to */
1020 if (!scroll) 1019 if (!scroll)
1021 { 1020 {
1022 CLEAR_FLAG (head, FLAG_READY_SCROLL); 1021 head->clr_flag (FLAG_READY_SCROLL);
1023 return 0; 1022 return 0;
1024 } 1023 }
1025 1024
1026 /* Spell should be cast on caster (ie, heal, strength) */ 1025 /* Spell should be cast on caster (ie, heal, strength) */
1027 if (scroll->inv->range == 0) 1026 if (scroll->inv->range == 0)
1040 * The skills we are treating here are all but those. -b.t. 1039 * The skills we are treating here are all but those. -b.t.
1041 * 1040 *
1042 * At the moment this is only useful for throwing, perhaps for 1041 * At the moment this is only useful for throwing, perhaps for
1043 * stealing. TODO: This should be more integrated in the game. -MT, 25.11.01 1042 * stealing. TODO: This should be more integrated in the game. -MT, 25.11.01
1044 */ 1043 */
1045int 1044static int
1046monster_use_skill (object *head, object *part, object *pl, int dir) 1045monster_use_skill (object *head, object *part, object *pl, int dir)
1047{ 1046{
1048 object *skill, *owner; 1047 object *skill, *owner;
1049 1048
1050 if (!(dir = path_to_player (part, pl, 0))) 1049 if (!(dir = path_to_player (part, pl, 0)))
1051 return 0; 1050 return 0;
1052 1051
1053 if (QUERY_FLAG (head, FLAG_FRIENDLY) && (owner = head->owner) != NULL) 1052 if (head->flag [FLAG_FRIENDLY] && (owner = head->owner) != NULL)
1054 { 1053 {
1055 int dir2 = find_dir_2 (head->x - owner->x, head->y - owner->y); 1054 int dir2 = find_dir_2 (owner->x - head->x, owner->y - head->y);
1056 1055
1057 if (dirdiff (dir, dir2) < 1) 1056 if (dirdiff (dir, dir2) < 1)
1058 return 0; /* Might hit owner with skill -thrown rocks for example ? */ 1057 return 0; /* Might hit owner with skill -thrown rocks for example ? */
1059 } 1058 }
1060 1059
1061 if (QUERY_FLAG (head, FLAG_CONFUSED)) 1060 if (head->flag [FLAG_CONFUSED])
1062 dir = absdir (dir + rndm (3) + rndm (3) - 2); 1061 dir = absdir (dir + rndm (3) + rndm (3) - 2);
1063 1062
1063 object *new_skill = 0;
1064
1064 /* skill selection - monster will use the next unused skill. 1065 // skill selection - monster will use the last unused skill
1065 * well...the following scenario will allow the monster to 1066 // and rotate, eventually cycling through all skills.
1066 * toggle between 2 skills. One day it would be nice to make
1067 * more skills available to monsters.
1068 */
1069 for (skill = head->inv; skill; skill = skill->below) 1067 for (skill = head->inv; skill; skill = skill->below)
1070 if (skill->type == SKILL && skill != head->chosen_skill) 1068 if (skill->type == SKILL && skill != head->chosen_skill)
1071 { 1069 new_skill = skill;
1070
1071 if (new_skill)
1072 head->chosen_skill = skill; 1072 splay (head->chosen_skill = new_skill);
1073 break;
1074 }
1075
1076 if (!skill && !head->chosen_skill) 1073 else if (!head->chosen_skill)
1077 { 1074 {
1078 LOG (llevDebug, "Error: Monster %s (%d) has FLAG_READY_SKILL without skill.\n", &head->name, head->count); 1075 LOG (llevDebug, "Error: Monster %s (%d) has FLAG_READY_SKILL without skill.\n", &head->name, head->count);
1079 CLEAR_FLAG (head, FLAG_READY_SKILL); 1076 head->clr_flag (FLAG_READY_SKILL);
1080 return 0; 1077 return 0;
1081 } 1078 }
1082 1079
1083 /* use skill */ 1080 /* use skill */
1084 return do_skill (head, part, head->chosen_skill, dir, NULL); 1081 return do_skill (head, part, head->chosen_skill, dir, NULL);
1085} 1082}
1086 1083
1087/* Monster will use a ranged spell attack. */ 1084/* Monster will use a ranged spell attack. */
1088int 1085static int
1089monster_use_range (object *head, object *part, object *pl, int dir) 1086monster_use_range (object *head, object *part, object *pl, int dir)
1090{ 1087{
1091 object *wand, *owner; 1088 object *wand, *owner;
1092 int at_least_one = 0; 1089 int at_least_one = 0;
1093 1090
1094 if (!(dir = path_to_player (part, pl, 0))) 1091 if (!(dir = path_to_player (part, pl, 0)))
1095 return 0; 1092 return 0;
1096 1093
1097 if (QUERY_FLAG (head, FLAG_FRIENDLY) && (owner = head->owner) != NULL) 1094 if (head->flag [FLAG_FRIENDLY] && (owner = head->owner) != NULL)
1098 { 1095 {
1099 int dir2 = find_dir_2 (head->x - owner->x, head->y - owner->y); 1096 int dir2 = find_dir_2 (owner->x - head->x, owner->y - head->y);
1100 1097
1101 if (dirdiff (dir, dir2) < 2) 1098 if (dirdiff (dir, dir2) < 2)
1102 return 0; /* Might hit owner with spell */ 1099 return 0; /* Might hit owner with spell */
1103 } 1100 }
1104 1101
1105 if (QUERY_FLAG (head, FLAG_CONFUSED)) 1102 if (head->flag [FLAG_CONFUSED])
1106 dir = absdir (dir + rndm (3) + rndm (3) - 2); 1103 dir = absdir (dir + rndm (3) + rndm (3) - 2);
1107 1104
1108 for (wand = head->inv; wand; wand = wand->below) 1105 for (wand = head->inv; wand; wand = wand->below)
1109 { 1106 {
1110 if (wand->type == WAND) 1107 if (wand->type == WAND)
1118 1115
1119 if (!(--wand->stats.food)) 1116 if (!(--wand->stats.food))
1120 { 1117 {
1121 if (wand->arch) 1118 if (wand->arch)
1122 { 1119 {
1123 CLEAR_FLAG (wand, FLAG_ANIMATE); 1120 wand->clr_flag (FLAG_ANIMATE);
1124 wand->face = wand->arch->face; 1121 wand->face = wand->arch->face;
1125 wand->set_speed (0); 1122 wand->set_speed (0);
1126 } 1123 }
1127 } 1124 }
1128 /* Success */ 1125 /* Success */
1130 } 1127 }
1131 else if (wand->type == ROD || wand->type == HORN) 1128 else if (wand->type == ROD || wand->type == HORN)
1132 { 1129 {
1133 /* Found rod/horn, let's use it if possible */ 1130 /* Found rod/horn, let's use it if possible */
1134 at_least_one = 1; 1131 at_least_one = 1;
1135 if (wand->stats.hp < MAX (wand->inv->stats.sp, wand->inv->stats.grace)) 1132 if (wand->stats.hp < max (wand->inv->stats.sp, wand->inv->stats.grace))
1136 continue; 1133 continue;
1137 1134
1138 /* drain charge before casting spell - can be a case where the 1135 /* drain charge before casting spell - can be a case where the
1139 * spell destroys the monster, and rod, so if done after, results 1136 * spell destroys the monster, and rod, so if done after, results
1140 * in crash. 1137 * in crash.
1149 1146
1150 if (at_least_one) 1147 if (at_least_one)
1151 return 0; 1148 return 0;
1152 1149
1153 LOG (llevError, "Error: Monster %s (%d) HAS_READY_RANGE() without wand/horn/rod.\n", &head->name, head->count); 1150 LOG (llevError, "Error: Monster %s (%d) HAS_READY_RANGE() without wand/horn/rod.\n", &head->name, head->count);
1154 CLEAR_FLAG (head, FLAG_READY_RANGE); 1151 head->clr_flag (FLAG_READY_RANGE);
1155 return 0; 1152 return 0;
1156} 1153}
1157 1154
1158int 1155static int
1159monster_use_bow (object *head, object *part, object *pl, int dir) 1156monster_use_bow (object *head, object *part, object *pl, int dir)
1160{ 1157{
1161 object *owner; 1158 object *owner;
1162 1159
1163 if (!(dir = path_to_player (part, pl, 0))) 1160 if (!(dir = path_to_player (part, pl, 0)))
1164 return 0; 1161 return 0;
1165 1162
1166 if (QUERY_FLAG (head, FLAG_CONFUSED)) 1163 if (head->flag [FLAG_CONFUSED])
1167 dir = absdir (dir + rndm (3) + rndm (3) - 2); 1164 dir = absdir (dir + rndm (3) + rndm (3) - 2);
1168 1165
1169 if (QUERY_FLAG (head, FLAG_FRIENDLY) && (owner = head->owner) != NULL) 1166 if (head->flag [FLAG_FRIENDLY] && (owner = head->owner) != NULL)
1170 { 1167 {
1171 int dir2 = find_dir_2 (head->x - owner->x, head->y - owner->y); 1168 int dir2 = find_dir_2 (owner->x - head->x, owner->y - head->y);
1172 1169
1173 if (dirdiff (dir, dir2) < 1) 1170 if (dirdiff (dir, dir2) < 1)
1174 return 0; /* Might hit owner with arrow */ 1171 return 0; /* Might hit owner with arrow */
1175 } 1172 }
1176 1173
1180} 1177}
1181 1178
1182void 1179void
1183npc_call_help (object *op) 1180npc_call_help (object *op)
1184{ 1181{
1185 unordered_mapwalk (op, -7, -7, 7, 7) 1182 unordered_mapwalk (mapwalk_buf, op, -7, -7, 7, 7)
1186 { 1183 {
1187 mapspace &ms = m->at (nx, ny); 1184 mapspace &ms = m->at (nx, ny);
1188 1185
1189 /* If nothing alive on this space, no need to search the space. */ 1186 /* If nothing alive on this space, no need to search the space. */
1190 if (!(ms.flags () & P_IS_ALIVE)) 1187 if (!(ms.flags () & P_IS_ALIVE))
1191 continue; 1188 continue;
1192 1189
1193 for (object *npc = ms.bot; npc; npc = npc->above) 1190 for (object *npc = ms.bot; npc; npc = npc->above)
1194 if (QUERY_FLAG (npc, FLAG_ALIVE) && QUERY_FLAG (npc, FLAG_UNAGGRESSIVE)) 1191 if (npc->flag [FLAG_ALIVE] && npc->flag [FLAG_UNAGGRESSIVE])
1195 npc->enemy = op->enemy; 1192 npc->enemy = op->enemy;
1196 } 1193 }
1197} 1194}
1198 1195
1199void 1196void
1239 * marked item and throw it to the enemy. 1236 * marked item and throw it to the enemy.
1240 */ 1237 */
1241 for (tmp = op->inv; tmp; tmp = tmp->below) 1238 for (tmp = op->inv; tmp; tmp = tmp->below)
1242 { 1239 {
1243 /* Can't throw invisible objects or items that are applied */ 1240 /* Can't throw invisible objects or items that are applied */
1244 if (tmp->invisible || QUERY_FLAG (tmp, FLAG_APPLIED)) 1241 if (tmp->invisible || tmp->flag [FLAG_APPLIED])
1245 continue; 1242 continue;
1246 1243
1247 if (QUERY_FLAG (tmp, FLAG_IS_THROWN)) 1244 if (tmp->flag [FLAG_IS_THROWN])
1248 break; 1245 break;
1249 1246
1250 } 1247 }
1251 1248
1252#ifdef DEBUG_THROW 1249#ifdef DEBUG_THROW
1274 1271
1275 /* for target facing, we copy this value here for fast access */ 1272 /* for target facing, we copy this value here for fast access */
1276 if (oph->head) /* force update the head - one arch one pic */ 1273 if (oph->head) /* force update the head - one arch one pic */
1277 oph = oph->head; 1274 oph = oph->head;
1278 1275
1279 if (QUERY_FLAG (op, FLAG_NO_ATTACK)) /* we never ever attack */ 1276 if (op->flag [FLAG_NO_ATTACK]) /* we never ever attack */
1280 enemy = op->enemy = NULL; 1277 enemy = op->enemy = NULL;
1281 else if ((enemy = find_enemy (op, &rv))) 1278 else if ((enemy = find_enemy (op, &rv)))
1282 /* we have an enemy, just tell him we want him dead */ 1279 /* we have an enemy, just tell him we want him dead */
1283 enemy->attacked_by = op; /* our ptr */ 1280 enemy->attacked_by = op; /* our ptr */
1284 1281
1287 { 1284 {
1288 /* last heal is in funny units. Dividing by speed puts 1285 /* last heal is in funny units. Dividing by speed puts
1289 * the regeneration rate on a basis of time instead of 1286 * the regeneration rate on a basis of time instead of
1290 * #moves the monster makes. The scaling by 8 is 1287 * #moves the monster makes. The scaling by 8 is
1291 * to capture 8th's of a hp fraction regens 1288 * to capture 8th's of a hp fraction regens
1292 *
1293 * Cast to sint32 before comparing to maxhp since otherwise an (sint16)
1294 * overflow might produce monsters with negative hp.
1295 */ 1289 */
1296 1290 uint32_t last_heal = op->last_heal + op->stats.Con * 8 / op->speed;
1297 op->last_heal += (int) ((float) (8 * op->stats.Con) / FABS (op->speed));
1298 op->stats.hp = MIN ((sint32) op->stats.hp + op->last_heal / 32, op->stats.maxhp); /* causes Con/4 hp/tick */ 1291 op->stats.hp = min (op->stats.hp + last_heal / 32, op->stats.maxhp); /* causes Con/4 hp/tick */
1299 op->last_heal %= 32; 1292 op->last_heal = last_heal % 32;
1300 1293
1301 /* So if the monster has gained enough HP that they are no longer afraid */ 1294 /* So if the monster has gained enough HP that they are no longer afraid */
1302 if (QUERY_FLAG (op, FLAG_RUN_AWAY) && op->stats.hp >= (signed short)(((float)op->run_away / 100.f) * (float)op->stats.maxhp)) 1295 if (op->flag [FLAG_RUN_AWAY] && op->stats.hp * 100 >= op->stats.maxhp * op->run_away)
1303 CLEAR_FLAG (op, FLAG_RUN_AWAY); 1296 op->flag [FLAG_RUN_AWAY] = false;
1304
1305 if (op->stats.hp > op->stats.maxhp)
1306 op->stats.hp = op->stats.maxhp;
1307 } 1297 }
1308 1298
1309 /* generate sp, if applicable */ 1299 /* generate sp, if applicable */
1310 if (op->stats.Pow > 0 && op->stats.sp < op->stats.maxsp) 1300 if (op->stats.Pow > 0 && op->stats.sp < op->stats.maxsp)
1311 { 1301 {
1312 /* last_sp is in funny units. Dividing by speed puts 1302 /* last_sp is in funny units. Dividing by speed puts
1313 * the regeneration rate on a basis of time instead of 1303 * the regeneration rate on a basis of time instead of
1314 * #moves the monster makes. The scaling by 8 is 1304 * #moves the monster makes. The scaling by 8 is
1315 * to capture 8th's of a sp fraction regens 1305 * to capture 8th's of a sp fraction regens
1316 *
1317 * Cast to sint32 before comparing to maxhp since otherwise an (sint16)
1318 * overflow might produce monsters with negative sp.
1319 */ 1306 */
1320 1307
1321 op->last_sp += (int) ((float) (8 * op->stats.Pow) / fabsf (op->speed)); 1308 uint32_t last_sp = op->last_sp + op->stats.Pow * 8 / op->speed;
1322 op->stats.sp = min (op->stats.sp + op->last_sp / 128, op->stats.maxsp); /* causes Pow/16 sp/tick */ 1309 op->stats.sp = min (op->stats.sp + last_sp / 128, op->stats.maxsp); /* causes Pow/16 sp/tick */
1323 op->last_sp %= 128; 1310 op->last_sp = last_sp % 128;
1324 } 1311 }
1325 1312
1326 /* this should probably get modified by many more values. 1313 /* this should probably get modified by many more values.
1327 * (eg, creatures resistance to fear, level, etc. ) 1314 * (eg, creatures resistance to fear, level, etc. )
1328 */ 1315 */
1329 if (QUERY_FLAG (op, FLAG_SCARED) && !(rndm (20))) 1316 if (op->flag [FLAG_SCARED] && !(rndm (20)))
1330 CLEAR_FLAG (op, FLAG_SCARED); /* Time to regain some "guts"... */ 1317 op->clr_flag (FLAG_SCARED); /* Time to regain some "guts"... */
1331 1318
1332 if (INVOKE_OBJECT (MONSTER_MOVE, op, ARG_OBJECT (op->enemy))) 1319 if (INVOKE_OBJECT (MONSTER_MOVE, op, ARG_OBJECT (op->enemy)))
1333 return QUERY_FLAG (op, FLAG_FREED); 1320 return op->flag [FLAG_FREED];
1334 1321
1335 if (QUERY_FLAG (op, FLAG_SLEEP) || QUERY_FLAG (op, FLAG_BLIND) || 1322 if (op->flag [FLAG_SLEEP] || op->flag [FLAG_BLIND] ||
1336 ((op->map->darklevel () > 0) && !QUERY_FLAG (op, FLAG_SEE_IN_DARK) && !QUERY_FLAG (op, FLAG_SEE_INVISIBLE))) 1323 ((op->map->darklevel () > 0) && !op->flag [FLAG_SEE_IN_DARK] && !op->flag [FLAG_SEE_INVISIBLE]))
1337 if (!check_wakeup (op, enemy, &rv)) 1324 if (!check_wakeup (op, enemy, &rv))
1338 return 0; 1325 return 0;
1339 1326
1340 /* check if monster pops out of hidden spot */ 1327 /* check if monster pops out of hidden spot */
1341 if (op->flag [FLAG_HIDDEN]) 1328 if (op->flag [FLAG_HIDDEN])
1348 monster_apply_below (op); /* Check for items to apply below */ 1335 monster_apply_below (op); /* Check for items to apply below */
1349 1336
1350 /* If we don't have an enemy, do special movement or the like */ 1337 /* If we don't have an enemy, do special movement or the like */
1351 if (!enemy) 1338 if (!enemy)
1352 { 1339 {
1353 if (QUERY_FLAG (op, FLAG_ONLY_ATTACK)) 1340 if (op->flag [FLAG_ONLY_ATTACK])
1354 { 1341 {
1355 op->drop_and_destroy (); 1342 op->drop_and_destroy ();
1356 return 1; 1343 return 1;
1357 } 1344 }
1358 1345
1359 /* Probably really a bug for a creature to have both 1346 /* Probably really a bug for a creature to have both
1360 * stand still and a movement type set. 1347 * stand still and a movement type set.
1361 */ 1348 */
1362 if (!QUERY_FLAG (op, FLAG_STAND_STILL)) 1349 if (!op->flag [FLAG_STAND_STILL])
1363 { 1350 {
1364 if (op->attack_movement & HI4) 1351 if (op->attack_movement & HI4)
1365 { 1352 {
1366 switch (op->attack_movement & HI4) 1353 switch (op->attack_movement & HI4)
1367 { 1354 {
1402 break; 1389 break;
1403 } 1390 }
1404 1391
1405 return 0; 1392 return 0;
1406 } 1393 }
1407 else if (QUERY_FLAG (op, FLAG_RANDOM_MOVE)) 1394 else if (op->flag [FLAG_RANDOM_MOVE])
1408 move_randomly (op); 1395 move_randomly (op);
1409 } /* stand still */ 1396 } /* stand still */
1410 1397
1411 return 0; 1398 return 0;
1412 } /* no enemy */ 1399 } /* no enemy */
1437 1424
1438 /* Move the check for scared up here - if the monster was scared, 1425 /* Move the check for scared up here - if the monster was scared,
1439 * we were not doing any of the logic below, so might as well save 1426 * we were not doing any of the logic below, so might as well save
1440 * a few cpu cycles. 1427 * a few cpu cycles.
1441 */ 1428 */
1442 if (!QUERY_FLAG (op, FLAG_SCARED)) 1429 if (!op->flag [FLAG_SCARED])
1443 { 1430 {
1444 rv_vector rv1; 1431 rv_vector rv1;
1445 1432
1446 /* now we test every part of an object .... this is a real ugly piece of code */ 1433 /* now we test every part of an object .... this is a real ugly piece of code */
1447 for (part = op; part; part = part->more) 1434 for (part = op; part; part = part->more)
1450 dir = rv1.direction; 1437 dir = rv1.direction;
1451 1438
1452 /* hm, not sure about this part - in original was a scared flag here too 1439 /* hm, not sure about this part - in original was a scared flag here too
1453 * but that we test above... so can be old code here 1440 * but that we test above... so can be old code here
1454 */ 1441 */
1455 if (QUERY_FLAG (op, FLAG_RUN_AWAY)) 1442 if (op->flag [FLAG_RUN_AWAY])
1456 dir = absdir (dir + 4); 1443 dir = absdir (dir + 4);
1457 1444
1458 if (QUERY_FLAG (op, FLAG_CONFUSED)) 1445 if (op->flag [FLAG_CONFUSED])
1459 dir = absdir (dir + rndm (3) + rndm (3) - 2); 1446 dir = absdir (dir + rndm (3) + rndm (3) - 2);
1460 1447
1461 if (QUERY_FLAG (op, FLAG_CAST_SPELL) && !(rndm (3))) 1448 if (op->flag [FLAG_CAST_SPELL] && !(rndm (3)))
1462 if (monster_cast_spell (op, part, enemy, dir, &rv1)) 1449 if (monster_cast_spell (op, part, enemy, dir, &rv1))
1463 return 0; 1450 return 0;
1464 1451
1465 if (QUERY_FLAG (op, FLAG_READY_SCROLL) && !(rndm (3))) 1452 if (op->flag [FLAG_READY_SCROLL] && !(rndm (3)))
1466 if (monster_use_scroll (op, part, enemy, dir, &rv1)) 1453 if (monster_use_scroll (op, part, enemy, dir, &rv1))
1467 return 0; 1454 return 0;
1468 1455
1469 if (QUERY_FLAG (op, FLAG_READY_RANGE) && !(rndm (3))) 1456 if (op->flag [FLAG_READY_RANGE] && !(rndm (3)))
1470 if (monster_use_range (op, part, enemy, dir)) 1457 if (monster_use_range (op, part, enemy, dir))
1471 return 0; 1458 return 0;
1472 1459
1473 if (QUERY_FLAG (op, FLAG_READY_SKILL) && !(rndm (3))) 1460 if (op->flag [FLAG_READY_SKILL] && !(rndm (3)))
1474 if (monster_use_skill (op, rv.part, enemy, rv.direction)) 1461 if (monster_use_skill (op, rv.part, enemy, rv.direction))
1475 return 0; 1462 return 0;
1476 1463
1477 if (QUERY_FLAG (op, FLAG_READY_BOW) && !(rndm (2))) 1464 if (op->flag [FLAG_READY_BOW] && !(rndm (2)))
1478 if (monster_use_bow (op, part, enemy, dir)) 1465 if (monster_use_bow (op, part, enemy, dir))
1479 return 0; 1466 return 0;
1480 } /* for processing of all parts */ 1467 } /* for processing of all parts */
1481 } /* If not scared */ 1468 } /* If not scared */
1482 1469
1522 dir = sdir; 1509 dir = sdir;
1523 else if (smell) 1510 else if (smell)
1524 { 1511 {
1525 // no better smell found, so assume the player jumped, and erase this smell 1512 // no better smell found, so assume the player jumped, and erase this smell
1526 //printf ("erasing smell %d\n", op->ms ().smell);//D 1513 //printf ("erasing smell %d\n", op->ms ().smell);//D
1527 unordered_mapwalk (op, -1, -1, 1, 1) 1514 unordered_mapwalk (mapwalk_buf, op, -1, -1, 1, 1)
1528 m->at (nx, ny).smell = 0; 1515 m->at (nx, ny).smell = 0;
1529 } 1516 }
1530 } 1517 }
1531 1518
1532//+GPL 1519//+GPL
1533 1520
1534 if (QUERY_FLAG (op, FLAG_SCARED) || QUERY_FLAG (op, FLAG_RUN_AWAY)) 1521 if (op->flag [FLAG_SCARED] || op->flag [FLAG_RUN_AWAY])
1535 dir = absdir (dir + 4); 1522 dir = absdir (dir + 4);
1536 1523
1537 if (QUERY_FLAG (op, FLAG_CONFUSED)) 1524 if (op->flag [FLAG_CONFUSED])
1538 dir = absdir (dir + rndm (3) + rndm (3) - 2); 1525 dir = absdir (dir + rndm (3) + rndm (3) - 2);
1539 1526
1540 pre_att_dir = dir; /* remember the original direction */ 1527 pre_att_dir = dir; /* remember the original direction */
1541 1528
1542 if ((op->attack_movement & LO4) && !QUERY_FLAG (op, FLAG_SCARED)) 1529 if ((op->attack_movement & LO4) && !op->flag [FLAG_SCARED])
1543 { 1530 {
1544 switch (op->attack_movement & LO4) 1531 switch (op->attack_movement & LO4)
1545 { 1532 {
1546 case DISTATT: 1533 case DISTATT:
1547 dir = dist_att (dir, op, enemy, part, &rv); 1534 dir = dist_att (dir, op, enemy, part, &rv);
1577 } 1564 }
1578 1565
1579 if (!dir) 1566 if (!dir)
1580 return 0; 1567 return 0;
1581 1568
1582 if (!QUERY_FLAG (op, FLAG_STAND_STILL)) 1569 if (!op->flag [FLAG_STAND_STILL])
1583 { 1570 {
1584 if (move_object (op, dir)) /* Can the monster move directly toward player? */ 1571 if (op->move (dir)) /* Can the monster move directly toward player? */
1585 { 1572 {
1586 /* elmex: Turn our monster after it moved if it has DISTATT attack */ 1573 /* elmex: Turn our monster after it moved if it has DISTATT attack */
1587 if ((op->attack_movement & LO4) == DISTATT) 1574 if ((op->attack_movement & LO4) == DISTATT)
1588 op->direction = pre_att_dir; 1575 op->direction = pre_att_dir;
1589 1576
1590 return 0; 1577 return 0;
1591 } 1578 }
1592 1579
1593 if (QUERY_FLAG (op, FLAG_SCARED) || !can_hit (part, enemy, &rv) || QUERY_FLAG (op, FLAG_RUN_AWAY)) 1580 if (op->flag [FLAG_SCARED] || !can_hit (part, enemy, &rv) || op->flag [FLAG_RUN_AWAY])
1594 { 1581 {
1595 /* Try move around corners if !close */ 1582 /* Try move around corners if !close */
1596 int maxdiff = (QUERY_FLAG (op, FLAG_ONLY_ATTACK) || rndm (2)) ? 1 : 2; 1583 int maxdiff = (op->flag [FLAG_ONLY_ATTACK] || rndm (2)) ? 1 : 2;
1597 1584
1598 for (diff = 1; diff <= maxdiff; diff++) 1585 for (diff = 1; diff <= maxdiff; diff++)
1599 { 1586 {
1600 /* try different detours */ 1587 /* try different detours */
1601 int m = 1 - rndm (2) * 2; /* Try left or right first? */ 1588 int m = 1 - rndm (2) * 2; /* Try left or right first? */
1602 1589
1603 if (move_object (op, absdir (dir + diff * m)) || move_object (op, absdir (dir - diff * m))) 1590 if (op->move (absdir (dir + diff * m)) || op->move (absdir (dir - diff * m)))
1604 return 0; 1591 return 0;
1605 } 1592 }
1606 } 1593 }
1607 } /* if monster is not standing still */ 1594 } /* if monster is not standing still */
1608 1595
1612 1599
1613 /* 1600 /*
1614 * Eneq(@csd.uu.se): Patch to make RUN_AWAY or SCARED monsters move a random 1601 * Eneq(@csd.uu.se): Patch to make RUN_AWAY or SCARED monsters move a random
1615 * direction if they can't move away. 1602 * direction if they can't move away.
1616 */ 1603 */
1617 if (!QUERY_FLAG (op, FLAG_ONLY_ATTACK) && (QUERY_FLAG (op, FLAG_RUN_AWAY) || QUERY_FLAG (op, FLAG_SCARED))) 1604 if (!op->flag [FLAG_ONLY_ATTACK] && (op->flag [FLAG_RUN_AWAY] || op->flag [FLAG_SCARED]))
1618 if (move_randomly (op)) 1605 if (move_randomly (op))
1619 return 0; 1606 return 0;
1620 1607
1621 /* 1608 /*
1622 * Try giving the monster a new enemy - the player that is closest 1609 * Try giving the monster a new enemy - the player that is closest
1627 * are two players flanking the monster at close distance, but which 1614 * are two players flanking the monster at close distance, but which
1628 * the monster can't get to, and a third one at a far distance that 1615 * the monster can't get to, and a third one at a far distance that
1629 * the monster could get to - as it is, the monster won't look at that 1616 * the monster could get to - as it is, the monster won't look at that
1630 * third one. 1617 * third one.
1631 */ 1618 */
1632 if (!QUERY_FLAG (op, FLAG_FRIENDLY) && enemy == op->enemy) 1619 if (!op->flag [FLAG_FRIENDLY] && enemy == op->enemy)
1633 { 1620 {
1634 object *nearest_player = get_nearest_player (op); 1621 object *nearest_player = get_nearest_player (op);
1635 1622
1636 if (nearest_player && nearest_player != enemy && !can_hit (part, enemy, &rv)) 1623 if (nearest_player && nearest_player != enemy && !can_hit (part, enemy, &rv))
1637 { 1624 {
1638 op->enemy = 0; 1625 op->enemy = 0;
1639 enemy = nearest_player; 1626 enemy = nearest_player;
1640 } 1627 }
1641 } 1628 }
1642 1629
1643 if (!QUERY_FLAG (op, FLAG_SCARED) && can_hit (part, enemy, &rv)) 1630 if (!op->flag [FLAG_SCARED] && can_hit (part, enemy, &rv))
1644 { 1631 {
1645 /* The adjustement to wc that was here before looked totally bogus - 1632 /* The adjustement to wc that was here before looked totally bogus -
1646 * since wc can in fact get negative, that would mean by adding 1633 * since wc can in fact get negative, that would mean by adding
1647 * the current wc, the creature gets better? Instead, just 1634 * the current wc, the creature gets better? Instead, just
1648 * add a fixed amount - nasty creatures that are runny away should 1635 * add a fixed amount - nasty creatures that are runny away should
1649 * still be pretty nasty. 1636 * still be pretty nasty.
1650 */ 1637 */
1651 if (QUERY_FLAG (op, FLAG_RUN_AWAY)) 1638 if (op->flag [FLAG_RUN_AWAY])
1652 { 1639 {
1653 part->stats.wc += 10; 1640 part->stats.wc += 10;
1654 skill_attack (enemy, part, 0, NULL, NULL); 1641 skill_attack (enemy, part, 0, NULL, NULL);
1655 part->stats.wc -= 10; 1642 part->stats.wc -= 10;
1656 } 1643 }
1657 else 1644 else
1658 skill_attack (enemy, part, 0, NULL, NULL); 1645 skill_attack (enemy, part, 0, NULL, NULL);
1659 } /* if monster is in attack range */ 1646 } /* if monster is in attack range */
1660 1647
1661 if (QUERY_FLAG (part, FLAG_FREED)) /* Might be freed by ghost-attack or hit-back */ 1648 if (part->flag [FLAG_FREED]) /* Might be freed by ghost-attack or hit-back */
1662 return 1; 1649 return 1;
1663 1650
1664 if (QUERY_FLAG (op, FLAG_ONLY_ATTACK)) 1651 if (op->flag [FLAG_ONLY_ATTACK])
1665 { 1652 {
1666 op->drop_and_destroy (); 1653 op->drop_and_destroy ();
1667 return 1; 1654 return 1;
1668 } 1655 }
1669 1656
1691 return 0; 1678 return 0;
1692 1679
1693 get_rangevector (op, enemy, rv, 0); 1680 get_rangevector (op, enemy, rv, 0);
1694 1681
1695 /* Monsters always ignore the DM */ 1682 /* Monsters always ignore the DM */
1696 if (!op->is_player () && QUERY_FLAG (enemy, FLAG_WIZ)) 1683 if (!op->is_player () && enemy->flag [FLAG_WIZ])
1697 return 0; 1684 return 0;
1698 1685
1699 /* simple check. Should probably put some range checks in here. */ 1686 /* simple check. Should probably put some range checks in here. */
1700 if (can_see_enemy (op, enemy)) 1687 if (can_see_enemy (op, enemy))
1701 return 1; 1688 return 1;
1742 hide_discovery += bonus * 5; 1729 hide_discovery += bonus * 5;
1743 } /* else creature has modifiers for hiding */ 1730 } /* else creature has modifiers for hiding */
1744 1731
1745 /* Radii stealth adjustment. Only if you are stealthy 1732 /* Radii stealth adjustment. Only if you are stealthy
1746 * will you be able to sneak up closer to creatures */ 1733 * will you be able to sneak up closer to creatures */
1747 if (QUERY_FLAG (enemy, FLAG_STEALTH)) 1734 if (enemy->flag [FLAG_STEALTH])
1748 { 1735 {
1749 radius /= 2; 1736 radius /= 2;
1750 hide_discovery /= 3; 1737 hide_discovery /= 3;
1751 } 1738 }
1752 1739
1754 if (!stand_in_light (enemy)) 1741 if (!stand_in_light (enemy))
1755 { 1742 {
1756 /* on dark maps body heat can help indicate location with infravision 1743 /* on dark maps body heat can help indicate location with infravision
1757 * undead don't have body heat, so no benefit detecting them. 1744 * undead don't have body heat, so no benefit detecting them.
1758 */ 1745 */
1759 if (QUERY_FLAG (op, FLAG_SEE_IN_DARK) && !is_true_undead (enemy)) 1746 if (op->flag [FLAG_SEE_IN_DARK] && !is_true_undead (enemy))
1760 radius += op->map->darklevel () / 2; 1747 radius += op->map->darklevel () / 2;
1761 else 1748 else
1762 radius -= op->map->darklevel () / 2; 1749 radius -= op->map->darklevel () / 2;
1763 1750
1764 /* op next to a monster (and not in complete darkness) 1751 /* op next to a monster (and not in complete darkness)
1839 1826
1840 if (op->glow_radius > 0) 1827 if (op->glow_radius > 0)
1841 return 1; 1828 return 1;
1842 1829
1843 if (op->map) 1830 if (op->map)
1844 unordered_mapwalk (op, -MAX_LIGHT_RADIUS, -MAX_LIGHT_RADIUS, MAX_LIGHT_RADIUS, MAX_LIGHT_RADIUS) 1831 unordered_mapwalk (mapwalk_buf, op, -MAX_LIGHT_RADIUS, -MAX_LIGHT_RADIUS, MAX_LIGHT_RADIUS, MAX_LIGHT_RADIUS)
1845 { 1832 {
1833 mapspace &ms = m->at (nx, ny);
1834
1835 ms.update ();
1836
1846 /* Check the spaces with the max light radius to see if any of them 1837 /* Check the spaces with the max light radius to see if any of them
1847 * have lights, and if any of them light the player enough, then return 1. 1838 * have lights, and if any of them light the player enough, then return 1.
1848 */ 1839 */
1849 int light = m->at (nx, ny).light; 1840 int light = ms.light;
1850 1841
1851 if (expect_false (light > 0) && idistance (dx, dy) <= light) 1842 if (expect_false (light > 0) && idistance (dx, dy) <= light)
1852 return 1; 1843 return 1;
1853 } 1844 }
1854 } 1845 }
1865can_see_enemy (object *op, object *enemy) 1856can_see_enemy (object *op, object *enemy)
1866{ 1857{
1867 object *looker = op->head ? op->head : op; 1858 object *looker = op->head ? op->head : op;
1868 1859
1869 /* safety */ 1860 /* safety */
1870 if (!looker || !enemy || !QUERY_FLAG (looker, FLAG_ALIVE)) 1861 if (!looker || !enemy || !looker->flag [FLAG_ALIVE])
1871 return 0; 1862 return 0;
1872 1863
1873 /* we dont give a full treatment of xrays here (shorter range than normal, 1864 /* we dont give a full treatment of xrays here (shorter range than normal,
1874 * see through walls). Should we change the code elsewhere to make you 1865 * see through walls). Should we change the code elsewhere to make you
1875 * blind even if you can xray? 1866 * blind even if you can xray?
1876 */ 1867 */
1877 if (QUERY_FLAG (looker, FLAG_BLIND) && !QUERY_FLAG (looker, FLAG_XRAYS)) 1868 if (looker->flag [FLAG_BLIND] && !looker->flag [FLAG_XRAYS])
1878 return 0; 1869 return 0;
1879 1870
1880 /* checking for invisible things */ 1871 /* checking for invisible things */
1881 if (enemy->invisible) 1872 if (enemy->invisible)
1882 { 1873 {
1899 1890
1900 /* Invisible enemy. Break apart the check for invis undead/invis looker 1891 /* Invisible enemy. Break apart the check for invis undead/invis looker
1901 * into more simple checks - the QUERY_FLAG doesn't return 1/0 values, 1892 * into more simple checks - the QUERY_FLAG doesn't return 1/0 values,
1902 * and making it a conditional makes the code pretty ugly. 1893 * and making it a conditional makes the code pretty ugly.
1903 */ 1894 */
1904 if (!QUERY_FLAG (looker, FLAG_SEE_INVISIBLE)) 1895 if (!looker->flag [FLAG_SEE_INVISIBLE])
1905 if (makes_invisible_to (enemy, looker)) 1896 if (makes_invisible_to (enemy, looker))
1906 return 0; 1897 return 0;
1907 } 1898 }
1908 else if (looker->is_player ()) /* for players, a (possible) shortcut */ 1899 else if (looker->is_player ()) /* for players, a (possible) shortcut */
1909 if (player_can_view (looker, enemy)) 1900 if (player_can_view (looker, enemy))
1917 * only relevant for tiled maps, but it is possible that the 1908 * only relevant for tiled maps, but it is possible that the
1918 * enemy is on a bright map and the looker on a dark - in that 1909 * enemy is on a bright map and the looker on a dark - in that
1919 * case, the looker can still see the enemy 1910 * case, the looker can still see the enemy
1920 */ 1911 */
1921 if (!stand_in_light (enemy) 1912 if (!stand_in_light (enemy)
1922 && (!QUERY_FLAG (looker, FLAG_SEE_IN_DARK) || !is_true_undead (looker) || !QUERY_FLAG (looker, FLAG_XRAYS))) 1913 && (!looker->flag [FLAG_SEE_IN_DARK] || !is_true_undead (looker) || !looker->flag [FLAG_XRAYS]))
1923 return 0; 1914 return 0;
1924 1915
1925 return 1; 1916 return 1;
1926} 1917}
1927 1918

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines