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
|
/*
* File: stash.cc
* Summary: Classes tracking player stashes
* Written by: Darshan Shaligram
*/
#include "AppHdr.h"
#include "artefact.h"
#include "chardump.h"
#include "cio.h"
#include "clua.h"
#include "command.h"
#include "coord.h"
#include "describe.h"
#include "directn.h"
#include "food.h"
#include "itemname.h"
#include "itemprop.h"
#include "files.h"
#include "invent.h"
#include "items.h"
#include "kills.h"
#include "l_libs.h"
#include "libutil.h"
#include "menu.h"
#include "message.h"
#include "misc.h"
#include "mon-util.h"
#include "mon-stuff.h"
#include "notes.h"
#include "options.h"
#include "place.h"
#include "shopping.h"
#include "spl-book.h"
#include "stash.h"
#include "stuff.h"
#include "env.h"
#include "tags.h"
#include "terrain.h"
#include "traps.h"
#include "travel.h"
#include "hints.h"
#include "viewgeom.h"
#include "viewmap.h"
#include <cctype>
#include <cstdio>
#include <fstream>
#include <sstream>
#include <algorithm>
// Global
StashTracker StashTrack;
void stash_init_new_level()
{
// If there's an existing stash level for Pan, blow it away.
StashTrack.remove_level( level_id(LEVEL_PANDEMONIUM) );
StashTrack.remove_level( level_id(LEVEL_PORTAL_VAULT) );
}
std::string userdef_annotate_item(const char *s, const item_def *item,
bool exclusive)
{
#ifdef CLUA_BINDINGS
lua_stack_cleaner cleaner(clua);
clua_push_item(clua, const_cast<item_def*>(item));
if (!clua.callfn(s, 1, 1) && !clua.error.empty())
mprf(MSGCH_ERROR, "Lua error: %s", clua.error.c_str());
std::string ann;
if (lua_isstring(clua, -1))
ann = luaL_checkstring(clua, -1);
return (ann);
#else
return ("");
#endif
}
std::string stash_annotate_item(const char *s,
const item_def *item,
bool exclusive = false)
{
std::string text = userdef_annotate_item(s, item, exclusive);
if (item->base_type == OBJ_BOOKS
&& item_type_known(*item)
&& item->sub_type != BOOK_MANUAL
&& item->sub_type != BOOK_DESTRUCTION
|| count_staff_spells(*item, true) > 1)
{
formatted_string fs;
item_def dup = *item;
spellbook_contents(dup, item->base_type == OBJ_BOOKS ? RBOOK_READ_SPELL
: RBOOK_USE_STAFF,
&fs);
text += "\n";
text += fs.tostring(2, -2);
}
return text;
}
void maybe_update_stashes()
{
if (Options.stash_tracking && !crawl_state.game_is_arena())
{
StashTrack.update_visible_stashes(
Options.stash_tracking == STM_ALL ? StashTracker::ST_AGGRESSIVE
: StashTracker::ST_PASSIVE);
}
}
bool is_stash(const coord_def& c)
{
LevelStashes *ls = StashTrack.find_current_level();
if (ls)
{
Stash *s = ls->find_stash(c);
return (s && s->enabled);
}
return (false);
}
std::string get_stash_desc(const coord_def& c)
{
LevelStashes *ls = StashTrack.find_current_level();
if (ls)
{
Stash *s = ls->find_stash(c);
if (s)
{
const std::string desc = s->description();
if (!desc.empty())
return ("[Stash: " + desc + "]");
}
}
return "";
}
void describe_stash(const coord_def& c)
{
std::string desc = get_stash_desc(c);
if (!desc.empty())
mpr(desc.c_str(), MSGCH_EXAMINE_FILTER);
}
std::vector<item_def> Stash::get_items() const
{
return items;
}
std::vector<item_def> item_list_in_stash(const coord_def& pos)
{
std::vector<item_def> ret;
LevelStashes *ls = StashTrack.find_current_level();
if (ls)
{
Stash *s = ls->find_stash(pos);
if (s)
ret = s->get_items();
}
return ret;
}
static void _fully_identify_item(item_def *item)
{
if (!item || !item->defined())
return;
set_ident_flags( *item, ISFLAG_IDENT_MASK );
if (item->base_type != OBJ_WEAPONS)
set_ident_type( *item, ID_KNOWN_TYPE );
}
// ----------------------------------------------------------------------
// Stash
// ----------------------------------------------------------------------
bool Stash::aggressive_verify = true;
std::vector<item_def> Stash::filters;
Stash::Stash(int xp, int yp) : enabled(true), items()
{
// First, fix what square we're interested in
if (xp == -1)
{
xp = you.pos().x;
yp = you.pos().y;
}
x = (unsigned char) xp;
y = (unsigned char) yp;
abspos = GXM * (int) y + x;
update();
}
bool Stash::are_items_same(const item_def &a, const item_def &b)
{
const bool same = a.base_type == b.base_type
&& a.sub_type == b.sub_type
&& a.plus == b.plus
&& a.plus2 == b.plus2
&& a.special == b.special
&& a.colour == b.colour
&& a.flags == b.flags
&& a.quantity == b.quantity;
// Account for rotting meat when comparing items.
return (same
|| (a.base_type == b.base_type
&& (a.base_type == OBJ_CORPSES
|| (a.base_type == OBJ_FOOD && a.sub_type == FOOD_CHUNK
&& b.sub_type == FOOD_CHUNK))
&& a.plus == b.plus));
}
void Stash::filter(const std::string &str)
{
std::string base = str;
unsigned char subc = 255;
std::string subs = "";
std::string::size_type cpos = base.find(":", 0);
if (cpos != std::string::npos)
{
subc = atoi(subs.c_str());
base = base.substr(0, cpos);
}
const int base_num = atoi(base.c_str());
if (base_num == 0 && base != "0" || subc == 0 && subs != "0")
{
item_types_pair pair = item_types_by_name(str);
if (pair.base_type == OBJ_UNASSIGNED)
{
Options.report_error("Invalid stash filter '" + str + "'");
return;
}
filter(pair.base_type, pair.sub_type);
}
else
{
const object_class_type basec =
static_cast<object_class_type>(base_num);
filter(basec, subc);
}
}
void Stash::filter(object_class_type base, unsigned char sub)
{
item_def item;
item.base_type = base;
item.sub_type = sub;
filters.push_back(item);
}
bool Stash::is_filtered(const item_def &item)
{
for (int i = 0, count = filters.size(); i < count; ++i)
{
const item_def &filter = filters[i];
if (item.base_type == filter.base_type
&& (filter.sub_type == 255
|| item.sub_type == filter.sub_type))
{
if (is_artefact(item))
return (false);
if (filter.sub_type != 255 && !item_type_known(item))
return (false);
return (true);
}
}
return (false);
}
bool Stash::unverified() const
{
return (!verified);
}
bool Stash::pickup_eligible() const
{
for (int i = 0, size = items.size(); i < size; ++i)
if (item_needs_autopickup(items[i]))
return (true);
return (false);
}
bool Stash::is_boring_feature(dungeon_feature_type feature)
{
switch (feature)
{
// Discard spammy dungeon features.
case DNGN_SHALLOW_WATER:
case DNGN_DEEP_WATER:
case DNGN_LAVA:
case DNGN_OPEN_DOOR:
case DNGN_STONE_STAIRS_DOWN_I:
case DNGN_STONE_STAIRS_DOWN_II:
case DNGN_STONE_STAIRS_DOWN_III:
case DNGN_STONE_STAIRS_UP_I:
case DNGN_STONE_STAIRS_UP_II:
case DNGN_STONE_STAIRS_UP_III:
case DNGN_ESCAPE_HATCH_DOWN:
case DNGN_ESCAPE_HATCH_UP:
case DNGN_ENTER_SHOP:
case DNGN_ABANDONED_SHOP:
case DNGN_UNDISCOVERED_TRAP:
return (true);
default:
return (feat_is_solid(feature));
}
}
static bool _grid_has_mimic_item(const coord_def& pos)
{
const monsters *mon = monster_at(pos);
return (mon && mons_is_unknown_mimic(mon));
}
static bool _grid_has_perceived_item(const coord_def& pos)
{
return (you.visible_igrd(pos) != NON_ITEM || _grid_has_mimic_item(pos));
}
static bool _grid_has_perceived_multiple_items(const coord_def& pos)
{
int count = 0;
if (_grid_has_mimic_item(pos))
++count;
for (stack_iterator si(pos, true); si && count < 2; ++si)
++count;
return (count > 1);
}
void Stash::update()
{
coord_def p(x,y);
feat = grd(p);
trap = NUM_TRAPS;
if (is_boring_feature(feat))
feat = DNGN_FLOOR;
if (feat_is_trap(feat))
trap = get_trap_type(p);
// If this is your position, you know what's on this square
if (p == you.pos())
{
// Zap existing items
items.clear();
// Now, grab all items on that square and fill our vector
for (stack_iterator si(p, true); si; ++si)
add_item(*si);
verified = true;
}
// If this is not your position, the only thing we can do is verify that
// what the player sees on the square is the first item in this vector.
else
{
if (!_grid_has_perceived_item(p))
{
items.clear();
verified = true;
return;
}
// There's something on this square. Take a squint at it.
const item_def *pitem;
if (_grid_has_mimic_item(p))
pitem = &get_mimic_item(monster_at(p));
else
{
pitem = &mitm[you.visible_igrd(p)];
hints_first_item(*pitem);
}
const item_def& item = *pitem;
if (!_grid_has_perceived_multiple_items(p))
items.clear();
// We knew of nothing on this square, so we'll assume this is the
// only item here, but mark it as unverified unless we can see nothing
// under the item.
if (items.size() == 0)
{
add_item(item);
// Note that we could be lying here, since we can have
// a verified falsehood (if there's a mimic.)
verified = !_grid_has_perceived_multiple_items(p);
return;
}
// There's more than one item in this pile. Check to see if
// the top item matches what we remember.
const item_def &first = items[0];
// Compare these items
if (!are_items_same(first, item))
{
if (aggressive_verify)
{
// See if 'item' matches any of the items we have. If it does,
// we'll just make that the first item and leave 'verified'
// unchanged.
// Start from 1 because we've already checked items[0]
for (int i = 1, count = items.size(); i < count; ++i)
{
if (are_items_same(items[i], item))
{
// Found it. Swap it to the front of the vector.
std::swap(items[i], items[0]);
// We don't set verified to true. If this stash was
// already unverified, it remains so.
return;
}
}
}
// If this is unverified, forget last item on stack. This isn't
// terribly clever, but it prevents the vector swelling forever.
if (!verified)
items.pop_back();
// Items are different. We'll put this item in the front of our
// vector, and mark this as unverified
add_item(item, true);
verified = false;
}
}
}
static bool _is_rottable(const item_def &item)
{
return (item.base_type == OBJ_CORPSES
|| (item.base_type == OBJ_FOOD && item.sub_type == FOOD_CHUNK));
}
static short _min_rot(const item_def &item)
{
if (item.base_type == OBJ_FOOD)
return 0;
if (item.base_type == OBJ_CORPSES && item.sub_type == CORPSE_SKELETON)
return 0;
if (!mons_skeleton(item.plus))
return 0;
else
return -200;
}
// Returns the item name for a given item, with any appropriate
// stash-tracking pre/suffixes.
std::string Stash::stash_item_name(const item_def &item)
{
std::string name = item.name(DESC_NOCAP_A);
if (!_is_rottable(item))
return name;
if (item.plus2 <= _min_rot(item))
{
name += " (gone by now)";
return name;
}
// Skeletons show no signs of rotting before they're gone
if (item.base_type == OBJ_CORPSES && item.sub_type == CORPSE_SKELETON)
return name;
// Item was already seen to be rotten
if (item.special < 100)
return name;
if (item.plus2 <= 0)
name += " (skeletalised by now)";
else if (item.plus2 < 100)
name += " (rotten by now)";
return name;
}
class StashMenu : public InvMenu
{
public:
StashMenu() : InvMenu(MF_SINGLESELECT), can_travel(false)
{
set_type(MT_PICKUP);
set_tag("stash"); // override "inventory" tag
}
unsigned char getkey() const;
public:
bool can_travel;
protected:
void draw_title();
bool process_key(int key);
};
void StashMenu::draw_title()
{
if (title)
{
cgotoxy(1, 1);
textcolor(title->colour);
cprintf( "%s", title->text.c_str());
if (title->quantity)
{
cprintf(", %d item%s", title->quantity,
title->quantity == 1? "" : "s");
}
cprintf(")");
if (action_cycle == Menu::CYCLE_TOGGLE)
{
cprintf(" [a-z: %s ?/!: %s]",
menu_action == ACT_EXAMINE ? "examine" : "shopping",
menu_action == ACT_EXAMINE ? "shopping" : "examine");
}
if (can_travel)
{
if (action_cycle == Menu::CYCLE_TOGGLE)
{
// XXX: This won't fit in the title, so it goes into the
// footer/-more-. Not ideal, but I don't know where else
// to put it.
std::string str = "<w>[ENTER: travel]</w>";
set_more(formatted_string::parse_string(str));
flags |= MF_ALWAYS_SHOW_MORE;
}
else
cprintf(" [ENTER: travel]");
}
}
}
bool StashMenu::process_key(int key)
{
if (key == CK_ENTER)
{
// Travel activates.
lastch = 1;
return (false);
}
return Menu::process_key(key);
}
unsigned char StashMenu::getkey() const
{
return (lastch);
}
static MenuEntry *stash_menu_fixup(MenuEntry *me)
{
const item_def *item = static_cast<const item_def *>( me->data );
if (item->base_type == OBJ_GOLD)
{
me->quantity = 0;
me->colour = DARKGREY;
}
return (me);
}
bool Stash::show_menu(const level_pos &prefix, bool can_travel) const
{
const std::string prefix_str = short_place_name(prefix.id);
StashMenu menu;
MenuEntry *mtitle = new MenuEntry("Stash (" + prefix_str, MEL_TITLE);
menu.can_travel = can_travel;
mtitle->quantity = items.size();
menu.set_title(mtitle);
menu.load_items( InvMenu::xlat_itemvect(items), stash_menu_fixup);
std::vector<MenuEntry*> sel;
while (true)
{
sel = menu.show();
if (menu.getkey() == 1)
return (true);
if (sel.size() != 1)
break;
item_def *item = static_cast<item_def *>( sel[0]->data );
describe_item(*item);
}
return (false);
}
std::string Stash::description() const
{
if (!enabled || items.empty())
return ("");
const item_def &item = items[0];
std::string desc = stash_item_name(item);
size_t sz = items.size();
if (sz > 1)
{
char additionals[50];
snprintf(additionals, sizeof additionals,
" (...%u)",
(unsigned int) (sz - 1));
desc += additionals;
}
return (desc);
}
std::string Stash::feature_description() const
{
if (feat == DNGN_FLOOR)
return ("");
return (::feature_description(feat, trap));
}
bool Stash::matches_search(const std::string &prefix,
const base_pattern &search,
stash_search_result &res) const
{
if (!enabled || items.empty() && feat == DNGN_FLOOR)
return (false);
for (unsigned i = 0; i < items.size(); ++i)
{
const item_def &item = items[i];
if (Stash::is_filtered(item))
continue;
std::string s = stash_item_name(item);
std::string ann = stash_annotate_item(STASH_LUA_SEARCH_ANNOTATE, &item);
if (search.matches(prefix + " " + ann + s))
{
if (!res.count++)
res.match = s;
res.matches += item.quantity;
continue;
}
if (is_dumpable_artefact(item, false))
{
std::string desc =
munge_description(get_item_description(item, false, true));
if (search.matches(desc))
{
if (!res.count++)
res.match = s;
res.matches += item.quantity;
}
}
}
if (!res.matches && feat != DNGN_FLOOR)
{
const std::string fdesc = feature_description();
if (!fdesc.empty() && search.matches(fdesc))
{
res.match = fdesc;
res.matches = 1;
}
}
if (res.matches)
{
res.stash = this;
// XXX pos.pos looks lame. Lameness is not solicited.
res.pos.pos.x = x;
res.pos.pos.y = y;
}
return !!res.matches;
}
void Stash::_update_corpses(long rot_time)
{
for (int i = items.size() - 1; i >= 0; i--)
{
item_def &item = items[i];
if (!_is_rottable(item))
continue;
long new_rot = static_cast<long>(item.plus2) - rot_time;
if (new_rot <= _min_rot(item))
{
items.erase(items.begin() + i);
continue;
}
item.plus2 = static_cast<short>(new_rot);
}
}
void Stash::add_item(const item_def &item, bool add_to_front)
{
if (_is_rottable(item))
StashTrack.update_corpses();
if (add_to_front)
items.insert(items.begin(), item);
else
items.push_back(item);
seen_item(item);
if (!_is_rottable(item))
return;
// item.special remains unchanged in the stash, to show how fresh it
// was when last seen. It's plus2 that's decayed over time.
if (add_to_front)
{
item_def &it = items.front();
it.plus2 = it.special;
}
else
{
item_def &it = items.back();
it.plus2 = it.special;
}
}
void Stash::write(std::ostream &os, int refx, int refy,
std::string place, bool identify)
const
{
if (!enabled || (items.size() == 0 && verified))
return;
bool note_status = notes_are_active();
activate_notes(false);
os << "(" << ((int) x - refx) << ", " << ((int) y - refy)
<< (place.length()? ", " + place : "")
<< ")"
<< std::endl;
char buf[ITEMNAME_SIZE];
for (int i = 0; i < (int) items.size(); ++i)
{
item_def item = items[i];
if (identify)
_fully_identify_item(&item);
std::string s = stash_item_name(item);
strncpy(buf, s.c_str(), sizeof buf);
std::string ann = userdef_annotate_item(STASH_LUA_DUMP_ANNOTATE, &item);
if (!ann.empty())
{
trim_string(ann);
ann = " " + ann;
}
os << " " << buf
<< (!ann.empty()? ann : std::string())
<< (!verified && (items.size() > 1 || i) ? " (still there?)" : "")
<< std::endl;
if (is_dumpable_artefact(item, false))
{
std::string desc =
munge_description(get_item_description(item, false, true));
// Kill leading and trailing whitespace
desc.erase(desc.find_last_not_of(" \n\t") + 1);
desc.erase(0, desc.find_first_not_of(" \n\t"));
// If string is not-empty, pad out to a neat indent
if (desc.length())
{
// Walk backwards and prepend indenting spaces to \n characters.
for (int j = desc.length() - 1; j >= 0; --j)
if (desc[j] == '\n')
desc.insert(j + 1, " ");
os << " " << desc << std::endl;
}
}
}
if (items.size() <= 1 && !verified)
os << " (unseen)" << std::endl;
activate_notes(note_status);
}
void Stash::save(writer& outf) const
{
// How many items on this square?
marshallShort(outf, (short) items.size());
marshallByte(outf, x);
marshallByte(outf, y);
marshallByte(outf, feat);
marshallByte(outf, trap);
// Note: Enabled save value is inverted logic, so that it defaults to true
marshallByte(outf,
(unsigned char) ((verified? 1 : 0) | (!enabled? 2 : 0)) );
// And dump the items individually. We don't bother saving fields we're
// not interested in (and don't anticipate being interested in).
for (unsigned i = 0; i < items.size(); ++i)
marshallItem(outf, items[i]);
}
void Stash::load(reader& inf)
{
// How many items?
int count = unmarshallShort(inf);
x = unmarshallByte(inf);
y = unmarshallByte(inf);
feat = static_cast<dungeon_feature_type>(
static_cast<unsigned char>( unmarshallByte(inf) ));
trap = static_cast<trap_type>(
static_cast<unsigned char>( unmarshallByte(inf) ));
unsigned char flags = unmarshallByte(inf);
verified = (flags & 1) != 0;
// Note: Enabled save value is inverted so it defaults to true.
enabled = (flags & 2) == 0;
abspos = GXM * (int) y + x;
// Zap out item vector, in case it's in use (however unlikely)
items.clear();
// Read in the items
for (int i = 0; i < count; ++i)
{
item_def item;
unmarshallItem(inf, item);
items.push_back(item);
}
}
std::ostream &operator << (std::ostream &os, const Stash &s)
{
s.write(os);
return os;
}
ShopInfo::ShopInfo(int xp, int yp) : x(xp), y(yp), name(), shoptype(-1),
visited(false), items()
{
// Most of our initialization will be done externally; this class is really
// a mildly glorified struct.
const shop_struct *sh = get_shop(coord_def(x, y));
if (sh)
shoptype = sh->type;
}
void ShopInfo::add_item(const item_def &sitem, unsigned price)
{
shop_item it;
it.item = sitem;
it.price = price;
items.push_back(it);
}
std::string ShopInfo::shop_item_name(const shop_item &si) const
{
const unsigned long oldflags = si.item.flags;
if (shoptype_identifies_stock(static_cast<shop_type>(this->shoptype)))
const_cast<shop_item&>(si).item.flags |= ISFLAG_IDENT_MASK;
if (oldflags != si.item.flags)
const_cast<shop_item&>(si).item.flags = oldflags;
return make_stringf("%s (%u gold)", Stash::stash_item_name(si.item).c_str(), si.price);
}
std::string ShopInfo::shop_item_desc(const shop_item &si) const
{
std::string desc;
const unsigned long oldflags = si.item.flags;
if (shoptype_identifies_stock(static_cast<shop_type>(this->shoptype)))
const_cast<shop_item&>(si).item.flags |= ISFLAG_IDENT_MASK;
if (is_dumpable_artefact(si.item, false))
{
desc = munge_description(get_item_description(si.item, false, true));
trim_string(desc);
// Walk backwards and prepend indenting spaces to \n characters
for (int i = desc.length() - 1; i >= 0; --i)
if (desc[i] == '\n')
desc.insert(i + 1, " ");
}
if (oldflags != si.item.flags)
const_cast<shop_item&>(si).item.flags = oldflags;
return desc;
}
void ShopInfo::describe_shop_item(const shop_item &si) const
{
const unsigned long oldflags = si.item.flags;
if (shoptype_identifies_stock(static_cast<shop_type>(this->shoptype)))
const_cast<shop_item&>(si).item.flags |= ISFLAG_IDENT_MASK
| ISFLAG_NOTED_ID | ISFLAG_NOTED_GET;
item_def it = static_cast<item_def>(si.item);
describe_item( it );
if (oldflags != si.item.flags)
const_cast<shop_item&>(si).item.flags = oldflags;
}
class ShopItemEntry : public InvEntry
{
bool on_list;
public:
ShopItemEntry(const ShopInfo::shop_item &it,
const std::string &item_name,
menu_letter hotkey, bool _on_list) : InvEntry(it.item)
{
text = item_name;
hotkeys[0] = hotkey;
on_list = _on_list;
}
std::string get_text(const bool = false) const
{
ASSERT(level == MEL_ITEM && hotkeys.size());
char buf[300];
snprintf(buf, sizeof buf, " %c %c %s",
hotkeys[0], on_list ? '$' : '-', text.c_str());
return std::string(buf);
}
};
void ShopInfo::fill_out_menu(StashMenu &menu, const level_pos &place) const
{
menu.clear();
menu_letter hotkey;
for (int i = 0, count = items.size(); i < count; ++i)
{
bool on_list = shopping_list.is_on_list(items[i].item, &place);
ShopItemEntry *me = new ShopItemEntry(items[i],
shop_item_name(items[i]),
hotkey++, on_list);
menu.add_entry(me);
}
}
bool ShopInfo::show_menu(const level_pos &place,
bool can_travel) const
{
const std::string place_str = short_place_name(place.id);
StashMenu menu;
MenuEntry *mtitle = new MenuEntry(name + " (" + place_str, MEL_TITLE);
menu.can_travel = can_travel;
menu.action_cycle = Menu::CYCLE_TOGGLE;
menu.menu_action = Menu::ACT_EXAMINE;
mtitle->quantity = items.size();
menu.set_title(mtitle);
if (items.empty())
{
MenuEntry *me = new MenuEntry(
visited? " (Shop is empty)" : " (Shop contents are unknown)",
MEL_ITEM,
0,
0);
me->colour = DARKGREY;
menu.add_entry(me);
}
else
fill_out_menu(menu, place);
std::vector<MenuEntry*> sel;
while (true)
{
sel = menu.show();
if (menu.getkey() == 1)
return (true);
if (sel.size() != 1)
break;
const shop_item *item = static_cast<const shop_item *>( sel[0]->data );
if (menu.menu_action == Menu::ACT_EXAMINE)
describe_shop_item(*item);
else
{
if (shopping_list.is_on_list(item->item, &place))
shopping_list.del_thing(item->item, &place);
else
shopping_list.add_thing(item->item, item->price, &place);
// If the shop has identical items (like stacks of food in a
// food shop) then adding/removing one to the shopping list
// will have the same effect on the others, so the other
// identical items will need to be re-coloured.
fill_out_menu(menu, place);
}
}
return (false);
}
std::string ShopInfo::description() const
{
return (name);
}
bool ShopInfo::matches_search(const std::string &prefix,
const base_pattern &search,
stash_search_result &res) const
{
if (items.empty() && visited)
return (false);
bool note_status = notes_are_active();
activate_notes(false);
bool match = false;
for (unsigned i = 0; i < items.size(); ++i)
{
if (Stash::is_filtered(items[i].item))
continue;
std::string sname = shop_item_name(items[i]);
std::string ann = stash_annotate_item( STASH_LUA_SEARCH_ANNOTATE,
&items[i].item, true );
bool thismatch = false;
if (search.matches(prefix + " " + ann + sname))
thismatch = true;
else
{
std::string desc = shop_item_desc(items[i]);
if (search.matches(desc))
thismatch = true;
}
if (thismatch)
{
if (!res.count++)
res.match = sname;
res.matches++;
}
}
if (!res.matches)
{
std::string shoptitle = prefix + " {shop} " + name;
if (!visited && items.empty())
shoptitle += "*";
if (search.matches(shoptitle))
{
match = true;
res.match = name;
}
}
if (match || res.matches)
{
res.shop = this;
res.pos.pos.x = x;
res.pos.pos.y = y;
}
activate_notes(note_status);
return (match || res.matches);
}
void ShopInfo::write(std::ostream &os, bool identify) const
{
bool note_status = notes_are_active();
activate_notes(false);
os << "[Shop] " << name << std::endl;
if (items.size() > 0)
{
for (unsigned i = 0; i < items.size(); ++i)
{
shop_item item = items[i];
if (identify)
_fully_identify_item(&item.item);
os << " " << shop_item_name(item) << std::endl;
std::string desc = shop_item_desc(item);
if (desc.length() > 0)
os << " " << desc << std::endl;
}
}
else if (visited)
os << " (Shop is empty)" << std::endl;
else
os << " (Shop contents are unknown)" << std::endl;
activate_notes(note_status);
}
void ShopInfo::save(writer& outf) const
{
marshallShort(outf, shoptype);
int mangledx = (short) x;
if (!visited)
mangledx |= 1024;
marshallShort(outf, mangledx);
marshallShort(outf, (short) y);
marshallShort(outf, (short) items.size());
marshallString4(outf, name);
for (unsigned i = 0; i < items.size(); ++i)
{
marshallItem(outf, items[i].item);
marshallShort(outf, (short) items[i].price );
}
}
void ShopInfo::load(reader& inf)
{
shoptype = unmarshallShort(inf);
x = unmarshallShort(inf);
visited = !(x & 1024);
x &= 0xFF;
y = unmarshallShort(inf);
int itemcount = unmarshallShort(inf);
unmarshallString4(inf, name);
for (int i = 0; i < itemcount; ++i)
{
shop_item item;
unmarshallItem(inf, item.item);
item.price = (unsigned) unmarshallShort(inf);
items.push_back(item);
}
}
std::ostream &operator << (std::ostream &os, const ShopInfo &s)
{
s.write(os);
return os;
}
LevelStashes::LevelStashes()
: m_place(level_id::current()),
m_stashes(),
m_shops()
{
}
level_id LevelStashes::where() const
{
return m_place;
}
Stash *LevelStashes::find_stash(coord_def c)
{
// FIXME: is this really necessary?
if (c.x == -1 || c.y == -1)
c = you.pos();
const int abspos = (GXM * c.y) + c.x;
stashes_t::iterator st = m_stashes.find(abspos);
return (st == m_stashes.end()? NULL : &st->second);
}
const Stash *LevelStashes::find_stash(coord_def c) const
{
// FIXME: is this really necessary?
if (c.x == -1 || c.y == -1)
c = you.pos();
const int abspos = (GXM * c.y) + c.x;
stashes_t::const_iterator st = m_stashes.find(abspos);
return (st == m_stashes.end()? NULL : &st->second);
}
const ShopInfo *LevelStashes::find_shop(const coord_def& c) const
{
for (unsigned i = 0; i < m_shops.size(); ++i)
if (m_shops[i].isAt(c))
return (&m_shops[i]);
return (NULL);
}
bool LevelStashes::shop_needs_visit(const coord_def& c) const
{
const ShopInfo *shop = find_shop(c);
return (shop && !shop->is_visited());
}
bool LevelStashes::needs_visit(const coord_def& c) const
{
const Stash *s = find_stash(c);
if (s && (s->unverified() || s->pickup_eligible()))
return (true);
return (shop_needs_visit(c));
}
bool LevelStashes::unverified_stash(const coord_def &c) const
{
const Stash *s = find_stash(c);
return (s && s->unverified());
}
ShopInfo &LevelStashes::get_shop(const coord_def& c)
{
for (unsigned i = 0; i < m_shops.size(); ++i)
if (m_shops[i].isAt(c))
return m_shops[i];
ShopInfo si(c.x, c.y);
si.set_name(shop_name(c));
m_shops.push_back(si);
return get_shop(c);
}
// Updates the stash at p. Returns true if there was a stash at p, false
// otherwise.
bool LevelStashes::update_stash(const coord_def& c)
{
Stash *s = find_stash(c);
if (s)
{
s->update();
if (s->empty())
kill_stash(*s);
return (true);
}
return (false);
}
// Removes a Stash from the level.
void LevelStashes::kill_stash(const Stash &s)
{
m_stashes.erase(s.abs_pos());
}
void LevelStashes::no_stash(int x, int y)
{
Stash *s = find_stash(coord_def(x, y));
bool en = false;
if (s)
{
en = s->enabled = !s->enabled;
s->update();
if (s->empty())
kill_stash(*s);
}
else
{
Stash newStash(x, y);
newStash.enabled = false;
m_stashes[ newStash.abs_pos() ] = newStash;
}
mpr(en? "I'll no longer ignore what I see on this square."
: "Ok, I'll ignore what I see on this square.");
}
void LevelStashes::add_stash(int x, int y)
{
Stash *s = find_stash(coord_def(x, y));
if (s)
{
s->update();
if (s->empty())
kill_stash(*s);
}
else
{
Stash new_stash(x, y);
if (!new_stash.empty())
m_stashes[ new_stash.abs_pos() ] = new_stash;
}
}
bool LevelStashes::is_current() const
{
return (m_place == level_id::current());
}
std::string LevelStashes::level_name() const
{
return m_place.describe(true, true);
}
std::string LevelStashes::short_level_name() const
{
return m_place.describe();
}
int LevelStashes::_num_enabled_stashes() const
{
int rawcount = m_stashes.size();
if (!rawcount)
return (0);
for (stashes_t::const_iterator iter = m_stashes.begin();
iter != m_stashes.end(); iter++)
{
if (!iter->second.enabled)
--rawcount;
}
return rawcount;
}
void LevelStashes::get_matching_stashes(
const base_pattern &search,
std::vector<stash_search_result> &results) const
{
std::string lplace = "{" + m_place.describe() + "}";
for (stashes_t::const_iterator iter = m_stashes.begin();
iter != m_stashes.end(); iter++)
{
if (iter->second.enabled)
{
stash_search_result res;
if (iter->second.matches_search(lplace, search, res))
{
res.pos.id = m_place;
results.push_back(res);
}
}
}
for (unsigned i = 0; i < m_shops.size(); ++i)
{
stash_search_result res;
if (m_shops[i].matches_search(lplace, search, res))
{
res.pos.id = m_place;
results.push_back(res);
}
}
}
void LevelStashes::_update_corpses(long rot_time)
{
for (stashes_t::iterator iter = m_stashes.begin();
iter != m_stashes.end(); iter++)
{
iter->second._update_corpses(rot_time);
}
}
void LevelStashes::write(std::ostream &os, bool identify) const
{
if (visible_stash_count() == 0)
return;
os << level_name() << std::endl;
for (unsigned i = 0; i < m_shops.size(); ++i)
m_shops[i].write(os, identify);
if (m_stashes.size())
{
const Stash &s = m_stashes.begin()->second;
int refx = s.getX(), refy = s.getY();
std::string levname = short_level_name();
for (stashes_t::const_iterator iter = m_stashes.begin();
iter != m_stashes.end(); iter++)
{
iter->second.write(os, refx, refy, levname, identify);
}
}
os << std::endl;
}
void LevelStashes::save(writer& outf) const
{
// How many stashes on this level?
marshallShort(outf, (short) m_stashes.size());
m_place.save(outf);
// And write the individual stashes
for (stashes_t::const_iterator iter = m_stashes.begin();
iter != m_stashes.end(); iter++)
{
iter->second.save(outf);
}
marshallShort(outf, (short) m_shops.size());
for (unsigned i = 0; i < m_shops.size(); ++i)
m_shops[i].save(outf);
}
void LevelStashes::load(reader& inf)
{
int size = unmarshallShort(inf);
m_place.load(inf);
m_stashes.clear();
for (int i = 0; i < size; ++i)
{
Stash s;
s.load(inf);
if (!s.empty())
m_stashes[ s.abs_pos() ] = s;
}
m_shops.clear();
int shopc = unmarshallShort(inf);
for (int i = 0; i < shopc; ++i)
{
ShopInfo si(0, 0);
si.load(inf);
m_shops.push_back(si);
}
}
std::ostream &operator << (std::ostream &os, const LevelStashes &ls)
{
ls.write(os);
return os;
}
LevelStashes &StashTracker::get_current_level()
{
return (levels[level_id::current()]);
}
LevelStashes *StashTracker::find_level(const level_id &id)
{
stash_levels_t::iterator i = levels.find(id);
return (i != levels.end()? &i->second : NULL);
}
LevelStashes *StashTracker::find_current_level()
{
if (is_level_untrackable())
return (NULL);
return find_level(level_id::current());
}
bool StashTracker::update_stash(const coord_def& c)
{
LevelStashes *lev = find_current_level();
if (lev)
{
bool res = lev->update_stash(c);
if (!lev->stash_count())
remove_level();
return (res);
}
return (false);
}
void StashTracker::remove_level(const level_id &place)
{
levels.erase(place);
}
void StashTracker::no_stash(int x, int y)
{
if (is_level_untrackable())
return ;
LevelStashes ¤t = get_current_level();
current.no_stash(x, y);
if (!current.stash_count())
remove_level();
}
void StashTracker::add_stash(int x, int y, bool verbose)
{
if (is_level_untrackable())
return ;
LevelStashes ¤t = get_current_level();
current.add_stash(x, y);
if (verbose)
{
Stash *s = current.find_stash(coord_def(x, y));
if (s && s->enabled)
mpr("Added stash.");
}
if (!current.stash_count())
remove_level();
}
void StashTracker::dump(const char *filename, bool identify) const
{
std::ofstream outf(filename);
if (outf)
{
write(outf, identify);
outf.close();
}
}
void StashTracker::write(std::ostream &os, bool identify) const
{
os << you.your_name << std::endl << std::endl;
if (!levels.size())
os << " You have no stashes." << std::endl;
else
{
for (stash_levels_t::const_iterator iter = levels.begin();
iter != levels.end(); iter++)
{
iter->second.write(os, identify);
}
}
}
void StashTracker::save(writer& outf) const
{
// Time of last corpse update.
marshallInt(outf, last_corpse_update);
// How many levels have we?
marshallShort(outf, (short) levels.size());
// And ask each level to write itself to the tag
stash_levels_t::const_iterator iter = levels.begin();
for ( ; iter != levels.end(); iter++)
iter->second.save(outf);
}
void StashTracker::load(reader& inf)
{
// Time of last corpse update.
last_corpse_update = unmarshallInt(inf);
int count = unmarshallShort(inf);
levels.clear();
for (int i = 0; i < count; ++i)
{
LevelStashes st;
st.load(inf);
if (st.stash_count())
levels[st.where()] = st;
}
}
void StashTracker::update_visible_stashes(
StashTracker::stash_update_mode mode)
{
if (is_level_untrackable())
return;
LevelStashes *lev = find_current_level();
coord_def c;
for (c.y = crawl_view.glos1.y; c.y <= crawl_view.glos2.y; ++c.y)
for (c.x = crawl_view.glos1.x; c.x <= crawl_view.glos2.x; ++c.x)
{
if (!in_bounds(c) || !you.see_cell(c))
continue;
const dungeon_feature_type grid = grd(c);
if ((!lev || !lev->update_stash(c))
&& mode == ST_AGGRESSIVE
&& (_grid_has_perceived_item(c)
|| !Stash::is_boring_feature(grid)))
{
if (!lev)
lev = &get_current_level();
lev->add_stash(c.x, c.y);
}
if (grid == DNGN_ENTER_SHOP)
get_shop(c);
}
if (lev && !lev->stash_count())
remove_level();
}
#define SEARCH_SPAM_THRESHOLD 400
static std::string lastsearch;
static input_history search_history(15);
std::string StashTracker::stash_search_prompt()
{
std::vector<std::string> opts;
if (!lastsearch.empty())
opts.push_back(
make_stringf("Enter for \"%s\"", lastsearch.c_str()) );
if (level_type_is_stash_trackable(you.level_type)
&& lastsearch != ".")
{
opts.push_back("? for help");
}
std::string prompt_qual =
comma_separated_line(opts.begin(), opts.end(), ", or ", ", or ");
if (!prompt_qual.empty())
prompt_qual = " [" + prompt_qual + "]";
return (make_stringf("Search for what%s? ", prompt_qual.c_str()));
}
class stash_search_reader : public line_reader
{
public:
stash_search_reader(char *buf, size_t sz,
int wcol = get_number_of_cols())
: line_reader(buf, sz, wcol)
{
}
protected:
int process_key(int ch)
{
if (ch == '?' && !pos)
{
*buffer = 0;
return (ch);
}
return line_reader::process_key(ch);
}
};
// helper for search_stashes
class compare_by_distance
{
public:
bool operator()(const stash_search_result& lhs,
const stash_search_result& rhs)
{
if (lhs.player_distance != rhs.player_distance)
{
// Sort by increasing distance
return (lhs.player_distance < rhs.player_distance);
}
else if (lhs.matches != rhs.matches)
{
// Then by decreasing number of matches
return (lhs.matches > rhs.matches);
}
else if (lhs.match != rhs.match)
{
// Then by name.
return (lhs.match < rhs.match);
}
else
return (false);
}
};
// helper for search_stashes
class compare_by_name
{
public:
bool operator()(const stash_search_result& lhs,
const stash_search_result& rhs)
{
if (lhs.match != rhs.match)
{
// Sort by name
return (lhs.match < rhs.match);
}
else if (lhs.player_distance != rhs.player_distance)
{
// Then sort by increasing distance
return (lhs.player_distance < rhs.player_distance);
}
else if (lhs.matches != rhs.matches)
{
// Then by decreasing number of matches
return (lhs.matches > rhs.matches);
}
else
return (false);
}
};
void StashTracker::search_stashes()
{
char buf[400];
this->update_corpses();
stash_search_reader reader(buf, sizeof buf);
bool validline = false;
msgwin_prompt(stash_search_prompt());
while (true)
{
int ret = reader.read_line();
if (!ret)
{
validline = true;
break;
}
else if (ret == '?')
{
show_stash_search_help();
redraw_screen();
}
else
{
break;
}
}
msgwin_reply(validline ? buf : "");
mesclr();
if (!validline || (!*buf && !lastsearch.length()))
return;
std::string csearch = *buf? buf : lastsearch;
std::string help = lastsearch;
lastsearch = csearch;
if (csearch == ".")
{
if (!level_type_is_stash_trackable(you.level_type))
{
mpr("Cannot track items on this level.");
return;
}
#if defined(REGEX_PCRE) || defined(REGEX_POSIX)
#define RE_ESCAPE "\\"
#else
#define RE_ESCAPE ""
#endif
csearch = (RE_ESCAPE "{")
+ level_id::current().describe()
+ (RE_ESCAPE "}");
}
std::vector<stash_search_result> results;
base_pattern *search = NULL;
text_pattern tpat( csearch, true );
search = &tpat;
lua_text_pattern ltpat( csearch );
if (lua_text_pattern::is_lua_pattern(csearch))
search = <pat;
if (!search->valid())
{
mpr("Your search expression is invalid.", MSGCH_PLAIN);
lastsearch = help;
return ;
}
get_matching_stashes(*search, results);
if (results.empty())
{
mpr("Can't find anything matching that.", MSGCH_PLAIN);
return;
}
if (results.size() > SEARCH_SPAM_THRESHOLD)
{
mpr("Too many matches; use a more specific search.", MSGCH_PLAIN);
return;
}
bool sort_by_dist = true;
while (true)
{
const char* sort_style;
if (sort_by_dist)
{
std::sort(results.begin(), results.end(), compare_by_distance());
sort_style = "by dist";
}
else
{
std::sort(results.begin(), results.end(), compare_by_name());
sort_style = "by name";
}
const bool again = display_search_results(results, sort_style);
if (!again)
break;
sort_by_dist = !sort_by_dist;
}
}
void StashTracker::get_matching_stashes(
const base_pattern &search,
std::vector<stash_search_result> &results)
const
{
stash_levels_t::const_iterator iter = levels.begin();
for ( ; iter != levels.end(); iter++)
{
iter->second.get_matching_stashes(search, results);
if (results.size() > SEARCH_SPAM_THRESHOLD)
return;
}
level_id curr = level_id::current();
for (unsigned i = 0; i < results.size(); ++i)
{
int ldist = level_distance(curr, results[i].pos.id);
if (ldist == -1)
ldist = 1000;
results[i].player_distance = ldist;
}
}
class StashSearchMenu : public Menu
{
public:
StashSearchMenu(const char* sort_style_)
: Menu(), can_travel(true),
request_toggle_sort_method(false),
sort_style(sort_style_)
{ }
public:
bool can_travel;
bool request_toggle_sort_method;
const char* sort_style;
protected:
bool process_key(int key);
void draw_title();
};
void StashSearchMenu::draw_title()
{
if (title)
{
cgotoxy(1, 1);
textcolor(title->colour);
cprintf("%d %s%s, sorted %s",
title->quantity, title->text.c_str(),
title->quantity > 1? "es" : "",
sort_style);
draw_title_suffix(formatted_string::parse_string(make_stringf(
"<lightgrey> [<w>a-z</w>: %s <w>?</w>/<w>!</w>: change action <w>/</w>: change sort]",
menu_action == ACT_EXECUTE ? "travel" : "examine")), false);
}
}
bool StashSearchMenu::process_key(int key)
{
if (key == '/')
{
request_toggle_sort_method = true;
return (false);
}
return Menu::process_key(key);
}
// Returns true to request redisplay with a different sort method
bool StashTracker::display_search_results(
std::vector<stash_search_result> &results,
const char* sort_style)
{
if (results.empty())
return (false);
bool travelable = can_travel_interlevel();
StashSearchMenu stashmenu(sort_style);
stashmenu.set_tag("stash");
stashmenu.can_travel = travelable;
stashmenu.action_cycle = Menu::CYCLE_TOGGLE;
stashmenu.menu_action = Menu::ACT_EXECUTE;
std::string title = "match";
MenuEntry *mtitle = new MenuEntry(title, MEL_TITLE);
// Abuse of the quantity field.
mtitle->quantity = results.size();
stashmenu.set_title(mtitle);
// Don't make a menu so tall that we recycle hotkeys on the same page.
if (results.size() > 52
&& (stashmenu.maxpagesize() > 52 || stashmenu.maxpagesize() == 0))
{
stashmenu.set_maxpagesize(52);
}
menu_letter hotkey;
for (unsigned i = 0; i < results.size(); ++i, ++hotkey)
{
stash_search_result &res = results[i];
std::ostringstream matchtitle;
matchtitle << "[" << short_place_name(res.pos.id) << "] "
<< res.match;
if (res.matches > 1 && res.count > 1)
matchtitle << " (+" << (res.matches - 1) << ")";
MenuEntry *me = new MenuEntry(matchtitle.str(), MEL_ITEM, 1, hotkey);
me->data = &res;
if (res.shop && !res.shop->is_visited())
me->colour = CYAN;
stashmenu.add_entry(me);
}
stashmenu.set_flags( MF_SINGLESELECT );
std::vector<MenuEntry*> sel;
while (true)
{
sel = stashmenu.show();
if (stashmenu.request_toggle_sort_method)
return (true);
if (sel.size() == 1
&& stashmenu.menu_action == StashSearchMenu::ACT_EXAMINE)
{
stash_search_result *res =
static_cast<stash_search_result *>(sel[0]->data);
bool dotravel = false;
if (res->shop)
{
dotravel = res->shop->show_menu(res->pos,
can_travel_to(res->pos.id));
}
else if (res->stash)
{
dotravel = res->stash->show_menu(res->pos,
can_travel_to(res->pos.id));
}
if (dotravel && can_travel_to(res->pos.id))
{
redraw_screen();
level_pos lp = res->pos;
if (show_map(lp, true, true, true))
{
start_translevel_travel(lp);
return (false);
}
}
continue;
}
break;
}
redraw_screen();
if (sel.size() == 1 && stashmenu.menu_action == Menu::ACT_EXECUTE)
{
const stash_search_result *res =
static_cast<stash_search_result *>(sel[0]->data);
level_pos lp = res->pos;
if (show_map(lp, true, true, true))
start_translevel_travel(lp);
else
return (true);
}
return (false);
}
void StashTracker::update_corpses()
{
if (you.elapsed_time - last_corpse_update < 20)
return;
const long rot_time = (you.elapsed_time - last_corpse_update) / 20;
last_corpse_update = you.elapsed_time;
for (stash_levels_t::iterator iter = levels.begin();
iter != levels.end(); iter++)
{
iter->second._update_corpses(rot_time);
}
}
//////////////////////////////////////////////
ST_ItemIterator::ST_ItemIterator()
{
m_stash_level_it = StashTrack.levels.begin();
new_level();
//(*this)++;
}
ST_ItemIterator::operator bool() const
{
return (m_item != NULL);
}
const item_def& ST_ItemIterator::operator *() const
{
return (*m_item);
}
const item_def* ST_ItemIterator::operator->() const
{
return (m_item);
}
const level_id &ST_ItemIterator::place()
{
return (m_place);
}
const ShopInfo* ST_ItemIterator::shop()
{
return (m_shop);
}
unsigned ST_ItemIterator::price()
{
return (m_price);
}
const ST_ItemIterator& ST_ItemIterator::operator ++ ()
{
m_item = NULL;
m_shop = NULL;
const LevelStashes &ls = m_stash_level_it->second;
if (m_stash_it == ls.m_stashes.end())
{
if (m_shop_it == ls.m_shops.end())
{
m_stash_level_it++;
if (m_stash_level_it == StashTrack.levels.end())
return (*this);
new_level();
return (*this);
}
m_shop = &(*m_shop_it);
if (m_shop_item_it != m_shop->items.end())
{
const ShopInfo::shop_item &item = *m_shop_item_it++;
m_item = &(item.item);
ASSERT(m_item->defined());
m_price = item.price;
return (*this);
}
m_shop_it++;
if (m_shop_it != ls.m_shops.end())
m_shop_item_it = m_shop_it->items.begin();
++(*this);
}
else
{
if (m_stash_item_it != m_stash_it->second.items.end())
{
m_item = &(*m_stash_item_it++);
ASSERT(m_item->defined());
return (*this);
}
m_stash_it++;
if (m_stash_it == ls.m_stashes.end())
{
++(*this);
return (*this);
}
m_stash_item_it = m_stash_it->second.items.begin();
++(*this);
}
return (*this);
}
void ST_ItemIterator::new_level()
{
m_item = NULL;
m_shop = NULL;
m_price = 0;
if (m_stash_level_it == StashTrack.levels.end())
return;
const LevelStashes &ls = m_stash_level_it->second;
m_place = ls.m_place;
m_stash_it = ls.m_stashes.begin();
if (m_stash_it != ls.m_stashes.end())
{
m_stash_item_it = m_stash_it->second.items.begin();
if (m_stash_item_it != m_stash_it->second.items.end())
{
m_item = &(*m_stash_item_it++);
ASSERT(m_item->defined());
}
}
m_shop_it = ls.m_shops.begin();
if (m_shop_it != ls.m_shops.end())
{
const ShopInfo &si = *m_shop_it;
m_shop_item_it = si.items.begin();
if (m_item == NULL && m_shop_item_it != si.items.end())
{
const ShopInfo::shop_item &item = *m_shop_item_it++;
m_item = &(item.item);
ASSERT(m_item->defined());
m_price = item.price;
m_shop = &si;
}
}
}
ST_ItemIterator ST_ItemIterator::operator ++ (int dummy)
{
const ST_ItemIterator copy = *this;
++(*this);
return (copy);
}
|