1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997
|
/* File: mon-cast.cc
* Summary: Monster spell casting.
* Written by: Linley Henzell
*/
#include "AppHdr.h"
#include "mon-cast.h"
#include "beam.h"
#include "cloud.h"
#include "colour.h"
#include "coordit.h"
#include "delay.h"
#include "database.h"
#include "effects.h"
#include "env.h"
#include "fprop.h"
#include "fight.h"
#include "ghost.h"
#include "items.h"
#include "libutil.h"
#include "mapmark.h"
#include "misc.h"
#include "message.h"
#include "mon-behv.h"
#include "mon-clone.h"
#include "mon-iter.h"
#include "mon-place.h"
#include "mon-project.h"
#include "terrain.h"
#include "hints.h"
#include "mislead.h"
#include "mgen_data.h"
#include "coord.h"
#include "mon-speak.h"
#include "mon-stuff.h"
#include "mon-util.h"
#include "random.h"
#include "religion.h"
#include "shout.h"
#include "spl-util.h"
#include "spl-cast.h"
#include "spells1.h"
#include "spells3.h"
#include "state.h"
#include "stuff.h"
#include "areas.h"
#include "teleport.h"
#include "traps.h"
#include "view.h"
#include "viewchar.h"
#include "xom.h"
static bool _valid_mon_spells[NUM_SPELLS];
void init_mons_spells()
{
monsters fake_mon;
fake_mon.type = MONS_BLACK_DRACONIAN;
fake_mon.hit_points = 1;
bolt pbolt;
for (int i = 0; i < NUM_SPELLS; i++)
{
spell_type spell = (spell_type) i;
_valid_mon_spells[i] = false;
if (!is_valid_spell(spell))
continue;
if (setup_mons_cast(&fake_mon, pbolt, spell, true))
_valid_mon_spells[i] = true;
}
}
bool is_valid_mon_spell(spell_type spell)
{
if (spell < 0 || spell >= NUM_SPELLS)
return (false);
return (_valid_mon_spells[spell]);
}
static void _scale_draconian_breath(bolt& beam, int drac_type)
{
int scaling = 100;
switch (drac_type)
{
case MONS_RED_DRACONIAN:
beam.name = "searing blast";
beam.aux_source = "blast of searing breath";
scaling = 65;
break;
case MONS_WHITE_DRACONIAN:
beam.name = "chilling blast";
beam.aux_source = "blast of chilling breath";
beam.short_name = "frost";
scaling = 65;
break;
case MONS_PLAYER_GHOST: // draconians only
beam.name = "blast of negative energy";
beam.aux_source = "blast of draining breath";
beam.flavour = BEAM_NEG;
beam.colour = DARKGREY;
scaling = 65;
break;
}
beam.damage.size = scaling * beam.damage.size / 100;
}
static spell_type _draco_type_to_breath(int drac_type)
{
switch (drac_type)
{
case MONS_BLACK_DRACONIAN: return SPELL_LIGHTNING_BOLT;
case MONS_MOTTLED_DRACONIAN: return SPELL_STICKY_FLAME_SPLASH;
case MONS_YELLOW_DRACONIAN: return SPELL_ACID_SPLASH;
case MONS_GREEN_DRACONIAN: return SPELL_POISONOUS_CLOUD;
case MONS_PURPLE_DRACONIAN: return SPELL_ISKENDERUNS_MYSTIC_BLAST;
case MONS_RED_DRACONIAN: return SPELL_FIRE_BREATH;
case MONS_WHITE_DRACONIAN: return SPELL_COLD_BREATH;
case MONS_PALE_DRACONIAN: return SPELL_STEAM_BALL;
// Handled later.
case MONS_PLAYER_GHOST: return SPELL_DRACONIAN_BREATH;
default:
DEBUGSTR("Invalid monster using draconian breath spell");
break;
}
return (SPELL_DRACONIAN_BREATH);
}
static bool _flavour_benefits_monster(beam_type flavour, monsters & monster)
{
switch(flavour)
{
case BEAM_HASTE:
return (!monster.has_ench(ENCH_HASTE));
case BEAM_MIGHT:
return (!monster.has_ench(ENCH_MIGHT));
case BEAM_INVISIBILITY:
return (!monster.has_ench(ENCH_INVIS));
case BEAM_HEALING:
return (monster.hit_points != monster.max_hit_points);
default:
return false;
}
}
// Find an allied monster to cast a beneficial beam spell at.
// Only used for haste other at the moment.
static bool _set_allied_target(monsters * caster, bolt & pbolt)
{
monsters * selected_target = NULL;
int min_distance = INT_MAX;
monster_type caster_genus = mons_genus(caster->type);
for (monster_iterator targ(caster); targ; ++targ)
{
if (*targ != caster
&& mons_genus(targ->type) == caster_genus
&& mons_aligned(*targ, caster)
&& !targ->has_ench(ENCH_CHARM)
&& _flavour_benefits_monster(pbolt.flavour, **targ))
{
int targ_distance = grid_distance(targ->pos(), caster->pos());
if (targ_distance < min_distance && targ_distance < pbolt.range)
{
min_distance = targ_distance;
selected_target = *targ;
}
}
}
if (selected_target)
{
pbolt.target = selected_target->pos();
return (true);
}
// Didn't find a target
return (false);
}
bolt mons_spells( monsters *mons, spell_type spell_cast, int power,
bool check_validity )
{
ASSERT(power > 0);
bolt beam;
// Initialise to some bogus values so we can catch problems.
beam.name = "****";
beam.colour = 1000;
beam.hit = -1;
beam.damage = dice_def( 1, 0 );
beam.ench_power = -1;
beam.glyph = 0;
beam.flavour = BEAM_NONE;
beam.thrower = KILL_MISC;
beam.is_beam = false;
beam.is_explosion = false;
// Sandblast is different, and gets range updated later
if (spell_cast != SPELL_SANDBLAST)
beam.range = spell_range(spell_cast, power, true, false);
const int drac_type = (mons_genus(mons->type) == MONS_DRACONIAN)
? draco_subspecies(mons) : mons->type;
spell_type real_spell = spell_cast;
if (spell_cast == SPELL_DRACONIAN_BREATH)
real_spell = _draco_type_to_breath(drac_type);
beam.glyph = dchar_glyph(DCHAR_FIRED_ZAP); // default
beam.thrower = KILL_MON_MISSILE;
beam.origin_spell = real_spell;
// FIXME: this should use the zap_data[] struct from beam.cc!
switch (real_spell)
{
case SPELL_MAGIC_DART:
beam.colour = LIGHTMAGENTA;
beam.name = "magic dart";
beam.damage = dice_def( 3, 4 + (power / 100) );
beam.hit = AUTOMATIC_HIT;
beam.flavour = BEAM_MMISSILE;
break;
case SPELL_THROW_FLAME:
beam.colour = RED;
beam.name = "puff of flame";
beam.damage = dice_def( 3, 5 + (power / 40) );
beam.hit = 25 + power / 40;
beam.flavour = BEAM_FIRE;
break;
case SPELL_THROW_FROST:
beam.colour = WHITE;
beam.name = "puff of frost";
beam.damage = dice_def( 3, 5 + (power / 40) );
beam.hit = 25 + power / 40;
beam.flavour = BEAM_COLD;
break;
case SPELL_SANDBLAST:
beam.colour = BROWN;
beam.name = "rocky blast";
beam.damage = dice_def( 3, 5 + (power / 40) );
beam.hit = 20 + power / 40;
beam.flavour = BEAM_FRAG;
beam.range = 2; // spell_range() is wrong here
break;
case SPELL_DISPEL_UNDEAD:
beam.flavour = BEAM_DISPEL_UNDEAD;
beam.damage = dice_def( 3, std::min(6 + power / 10, 40) );
beam.is_beam = true;
break;
case SPELL_PARALYSE:
beam.flavour = BEAM_PARALYSIS;
beam.is_beam = true;
break;
case SPELL_SLOW:
beam.flavour = BEAM_SLOW;
beam.is_beam = true;
break;
case SPELL_HASTE_OTHER:
beam.flavour = BEAM_HASTE;
beam.is_beam = true;
break;
case SPELL_HASTE: // (self)
beam.flavour = BEAM_HASTE;
break;
case SPELL_MIGHT:
beam.flavour = BEAM_MIGHT;
break;
case SPELL_CORONA:
beam.flavour = BEAM_CORONA;
beam.is_beam = true;
break;
case SPELL_CONFUSE:
beam.flavour = BEAM_CONFUSION;
beam.is_beam = true;
break;
case SPELL_HIBERNATION:
beam.flavour = BEAM_HIBERNATION;
beam.is_beam = true;
break;
case SPELL_SLEEP:
beam.flavour = BEAM_SLEEP;
beam.is_beam = true;
break;
case SPELL_POLYMORPH_OTHER:
beam.flavour = BEAM_POLYMORPH;
beam.is_beam = true;
// Be careful with this one.
// Having allies mutate you is infuriating.
beam.foe_ratio = 1000;
break;
case SPELL_VENOM_BOLT:
beam.name = "bolt of poison";
beam.damage = dice_def( 3, 6 + power / 13 );
beam.colour = LIGHTGREEN;
beam.flavour = BEAM_POISON;
beam.hit = 19 + power / 20;
beam.is_beam = true;
break;
case SPELL_POISON_ARROW:
beam.name = "poison arrow";
beam.damage = dice_def( 3, 7 + power / 12 );
beam.colour = LIGHTGREEN;
beam.glyph = dchar_glyph(DCHAR_FIRED_MISSILE);
beam.flavour = BEAM_POISON_ARROW;
beam.hit = 20 + power / 25;
break;
case SPELL_BOLT_OF_MAGMA:
beam.name = "bolt of magma";
beam.damage = dice_def( 3, 8 + power / 11 );
beam.colour = RED;
beam.flavour = BEAM_LAVA;
beam.hit = 17 + power / 25;
beam.is_beam = true;
break;
case SPELL_BOLT_OF_FIRE:
beam.name = "bolt of fire";
beam.damage = dice_def( 3, 8 + power / 11 );
beam.colour = RED;
beam.flavour = BEAM_FIRE;
beam.hit = 17 + power / 25;
beam.is_beam = true;
break;
case SPELL_THROW_ICICLE:
beam.name = "shard of ice";
beam.damage = dice_def( 3, 8 + power / 11 );
beam.colour = WHITE;
beam.flavour = BEAM_ICE;
beam.hit = 17 + power / 25;
break;
case SPELL_BOLT_OF_COLD:
beam.name = "bolt of cold";
beam.damage = dice_def( 3, 8 + power / 11 );
beam.colour = WHITE;
beam.flavour = BEAM_COLD;
beam.hit = 17 + power / 25;
beam.is_beam = true;
break;
case SPELL_PRIMAL_WAVE:
beam.name = "great wave of water";
// Water attack is weaker than the pure elemental damage
// attacks, but also less resistible.
beam.damage = dice_def( 3, 6 + power / 12 );
beam.colour = LIGHTBLUE;
beam.flavour = BEAM_WATER;
// Huge wave of water is hard to dodge.
beam.hit = 20 + power / 20;
beam.is_beam = false;
beam.glyph = dchar_glyph(DCHAR_WAVY);
break;
case SPELL_FREEZING_CLOUD:
beam.name = "freezing blast";
beam.damage = dice_def( 2, 9 + power / 11 );
beam.colour = WHITE;
beam.flavour = BEAM_COLD;
beam.hit = 17 + power / 25;
beam.is_beam = true;
beam.is_big_cloud = true;
break;
case SPELL_SHOCK:
beam.name = "zap";
beam.damage = dice_def( 1, 8 + (power / 20) );
beam.colour = LIGHTCYAN;
beam.flavour = BEAM_ELECTRICITY;
beam.hit = 17 + power / 20;
beam.is_beam = true;
break;
case SPELL_LIGHTNING_BOLT:
beam.name = "bolt of lightning";
beam.damage = dice_def( 3, 10 + power / 17 );
beam.colour = LIGHTCYAN;
beam.flavour = BEAM_ELECTRICITY;
beam.hit = 16 + power / 40;
beam.is_beam = true;
break;
case SPELL_INVISIBILITY:
beam.flavour = BEAM_INVISIBILITY;
break;
case SPELL_FIREBALL:
beam.colour = RED;
beam.name = "fireball";
beam.damage = dice_def( 3, 7 + power / 10 );
beam.hit = 40;
beam.flavour = BEAM_FIRE;
beam.foe_ratio = 80;
beam.is_explosion = true;
break;
case SPELL_FIRE_STORM:
setup_fire_storm(mons, power / 2, beam);
beam.foe_ratio = random_range(40, 55);
break;
case SPELL_ICE_STORM:
beam.name = "great blast of cold";
beam.colour = BLUE;
beam.damage = calc_dice( 10, 18 + power / 2 );
beam.hit = 20 + power / 10; // 50: 25 100: 30
beam.ench_power = power; // used for radius
beam.flavour = BEAM_ICE; // half resisted
beam.is_explosion = true;
beam.foe_ratio = random_range(40, 55);
break;
case SPELL_HELLFIRE_BURST:
beam.aux_source = "burst of hellfire";
beam.name = "burst of hellfire";
beam.ex_size = 1;
beam.flavour = BEAM_HELLFIRE;
beam.is_explosion = true;
beam.colour = RED;
beam.aux_source.clear();
beam.is_tracer = false;
beam.hit = 20;
beam.damage = mons_foe_is_mons(mons) ? dice_def(5, 7)
: dice_def(3, 15);
break;
case SPELL_MINOR_HEALING:
beam.flavour = BEAM_HEALING;
beam.hit = 25 + (power / 5);
break;
case SPELL_TELEPORT_SELF:
beam.flavour = BEAM_TELEPORT;
break;
case SPELL_TELEPORT_OTHER:
beam.flavour = BEAM_TELEPORT;
beam.is_beam = true;
break;
case SPELL_LEHUDIBS_CRYSTAL_SPEAR: // was splinters
beam.name = "crystal spear";
beam.damage = dice_def( 3, 16 + power / 10 );
beam.colour = WHITE;
beam.glyph = dchar_glyph(DCHAR_FIRED_MISSILE);
beam.flavour = BEAM_MMISSILE;
beam.hit = 22 + power / 20;
break;
case SPELL_DIG:
beam.flavour = BEAM_DIGGING;
beam.is_beam = true;
break;
case SPELL_BOLT_OF_DRAINING: // negative energy
beam.name = "bolt of negative energy";
beam.damage = dice_def( 3, 6 + power / 13 );
beam.colour = DARKGREY;
beam.flavour = BEAM_NEG;
beam.hit = 16 + power / 35;
beam.is_beam = true;
break;
case SPELL_ISKENDERUNS_MYSTIC_BLAST: // mystic blast
beam.colour = LIGHTMAGENTA;
beam.name = "orb of energy";
beam.short_name = "energy";
beam.damage = dice_def( 3, 7 + (power / 14) );
beam.hit = 20 + (power / 20);
beam.flavour = BEAM_MMISSILE;
break;
case SPELL_STEAM_BALL:
beam.colour = LIGHTGREY;
beam.name = "ball of steam";
beam.damage = dice_def( 3, 7 + (power / 15) );
beam.hit = 20 + power / 20;
beam.flavour = BEAM_STEAM;
break;
case SPELL_PAIN:
beam.flavour = BEAM_PAIN;
beam.damage = dice_def( 1, 7 + (power / 20) );
beam.ench_power = std::max(50, 8 * mons->hit_dice);
beam.is_beam = true;
break;
case SPELL_STICKY_FLAME_SPLASH:
case SPELL_STICKY_FLAME:
beam.colour = RED;
beam.name = "sticky flame";
beam.damage = dice_def( 3, 3 + power / 50 );
beam.hit = 18 + power / 15;
beam.flavour = BEAM_FIRE;
break;
case SPELL_POISONOUS_CLOUD:
beam.name = "blast of poison";
beam.damage = dice_def( 3, 3 + power / 25 );
beam.colour = LIGHTGREEN;
beam.flavour = BEAM_POISON;
beam.hit = 18 + power / 25;
beam.is_beam = true;
beam.is_big_cloud = true;
break;
case SPELL_ENERGY_BOLT: // eye of devastation
beam.colour = YELLOW;
beam.name = "bolt of energy";
beam.short_name = "energy";
beam.damage = dice_def( 3, 20 );
beam.hit = 15 + power / 30;
beam.flavour = BEAM_NUKE; // a magical missile which destroys walls
beam.is_beam = true;
break;
case SPELL_STING: // sting
beam.colour = GREEN;
beam.name = "sting";
beam.damage = dice_def( 1, 6 + power / 25 );
beam.hit = 60;
beam.flavour = BEAM_POISON;
break;
case SPELL_IRON_SHOT:
beam.colour = LIGHTCYAN;
beam.name = "iron shot";
beam.damage = dice_def( 3, 8 + (power / 9) );
beam.hit = 20 + (power / 25);
beam.glyph = dchar_glyph(DCHAR_FIRED_MISSILE);
beam.flavour = BEAM_MMISSILE; // similarly unresisted thing
break;
case SPELL_STONE_ARROW:
beam.colour = LIGHTGREY;
beam.name = "stone arrow";
beam.damage = dice_def( 3, 5 + (power / 10) );
beam.hit = 14 + power / 35;
beam.glyph = dchar_glyph(DCHAR_FIRED_MISSILE);
beam.flavour = BEAM_MMISSILE; // similarly unresisted thing
break;
case SPELL_POISON_SPLASH:
beam.colour = GREEN;
beam.name = "splash of poison";
beam.damage = dice_def( 1, 4 + power / 10 );
beam.hit = 16 + power / 20;
beam.flavour = BEAM_POISON;
break;
case SPELL_ACID_SPLASH:
beam.colour = YELLOW;
beam.name = "splash of acid";
beam.damage = dice_def( 3, 7 );
beam.hit = 20 + (3 * mons->hit_dice);
beam.flavour = BEAM_ACID;
break;
case SPELL_DISINTEGRATE:
beam.flavour = BEAM_DISINTEGRATION;
beam.ench_power = 50;
beam.damage = dice_def( 1, 30 + (power / 10) );
beam.is_beam = true;
break;
case SPELL_MEPHITIC_CLOUD: // swamp drake, player ghost
beam.name = "foul vapour";
beam.damage = dice_def(1,0);
beam.colour = GREEN;
// Well, it works, even if the name isn't quite intuitive.
beam.flavour = BEAM_POTION_STINKING_CLOUD;
beam.hit = 14 + power / 30;
beam.ench_power = power; // probably meaningless
beam.is_explosion = true;
beam.is_big_cloud = true;
break;
case SPELL_MIASMA: // death drake
beam.name = "foul vapour";
beam.damage = dice_def( 3, 5 + power / 24 );
beam.colour = DARKGREY;
beam.flavour = BEAM_MIASMA;
beam.hit = 17 + power / 20;
beam.is_beam = true;
beam.is_big_cloud = true;
break;
case SPELL_QUICKSILVER_BOLT: // Quicksilver dragon
beam.colour = random_colour();
beam.name = "bolt of energy";
beam.short_name = "energy";
beam.damage = dice_def( 3, 25 );
beam.hit = 16 + power / 25;
beam.flavour = BEAM_MMISSILE;
break;
case SPELL_HELLFIRE: // fiend's hellfire
beam.name = "blast of hellfire";
beam.aux_source = "blast of hellfire";
beam.colour = RED;
beam.damage = dice_def( 3, 20 );
beam.hit = 24;
beam.flavour = BEAM_HELLFIRE;
beam.is_beam = true;
beam.is_explosion = true;
break;
case SPELL_METAL_SPLINTERS:
beam.name = "spray of metal splinters";
beam.short_name = "metal splinters";
beam.damage = dice_def( 3, 20 + power / 20 );
beam.colour = CYAN;
beam.flavour = BEAM_FRAG;
beam.hit = 19 + power / 30;
beam.is_beam = true;
break;
case SPELL_BANISHMENT:
beam.flavour = BEAM_BANISH;
beam.is_beam = true;
break;
case SPELL_BLINK_OTHER:
beam.flavour = BEAM_BLINK;
beam.is_beam = true;
break;
case SPELL_BLINK_OTHER_CLOSE:
beam.flavour = BEAM_BLINK_CLOSE;
beam.is_beam = true;
break;
case SPELL_FIRE_BREATH:
beam.name = "blast of flame";
beam.aux_source = "blast of fiery breath";
beam.damage = dice_def( 3, (mons->hit_dice * 2) );
beam.colour = RED;
beam.hit = 30;
beam.flavour = BEAM_FIRE;
beam.is_beam = true;
break;
case SPELL_COLD_BREATH:
beam.name = "blast of cold";
beam.aux_source = "blast of icy breath";
beam.short_name = "frost";
beam.damage = dice_def( 3, (mons->hit_dice * 2) );
beam.colour = WHITE;
beam.hit = 30;
beam.flavour = BEAM_COLD;
beam.is_beam = true;
break;
case SPELL_DRACONIAN_BREATH:
beam.damage = dice_def( 3, (mons->hit_dice * 2) );
beam.hit = 30;
beam.is_beam = true;
break;
case SPELL_PORKALATOR:
beam.name = "porkalator";
beam.glyph = 0;
beam.flavour = BEAM_PORKALATOR;
beam.thrower = KILL_MON_MISSILE;
beam.is_beam = true;
break;
case SPELL_IOOD: // tracer only
beam.flavour = BEAM_NUKE;
beam.is_beam = true;
break;
case SPELL_SUNRAY:
beam.colour = ETC_HOLY;
beam.name = "ray of light";
beam.damage = dice_def( 3, 7 + (power / 12) );
beam.hit = 10 + power / 25; // lousy accuracy, but ignores RMsl
beam.flavour = BEAM_LIGHT;
break;
default:
if (check_validity)
{
beam.flavour = NUM_BEAMS;
return (beam);
}
if (!is_valid_spell(real_spell))
DEBUGSTR("Invalid spell #%d cast by %s", (int) real_spell,
mons->name(DESC_PLAIN, true).c_str());
DEBUGSTR("Unknown monster spell '%s' cast by %s",
spell_title(real_spell),
mons->name(DESC_PLAIN, true).c_str());
return (beam);
}
if (beam.is_enchantment())
{
beam.glyph = 0;
beam.name = "";
}
if (spell_cast == SPELL_DRACONIAN_BREATH)
_scale_draconian_breath(beam, drac_type);
// Accuracy is lowered by one quarter if the dragon is attacking
// a target that is wielding a weapon of dragon slaying (which
// makes the dragon/draconian avoid looking at the foe).
// FIXME: This effect is not yet implemented for player draconians
// or characters in dragon form breathing at monsters wielding a
// weapon with this brand.
if (is_dragonkind(mons))
{
if (actor *foe = mons->get_foe())
{
if (const item_def *weapon = foe->weapon())
{
if (get_weapon_brand(*weapon) == SPWPN_DRAGON_SLAYING)
{
beam.hit *= 3;
beam.hit /= 4;
}
}
}
}
return (beam);
}
static bool _los_free_spell(spell_type spell_cast)
{
return (spell_cast == SPELL_HELLFIRE_BURST
|| spell_cast == SPELL_BRAIN_FEED
|| spell_cast == SPELL_SMITING
|| spell_cast == SPELL_HAUNT
|| spell_cast == SPELL_FIRE_STORM
|| spell_cast == SPELL_AIRSTRIKE
|| spell_cast == SPELL_MISLEAD);
}
// Set up bolt structure for monster spell casting.
bool setup_mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast,
bool check_validity)
{
// always set these -- used by things other than fire_beam()
// [ds] Used to be 12 * MHD and later buggily forced to -1 downstairs.
// Setting this to a more realistic number now that that bug is
// squashed.
pbolt.ench_power = 4 * monster->hit_dice;
if (spell_cast == SPELL_TELEPORT_SELF)
pbolt.ench_power = 2000;
else if (spell_cast == SPELL_SLEEP)
pbolt.ench_power = 6 * monster->hit_dice;
pbolt.beam_source = monster->mindex();
// Convenience for the hapless innocent who assumes that this
// damn function does all possible setup. [ds]
if (pbolt.target.origin())
pbolt.target = monster->target;
// Set bolt type and range.
if (_los_free_spell(spell_cast))
{
pbolt.range = 0;
pbolt.glyph = 0;
switch (spell_cast)
{
case SPELL_BRAIN_FEED:
case SPELL_MISLEAD:
case SPELL_SMITING:
case SPELL_AIRSTRIKE:
return (true);
default:
// Other spells get normal setup:
break;
}
}
// The below are no-ops since they don't involve direct_effect,
// fire_tracer, or beam.
switch (spell_cast)
{
case SPELL_SUMMON_SMALL_MAMMALS:
case SPELL_MAJOR_HEALING:
case SPELL_VAMPIRE_SUMMON:
case SPELL_SHADOW_CREATURES: // summon anything appropriate for level
case SPELL_FAKE_RAKSHASA_SUMMON:
case SPELL_FAKE_MARA_SUMMON:
case SPELL_SUMMON_ILLUSION:
case SPELL_SUMMON_RAKSHASA:
case SPELL_SUMMON_DEMON:
case SPELL_SUMMON_UGLY_THING:
case SPELL_ANIMATE_DEAD:
case SPELL_CALL_IMP:
case SPELL_SUMMON_SCORPIONS:
case SPELL_SUMMON_SWARM:
case SPELL_SUMMON_UFETUBUS:
case SPELL_SUMMON_BEAST: // Geryon
case SPELL_SUMMON_UNDEAD: // summon undead around player
case SPELL_SUMMON_ICE_BEAST:
case SPELL_SUMMON_MUSHROOMS:
case SPELL_CONJURE_BALL_LIGHTNING:
case SPELL_SUMMON_DRAKES:
case SPELL_SUMMON_HORRIBLE_THINGS:
case SPELL_HAUNT:
case SPELL_SYMBOL_OF_TORMENT:
case SPELL_SUMMON_GREATER_DEMON:
case SPELL_CANTRIP:
case SPELL_BERSERKER_RAGE:
case SPELL_SWIFTNESS:
case SPELL_WATER_ELEMENTALS:
case SPELL_FIRE_ELEMENTALS:
case SPELL_AIR_ELEMENTALS:
case SPELL_EARTH_ELEMENTALS:
case SPELL_IRON_ELEMENTALS:
case SPELL_KRAKEN_TENTACLES:
case SPELL_BLINK:
case SPELL_CONTROLLED_BLINK:
case SPELL_BLINK_RANGE:
case SPELL_BLINK_AWAY:
case SPELL_BLINK_CLOSE:
case SPELL_TOMB_OF_DOROKLOHE:
case SPELL_CHAIN_LIGHTNING: // the only user is reckless
case SPELL_SUMMON_EYEBALLS:
case SPELL_SUMMON_BUTTERFLIES:
case SPELL_MISLEAD:
case SPELL_CALL_TIDE:
case SPELL_INK_CLOUD:
case SPELL_SILENCE:
case SPELL_AWAKEN_FOREST:
case SPELL_SUMMON_CANIFORMS:
return (true);
default:
if (check_validity)
{
bolt beam = mons_spells(monster, spell_cast, 1, true);
return (beam.flavour != NUM_BEAMS);
}
break;
}
// Need to correct this for power of spellcaster
int power = 12 * monster->hit_dice;
bolt theBeam = mons_spells(monster, spell_cast, power);
// [ds] remind me again why we're doing this piecemeal copying?
pbolt.origin_spell = theBeam.origin_spell;
pbolt.colour = theBeam.colour;
pbolt.range = theBeam.range;
pbolt.hit = theBeam.hit;
pbolt.damage = theBeam.damage;
if (theBeam.ench_power != -1)
pbolt.ench_power = theBeam.ench_power;
pbolt.glyph = theBeam.glyph;
pbolt.flavour = theBeam.flavour;
pbolt.thrower = theBeam.thrower;
pbolt.name = theBeam.name;
pbolt.short_name = theBeam.short_name;
pbolt.is_beam = theBeam.is_beam;
pbolt.source = monster->pos();
pbolt.is_tracer = false;
pbolt.is_explosion = theBeam.is_explosion;
pbolt.ex_size = theBeam.ex_size;
pbolt.foe_ratio = theBeam.foe_ratio;
if (!pbolt.is_enchantment())
pbolt.aux_source = pbolt.name;
else
pbolt.aux_source.clear();
if (spell_cast == SPELL_HASTE
|| spell_cast == SPELL_MIGHT
|| spell_cast == SPELL_INVISIBILITY
|| spell_cast == SPELL_MINOR_HEALING
|| spell_cast == SPELL_TELEPORT_SELF
|| spell_cast == SPELL_SILENCE)
{
pbolt.target = monster->pos();
}
else if (spell_cast == SPELL_PORKALATOR && one_chance_in(3))
{
monsters* targ = NULL;
int count = 0;
monster_type hog_type = MONS_HOG;
for (monster_iterator mi(monster); mi; ++mi)
{
hog_type = MONS_HOG;
if (mi->holiness() == MH_DEMONIC)
hog_type = MONS_HELL_HOG;
else if (mi->holiness() != MH_NATURAL)
continue;
if (mi->type != hog_type
&& mons_aligned(monster, *mi)
&& mons_power(hog_type) + random2(4) >= mons_power(mi->type)
&& (!mi->can_use_spells() || coinflip())
&& one_chance_in(++count))
{
targ = *mi;
}
}
if (targ)
{
pbolt.target = targ->pos();
#ifdef DEBUG_DIAGNOSTICS
mprf("Porkalator: targeting %s instead",
targ->name(DESC_PLAIN).c_str());
#endif
monster_polymorph(targ, hog_type);
}
// else target remains as specified
}
return (true);
}
// Returns a suitable breath weapon for the draconian; does not handle all
// draconians, does fire a tracer.
static spell_type _get_draconian_breath_spell( monsters *monster )
{
spell_type draco_breath = SPELL_NO_SPELL;
if (mons_genus( monster->type ) == MONS_DRACONIAN)
{
switch (draco_subspecies( monster ))
{
case MONS_DRACONIAN:
case MONS_YELLOW_DRACONIAN: // already handled as ability
break;
default:
draco_breath = SPELL_DRACONIAN_BREATH;
break;
}
}
if (draco_breath != SPELL_NO_SPELL)
{
// [ds] Check line-of-fire here. It won't happen elsewhere.
bolt beem;
setup_mons_cast(monster, beem, draco_breath);
fire_tracer(monster, beem);
if (!mons_should_fire(beem))
draco_breath = SPELL_NO_SPELL;
}
return (draco_breath);
}
static bool _is_emergency_spell(const monster_spells &msp, int spell)
{
// If the emergency spell appears early, it's probably not a dedicated
// escape spell.
for (int i = 0; i < 5; ++i)
if (msp[i] == spell)
return (false);
return (msp[5] == spell);
}
// Function should return false if friendlies shouldn't animate any dead.
// Currently, this only happens if the player is in the middle of butchering
// a corpse (infurating), or if they are less than satiated. Only applies
// to friendly corpse animators. {due}
static bool _animate_dead_okay()
{
// It's always okay in the arena.
if (crawl_state.game_is_arena())
return (true);
if (is_butchering())
return (false);
// TODO: Could probably check herbivorousness here too, but this should be
// enough for the moment.
if (you.hunger_state < HS_SATIATED)
return (false);
return (true);
}
//---------------------------------------------------------------
//
// handle_spell
//
// Give the monster a chance to cast a spell. Returns true if
// a spell was cast.
//
//---------------------------------------------------------------
bool handle_mon_spell(monsters *monster, bolt &beem)
{
bool monsterNearby = mons_near(monster);
bool finalAnswer = false; // as in: "Is that your...?" {dlb}
const spell_type draco_breath = _get_draconian_breath_spell(monster);
actor *foe = monster->get_foe();
// A polymorphed unique will retain his or her spells even in another
// form. If the new form has the SPELLCASTER flag, casting happens as
// normally, otherwise we need to enforce it, but it only happens with
// a 50% chance.
const bool spellcasting_poly(
!monster->can_use_spells()
&& mons_class_flag(monster->type, M_SPEAKS)
&& monster->has_spells());
if (is_sanctuary(monster->pos()) && !monster->wont_attack())
return (false);
// Yes, there is a logic to this ordering {dlb}:
if (monster->asleep()
|| monster->submerged()
|| (!monster->can_use_spells()
&& !spellcasting_poly
&& draco_breath == SPELL_NO_SPELL))
{
return (false);
}
// If the monster's a priest, assume summons come from priestly
// abilities, in which case they'll have the same god. If the
// monster is neither a priest nor a wizard, assume summons come
// from intrinsic abilities, in which case they'll also have the
// same god.
const bool priest = monster->is_priest();
const bool wizard = monster->is_actual_spellcaster();
god_type god = (priest || !(priest || wizard)) ? monster->god : GOD_NO_GOD;
if (silenced(monster->pos())
&& (priest || wizard || spellcasting_poly
|| mons_class_flag(monster->type, M_SPELL_NO_SILENT)))
{
return (false);
}
// Shapeshifters don't get spells.
if (monster->is_shapeshifter() && (priest || wizard))
return (false);
else if (mons_is_confused(monster, false))
return (false);
else if (monster->type == MONS_PANDEMONIUM_DEMON
&& !monster->ghost->spellcaster)
{
return (false);
}
else if (random2(200) > monster->hit_dice + 50
|| monster->type == MONS_BALL_LIGHTNING && coinflip())
{
return (false);
}
else if (spellcasting_poly && coinflip()) // 50% chance of not casting
return (false);
else
{
spell_type spell_cast = SPELL_NO_SPELL;
monster_spells hspell_pass(monster->spells);
if (!mon_enemies_around(monster))
{
// Force the casting of dig when the player is not visible -
// this is EVIL!
// only do this for monsters that are actually seeking out a
// hostile target -doy
if (monster->has_spell(SPELL_DIG)
&& mons_is_seeking(monster)
&& !(monster->wont_attack() && monster->foe == MHITYOU))
{
spell_cast = SPELL_DIG;
finalAnswer = true;
}
else if ((monster->has_spell(SPELL_MINOR_HEALING)
|| monster->has_spell(SPELL_MAJOR_HEALING))
&& monster->hit_points < monster->max_hit_points)
{
// The player's out of sight!
// Quick, let's take a turn to heal ourselves. -- bwr
spell_cast = monster->has_spell(SPELL_MAJOR_HEALING) ?
SPELL_MAJOR_HEALING : SPELL_MINOR_HEALING;
finalAnswer = true;
}
else if (mons_is_fleeing(monster) || monster->pacified())
{
// Since the player isn't around, we'll extend the monster's
// normal choices to include the self-enchant slot.
int foundcount = 0;
for (int i = NUM_MONSTER_SPELL_SLOTS - 1; i >= 0; --i)
{
if (ms_useful_fleeing_out_of_sight(monster, hspell_pass[i])
&& one_chance_in(++foundcount))
{
spell_cast = hspell_pass[i];
finalAnswer = true;
}
}
}
else if (monster->foe == MHITYOU && !monsterNearby)
return (false);
}
// Monsters caught in a net try to get away.
// This is only urgent if enemies are around.
if (!finalAnswer && mon_enemies_around(monster)
&& monster->caught() && one_chance_in(4))
{
for (int i = 0; i < NUM_MONSTER_SPELL_SLOTS; ++i)
{
if (ms_quick_get_away(monster, hspell_pass[i]))
{
spell_cast = hspell_pass[i];
finalAnswer = true;
break;
}
}
}
// Promote the casting of useful spells for low-HP monsters.
// (kraken should always cast their escape spell of inky).
if (!finalAnswer
&& monster->hit_points < monster->max_hit_points / 4
&& (!one_chance_in(4) || monster->type == MONS_KRAKEN))
{
// Note: There should always be at least some chance we don't
// get here... even if the monster is on its last HP. That
// way we don't have to worry about monsters infinitely casting
// Healing on themselves (e.g. orc high priests).
if ((mons_is_fleeing(monster) || monster->pacified())
&& ms_low_hitpoint_cast(monster, hspell_pass[5]))
{
spell_cast = hspell_pass[5];
finalAnswer = true;
}
if (!finalAnswer)
{
int found_spell = 0;
for (int i = 0; i < NUM_MONSTER_SPELL_SLOTS; ++i)
{
if (ms_low_hitpoint_cast(monster, hspell_pass[i])
&& one_chance_in(++found_spell))
{
spell_cast = hspell_pass[i];
finalAnswer = true;
}
}
}
}
if (!finalAnswer)
{
// If nothing found by now, safe friendlies and good
// neutrals will rarely cast.
if (monster->wont_attack() && !mon_enemies_around(monster)
&& !one_chance_in(10))
{
return (false);
}
// Remove healing/invis/haste if we don't need them.
int num_no_spell = 0;
for (int i = 0; i < NUM_MONSTER_SPELL_SLOTS; ++i)
{
if (hspell_pass[i] == SPELL_NO_SPELL)
num_no_spell++;
else if (ms_waste_of_time(monster, hspell_pass[i])
|| hspell_pass[i] == SPELL_DIG)
{
// Should monster not have selected dig by now,
// it never will.
hspell_pass[i] = SPELL_NO_SPELL;
num_no_spell++;
}
}
// If no useful spells... cast no spell.
if (num_no_spell == NUM_MONSTER_SPELL_SLOTS
&& draco_breath == SPELL_NO_SPELL)
{
return (false);
}
const bolt orig_beem = beem;
// Up to four tries to pick a spell.
for (int loopy = 0; loopy < 4; ++loopy)
{
beem = orig_beem;
bool spellOK = false;
// Setup spell - monsters that are fleeing or pacified
// and leaving the level will always try to choose their
// emergency spell.
if (mons_is_fleeing(monster) || monster->pacified())
{
spell_cast = (one_chance_in(5) ? SPELL_NO_SPELL
: hspell_pass[5]);
// Pacified monsters leaving the level won't choose
// emergency spells harmful to the area.
if (spell_cast != SPELL_NO_SPELL
&& monster->pacified()
&& spell_harms_area(spell_cast))
{
spell_cast = SPELL_NO_SPELL;
}
}
else
{
// Randomly picking one of the non-emergency spells:
spell_cast = hspell_pass[random2(5)];
}
if (spell_cast == SPELL_NO_SPELL)
continue;
// Setup the spell.
setup_mons_cast(monster, beem, spell_cast);
// Try to find a nearby ally to haste
if (spell_cast == SPELL_HASTE_OTHER
&& !_set_allied_target(monster, beem))
{
spell_cast = SPELL_NO_SPELL;
continue;
}
// Alligators shouldn't spam swiftness.
if (spell_cast == SPELL_SWIFTNESS
&& monster->type == MONS_ALLIGATOR
&& ((long) monster->number + random2avg(170, 5) >=
you.num_turns))
{
spell_cast = SPELL_NO_SPELL;
continue;
}
// And Mara shouldn't cast player ghost if he can't
// see the player
if (spell_cast == SPELL_SUMMON_ILLUSION
&& monster->type == MONS_MARA
&& (!foe
|| !monster->can_see(foe)
|| !actor_is_illusion_cloneable(foe)))
{
spell_cast = SPELL_NO_SPELL;
continue;
}
// beam-type spells requiring tracers
if (spell_needs_tracer(spell_cast))
{
const bool explode =
spell_is_direct_explosion(spell_cast);
fire_tracer(monster, beem, explode);
// Good idea?
if (mons_should_fire(beem))
spellOK = true;
}
else
{
// All direct-effect/summoning/self-enchantments/etc.
spellOK = true;
if (ms_direct_nasty(spell_cast)
&& mons_aligned(monster, (monster->foe == MHITYOU) ?
&you : foe)) // foe=get_foe() is NULL for friendlies
{ // targetting you, which is bad here.
spellOK = false;
}
else if (monster->foe == MHITYOU || monster->foe == MHITNOT)
{
// XXX: Note the crude hack so that monsters can
// use ME_ALERT to target (we should really have
// a measure of time instead of peeking to see
// if the player is still there). -- bwr
if (!you.visible_to(monster)
&& (monster->target != you.pos() || coinflip()))
{
spellOK = false;
}
}
else if (!monster->can_see(&menv[monster->foe]))
{
spellOK = false;
}
else if (monster->type == MONS_DAEVA
&& monster->god == GOD_SHINING_ONE)
{
const monsters *mon = &menv[monster->foe];
// Don't allow TSO-worshipping daevas to make
// unchivalric magic attacks, except against
// appropriate monsters.
if (is_unchivalric_attack(monster, mon)
&& !tso_unchivalric_attack_safe_monster(mon))
{
spellOK = false;
}
}
}
// If not okay, then maybe we'll cast a defensive spell.
if (!spellOK)
{
spell_cast = (coinflip() ? hspell_pass[2]
: SPELL_NO_SPELL);
// don't cast a targetted spell at the player if the
// monster is friendly and targetting the player -doy
if (monster->wont_attack() && monster->foe == MHITYOU
&& spell_needs_tracer(spell_cast)
&& spell_needs_foe(spell_cast)
&& spell_harms_target(spell_cast))
{
spell_cast = SPELL_NO_SPELL;
}
}
if (spell_cast != SPELL_NO_SPELL)
break;
}
}
// If there's otherwise no ranged attack use the breath weapon.
// The breath weapon is also occasionally used.
if (draco_breath != SPELL_NO_SPELL
&& (spell_cast == SPELL_NO_SPELL
|| !_is_emergency_spell(hspell_pass, spell_cast)
&& one_chance_in(4))
&& !player_or_mon_in_sanct(monster))
{
spell_cast = draco_breath;
setup_mons_cast(monster, beem, spell_cast);
finalAnswer = true;
}
// Should the monster *still* not have a spell, well, too bad {dlb}:
if (spell_cast == SPELL_NO_SPELL)
return (false);
// Friendly monsters don't use polymorph other, for fear of harming
// the player.
if (spell_cast == SPELL_POLYMORPH_OTHER && monster->friendly())
return (false);
// Try to animate dead: if nothing rises, pretend we didn't cast it.
if (spell_cast == SPELL_ANIMATE_DEAD)
{
if (monster->friendly() && !_animate_dead_okay())
return (false);
if (!animate_dead(monster, 100, SAME_ATTITUDE(monster),
monster->foe, monster, "", god, false))
{
return (false);
}
}
if (monster->type == MONS_BALL_LIGHTNING)
monster->hit_points = -1;
// FINALLY! determine primary spell effects {dlb}:
if (spell_cast == SPELL_BLINK || spell_cast == SPELL_CONTROLLED_BLINK)
{
// Why only cast blink if nearby? {dlb}
if (monsterNearby)
{
mons_cast_noise(monster, beem, spell_cast);
monster_blink(monster);
monster->lose_energy(EUT_SPELL);
}
else
return (false);
}
else if (spell_cast == SPELL_BLINK_RANGE)
blink_range(monster);
else if (spell_cast == SPELL_BLINK_AWAY)
blink_away(monster);
else if (spell_cast == SPELL_BLINK_CLOSE)
blink_close(monster);
else
{
if (spell_needs_foe(spell_cast))
make_mons_stop_fleeing(monster);
mons_cast(monster, beem, spell_cast);
monster->lose_energy(EUT_SPELL);
}
} // end "if mons_class_flag(monster->type, M_SPELLCASTER)
return (true);
}
static int _monster_abjure_square(const coord_def &pos,
int pow, int actual,
int wont_attack)
{
monsters *target = monster_at(pos);
if (target == NULL)
return (0);
if (!target->alive()
|| ((bool)wont_attack == target->wont_attack()))
{
return (0);
}
int duration;
if (!target->is_summoned(&duration))
return (0);
pow = std::max(20, fuzz_value(pow, 40, 25));
if (!actual)
return (pow > 40 || pow >= duration);
// TSO and Trog's abjuration protection.
bool shielded = false;
if (you.religion == GOD_SHINING_ONE)
{
pow = pow * (30 - target->hit_dice) / 30;
if (pow < duration)
{
simple_god_message(" protects your fellow warrior from evil "
"magic!");
shielded = true;
}
}
else if (you.religion == GOD_TROG)
{
pow = pow * 4 / 5;
if (pow < duration)
{
simple_god_message(" shields your ally from puny magic!");
shielded = true;
}
}
else if (is_sanctuary(target->pos()))
{
pow = 0;
mpr("Zin's power protects your fellow warrior from evil magic!",
MSGCH_GOD);
shielded = true;
}
dprf("Abj: dur: %d, pow: %d, ndur: %d", duration, pow, duration - pow);
mon_enchant abj = target->get_ench(ENCH_ABJ);
if (!target->lose_ench_duration(abj, pow))
{
if (!shielded)
simple_monster_message(target, " shudders.");
return (1);
}
return (0);
}
static int _apply_radius_around_square( const coord_def &c, int radius,
int (*fn)(const coord_def &, int, int, int),
int pow, int par1, int par2)
{
int res = 0;
for (int yi = -radius; yi <= radius; ++yi)
{
const coord_def c1(c.x - radius, c.y + yi);
const coord_def c2(c.x + radius, c.y + yi);
if (in_bounds(c1))
res += fn(c1, pow, par1, par2);
if (in_bounds(c2))
res += fn(c2, pow, par1, par2);
}
for (int xi = -radius + 1; xi < radius; ++xi)
{
const coord_def c1(c.x + xi, c.y - radius);
const coord_def c2(c.x + xi, c.y + radius);
if (in_bounds(c1))
res += fn(c1, pow, par1, par2);
if (in_bounds(c2))
res += fn(c2, pow, par1, par2);
}
return (res);
}
static int _monster_abjuration(const monsters *caster, bool actual)
{
const bool wont_attack = caster->wont_attack();
int maffected = 0;
if (actual)
mpr("Send 'em back where they came from!");
int pow = std::min(caster->hit_dice * 90, 2500);
// Abjure radius.
for (int rad = 1; rad < 5 && pow >= 30; ++rad)
{
int number_hit =
_apply_radius_around_square(caster->pos(), rad,
_monster_abjure_square,
pow, actual, wont_attack);
maffected += number_hit;
// Each affected monster drops power.
//
// We could further tune this by the actual amount of abjuration
// damage done to each summon, but the player will probably never
// notice. :-)
while (number_hit-- > 0)
pow = pow * 90 / 100;
pow /= 2;
}
return (maffected);
}
static bool _mons_abjured(monsters *monster, bool nearby)
{
if (nearby && _monster_abjuration(monster, false) > 0
&& coinflip())
{
_monster_abjuration(monster, true);
return (true);
}
return (false);
}
static monster_type _pick_swarmer()
{
static monster_type swarmers[] =
{
MONS_KILLER_BEE, MONS_SCORPION, MONS_WORM,
MONS_GIANT_MOSQUITO, MONS_GIANT_BEETLE, MONS_GIANT_BLOWFLY,
MONS_WOLF_SPIDER, MONS_BUTTERFLY, MONS_YELLOW_WASP,
MONS_GIANT_ANT,
};
return (RANDOM_ELEMENT(swarmers));
}
static monster_type _pick_random_wraith()
{
static monster_type wraiths[] =
{
MONS_WRAITH, MONS_SHADOW_WRAITH, MONS_FREEZING_WRAITH,
MONS_SPECTRAL_WARRIOR, MONS_PHANTOM, MONS_HUNGRY_GHOST,
MONS_FLAYED_GHOST
};
return (RANDOM_ELEMENT(wraiths));
}
static monster_type _pick_horrible_thing()
{
return (one_chance_in(4) ? MONS_TENTACLED_MONSTROSITY
: MONS_ABOMINATION_LARGE);
}
static monster_type _pick_undead_summon()
{
static monster_type undead[] =
{
MONS_NECROPHAGE, MONS_GHOUL, MONS_HUNGRY_GHOST, MONS_FLAYED_GHOST,
MONS_ZOMBIE_SMALL, MONS_SKELETON_SMALL, MONS_SIMULACRUM_SMALL,
MONS_FLYING_SKULL, MONS_FLAMING_CORPSE, MONS_MUMMY, MONS_VAMPIRE,
MONS_WIGHT, MONS_WRAITH, MONS_SHADOW_WRAITH, MONS_FREEZING_WRAITH,
MONS_SPECTRAL_WARRIOR, MONS_ZOMBIE_LARGE, MONS_SKELETON_LARGE,
MONS_SIMULACRUM_LARGE, MONS_SHADOW
};
return (RANDOM_ELEMENT(undead));
}
static void _do_high_level_summon(monsters *monster, bool monsterNearby,
spell_type spell_cast,
monster_type (*mpicker)(), int nsummons,
god_type god, coord_def *target = NULL)
{
if (_mons_abjured(monster, monsterNearby))
return;
const int duration = std::min(2 + monster->hit_dice / 5, 6);
for (int i = 0; i < nsummons; ++i)
{
monster_type which_mons = mpicker();
if (which_mons == MONS_NO_MONSTER)
continue;
create_monster(
mgen_data(which_mons, SAME_ATTITUDE(monster), monster,
duration, spell_cast, target ? *target : monster->pos(),
monster->foe, 0, god));
}
}
// Returns true if a message referring to the player's legs makes sense.
static bool _legs_msg_applicable()
{
return (you.species != SP_NAGA
&& (you.species != SP_MERFOLK || !you.swimming()));
}
void mons_cast_haunt(monsters *monster)
{
coord_def fpos;
switch (monster->foe)
{
case MHITNOT:
return;
case MHITYOU:
fpos = you.pos();
break;
default:
fpos = menv[monster->foe].pos();
}
_do_high_level_summon(monster, mons_near(monster), SPELL_HAUNT,
_pick_random_wraith, random_range(3, 6),
GOD_NO_GOD, &fpos);
}
static void _mons_cast_summon_illusion(monsters *monster, spell_type spell)
{
actor *foe = monster->get_foe();
if (!foe || !actor_is_illusion_cloneable(foe))
return;
mons_summon_illusion_from(monster, foe, spell);
}
void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast,
bool do_noise, bool special_ability)
{
// Always do setup. It might be done already, but it doesn't hurt
// to do it again (cheap).
setup_mons_cast(monster, pbolt, spell_cast);
// single calculation permissible {dlb}
bool monsterNearby = mons_near(monster);
int sumcount = 0;
int sumcount2;
int duration = 0;
#ifdef DEBUG_DIAGNOSTICS
mprf(MSGCH_DIAGNOSTICS, "Mon #%d casts %s (#%d)",
monster->mindex(), spell_title(spell_cast), spell_cast);
#endif
if (spell_cast == SPELL_CANTRIP)
do_noise = false; // Spell itself does the messaging.
if (_los_free_spell(spell_cast) && !spell_is_direct_explosion(spell_cast))
{
if (monster->foe == MHITYOU || monster->foe == MHITNOT)
{
if (monsterNearby)
{
if (do_noise)
mons_cast_noise(monster, pbolt, spell_cast,
special_ability);
direct_effect(monster, spell_cast, pbolt, &you);
}
return;
}
if (do_noise)
mons_cast_noise(monster, pbolt, spell_cast, special_ability);
direct_effect(monster, spell_cast, pbolt, monster->get_foe());
return;
}
#ifdef ASSERTS
const unsigned int flags = get_spell_flags(spell_cast);
ASSERT(!(flags & (SPFLAG_TESTING | SPFLAG_MAPPING)));
// Targeted spells need a valid target.
ASSERT(!(flags & SPFLAG_TARGETING_MASK) || in_bounds(pbolt.target));
#endif
if (do_noise)
mons_cast_noise(monster, pbolt, spell_cast, special_ability);
// If the monster's a priest, assume summons come from priestly
// abilities, in which case they'll have the same god. If the
// monster is neither a priest nor a wizard, assume summons come
// from intrinsic abilities, in which case they'll also have the
// same god.
const bool priest = monster->is_priest();
const bool wizard = monster->is_actual_spellcaster();
god_type god = (priest || !(priest || wizard)) ? monster->god : GOD_NO_GOD;
// Used for summon X elemental and nothing else. {bookofjude}
monster_type summon_type = MONS_NO_MONSTER;
switch (spell_cast)
{
default:
break;
case SPELL_MAJOR_HEALING:
if (monster->heal(50 + random2avg(monster->hit_dice * 10, 2)))
simple_monster_message(monster, " is healed.");
return;
case SPELL_BERSERKER_RAGE:
monster->go_berserk(true);
return;
case SPELL_SWIFTNESS:
monster->add_ench(ENCH_SWIFT);
if (monster->type == MONS_ALLIGATOR)
{
monster->number = you.num_turns;
simple_monster_message(monster, " puts on a burst of speed!");
}
else
simple_monster_message(monster, " seems to move somewhat quicker.");
return;
case SPELL_SILENCE:
monster->add_ench(ENCH_SILENCE);
invalidate_agrid(true);
mpr("Everything around you gets eerily quiet.");
return;
case SPELL_CALL_TIDE:
if (player_in_branch(BRANCH_SHOALS))
{
const int tide_duration = random_range(80, 200, 2);
monster->add_ench(mon_enchant(ENCH_TIDE, 0, KC_OTHER,
tide_duration * 10));
monster->props[TIDE_CALL_TURN].get_int() = you.num_turns;
if (simple_monster_message(
monster,
" sings a water chant to call the tide!"))
{
flash_view_delay(ETC_WATER, 300);
}
}
return;
case SPELL_INK_CLOUD:
if (!feat_is_watery(grd(monster->pos())))
return;
big_cloud(CLOUD_INK, monster->kill_alignment(), monster->pos(), 30, 30);
simple_monster_message(
monster,
" squirts a massive cloud of ink into the water!");
return;
case SPELL_SUMMON_SMALL_MAMMALS:
case SPELL_VAMPIRE_SUMMON:
if (spell_cast == SPELL_SUMMON_SMALL_MAMMALS)
sumcount2 = 1 + random2(4);
else
sumcount2 = 3 + random2(3) + monster->hit_dice / 5;
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
monster_type rats[] = { MONS_ORANGE_RAT, MONS_GREEN_RAT,
MONS_GREY_RAT, MONS_RAT };
if (spell_cast == SPELL_SUMMON_SMALL_MAMMALS)
rats[0] = MONS_QUOKKA;
const monster_type mon = (one_chance_in(3) ? MONS_GIANT_BAT
: RANDOM_ELEMENT(rats));
create_monster(
mgen_data(mon, SAME_ATTITUDE(monster), monster,
5, spell_cast, monster->pos(), monster->foe, 0, god));
}
return;
case SPELL_SHADOW_CREATURES: // summon anything appropriate for level
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(4) + random2(monster->hit_dice / 7 + 1);
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
create_monster(
mgen_data(RANDOM_MONSTER, SAME_ATTITUDE(monster), monster,
5, spell_cast, monster->pos(), monster->foe, 0, god));
}
return;
case SPELL_WATER_ELEMENTALS:
if (summon_type == MONS_NO_MONSTER)
summon_type = MONS_WATER_ELEMENTAL;
// Deliberate fall through
case SPELL_EARTH_ELEMENTALS:
if (summon_type == MONS_NO_MONSTER)
summon_type = MONS_EARTH_ELEMENTAL;
// Deliberate fall through
case SPELL_IRON_ELEMENTALS:
if (summon_type == MONS_NO_MONSTER)
summon_type = MONS_IRON_ELEMENTAL;
// Deliberate fall through
case SPELL_AIR_ELEMENTALS:
if (summon_type == MONS_NO_MONSTER)
summon_type = MONS_AIR_ELEMENTAL;
// Deliberate fall through
case SPELL_FIRE_ELEMENTALS:
if (summon_type == MONS_NO_MONSTER)
summon_type = MONS_FIRE_ELEMENTAL;
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(4) + random2(monster->hit_dice / 7 + 1);
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
create_monster(
mgen_data(summon_type, SAME_ATTITUDE(monster), monster,
3, spell_cast, monster->pos(), monster->foe, 0, god));
}
return;
case SPELL_SUMMON_RAKSHASA:
sumcount2 = 1 + random2(4) + random2(monster->hit_dice / 7 + 1);
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
create_monster(
mgen_data(MONS_RAKSHASA, SAME_ATTITUDE(monster), monster,
3, spell_cast, monster->pos(), monster->foe, 0, god));
}
return;
case SPELL_SUMMON_ILLUSION:
_mons_cast_summon_illusion(monster, spell_cast);
return;
case SPELL_KRAKEN_TENTACLES:
{
int kraken_index = monster->mindex();
if (invalid_monster_index(duration))
{
mpr("Error! Kraken is not a part of the current environment!",
MSGCH_ERROR);
return;
}
sumcount2 = std::max(random2(9), random2(9)); // up to eight tentacles
if (sumcount2 == 0)
return;
for (sumcount = 0; sumcount < MAX_MONSTERS; ++sumcount)
if (menv[sumcount].type == MONS_KRAKEN_TENTACLE
&& (int)menv[sumcount].number == kraken_index)
{
// Reduce by tentacles already placed.
sumcount2--;
}
for (sumcount = sumcount2; sumcount > 0; --sumcount)
{
// Tentacles aren't really summoned (controlled by spell_cast
// being passed to summon_type), so I'm not sure what the
// abjuration value (3) is doing there. (jpeg)
int tentacle = create_monster(
mgen_data(MONS_KRAKEN_TENTACLE, SAME_ATTITUDE(monster), monster,
3, spell_cast, monster->pos(), monster->foe, 0, god,
MONS_NO_MONSTER, kraken_index, monster->colour,
you.absdepth0, PROX_CLOSE_TO_PLAYER,
you.level_type));
if (tentacle < 0)
{
sumcount2--;
}
else if (monster->holiness() == MH_UNDEAD)
{
menv[tentacle].flags |= MF_HONORARY_UNDEAD;
}
}
if (sumcount2 == 1)
mpr("A tentacle rises from the water!");
else if (sumcount2 > 1)
mpr("Tentacles burst out of the water!");
return;
}
case SPELL_FAKE_MARA_SUMMON:
// We only want there to be two fakes, which, plus Mara, means
// a total of three Maras; if we already have two, give up, otherwise
// we want to summon either one more or two more.
sumcount2 = 2 - count_mara_fakes();
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
mgen_data summ_mon =
mgen_data(MONS_MARA_FAKE, SAME_ATTITUDE(monster),
monster, 3, spell_cast, monster->pos(),
monster->foe, 0, god);
// This is somewhat hacky, to prevent "A Mara", and such,
// as MONS_FAKE_MARA is not M_UNIQUE.
summ_mon.mname = "Mara";
summ_mon.extra_flags |= MF_NAME_REPLACE;
int created = create_monster(summ_mon);
if (created == -1)
continue;
// Mara's clones are special; they have the same stats as him, and
// are exact clones, so they are created damaged if necessary, with
// identical enchants and with the same items.
monsters *new_fake = &menv[created];
new_fake->hit_points = monster->hit_points;
new_fake->max_hit_points = monster->max_hit_points;
mon_enchant_list::iterator ei;
for (ei = monster->enchantments.begin();
ei != monster->enchantments.end(); ++ei)
{
new_fake->enchantments.insert(*ei);
}
// Code basically lifted from clone_monster. In theory, it
// only needs to copy weapon and armour slots; instead,
// copy the whole inventory.
for (int i = 0; i < NUM_MONSTER_SLOTS; i++)
{
const int old_index = monster->inv[i];
if (old_index == NON_ITEM)
continue;
const int new_index = get_item_slot(0);
if (new_index == NON_ITEM)
{
new_fake->unequip(mitm[old_index], i, 0, true);
new_fake->inv[i] = NON_ITEM;
continue;
}
new_fake->inv[i] = new_index;
mitm[new_index] = mitm[old_index];
mitm[new_index].set_holding_monster(new_fake->mindex());
// Mark items as summoned, so there's no way to get three nice
// weapons or such out of him.
mitm[new_index].flags |= ISFLAG_SUMMONED;
}
}
return;
case SPELL_FAKE_RAKSHASA_SUMMON:
sumcount2 = (coinflip() ? 2 : 3);
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
create_monster(
mgen_data(MONS_RAKSHASA_FAKE, SAME_ATTITUDE(monster), monster,
3, spell_cast, monster->pos(), monster->foe, 0, god));
}
return;
case SPELL_SUMMON_DEMON: // class 2-4 demons
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(2) + random2(monster->hit_dice / 10 + 1);
duration = std::min(2 + monster->hit_dice / 10, 6);
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
create_monster(
mgen_data(summon_any_demon(DEMON_COMMON),
SAME_ATTITUDE(monster), monster, duration, spell_cast,
monster->pos(), monster->foe, 0, god));
}
return;
case SPELL_SUMMON_UGLY_THING:
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(2) + random2(monster->hit_dice / 10 + 1);
duration = std::min(2 + monster->hit_dice / 10, 6);
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
const monster_type mon = (one_chance_in(3) ? MONS_VERY_UGLY_THING
: MONS_UGLY_THING);
create_monster(
mgen_data(mon, SAME_ATTITUDE(monster), monster,
duration, spell_cast, monster->pos(), monster->foe, 0,
god));
}
return;
case SPELL_ANIMATE_DEAD:
// see special handling in mon-stuff::handle_spell() {dlb}
if (monster->friendly() && !_animate_dead_okay())
return;
animate_dead(monster, 5 + random2(5), SAME_ATTITUDE(monster),
monster->foe, monster, "", god);
return;
case SPELL_CALL_IMP: // class 5 demons
sumcount2 = 1 + random2(3) + random2(monster->hit_dice / 5 + 1);
duration = std::min(2 + monster->hit_dice / 5, 6);
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
create_monster(
mgen_data(summon_any_demon(DEMON_LESSER),
SAME_ATTITUDE(monster), monster,
duration, spell_cast, monster->pos(), monster->foe, 0,
god));
}
return;
case SPELL_SUMMON_SCORPIONS:
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(3) + random2(monster->hit_dice / 5 + 1);
duration = std::min(2 + monster->hit_dice / 5, 6);
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
create_monster(
mgen_data(MONS_SCORPION, SAME_ATTITUDE(monster), monster,
duration, spell_cast, monster->pos(), monster->foe, 0,
god));
}
return;
case SPELL_SUMMON_SWARM:
_do_high_level_summon(monster, monsterNearby, spell_cast,
_pick_swarmer, random_range(3, 6), god);
return;
case SPELL_SUMMON_UFETUBUS:
sumcount2 = 2 + random2(2) + random2(monster->hit_dice / 5 + 1);
duration = std::min(2 + monster->hit_dice / 5, 6);
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
create_monster(
mgen_data(MONS_UFETUBUS, SAME_ATTITUDE(monster), monster,
duration, spell_cast, monster->pos(), monster->foe, 0,
god));
}
return;
case SPELL_SUMMON_BEAST: // Geryon
create_monster(
mgen_data(MONS_BEAST, SAME_ATTITUDE(monster), monster,
4, spell_cast, monster->pos(), monster->foe, 0, god));
return;
case SPELL_SUMMON_ICE_BEAST:
create_monster(
mgen_data(MONS_ICE_BEAST, SAME_ATTITUDE(monster), monster,
5, spell_cast, monster->pos(), monster->foe, 0, god));
return;
case SPELL_SUMMON_MUSHROOMS: // Summon swarms of icky crawling fungi.
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(2) + random2(monster->hit_dice / 4 + 1);
duration = std::min(2 + monster->hit_dice / 5, 6);
for (int i = 0; i < sumcount2; ++i)
{
create_monster(
mgen_data(MONS_WANDERING_MUSHROOM, SAME_ATTITUDE(monster),
monster, duration, spell_cast, monster->pos(),
monster->foe, 0, god));
}
return;
case SPELL_SUMMON_HORRIBLE_THINGS:
_do_high_level_summon(monster, monsterNearby, spell_cast,
_pick_horrible_thing, random_range(3, 5), god);
return;
case SPELL_CONJURE_BALL_LIGHTNING:
{
const int n = 2 + random2(monster->hit_dice / 4);
for (int i = 0; i < n; ++i)
{
create_monster(
mgen_data(MONS_BALL_LIGHTNING, SAME_ATTITUDE(monster),
monster, 2, spell_cast, monster->pos(), monster->foe,
0, god));
}
return;
}
case SPELL_SUMMON_UNDEAD: // Summon undead around player.
_do_high_level_summon(monster, monsterNearby, spell_cast,
_pick_undead_summon,
2 + random2(2)
+ random2(monster->hit_dice / 4 + 1), god);
return;
case SPELL_SYMBOL_OF_TORMENT:
if (!monsterNearby || monster->friendly())
return;
torment(monster->mindex(), monster->pos());
return;
case SPELL_SUMMON_GREATER_DEMON:
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(monster->hit_dice / 10 + 1);
duration = std::min(2 + monster->hit_dice / 10, 6);
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
create_monster(
mgen_data(summon_any_demon(DEMON_GREATER),
SAME_ATTITUDE(monster), monster,
duration, spell_cast, monster->pos(), monster->foe,
0, god));
}
return;
// Journey -- Added in Summon Lizards and Draconians
case SPELL_SUMMON_DRAKES:
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(3) + random2(monster->hit_dice / 5 + 1);
duration = std::min(2 + monster->hit_dice / 10, 6);
{
std::vector<monster_type> monsters;
for (sumcount = 0; sumcount < sumcount2; ++sumcount)
{
bool drag = false;
monster_type mon = summon_any_dragon(DRAGON_LIZARD);
if (mon == MONS_DRAGON)
{
drag = true;
mon = summon_any_dragon(DRAGON_DRAGON);
}
monsters.push_back(mon);
if (drag)
break;
}
for (int i = 0, size = monsters.size(); i < size; ++i)
{
create_monster(
mgen_data(monsters[i], SAME_ATTITUDE(monster), monster,
duration, spell_cast,
monster->pos(), monster->foe, 0, god));
}
}
return;
case SPELL_SUMMON_CANIFORMS: // Bears and wolves
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(2) + random2(monster->hit_dice / 4 + 1);
duration = std::min(2 + monster->hit_dice / 5, 6);
for (int i = 0; i < sumcount2; ++i)
{
create_monster(
mgen_data(static_cast<monster_type>(random_choose_weighted(
10, MONS_WOLF,
4, MONS_BEAR,
1, MONS_GRIZZLY_BEAR,
4, MONS_BLACK_BEAR,
// no polar bears
0)), SAME_ATTITUDE(monster),
monster, duration, spell_cast, monster->pos(),
monster->foe, 0, god));
}
return;
// TODO: Outsource the cantrip messages and allow specification of
// special cantrip spells per monster, like for speech, both as
// "self buffs" and "player enchantments".
case SPELL_CANTRIP:
{
// Monster spell of uselessness, just prints a message.
// This spell exists so that some monsters with really strong
// spells (ie orc priest) can be toned down a bit. -- bwr
//
// XXX: Needs expansion, and perhaps different priest/mage flavours.
// Don't give any message if the monster isn't nearby.
// (Otherwise you could get them from halfway across the level.)
if (!mons_near(monster))
return;
const bool friendly = monster->friendly();
const bool buff_only = !friendly && is_sanctuary(you.pos());
const msg_channel_type channel = (friendly) ? MSGCH_FRIEND_ENCHANT
: MSGCH_MONSTER_ENCHANT;
if (monster->type == MONS_GASTRONOK)
{
bool has_mon_foe = !invalid_monster_index(monster->foe);
std::string slugform = "";
if (buff_only || crawl_state.game_is_arena() && !has_mon_foe
|| friendly && !has_mon_foe || coinflip())
{
slugform = getSpeakString("gastronok_self_buff");
if (!slugform.empty())
{
slugform = replace_all(slugform, "@The_monster@",
monster->name(DESC_CAP_THE));
mpr(slugform.c_str(), channel);
}
}
else if (!friendly && !has_mon_foe)
{
mons_cast_noise(monster, pbolt, spell_cast);
// "Enchant" the player.
slugform = getSpeakString("gastronok_debuff");
if (!slugform.empty()
&& (slugform.find("legs") == std::string::npos
|| _legs_msg_applicable()))
{
mpr(slugform.c_str());
}
}
else
{
// "Enchant" another monster.
const monsters* foe = monster->get_foe()->as_monster();
slugform = getSpeakString("gastronok_other_buff");
if (!slugform.empty())
{
slugform = replace_all(slugform, "@The_monster@",
foe->name(DESC_CAP_THE));
mpr(slugform.c_str(), MSGCH_MONSTER_ENCHANT);
}
}
}
else
{
// Messages about the monster influencing itself.
const char* buff_msgs[] = { " glows brightly for a moment.",
" looks stronger.",
" becomes somewhat translucent.",
"'s eyes start to glow." };
// Messages about the monster influencing you.
const char* other_msgs[] = {
"You feel troubled.",
"You feel a wave of unholy energy pass over you."
};
if (buff_only || crawl_state.game_is_arena() || x_chance_in_y(2,3))
{
simple_monster_message(monster, RANDOM_ELEMENT(buff_msgs),
channel);
}
else if (friendly)
{
simple_monster_message(monster, " shimmers for a moment.",
channel);
}
else // "Enchant" the player.
{
mons_cast_noise(monster, pbolt, spell_cast);
mpr(RANDOM_ELEMENT(other_msgs));
}
}
return;
}
case SPELL_BLINK_OTHER:
{
// Allow the caster to comment on moving the foe.
std::string msg = getSpeakString(monster->name(DESC_PLAIN)
+ " blink_other");
if (!msg.empty() && msg != "__NONE")
{
mons_speaks_msg(monster, msg, MSGCH_TALK,
silenced(you.pos()) || silenced(monster->pos()));
}
break;
}
case SPELL_BLINK_OTHER_CLOSE:
{
// Allow the caster to comment on moving the foe.
std::string msg = getSpeakString(monster->name(DESC_PLAIN)
+ " blink_other_close");
if (!msg.empty() && msg != "__NONE")
{
mons_speaks_msg(monster, msg, MSGCH_TALK,
silenced(you.pos()) || silenced(monster->pos()));
}
break;
}
case SPELL_TOMB_OF_DOROKLOHE:
{
sumcount = 0;
const int hp_lost = monster->max_hit_points - monster->hit_points;
if (!hp_lost)
sumcount++;
const dungeon_feature_type safe_tiles[] = {
DNGN_SHALLOW_WATER, DNGN_FLOOR, DNGN_FLOOR_SPECIAL, DNGN_OPEN_DOOR
};
bool proceed;
for (adjacent_iterator ai(monster->pos()); ai; ++ai)
{
const actor* act = actor_at(*ai);
// We can blink away the crowd, but only our allies.
if (act
&& (act->atype() == ACT_PLAYER
|| (act->atype() == ACT_MONSTER
&& act->as_monster()->attitude != monster->attitude)))
{
sumcount++;
}
// Make sure we have a legitimate tile.
proceed = false;
for (unsigned int i = 0; i < ARRAYSZ(safe_tiles) && !proceed; ++i)
if (grd(*ai) == safe_tiles[i] || feat_is_trap(grd(*ai)))
proceed = true;
if (!proceed && grd(*ai) > DNGN_MAX_NONREACH)
sumcount++;
}
if (sumcount)
{
monster->blink();
return;
}
sumcount = 0;
for (adjacent_iterator ai(monster->pos()); ai; ++ai)
{
if (monster_at(*ai))
{
monster_at(*ai)->blink();
if (monster_at(*ai))
{
monster_at(*ai)->teleport(true);
if (monster_at(*ai))
continue;
}
}
// Make sure we have a legitimate tile.
proceed = false;
for (unsigned int i = 0; i < ARRAYSZ(safe_tiles) && !proceed; ++i)
if (grd(*ai) == safe_tiles[i] || feat_is_trap(grd(*ai)))
proceed = true;
if (proceed)
{
// All items are moved inside.
if (igrd(*ai) != NON_ITEM)
move_items(*ai, monster->pos());
// All clouds are destroyed.
if (env.cgrid(*ai) != EMPTY_CLOUD)
delete_cloud(env.cgrid(*ai));
// All traps are destroyed.
if (trap_def *ptrap = find_trap(*ai))
ptrap->destroy();
// Actually place the wall.
grd(*ai) = DNGN_ROCK_WALL;
set_terrain_changed(*ai);
sumcount++;
}
}
if (sumcount)
{
mpr("Walls emerge from the floor!");
// XXX: Assume that the entombed monster can regenerate.
// Also, base the regeneration rate on HD to avoid
// randomness.
const int tomb_duration = BASELINE_DELAY
* hp_lost * std::max(1, monster->hit_dice / 3);
int mon_index = monster->mindex();
env.markers.add(new map_tomb_marker(monster->pos(),
tomb_duration,
mon_index,
mon_index));
}
return;
}
case SPELL_CHAIN_LIGHTNING:
if (!monsterNearby || monster->friendly())
return;
cast_chain_lightning(4 * monster->hit_dice, monster);
return;
case SPELL_SUMMON_EYEBALLS:
if (_mons_abjured(monster, monsterNearby))
return;
sumcount2 = 1 + random2(2) + random2(monster->hit_dice / 7 + 1);
duration = std::min(2 + monster->hit_dice / 10, 6);
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
const monster_type mon = static_cast<monster_type>(
random_choose_weighted(100, MONS_GIANT_EYEBALL,
80, MONS_EYE_OF_DRAINING,
60, MONS_GOLDEN_EYE,
40, MONS_SHINING_EYE,
20, MONS_GREAT_ORB_OF_EYES,
10, MONS_EYE_OF_DEVASTATION,
0));
create_monster(
mgen_data(mon, SAME_ATTITUDE(monster), monster, duration,
spell_cast, monster->pos(), monster->foe, 0, god));
}
return;
case SPELL_SUMMON_BUTTERFLIES:
if (_mons_abjured(monster, monsterNearby))
return;
duration = std::min(2 + monster->hit_dice / 5, 6);
for (int i = 0; i < 15; ++i)
{
create_monster(
mgen_data(MONS_BUTTERFLY, SAME_ATTITUDE(monster),
monster, duration, spell_cast, monster->pos(),
monster->foe, 0, god));
}
return;
case SPELL_IOOD:
cast_iood(monster, 6 * monster->hit_dice, &pbolt);
return;
case SPELL_AWAKEN_FOREST:
duration = 50 + random2(monster->hit_dice * 20);
monster->add_ench(mon_enchant(ENCH_AWAKEN_FOREST, 0, KC_OTHER, duration));
// Actually, it's a boolean marker... save for a sanity check.
env.forest_awoken_until = you.elapsed_time + duration;
// You may be unable to see the monster, but notice an affected tree.
forest_message(monster->pos(), "The forest starts to sway and rumble!");
return;
}
// If a monster just came into view and immediately cast a spell,
// we need to refresh the screen before drawing the beam.
viewwindow();
if (spell_is_direct_explosion(spell_cast))
{
const actor *foe = monster->get_foe();
const bool need_more = foe && (foe == &you || you.see_cell(foe->pos()));
pbolt.in_explosion_phase = false;
pbolt.explode(need_more);
}
else
pbolt.fire();
}
static int _noise_level(const monsters* monster, spell_type spell,
bool silent, bool innate)
{
const unsigned int flags = get_spell_flags(spell);
int noise;
if (silent
|| (innate
&& !mons_class_flag(monster->type, M_NOISY_SPELLS)
&& !(flags & SPFLAG_NOISY)
&& mons_genus(monster->type) != MONS_DRAGON))
{
noise = 0;
}
else
{
if (mons_genus(monster->type) == MONS_DRAGON)
noise = get_shout_noise_level(S_ROAR);
else
{
// Noise for targeted spells happens at where the spell hits,
// rather than where the spell is cast. zappy() sets up the
// noise for beams.
noise = (flags & SPFLAG_TARGETING_MASK)
? 1 : spell_noise(spell);
}
}
return noise;
}
static unsigned int _noise_keys(std::vector<std::string>& key_list,
const monsters* monster, const bolt& pbolt,
spell_type spell, bool priest, bool wizard,
bool innate, bool targeted)
{
const std::string cast_str = " cast";
const mon_body_shape shape = get_mon_shape(monster);
const std::string spell_name = spell_title(spell);
const bool real_spell = !innate && (priest || wizard);
// First try the spells name.
if (shape <= MON_SHAPE_NAGA)
{
if (real_spell)
key_list.push_back(spell_name + cast_str + " real");
if (mons_intel(monster) >= I_NORMAL)
key_list.push_back(spell_name + cast_str + " gestures");
}
else if (real_spell)
{
// A real spell being cast by something with no hands? Maybe
// it's a polymorphed spellcaster which kept its original spells.
// If so, the cast message for it's new type/species/genus probably
// won't look right.
if (!mons_class_flag(monster->type, M_ACTUAL_SPELLS | M_PRIEST))
{
// XXX: We should probably include the monster's shape,
// to get a variety of messages.
if (wizard)
{
std::string key = "polymorphed wizard" + cast_str;
if (targeted)
key_list.push_back(key + " targeted");
key_list.push_back(key);
}
else if (priest)
{
std::string key = "polymorphed priest" + cast_str;
if (targeted)
key_list.push_back(key + " targeted");
key_list.push_back(key);
}
}
}
key_list.push_back(spell_name + cast_str);
const unsigned int num_spell_keys = key_list.size();
// Next the monster type name, then species name, then genus name.
key_list.push_back(mons_type_name(monster->type, DESC_PLAIN) + cast_str);
key_list.push_back(mons_type_name(mons_species(monster->type), DESC_PLAIN)
+ cast_str);
key_list.push_back(mons_type_name(mons_genus(monster->type), DESC_PLAIN)
+ cast_str);
// Last, generic wizard, priest or demon.
if (wizard)
key_list.push_back((std::string)((shape <= MON_SHAPE_NAGA) ? "" : "non-humanoid ")
+ "wizard" + cast_str);
else if (priest)
key_list.push_back("priest" + cast_str);
else if (mons_is_demon(monster->type))
key_list.push_back("demon" + cast_str);
if (targeted)
{
// For targeted spells, try with the targeted suffix first.
for (unsigned int i = key_list.size() - 1; i >= num_spell_keys; i--)
{
std::string str = key_list[i] + " targeted";
key_list.insert(key_list.begin() + i, str);
}
// Generic beam messages.
if (pbolt.visible())
{
key_list.push_back(pbolt.get_short_name() + " beam " + cast_str);
key_list.push_back("beam catchall cast");
}
}
return num_spell_keys;
}
static std::string _noise_message(const std::vector<std::string>& key_list,
unsigned int num_spell_keys,
bool silent, bool unseen)
{
std::string prefix;
if (silent)
prefix = "silent ";
else if (unseen)
prefix = "unseen ";
std::string msg;
for (unsigned int i = 0; i < key_list.size(); i++)
{
const std::string key = key_list[i];
msg = getSpeakString(prefix + key);
if (msg == "__NONE")
{
msg = "";
break;
}
else if (msg == "__NEXT")
{
msg = "";
if (i < num_spell_keys)
i = num_spell_keys - 1;
else if (ends_with(key, " targeted"))
i++;
continue;
}
else if (!msg.empty())
break;
// If we got no message and we're using the silent prefix, then
// try again without the prefix.
if (prefix != "silent ")
continue;
msg = getSpeakString(key);
if (msg == "__NONE")
{
msg = "";
break;
}
else if (msg == "__NEXT")
{
msg = "";
if (i < num_spell_keys)
i = num_spell_keys - 1;
else if (ends_with(key, " targeted"))
i++;
continue;
}
else if (!msg.empty())
break;
}
return (msg);
}
static void _noise_fill_target(std::string& targ_prep, std::string& target,
const monsters* monster, const bolt& pbolt,
bool gestured)
{
targ_prep = "at";
target = "nothing";
bolt tracer = pbolt;
// For a targeted but rangeless spell make the range positive so that
// fire_tracer() will fill out path_taken.
if (pbolt.range == 0 && pbolt.target != monster->pos())
tracer.range = ENV_SHOW_DIAMETER;
fire_tracer(monster, tracer);
if (pbolt.target == you.pos())
target = "you";
else if (pbolt.target == monster->pos())
target = monster->pronoun(PRONOUN_REFLEXIVE);
// Monsters should only use targeted spells while foe == MHITNOT
// if they're targeting themselves.
else if (monster->foe == MHITNOT && !mons_is_confused(monster, true))
target = "NONEXISTENT FOE";
else if (!invalid_monster_index(monster->foe)
&& menv[monster->foe].type == MONS_NO_MONSTER)
{
target = "DEAD FOE";
}
else if (in_bounds(pbolt.target) && you.see_cell(pbolt.target))
{
if (const monsters* mtarg = monster_at(pbolt.target))
{
if (you.can_see(mtarg))
target = mtarg->name(DESC_NOCAP_THE);
}
}
const bool visible_path = pbolt.visible() || gestured;
// Monster might be aiming past the real target, or maybe some fuzz has
// been applied because the target is invisible.
if (target == "nothing")
{
if (pbolt.aimed_at_spot)
{
int count = 0;
for (adjacent_iterator ai(pbolt.target); ai; ++ai)
{
const actor* act = actor_at(*ai);
if (act && act != monster && you.can_see(act))
{
targ_prep = "next to";
if (act->atype() == ACT_PLAYER || one_chance_in(++count))
target = act->name(DESC_NOCAP_THE);
if (act->atype() == ACT_PLAYER)
break;
}
}
}
bool mons_targ_aligned = false;
const std::vector<coord_def> &path = tracer.path_taken;
for (unsigned int i = 0; i < path.size(); i++)
{
const coord_def pos = path[i];
if (pos == monster->pos())
continue;
const monsters *m = monster_at(pos);
if (pos == you.pos())
{
// Be egotistical and assume that the monster is aiming at
// the player, rather than the player being in the path of
// a beam aimed at an ally.
if (!monster->wont_attack())
{
targ_prep = "at";
target = "you";
break;
}
// If the ally is confused or aiming at an invisible enemy,
// with the player in the path, act like it's targeted at
// the player if there isn't any visible target earlier
// in the path.
else if (target == "nothing")
{
targ_prep = "at";
target = "you";
mons_targ_aligned = true;
}
}
else if (visible_path && m && you.can_see(m))
{
bool is_aligned = mons_aligned(m, monster);
std::string name = m->name(DESC_NOCAP_THE);
if (target == "nothing")
{
mons_targ_aligned = is_aligned;
target = name;
}
// If the first target was aligned with the beam source then
// the first subsequent non-aligned monster in the path will
// take it's place.
else if (mons_targ_aligned && !is_aligned)
{
mons_targ_aligned = false;
target = name;
}
targ_prep = "at";
}
else if (visible_path && target == "nothing")
{
int count = 0;
for (adjacent_iterator ai(pbolt.target); ai; ++ai)
{
const actor* act = monster_at(*ai);
if (act && act != monster && you.can_see(act))
{
targ_prep = "past";
if (act->atype() == ACT_PLAYER
|| one_chance_in(++count))
{
target = act->name(DESC_NOCAP_THE);
}
if (act->atype() == ACT_PLAYER)
break;
}
}
}
} // for (unsigned int i = 0; i < path.size(); i++)
} // if (target == "nothing" && targeted)
const actor* foe = monster->get_foe();
// If we still can't find what appears to be the target, and the
// monster isn't just throwing the spell in a random direction,
// we should be able to tell what the monster was aiming for if
// we can see the monster's foe and the beam (or the beam path
// implied by gesturing). But only if the beam didn't actually hit
// anything (but if it did hit something, why didn't that monster
// show up in the beam's path?)
if (target == "nothing"
&& (tracer.foe_info.count + tracer.friend_info.count) == 0
&& foe != NULL
&& you.can_see(foe)
&& !monster->confused()
&& visible_path)
{
target = foe->name(DESC_NOCAP_THE);
targ_prep = (pbolt.aimed_at_spot ? "next to" : "past");
}
// If the monster gestures to create an invisible beam then
// assume that anything close to the beam is the intended target.
// Also, if the monster gestures to create a visible beam but it
// misses still say that the monster gestured "at" the target,
// rather than "past".
if (gestured || target == "nothing")
targ_prep = "at";
// "throws whatever at something" is better than "at nothing"
if (target == "nothing")
target = "something";
}
void mons_cast_noise(monsters *monster, const bolt &pbolt,
spell_type spell_cast, bool special_ability)
{
bool force_silent = false;
spell_type actual_spell = spell_cast;
if (spell_cast == SPELL_DRACONIAN_BREATH)
{
int type = monster->type;
if (mons_genus(type) == MONS_DRACONIAN)
type = draco_subspecies(monster);
switch (type)
{
case MONS_MOTTLED_DRACONIAN:
actual_spell = SPELL_STICKY_FLAME_SPLASH;
break;
case MONS_YELLOW_DRACONIAN:
actual_spell = SPELL_ACID_SPLASH;
break;
case MONS_PLAYER_GHOST:
// Draining breath is silent.
force_silent = true;
break;
default:
break;
}
}
else if (monster->type == MONS_SHADOW_DRAGON)
// Draining breath is silent.
force_silent = true;
const bool unseen = !you.can_see(monster);
const bool silent = silenced(monster->pos()) || force_silent;
const bool no_silent = mons_class_flag(monster->type, M_SPELL_NO_SILENT);
if (unseen && silent)
return;
const unsigned int flags = get_spell_flags(actual_spell);
const bool priest = monster->is_priest();
const bool wizard = monster->is_actual_spellcaster();
const bool innate = !(priest || wizard || no_silent)
|| (flags & SPFLAG_INNATE) || special_ability;
int noise = _noise_level(monster, actual_spell, silent, innate);
const bool targeted = (flags & SPFLAG_TARGETING_MASK)
&& (pbolt.target != monster->pos()
|| pbolt.visible());
std::vector<std::string> key_list;
unsigned int num_spell_keys =
_noise_keys(key_list, monster, pbolt, actual_spell,
priest, wizard, innate, targeted);
std::string msg = _noise_message(key_list, num_spell_keys,
silent, unseen);
if (msg.empty())
{
if (silent)
return;
noisy(noise, monster->pos(), monster->mindex());
return;
}
// FIXME: we should not need to look at the message text.
const bool gestured = msg.find("Gesture") != std::string::npos
|| msg.find(" gesture") != std::string::npos
|| msg.find("Point") != std::string::npos
|| msg.find(" point") != std::string::npos;
std::string targ_prep = "at";
std::string target = "NO_TARGET";
if (targeted)
_noise_fill_target(targ_prep, target, monster, pbolt, gestured);
msg = replace_all(msg, "@at@", targ_prep);
msg = replace_all(msg, "@target@", target);
std::string beam_name;
if (!targeted)
beam_name = "NON TARGETED BEAM";
else if (pbolt.name.empty())
beam_name = "INVALID BEAM";
else
beam_name = pbolt.get_short_name();
msg = replace_all(msg, "@beam@", beam_name);
const msg_channel_type chan =
(unseen ? MSGCH_SOUND :
monster->friendly() ? MSGCH_FRIEND_SPELL
: MSGCH_MONSTER_SPELL);
if (silent)
mons_speaks_msg(monster, msg, chan, true);
else if (noisy(noise, monster->pos(), monster->mindex()) || !unseen)
{
// noisy() returns true if the player heard the noise.
mons_speaks_msg(monster, msg, chan);
}
}
|