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
|
/* $Header: /home/jcb/newmj/RCS/game.c,v 11.8 2002/03/30 22:05:08 jcb Rel $
* game.c
* Routines for manipulating game data structures.
*/
/****************** COPYRIGHT STATEMENT **********************
* This file is Copyright (c) 2000 by J. C. Bradfield. *
* Distribution and use is governed by the LICENCE file that *
* accompanies this file. *
* The moral rights of the author are asserted. *
* *
***************** DISCLAIMER OF WARRANTY ********************
* This code is not warranted fit for any purpose. See the *
* LICENCE file for further information. *
* *
*************************************************************/
static const char rcs_id[] = "$Header: /home/jcb/newmj/RCS/game.c,v 11.8 2002/03/30 22:05:08 jcb Rel $";
#include "game.h"
#include "sysdep.h"
/* This macro implements "tiles are equal, or one is unknown".
It is used to check consistency when handling cmsgs */
#define teq(t1,t2) (t1 == t2 || !t1 || !t2)
/* next seat */
#define nextseat(s) ((s+1)%NUM_SEATS)
#define prevseat(s) ((s+3)%NUM_SEATS)
static void set_danger_flags(Game *g UNUSED, PlayerP p); /* at end */
static void mark_dangerous_discards(Game *g); /* at end */
/* game_id_to_player: return the player with the given id in the given game */
PlayerP game_id_to_player(Game *g,int id) {
int i;
for ( i = 0 ; i < NUM_SEATS ; i++ )
if ( g->players[i]->id == id ) return g->players[i];
return 0;
}
/* game_id_to_seat: convert an id to a seat position */
seats game_id_to_seat(Game *g, int id) {
seats i;
for ( i = 0 ; i < NUM_SEATS ; i++ )
if ( g->players[i]->id == id ) return i;
return -1;
}
/* game_draw_tile: draw a tile from the game's live wall.
Return ErrorTile if no wall.
*/
Tile game_draw_tile(Game *g) {
if ( g->wall.live_used >= g->wall.live_end ) return ErrorTile;
return g->wall.tiles[g->wall.live_used++];
}
/* game_peek_tile: return the next tile from the game's live wall.
Return ErrorTile if no wall.
*/
Tile game_peek_tile(Game *g) {
if ( g->wall.live_used >= g->wall.live_end ) return ErrorTile;
return g->wall.tiles[g->wall.live_used];
}
/* game_draw_loose_tile: draw one of the loose tiles,
or ErrorTile if no wall
*/
Tile game_draw_loose_tile(Game *g) {
if ( game_get_option_value(g,GODeadWall,NULL) && g->wall.dead_end == g->wall.live_end ) return ErrorTile;
/* we have a loose tile; adjust the wall */
g->wall.dead_end--; /* end of dead wall moves back */
if ( game_get_option_value(g,GODeadWall,NULL) ) {
/* Now if we are in the !DeadWall16 (non-Millington case),
extend the dead wall if necessary. It's OK if this
goes past the beginning of the live wall; we'll get
an error on next live draw, which is how we understand it.
(The alternative would be to say there has to be a washout
now, which I don't like.)
*/
if ( !game_get_option_value(g,GODeadWall16,NULL)
&& ( g->wall.dead_end - g->wall.live_end < 13) )
g->wall.live_end -= 2;
/* if we're in the millington case, do nothing */
} else {
/* we're not playing with a dead wall. So the live end moves
back as well */
g->wall.live_end--;
}
return g->wall.tiles[g->wall.dead_end]; /* the tile at the end */
}
/* game_peek_loose_tile: look at next loose tile
or ErrorTile if no wall
*/
Tile game_peek_loose_tile(Game *g) {
if ( game_get_option_value(g,GODeadWall,NULL) ) {
if ( g->wall.dead_end == g->wall.live_end ) return ErrorTile;
} else {
if ( g->wall.dead_end == g->wall.live_used ) return ErrorTile;
}
return g->wall.tiles[g->wall.dead_end-1];
}
/* defines used in the following table */
#define DBL 10000
#define LIM 100000000
static GameOptionEntry default_optiontable[] = {
/* a real option has a name. This is just a filler. */
{ GOUnknown, "" , GOTBool, 1000000, 0, { 0 }, "", 0 },
{ GOTimeout, "Timeout" , GOTNat, 0, 0, { 15 }, "time limit for claims",0 },
{ GOScoreLimit, "ScoreLimit", GOTNat, 0, 0, { 1000 }, "limit on hand score", 0 },
{ GONoLimit, "NoLimit", GOTBool, 0, 0, { 0 }, "no-limit game", 0 },
{ GOMahJongScore, "MahJongScore", GOTScore, 0, 0, { 20 }, "base score for going out", 0 },
{ GOSevenPairs, "SevenPairs", GOTBool, 1020, 0, { 0 }, "seven pairs hand allowed", 0 },
{ GOSevenPairsVal, "SevenPairsVal", GOTScore, 1020, 0, { 20 }, "score for a seven pair hand", 0 },
{ GOFlowers, "Flowers", GOTBool, 1020, 0, { 1 }, "play using flowers and seasons", 0 },
{ GOFlowersLoose, "FlowersLoose", GOTBool, 0, 0, { 0 }, "flowers replaced by loose tiles", 0 },
{ GOFlowersOwnEach, "FlowersOwnEach", GOTScore, 0, 0, { 0 }, "score for each own flower or season", 0 },
{ GOFlowersOwnBoth, "FlowersOwnBoth", GOTScore, 0, 0, { DBL }, "score for own flower and own season", 0 },
{ GOFlowersBouquet, "FlowersBouquet", GOTScore, 0, 0, { DBL }, "score for all four flowers or all four seasons", 0 },
{ GODeadWall, "DeadWall", GOTBool, 1020, 0, { 1 }, "there is a dead wall", 0 },
{ GODeadWall16, "DeadWall16", GOTBool, 1020, 0, { 1 }, "dead wall is 16 tiles, unreplenished", 0 },
{ GOConcealedFully, "ConcealedFully", GOTScore, 0, 0, { DBL }, "score for fully concealed hand", 0 },
{ GOConcealedAlmost, "ConcealedAlmost", GOTScore, 0, 0, { 0 }, "score for almost concealed hand", 0 },
{ GOLosersPurity, "LosersPurity", GOTBool, 0, 0, { 0 }, "losing hands score doubles for pure, concealed etc.", 0 },
{ GOKongHas3Types, "KongHas3Types", GOTBool, 1034, 0, { 0 }, "claimed kongs count as concealed for doubling", 0 },
{ GOEnd, "End" , GOTBool, 0, 0, { 1 }, "end of option list", 0 }
};
GameOptionTable game_default_optiontable =
{ default_optiontable, GONumOptions } ;
/* game_clear_option_table: clear an option table, freeing
the storage */
int game_clear_option_table(GameOptionTable *got)
{
free(got->options);
got->options = NULL;
got->numoptions = 0;
return 0;
}
/* game_copy_option_table: copy old option table into new.
Will refuse to work on new table with existing data.
*/
int game_copy_option_table(GameOptionTable *newt, GameOptionTable *oldt)
{
if (newt->options) {
warn("game_copy_option_table called on non-empty target");
return 0;
}
newt->options = calloc(oldt->numoptions,oldt->numoptions*sizeof(GameOptionEntry));
if ( newt->options == NULL ) {
warn("failed to allocate option table");
return 0;
}
memcpy(newt->options,oldt->options,oldt->numoptions*sizeof(GameOptionEntry));
newt->numoptions = oldt->numoptions;
return 1;
}
/* game_set_options_from_defaults: set the option table to be
a copy of the default, freeing any existing table; mark options
enabled according to the value of g->protversion.
Also convert Nat options to Int if the protocol version is low.
*/
int game_set_options_from_defaults(Game *g) {
int i;
game_clear_option_table(&g->option_table);
g->option_table.options = calloc(GONumOptions,sizeof(GameOptionEntry));
if ( g->option_table.options == NULL ) {
warn("failed to allocate option table");
return 0;
}
memcpy(g->option_table.options,default_optiontable,GONumOptions*sizeof(GameOptionEntry));
g->option_table.numoptions = GONumOptions;
/* now go through the option list marking options enabled */
for ( i=0; i < g->option_table.numoptions; i++ ) {
if ( g->protversion >= g->option_table.options[i].protversion )
g->option_table.options[i].enabled = 1;
/* and convert nat to int */
if ( g->protversion < 1020 && g->option_table.options[i].type == GOTNat )
g->option_table.options[i].type = GOTInt;
}
return 1;
}
/* find an option entry in an option table, searching by integer (if known)
or name (if known) */
GameOptionEntry *game_get_option_entry_from_table(GameOptionTable *t, GameOption option, char *name) {
GameOptionEntry *goe;
int i;
/* usually, the option will be in the right slot, so check for this first */
if ( option && (option < (unsigned int)t->numoptions) && option == t->options[option].option ) return &t->options[option];
/* do we have this option in the table? */
for (i=0; i<t->numoptions; i++) {
goe = &t->options[i];
if ( (option && goe->option == option)
/* we may have options that we don't know about, in which
case we have to check the names */
|| (!(option && goe->option)
&& name && strcmp(goe->name,name) == 0) ) return goe;
}
return NULL;
}
GameOptionEntry *game_get_option_entry(Game *g, GameOption option, char *name) {
return game_get_option_entry_from_table(&g->option_table,option,name);
}
/* find an option entry in the default table, searching by integer (if known)
or name */
GameOptionEntry *game_get_default_option_entry(GameOption option, char *name) {
return game_get_option_entry_from_table(&game_default_optiontable,
option,name);
}
/* see game.h for spec */
void *game_get_option_value(Game *g, GameOption option, char *name)
{
GameOptionEntry *goe = NULL;
if ( g ) goe = game_get_option_entry(g,option,name);
if ( ! goe ) goe = game_get_default_option_entry(option,name);
if ( ! goe ) return 0;
if ( goe->type == GOTString )
return (void *) &goe->value.optstring;
else
return (void *) goe->value.optint;
}
/* game_set_option_in_table: set an option.
Function will allocate space as required. */
int game_set_option_in_table(GameOptionTable *t, GameOptionEntry *e) {
GameOptionEntry *goe = NULL;
int i;
/* do we already have this option in the table? */
for (i=0; i<t->numoptions; i++) {
goe = &t->options[i];
if ( (goe->option && goe->option == e->option)
/* we may have options that we don't know about, in which
case we have to check the names */
|| (goe->option == GOUnknown
&& e->option == GOUnknown
&& strcmp(goe->name,e->name) == 0) ) break;
}
if ( i == t->numoptions ) {
/* allocate more space */
GameOptionEntry *ngoe;
t->numoptions++;
if ( t->options ) {
ngoe = realloc(t->options,t->numoptions*sizeof(GameOptionEntry));
} else {
ngoe = malloc(t->numoptions*sizeof(GameOptionEntry));
}
if ( t == NULL ) {
warn("unable to extend option table");
return 0;
}
t->options = ngoe;
goe = &t->options[i];
/* fill in fields for new option */
goe->option = e->option;
strmcpy(goe->name,e->name,16);
goe->type = e->type;
goe->protversion = e->protversion;
strmcpy(goe->desc,e->desc,128);
goe->userdata = NULL; /* NOT copied */
} else {
/* do a typecheck. */
if ( goe->type != e->type ) {
warn("type clash when setting option");
return 0;
}
}
/* set fields that might have changed */
goe->enabled = e->enabled;
memcpy(goe->value.optstring,e->value.optstring,sizeof(e->value.optstring));
/* don't set description if e has null value */
if ( e->desc[0] ) {
strmcpy(goe->desc,e->desc,128);
}
return 1;
}
int game_set_option(Game *g, GameOptionEntry *e) {
if ( ! game_set_option_in_table(&g->option_table,e) ) {
g->cmsg_err = "Error setting option";
return 0;
}
return 1;
}
/* act on CMsg: see spec in header file */
/* convenience macro to setup s and p for the id */
#define setups p = game_id_to_player(g,m->id); \
s = game_id_to_seat(g,m->id); affected_id = m->id
int game_handle_cmsg(Game *g, CMsgMsg *cm)
{
PlayerP p;
seats s;
int i;
const int chk = g->cmsg_check;
int affected_id;
MJSpecialHandFlags mjspecflags; /* special hands allowed in this game */
affected_id = 0;
mjspecflags = 0;
if ( (int)game_get_option_value(g,GOSevenPairs,NULL) )
mjspecflags |= MJSevenPairs;
switch ( cm->type ) {
case CMsgConnectReply:
{
CMsgConnectReplyMsg *m = (CMsgConnectReplyMsg *)cm;
/* It is assumed here that the game seats point to four player
structures, and that "we" are in the east seat.
Clients are responsible for making sure this is true.
*/
if ( m->id == 0 ) return affected_id; /* connection refused */
set_player_id(g->players[0],m->id);
affected_id = m->id;
return affected_id;
}
case CMsgPlayer:
{
CMsgPlayerMsg *m = (CMsgPlayerMsg *)cm;
/* do we already know this player? */
setups;
if ( p ) set_player_name(p,m->name);
else {
/* find first free player */
p = game_id_to_player(g,0);
if ( ! p ) {
warn("received Player message when table full");
return -1;
}
initialize_player(p);
set_player_id(p,m->id);
set_player_name(p,m->name);
}
}
return affected_id;
case CMsgGame:
{
CMsgGameMsg *m = (CMsgGameMsg *)cm;
PlayerP players[NUM_SEATS];
/* First, we need to rearrange the players so they're in
the given seats */
players[east] = game_id_to_player(g,m->east);
players[south] = game_id_to_player(g,m->south);
players[west] = game_id_to_player(g,m->west);
players[north] = game_id_to_player(g,m->north);
for ( i=0; i < NUM_SEATS; i++ ) {
if ( !players[i] ) {
g->cmsg_err = "Starting game with unknown player";
return -1;
}
g->players[i] = players[i];
}
/* now set the round */
g->round = m->round;
/* and so on */
g->hands_as_east = m->hands_as_east;
g->firsteast = m->firsteast;
set_player_cumulative_score(g->players[east],m->east_score);
set_player_cumulative_score(g->players[south],m->south_score);
set_player_cumulative_score(g->players[west],m->west_score);
set_player_cumulative_score(g->players[north],m->north_score);
/* initialize state */
g->state = HandComplete;
g->player = noseat;
g->serial = 0;
for (i=0;i<NUM_SEATS;i++) g->claims[i] = 0;
g->protversion = m->protversion;
g->manager = m->manager;
game_set_options_from_defaults(g);
}
return affected_id;
case CMsgInfoTiles:
/* Note that this always forces the player into compliance.
It's up to the client not to call this routine when
it's not wanted */
{
CMsgInfoTilesMsg *m = (CMsgInfoTilesMsg *)cm;
setups;
set_player_tiles(p,m->tileinfo);
}
return affected_id;
case CMsgNewRound:
{
CMsgNewRoundMsg *m = (CMsgNewRoundMsg *)cm;
g->round = m->round;
g->hands_as_east = 0; /* superfluous */
}
return affected_id;
case CMsgPause:
{
CMsgPauseMsg *m = (CMsgPauseMsg *)cm;
int i;
seats s;
if ( g->paused ) {
/* it is legitimate to start a new pause before one is complete */
free(g->paused);
}
g->paused = (char *)malloc(strlen(m->reason)+1);
if ( g->paused == NULL ) {
warn("unable to malloc space for pause reason");
return -2;
}
strcpy(g->paused,m->reason);
for ( i=0; i < NUM_SEATS; i++) g->ready[i] = 0;
s = game_id_to_seat(g,m->exempt);
if ( s != noseat ) g->ready[s] = 1;
affected_id = 0; /* affects everybody, really */
}
return affected_id;
case CMsgPlayerReady:
{
CMsgPlayerReadyMsg *m = (CMsgPlayerReadyMsg *)cm;
int i,ready;
setups;
affected_id = m->id;
if ( g->paused ) {
g->ready[s] = 1;
ready = 1;
for ( i=0 ; i < NUM_SEATS; i++ ) ready = (ready && g->ready[i]);
if ( ready ) {
free(g->paused);
g->paused = NULL;
}
}
}
return affected_id;
case CMsgNewHand:
{
CMsgNewHandMsg *m = (CMsgNewHandMsg *)cm;
PlayerP players[NUM_SEATS];
int n;
if ( chk ) {
if ( g->state != HandComplete ) {
g->cmsg_err = "Still playing current hand";
return -1;
}
}
/* If east has changed, reset hands_as_east */
if ( m->east != g->players[east]->id )
g->hands_as_east = 0;
/* first we have to rotate the players so that the current
east is correct. */
for (i=0; i < NUM_SEATS; i++) players[i] = g->players[i];
n = game_id_to_seat(g,m->east);
for (i=0; i < NUM_SEATS; i++) g->players[i] = players[(i+n)%NUM_SEATS];
/* game state */
g->state = Dealing;
/* reset the hand scores and clear the flags */
for ( i = 0 ; i < NUM_SEATS ; i++ ) {
/* Warning: this knows TileWind = seats+1 */
player_newhand(g->players[i],i+1);
}
/* clear game flags */
g->flags = 0;
g->wall.live_used = 0;
g->wall.size = game_get_option_value(g,GOFlowers,NULL) ? 144 : 136;
g->wall.dead_end = g->wall.size;
g->wall.live_end = g->wall.dead_end -
(game_get_option_value(g,GODeadWall,NULL) ? (game_get_option_value(g,GODeadWall16,NULL) ? 16 : 14) : 0) ;
g->serial = 0; /* must be initialized */
for ( i = 0 ; i < MaxTile ; i++ ) g->exposed_tile_count[i] = 0;
}
return affected_id;
case CMsgPlayerDraws:
{
CMsgPlayerDrawsMsg *m = (CMsgPlayerDrawsMsg *)cm;
Tile t;
setups;
affected_id = m->id;
if ( chk ) {
/* can this player draw? */
if ( g->state == Dealing ) {
/* ought to check, but currently don't */
} else if ( g->state == Discarded ) {
seats i;
seats ds = g->player;
/* legal if it's our turn and all claims have
been received */
if ( s != nextseat(ds) ) {
g->cmsg_err = "Drawing out of turn";
return -1;
}
for ( i = 0 ; i < NUM_SEATS ; i++ )
if ( i != ds && g->claims[i] == UnknownClaim ) {
g->cmsg_err = "Drawing before all claims received";
return -1;
}
/* better not be a claim */
for ( i = 0 ; i < NUM_SEATS ; i++ )
if ( i != ds && g->claims[i] > NoClaim ) {
g->cmsg_err = "Somebody has claimed the discard";
return -1;
}
} else if ( g->state == DeclaringSpecials ) {
/* legal if it's our turn and we need a tile */
if ( s != g->player ) {
g->cmsg_err = "Can't draw out of turn";
return -1;
}
if ( g->needs != FromWall ) {
g->cmsg_err = "Don't need a tile now";
return -1;
}
} else if ( g->state == Discarding ) {
/* only legal if we're drawing a replacement for
a special under the rules where this comes
from the live wall */
if ( g->needs != FromWall ) {
g->cmsg_err = "Already drawn or claimed a tile";
return -1;
}
} else {
/* In any other state */
g->cmsg_err = "Can't draw a tile now";
return -1;
}
} /* end of legality checking */
t = game_draw_tile(g);
if ( t == ErrorTile ) {
g->cmsg_err = "Wall exhausted";
return -1;
}
if ( chk && !teq(t,m->tile) ) {
g->cmsg_err = "Drawing tile not the first in wall";
warn(g->cmsg_err);
return -2;
}
/* if this fails, we're in a mess */
if ( ! player_draws_tile(p,m->tile) ) {
g->cmsg_err = "Unexpected failure drawing tile (player)";
warn(g->cmsg_err);
return -2;
}
/* next state of game */
if ( g->state == Dealing ) {
/* if this is east, store the tile */
if ( s == east ) g->tile = m->tile;
/* if deal is complete ... */
if ( g->players[east]->num_concealed == MAX_CONCEALED
&& g->players[south]->num_concealed == MAX_CONCEALED-1
&& g->players[west]->num_concealed == MAX_CONCEALED-1
&& g->players[north]->num_concealed == MAX_CONCEALED-1 ) {
g->state = DeclaringSpecials;
/* g->tile was set before if nec */
g->needs = FromNone;
g->player = east;
g->whence = FromWall;
}
} else {
if ( g->state == Discarded ) {
g->state = Discarding;
}
g->tile = m->tile;
g->needs = FromNone;
g->player = s;
g->whence = FromWall;
g->konging = NotKonging;
}
}
return affected_id;
case CMsgPlayerDrawsLoose:
{
CMsgPlayerDrawsLooseMsg *m = (CMsgPlayerDrawsLooseMsg *)cm;
Tile t;
setups;
affected_id = m->id;
if ( chk ) {
/* can this player draw a loose tile? */
/* can only happen when it's currently our turn */
if ( s != g->player ) {
g->cmsg_err = "Can't draw a loose tile out of turn";
return -1;
} else if ( (g->state == Discarding || g->state == DeclaringSpecials)
&& g->needs == FromLoose ) {
/* OK */
} else {
/* In any other state */
g->cmsg_err = "Can't draw a tile now";
return -1;
}
} /* end of legality checking */
t = game_draw_loose_tile(g);
if ( t == ErrorTile ) {
g->cmsg_err = "Dead wall exhausted";
return -1;
}
if ( chk && !teq(t,m->tile) ) {
g->cmsg_err = "Drawing tile not the first loose tile";
warn(g->cmsg_err);
return -2;
}
/* if this fails, we're in a mess */
if ( ! player_draws_loose_tile(p,m->tile) ) {
g->cmsg_err = "Unexpected failure drawing tile (player)";
warn(g->cmsg_err);
return -2;
}
/* next state of game is unchanged apart from tile info */
g->needs = FromNone;
g->whence = FromLoose;
g->tile = m->tile;
g->konging = NotKonging;
}
return affected_id;
case CMsgPlayerDeclaresSpecial:
{
CMsgPlayerDeclaresSpecialMsg *m = (CMsgPlayerDeclaresSpecialMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* Specials may be declared during the initial phase,
or if it is the player's turn to discard, and at
no other time.
Morever, all rules I've seen say that specials can
only be declared after drawing from the wall. Silly,
but there it is.
Pre-release version didn't have this, so we need
to keep it for compatability.
*/
if ( g->state == DeclaringSpecials
|| (g->state == Discarding
&& (g->protversion < 1010
|| g->whence != FromDiscard) ) ) {
if ( g->player != s ) {
g->cmsg_err = "Can only declare in turn";
return -1;
}
} else {
g->cmsg_err = "Can't discard specials now";
return -1;
}
}
if ( m->tile == HiddenTile ) {
if ( chk && g->state == Discarding ) {
/* this shouldn't happen. Although it's harmless,
we will nonetheless return an error */
g->cmsg_err = "Can't declare blank special now";
return -1;
}
if ( s == north ) {
g->state = Discarding;
g->konging = NotKonging;
g->needs = FromNone;
/* we need to set whence. It could be from loose or wall,
according to what happened during declaring specials.
However, if east is going to go out immediately, it doesn't
matter, since that's a limit anyway. So we just set it to
FromWall.
FIXME: in fact the only reason we need to do this is
because the controller deals itself, rather than passing
cmsgs to the game. Sometime we should fix the controller.
But that probably means making this routine fill in
details of cmsgs: which seems right anyway.
*/
g->whence = FromWall;
g->player = east;
} else {
/* why do we set the state? So that resumption works:
otherwise, there's no cue to enter the ds state */
g->state = DeclaringSpecials;
g->player = nextseat(s);
}
} else {
if ( ! player_declares_special(p,m->tile) ) {
/* This can only fail if the player doesn't
hold the tile */
/* Actually, that's not true. It can also fail
if the "hiddenness" is inconsistent. In this
case, player will scream anyway. */
g->cmsg_err = "Don't have that special";
return -1;
}
if ( game_get_option_value(g,GOFlowersLoose,NULL) )
g->needs = FromLoose;
else
g->needs = FromWall;
g->exposed_tile_count[m->tile]++; /* who's counting specials ? */
}
}
return affected_id;
case CMsgStartPlay:
affected_id = ((CMsgStartPlayMsg *)cm)->id;
g->active = 1;
return affected_id;
case CMsgStopPlay:
g->active = 0;
return affected_id;
case CMsgPlayerDiscards:
{
CMsgPlayerDiscardsMsg *m = (CMsgPlayerDiscardsMsg *)cm;
int nodiscard;
setups;
affected_id = m->id;
if ( chk ) {
/* if it's not time to discard, return error */
if ( ! (g->state == Discarding
&& g->player == s) ) {
g->cmsg_err = "Can't discard now";
return -1;
}
/* players aren't allowed to discard if the game is paused */
if ( g->paused ) {
g->cmsg_err = "Can't discard until everybody's ready";
return -1;
}
/* check legitimacy of calling declaration */
/* must be no sets declared */
if ( m->calling && p->num_concealed < 14 ) {
g->cmsg_err = "Must have concealed hand to declare calling";
return -1;
}
/* multiple calling declarations are silly */
if ( m->calling && pflag(p,Calling) ) {
g->cmsg_err = "Already calling";
return -1;
}
/* at present, only original call allowed */
if ( m->calling && ! pflag(p,NoDiscard) ) {
g->cmsg_err = "Only Original Call declaration allowed";
return -1;
}
/* if player is calling, can only discard the tile drawn.
It is supposed to be impossible for a calling player
to have claimed from a discard; but just as a precaution
we'll check for it and panic. */
if ( pflag(p,Calling) ) {
if ( g->whence == FromDiscard ) {
g->cmsg_err = "Calling player discarding after claim??";
warn("Calling player discarding after claim");
return -2;
}
if ( m->tile != g->tile ) {
g->cmsg_err = "Calling: can't discard that tile";
return -1;
}
}
}
nodiscard = pflag(p,NoDiscard); /* save as will be cleared by this */
if ( ! player_discards(p,m->tile) ) {
g->cmsg_err = "You can't discard that tile";
return -1;
}
g->state = Discarded;
g->player = s;
g->tile = m->tile;
g->serial = m->discard;
for ( i = 0 ; i < NUM_SEATS ; i++ )
g->claims[i] = UnknownClaim;
g->pending = 0;
game_clearflag(g,GFKong);
game_clearflag(g,GFKongUponKong);
game_clearflag(g,GFDangerousDiscard);
game_clearflag(g,GFNoChoice);
if ( m->calling ) {
psetflag(p,Calling);
if ( nodiscard ) { psetflag(p,OriginalCall); }
}
g->exposed_tile_count[m->tile]++;
return affected_id;
}
case CMsgPlayerDoesntClaim:
{
CMsgPlayerDoesntClaimMsg *m = (CMsgPlayerDoesntClaimMsg *)cm;
setups;
affected_id = m->id;
/* because clients might easily send noclaims after
a timeout, we do not return error for bad noclaims.
However, this is a problem for entirely human clients,
if there is no timeout, since then a typo will hang
the game.
FIXME: we should return error if the game does not
have a time out set.
*/
if ( chk ) {
/* noclaim is legitimate while konging */
if ( ! ( (g->state == Discarding
|| g->state == DeclaringSpecials) && g->konging ) ) {
if ( g->state != Discarded ) {
g->cmsg_err = "No discard to pass on";
return affected_id;
}
if ( g->serial != m->discard ) {
g->cmsg_err = "Too late to pass on that discard";
return affected_id;;
}
}
}
/* We should only record this no claim if the discard
serial is correct. (Otherwise it's probably a duplicate
caused by a race condition.)
If it doesn't match, just ignore it, don't return error. */
if ( g->serial == m->discard )
g->claims[s] = NoClaim;
return affected_id;
}
case CMsgDangerousDiscard:
{
CMsgDangerousDiscardMsg *m = (CMsgDangerousDiscardMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( m->discard != g->serial ) {
g->cmsg_err = "Not current discard (dangerous discard message)";
return -1;
}
if ( m->id != g->players[g->supplier]->id ) {
g->cmsg_err = "Dangerous discarder doesn't match supplier";
return -1;
}
}
game_setflag(g,GFDangerousDiscard);
if ( m->nochoice ) game_setflag(g,GFNoChoice);
return affected_id;
}
case CMsgPlayerClaimsPung:
{
CMsgPlayerClaimsPungMsg *m = (CMsgPlayerClaimsPungMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( g->state != Discarded ) {
g->cmsg_err = "Can't pung now";
return -1;
}
if ( g->serial != m->discard ) {
g->cmsg_err = "Too late: next discard has been made";
return -1;
}
if ( g->player == s ) {
g->cmsg_err = "Can't claim own discard!";
return -1;
}
if ( ! player_can_pung(p,g->tile) ) {
g->cmsg_err = "Can't pung that tile";
return -1;
}
if ( pflag(p,Calling) ) {
g->cmsg_err = "Calling players can only claim Mah-Jong";
return -1;
}
} /* end of checking */
g->claims[s] = PungClaim;
return affected_id;
}
case CMsgPlayerClaimsKong:
{
CMsgPlayerClaimsKongMsg *m = (CMsgPlayerClaimsKongMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( g->state != Discarded ) {
g->cmsg_err = "Can't kong now";
return -1;
}
if ( g->serial != m->discard ) {
g->cmsg_err = "Too late: next discard has been made";
return -1;
}
if ( g->player == s ) {
g->cmsg_err = "Can't claim own discard!";
return -1;
}
if ( ! player_can_kong(p,g->tile) ) {
g->cmsg_err = "Can't kong that tile";
return -1;
}
if ( pflag(p,Calling) ) {
g->cmsg_err = "Calling players can only claim Mah-Jong";
return -1;
}
} /* end of checking */
g->claims[s] = KongClaim;
return affected_id;
}
case CMsgPlayerClaimsChow:
{
CMsgPlayerClaimsChowMsg *m = (CMsgPlayerClaimsChowMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( g->state != Discarded ) {
g->cmsg_err = "Can't chow now";
return -1;
}
if ( g->serial != m->discard ) {
g->cmsg_err = "Too late: next discard has been made";
return -1;
}
if ( g->player == s ) {
g->cmsg_err = "Can't claim own discard!";
return -1;
}
if ( s != nextseat(g->player) ) {
g->cmsg_err = "Can't chow out of turn";
return -1;
}
if ( ! player_can_chow(p,g->tile,m->cpos) ) {
g->cmsg_err = "Can't make that chow";
return -1;
}
if ( pflag(p,Calling) ) {
g->cmsg_err = "Calling players can only claim Mah-Jong";
return -1;
}
} /* end of checking */
g->claims[s] = ChowClaim;
g->cpos = m->cpos;
return affected_id;
}
case CMsgPlayerClaimsMahJong:
{
CMsgPlayerClaimsMahJongMsg *m = (CMsgPlayerClaimsMahJongMsg *)cm;
setups;
affected_id = m->id;
if ( g->state == Discarded ) {
if ( chk ) {
if ( g->serial != m->discard ) {
g->cmsg_err = "Too late: next discard has been made";
return -1;
}
if ( g->player == s ) {
g->cmsg_err = "Can't claim own discard!";
return -1;
}
if ( ! player_can_mah_jong(p,g->tile,mjspecflags) ) {
g->cmsg_err = "Can't mah-jong with that tile";
return -1;
}
}
g->claims[s] = MahJongClaim;
} else if ( (g->state == Discarding
|| g->state == DeclaringSpecials)
&& g->konging ) {
/* trying to rob a kong */
/* arguably one should be able to abandon one's kong and
claim mahjong instead. However, at present we have no
provision for retracting other claims, so we don't have it
here either. */
if ( chk ) {
if ( g->serial != m->discard ) {
g->cmsg_err = "Too late: next discard has been made";
return -1;
}
if ( g->player == s ) {
g->cmsg_err = "Can't rob own kong";
return -1;
}
if ( ! player_can_mah_jong(p,g->tile,mjspecflags) ) {
g->cmsg_err = "Can't mah-jong with that tile";
return -1;
}
/* closed kongs can be robbed only for thirteen unique
wonders */
if ( g->konging == DeclaringKong ) {
if ( ! player_can_thirteen_wonders(p,g->tile) ) {
g->cmsg_err = "Can only rob a closed kong for Thirteen Wonders";
return -1;
}
}
/* in principle, we ought to check that the robbee actually
has the kong. However, that would be a consistency error,
and in that case we'll die soon enough anyway! */
}
g->claims[s] = MahJongClaim;
} else {
g->cmsg_err = "Nothing to claim";
return -1;
}
return affected_id;
}
case CMsgClaimDenied:
return affected_id; /* nothing to do */
case CMsgStateSaved:
return affected_id; /* nothing to do */
case CMsgPlayerPairs:
{
CMsgPlayerPairsMsg *m = (CMsgPlayerPairsMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* sanity checking */
/* Note that normally we assume the legality of
the pair was previously checked at claim time */
if ( ! ( g->state == MahJonging
&& g->pending
&& s == g->player ) ) {
g->cmsg_err = "Nothing to pair";
return -1;
}
if ( m->tile != g->tile ) {
g->cmsg_err = "Paired tile isn't discard";
return -2;
}
}
if ( g->state == MahJonging ) {
/* checking is complex: not only must
the player be able make the pair, but it
must then be able to complete the hand */
Player cp;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( ! player_pairs(p,m->tile) ) {
g->cmsg_err = "Can't pair that tile";
return -1;
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "Can't go out with that pair";
copy_player(p,&cp); /* restore status quo */
return -1;
}
g->pending = 0;
if ( chk ) mark_dangerous_discards(g);
} else {
g->cmsg_err = "Nothing to pair";
return -1;
}
return affected_id;
}
/* this is a bit awkward: the discard is exposed, so really
the special set is exposed. But we have no means of
putting a special set into the player's hand.
I think we will rely on the external logic using the
whence game field to distinguish */
case CMsgPlayerSpecialSet:
{
CMsgPlayerSpecialSetMsg *m = (CMsgPlayerSpecialSetMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* sanity checking */
/* Note that normally we assume the legality of
the set was previously checked at claim time */
if ( ! ( g->state == MahJonging
&& g->pending
&& s == g->player ) ) {
g->cmsg_err = "Nothing to claim";
return -1;
}
if ( m->tile != g->tile ) {
g->cmsg_err = "Claimed tile isn't discard";
return -2;
}
}
if ( g->state == MahJonging ) {
/* It is a rule that the special set must be formed last,
and use up all the remaining tiles */
Player cp; int res;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( chk ) {
/* only currently recognized special hand is 13 wonders */
if ( ! player_can_thirteen_wonders(p,g->tile) ) {
g->cmsg_err = "No special hand to form";
return -1;
}
}
/* first we use the given tiles as in a ShowTiles */
res = player_shows_tiles(p,m->tiles);
if ( ! res ) {
/* we are in deep trouble */
g->cmsg_err = "player_shows_tiles failed";
return -2;
}
if ( chk ) {
/* better be the same number of tiles before and after */
if ( p->num_concealed != cp.num_concealed ) {
g->cmsg_err = "Wrong number of tiles in special set";
copy_player(p,&cp); /* restore status quo */
return -1;
}
}
/* now we'll add the discard to the hand */
if ( ! player_draws_tile(p,m->tile) ) {
/* How can this happen ? */
g->cmsg_err = "Error in player_draws_tile";
return -2;
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "No mah jong hand!";
copy_player(p,&cp); /* restore status quo */
return -1;
}
g->pending = 0;
} else {
g->cmsg_err = "Can't declare special set now";
return -1;
}
return affected_id;
}
case CMsgPlayerPungs:
{
CMsgPlayerPungsMsg *m = (CMsgPlayerPungsMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* sanity checking */
/* Note that normally we assume the legality of
the pung was previously checked at claim time */
if ( ! (g->state == Discarded
|| (g->state == MahJonging
&& g->pending
&& g->player == s) ) ) {
g->cmsg_err = "Nothing to pung";
return -1;
}
if ( m->tile != g->tile ) {
g->cmsg_err = "Punged tile isn't discard";
return -2;
}
}
/* what happens now depends on whether this is
a claim for MahJong or not */
if ( g->state == Discarded ) {
if ( ! player_pungs(p,m->tile) ) {
g->cmsg_err = "Can't pung that tile";
return -1;
}
g->state = Discarding;
g->konging = NotKonging;
g->tile = m->tile;
g->needs = FromNone;
g->supplier = g->player;
g->player = s;
g->whence = FromDiscard;
g->exposed_tile_count[m->tile] += 2;
} else if ( g->state == MahJonging ) {
/* checking is more complex: not only must
the player be able make the pung, but it
must then be able to complete the hand */
Player cp;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( ! player_pungs(p,m->tile) ) {
g->cmsg_err = "Can't pung that tile";
return -1;
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "Can't go out with that pung";
copy_player(p,&cp); /* restore status quo */
return -1;
}
g->pending = 0;
} else {
g->cmsg_err = "Nothing to chow";
return -1;
}
if ( chk ) {
mark_dangerous_discards(g);
set_danger_flags(g,p); /* the player may now be dangerous */
}
return affected_id;
}
case CMsgPlayerKongs:
{
CMsgPlayerKongsMsg *m = (CMsgPlayerKongsMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* we'll assume the legality of the claim was checked */
if ( g->state != Discarded ) {
g->cmsg_err = "Nothing to kong";
return -1;
}
}
if ( ! player_kongs(p,m->tile) ) {
g->cmsg_err = "Can't kong that tile";
return -2;
/* This is a consistency error. */
}
g->state = Discarding;
g->needs = FromLoose;
g->supplier = g->player;
g->player = s;
g->konging = NotKonging; /* yes! This is not robbable. */
if ( game_flag(g,GFKong) ) { game_setflag(g,GFKongUponKong); }
game_setflag(g,GFKong);
g->exposed_tile_count[m->tile] += 3;
if ( chk ) set_danger_flags(g,p); /* the player may now be dangerous */
return affected_id;
}
case CMsgPlayerChows:
{
CMsgPlayerChowsMsg *m = (CMsgPlayerChowsMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* sanity checking */
/* Note that normally we assume the legality of
the chow was previously checked at claim time */
if ( ! (g->state == Discarded
|| (g->state == MahJonging
&& g->pending
&& g->player == s) ) ) {
g->cmsg_err = "Nothing to chow";
return -1;
}
if ( m->tile != g->tile ) {
g->cmsg_err = "Chowed tile isn't discard";
return -2;
}
}
/* if the position is AnyPos, then this is addressed
to a successful claimant to tell it to specify the position.
There is therefore nothing to do here,
except set the pending flag.
*/
if ( m->cpos == AnyPos ) {
g->pending = 1;
return affected_id;
}
/* is there a Mah Jong pending? */
if ( g->state == Discarded ) {
if ( ! player_chows(p,m->tile,m->cpos) ) {
g->cmsg_err = "Can't chow that tile that way";
return -1;
}
g->state = Discarding;
g->konging = NotKonging;
g->tile = m->tile;
g->needs = FromNone;
g->supplier = g->player;
g->player = s;
g->whence = FromDiscard;
/* g->exposed_tile_count[m->tile] is unchanged */
switch ( m->cpos ) {
case Lower:
g->exposed_tile_count[m->tile+1]++;
g->exposed_tile_count[m->tile+2]++;
break;
case Middle:
g->exposed_tile_count[m->tile+1]++;
g->exposed_tile_count[m->tile-1]++;
break;
case Upper:
g->exposed_tile_count[m->tile-1]++;
g->exposed_tile_count[m->tile-2]++;
break;
default:
warn(g->cmsg_err = "Impossible chowposition");
return -2;
}
} else if ( g->state == MahJonging ) {
/* checking is more complex: not only must
the player be able make the chow, but it
must then be able to complete the hand */
Player cp;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( ! player_chows(p,m->tile,m->cpos) ) {
g->cmsg_err = "Can't chow that tile that way";
return -1;
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "Can't go out with that chow";
copy_player(p,&cp); /* restore status quo */
return -1;
}
g->pending = 0;
} else {
g->cmsg_err = "Nothing to chow";
return -1;
}
if ( chk ) {
mark_dangerous_discards(g);
set_danger_flags(g,p); /* the player may now be dangerous */
}
return affected_id;
}
case CMsgWashOut:
g->state = HandComplete;
g->player = noseat;
for (i=0;i<NUM_SEATS;i++) g->claims[i] = 0;
return affected_id;
case CMsgPlayerMahJongs:
{
CMsgPlayerMahJongsMsg *m = (CMsgPlayerMahJongsMsg *)cm;
setups;
affected_id = m->id;
if ( m->tile != HiddenTile ) {
/* should be currently in the Discarding state */
if ( chk ) {
if ( ! (g->state == Discarding
&& g->player == s ) ) {
g->cmsg_err = "Don't have a complete hand";
return -1;
}
if ( !player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "Don't have a Mah Jong";
return -1;
}
/* consistency check */
if ( g->tile != HiddenTile
&& m->tile != g->tile ) {
g->cmsg_err = "Tile in mah-jong claim doesn't match drawn tile";
return -2;
}
}
/* g->supplier is unchanged */
/* g->whence is unchanged */
/* g->player is unchanged */
/* g->tile is unchanged */
g->pending = 0;
g->state = MahJonging;
} else {
/* We should be currently in the Discarded state */
if ( chk ) {
if ( ! g->state == Discarded ) {
g->cmsg_err = "No discard to use";
return -1;
}
}
g->supplier = g->player;
g->whence = FromDiscard;
g->player = s;
/* g->tile is unchanged */
g->pending = 1;
g->state = MahJonging;
}
return affected_id;
}
case CMsgPlayerFormsClosedPair:
{
CMsgPlayerFormsClosedPairMsg *m = (CMsgPlayerFormsClosedPairMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( g->state != MahJonging ) {
g->cmsg_err = "Not scoring now";
return -1;
}
}
/* if this is a non-mah-jonging player, it's
easy. */
if ( s != g->player ) {
if ( ! player_forms_closed_pair(p,m->tile) ) {
g->cmsg_err = "Don't have that pair" ;
return -1;
}
} else {
/* checking is complex: not only must
the player be able make the pair, but it
must then be able to complete the hand */
Player cp;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( ! player_forms_closed_pair(p,m->tile) ) {
g->cmsg_err = "Don't have that pair";
return -1;
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "Can't go out with that pair";
copy_player(p,&cp); /* restore status quo */
return -1;
}
if ( p->num_concealed == 0 ) psetflag(p,HandDeclared);
}
return affected_id;
}
case CMsgPlayerFormsClosedSpecialSet:
{
CMsgPlayerFormsClosedSpecialSetMsg *m = (CMsgPlayerFormsClosedSpecialSetMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* sanity checking */
/* Note that normally we assume the legality of
the set was previously checked at claim time */
if ( ! ( g->state == MahJonging
&& s == g->player ) ) {
g->cmsg_err = "Not going out";
return -1;
}
}
if ( g->state == MahJonging ) {
/* It is a rule that the special set must be formed last,
and use up all the remaining tiles */
Player cp; int res;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( chk ) {
/* only currently recognized special hand is 13 wonders */
if ( ! player_can_thirteen_wonders(p,HiddenTile) ) {
g->cmsg_err = "No special hand to form";
return -1;
}
}
/* first we use the given tiles as in a ShowTiles */
res = player_shows_tiles(p,m->tiles);
if ( ! res ) {
/* we are in deep trouble */
g->cmsg_err = "player_shows_tiles failed";
return -2;
}
if ( chk ) {
/* better be the same number of tiles before and after */
if ( p->num_concealed != cp.num_concealed ) {
g->cmsg_err = "Wrong number of tiles in special set";
copy_player(p,&cp); /* restore status quo */
return -1;
}
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "No mah jong hand!";
copy_player(p,&cp); /* restore status quo */
return -1;
}
} else {
g->cmsg_err = "Can't declare special set now";
return -1;
}
return affected_id;
}
case CMsgPlayerFormsClosedPung:
{
CMsgPlayerFormsClosedPungMsg *m = (CMsgPlayerFormsClosedPungMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( g->state != MahJonging ) {
g->cmsg_err = "Not scoring now";
return -1;
}
}
/* if this is a non-mah-jonging player, it's
easy. */
if ( s != g->player ) {
if ( ! player_forms_closed_pung(p,m->tile) ) {
g->cmsg_err = "Don't have that pung" ;
return -1;
}
} else {
/* checking is complex: not only must
the player be able make the pung, but it
must then be able to complete the hand */
Player cp;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( ! player_forms_closed_pung(p,m->tile) ) {
g->cmsg_err = "Don't have that pung";
return -1;
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "Can't go out with that pung";
copy_player(p,&cp); /* restore status quo */
return -1;
}
if ( p->num_concealed == 0 ) psetflag(p,HandDeclared);
}
return affected_id;
}
case CMsgPlayerFormsClosedChow:
{
CMsgPlayerFormsClosedChowMsg *m = (CMsgPlayerFormsClosedChowMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( g->state != MahJonging ) {
g->cmsg_err = "Not scoring now";
return -1;
}
}
/* if this is a non-mah-jonging player, it's
easy. */
if ( s != g->player ) {
if ( ! player_forms_closed_chow(p,m->tile,Lower) ) {
g->cmsg_err = "Don't have that chow" ;
return -1;
}
} else {
/* checking is complex: not only must
the player be able make the chow, but it
must then be able to complete the hand */
Player cp;
if ( chk ) copy_player(&cp,p); /* in case next fails */
if ( ! player_forms_closed_chow(p,m->tile,Lower) ) {
g->cmsg_err = "Don't have that chow";
return -1;
}
if ( chk && ! player_can_mah_jong(p,HiddenTile,mjspecflags) ) {
g->cmsg_err = "Can't go out with that chow";
copy_player(p,&cp); /* restore status quo */
return -1;
}
if ( p->num_concealed == 0 ) psetflag(p,HandDeclared);
}
return affected_id;
}
case CMsgPlayerDeclaresClosedKong:
{
CMsgPlayerDeclaresClosedKongMsg *m = (CMsgPlayerDeclaresClosedKongMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( ! (((g->state == Discarding
&& (g->protversion < 1010 || g->whence != FromDiscard))
|| g->state == DeclaringSpecials)
&& g->player == s ) ) {
g->cmsg_err = "Can't declare a closed kong now";
return -1;
}
/* We have to use the test function here, because
if either kong or tile drawing fails we must
leave the game unchanged */
if ( !player_can_declare_closed_kong(p,m->tile) ) {
g->cmsg_err = "Don't have that kong";
return -1;
}
}
/* This can't fail in the chking case */
player_declares_closed_kong(p,m->tile);
g->needs = FromLoose;
g->konging = DeclaringKong;
g->tile = m->tile;
g->serial = m->discard;
for (i=0;i<NUM_SEATS;i++) g->claims[i] = 0;
g->exposed_tile_count[m->tile] += 4;
if ( chk ) set_danger_flags(g,p); /* the player may now be dangerous */
return affected_id;
}
case CMsgPlayerAddsToPung:
{
CMsgPlayerAddsToPungMsg *m = (CMsgPlayerAddsToPungMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( ! (g->state == Discarding
&& (g->protversion < 1010 || g->whence != FromDiscard)
&& g->player == s ) ) {
g->cmsg_err = "Can't make a kong now";
return -1;
}
/* We have to use the test function here, because
if either kong or tile drawing fails we must
leave the game unchanged */
if ( !player_can_add_to_pung(p,m->tile) ) {
g->cmsg_err = "Don't have the tiles for that kong";
return -1;
}
}
/* This can't fail in the chking case */
player_adds_to_pung(p,m->tile);
g->needs = FromLoose;
g->konging = AddingToPung;
g->tile = m->tile;
g->serial = m->discard;
for (i=0;i<NUM_SEATS;i++) g->claims[i] = 0;
if ( game_flag(g,GFKong) ) { game_setflag(g,GFKongUponKong); }
game_setflag(g,GFKong);
g->exposed_tile_count[m->tile]++ ;
if ( chk ) set_danger_flags(g,p); /* the player may now be dangerous */
/* a kong can be robbed, so is like a discard */
game_clearflag(g,GFDangerousDiscard);
game_clearflag(g,GFNoChoice);
return affected_id;
}
case CMsgCanMahJong:
/* this just a reply to a query, and requires no action */
return affected_id;
case CMsgPlayerRobsKong:
{
CMsgPlayerRobsKongMsg *m = (CMsgPlayerRobsKongMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
if ( ! ((g->state == Discarding
|| g->state == DeclaringSpecials)
&& g->konging ) ) {
g->cmsg_err = "No kong to rob";
return -1;
}
if ( m->tile != g->tile ) {
g->cmsg_err = "Claimed tile doesn't match that of kong";
return -1;
}
if ( ! player_can_mah_jong(p,m->tile,mjspecflags) ) {
g->cmsg_err = "Can't mah-jong with that tile";
return -1;
}
}
/* To rob a kong, we will rob the player, and then move into
the MahJonging state with a pending "discard", since the winning
player needs to say which set it's forming. */
if ( ! player_kong_is_robbed(g->players[g->player],m->tile) ) {
g->cmsg_err = "Victim doesn't have that kong!";
return -1;
}
g->state = MahJonging;
g->whence = FromRobbedKong;
g->needs = FromNone; /* this was set by the AddToPung that we robbed */
g->supplier = g->player;
g->player = s;
g->tile = m->tile;
g->pending = 1;
game_clearflag(g,GFKong);
game_clearflag(g,GFKongUponKong);
return affected_id;
}
case CMsgPlayerShowsTiles:
{
CMsgPlayerShowsTilesMsg *m = (CMsgPlayerShowsTilesMsg *)cm;
setups;
affected_id = m->id;
if ( chk ) {
/* it's not allowed to show tiles twice */
if ( pflag(p,HandDeclared) ) {
g->cmsg_err = "Hand already declared";
return -1;
}
if ( p->num_concealed > 0 ) {
if ( g->state != MahJonging ) {
g->cmsg_err = "Can't reveal your tiles now!";
return -1;
}
if ( s == g->player ) {
g->cmsg_err = "Must finish making your sets";
return -1;
}
}
}
if ( ! player_shows_tiles(p,m->tiles) && chk ) {
g->cmsg_err = "Couldn't show those tiles";
return -1;
}
return affected_id;
}
case CMsgSwapTile:
{
CMsgSwapTileMsg *m = (CMsgSwapTileMsg *)cm;
setups;
affected_id = m->id;
if ( ! player_swap_tile(p,m->oldtile,m->newtile) ) {
g->cmsg_err = p->err;
return -1;
}
return affected_id;
}
case CMsgHandScore:
{
CMsgHandScoreMsg *m = (CMsgHandScoreMsg *)cm;
setups;
affected_id = m->id;
set_player_hand_score(p,m->score);
return affected_id;
}
case CMsgSettlement:
{
CMsgSettlementMsg *m = (CMsgSettlementMsg *)cm;
change_player_cumulative_score(g->players[east],m->east);
change_player_cumulative_score(g->players[south],m->south);
change_player_cumulative_score(g->players[west],m->west);
change_player_cumulative_score(g->players[north],m->north);
g->state = HandComplete;
for ( i=0;i<NUM_SEATS;i++) g->claims[i] = 0;
/* g->player is still correct */
if ( g->player == east ) g->hands_as_east++;
return affected_id;
}
case CMsgError:
/* it is an error to pass this function an error */
g->cmsg_err = "Game shouldn't be given error messages";
return -1;
case CMsgGameOver:
/* nothing to do: up to client */
return affected_id;
case CMsgGameOption:
{
CMsgGameOptionMsg *m = (CMsgGameOptionMsg *)cm;
setups;
if ( chk && g->manager && g->manager != m->id ) {
g->cmsg_err = "Not authorized to set game options";
return -1;
}
if ( game_set_option(g,&m->optentry) == 0 && chk ) {
return -1;
}
return affected_id;
}
case CMsgChangeManager:
{
CMsgChangeManagerMsg *m = (CMsgChangeManagerMsg *)cm;
setups;
if ( chk && g->manager && g->manager != m->id ) {
g->cmsg_err = "Not authorized to change the manager";
return -1;
}
g->manager = m->manager;
return affected_id;
}
case CMsgWall:
{
CMsgWallMsg *m = (CMsgWallMsg *)cm;
int i; int n;
char tn[5];
char *tp;
Tile t;
if ( g->state != HandComplete ) {
g->cmsg_err = "Can only set the wall between hands";
return -1;
}
for ( i = 0, tp = m->wall ; i < MAX_WALL_SIZE ; i++, tp += n ) {
if ( sscanf(tp,"%2s%n",tn,&n) == 0 ) break;
t = tile_decode(tn);
if ( t == ErrorTile ) {
g->cmsg_err = "bad wall in WallMsg";
return -1;
}
g->wall.tiles[i] = t;
}
return 0;
}
case CMsgMessage:
/* nothing to do for us */
return ((CMsgMessageMsg *)cm)->addressee;
case CMsgComment:
return 0;
case CMsgPlayerOptionSet:
/* This should be dealt with by client code, not us */
g->cmsg_err = "Player options are not dealt with by the game";
return -1;
}
/* if we get to here, we were passed a bad CMsg type, which should
be impossible */
warn("Unknown Controller message type %d",cm->type);
return -2;
}
/* this internal function sets the danger signal flags for a player.
It does NOT deal with the DangerEnd flag.
The game argument is currently unused.
It should be called whenever a player declares a set. */
static void set_danger_flags(Game *g UNUSED, PlayerP p) {
int i,s;
int numchows,numpungs,numkongs,allhonours,
allterminals,dragonsets,windsets,
allgreen,allbamboo,allcharacter,allcircle,
allbamboohonour,allcharacterhonour,allcirclehonour;
numchows = 0;
numkongs = 0;
numpungs = 0;
allterminals = 1;
allhonours = 1;
windsets = 0;
dragonsets = 0;
allgreen = 1;
allbamboo = 1;
allcharacter = 1;
allcircle = 1;
allbamboohonour = 1;
allcharacterhonour = 1;
allcirclehonour = 1;
s = p->wind-1; /* player's seat */
presetdflags(p,s); /* clear all flags */
/* go through collecting information.
This is distressingly similar to code in scoring.c */
for ( i = 0; i < MAX_TILESETS; i++ ) {
TileSetP t = (TileSetP) &p->tilesets[i];
if ( t->type == Empty ) continue;
if ( t->type == Chow )
numchows++,allterminals=allhonours=0;
if ( t->type == Pung ) numpungs++;
if ( t->type == Kong ) numkongs++;
dragonsets += is_dragon(t->tile);
windsets += is_wind(t->tile);
switch ( suit_of(t->tile) ) {
case BambooSuit:
allcharacter = allcharacterhonour = 0;
allcircle = allcirclehonour = 0;
switch ( t->type ) {
case Chow:
if ( value_of(t->tile) != 2 ) allgreen = 0;
break;
default:
switch ( value_of(t->tile) ) {
case 1:
case 5:
case 7:
case 9:
allgreen = 0;
default:
;
}
}
break;
case CharacterSuit:
allbamboo = allbamboohonour = 0;
allcircle = allcirclehonour = 0;
allgreen = 0;
break;
case CircleSuit:
allbamboo = allbamboohonour = 0;
allcharacter = allcharacterhonour = 0;
allgreen = 0;
break;
case DragonSuit:
allbamboo = allcharacter = allcircle = 0;
if ( value_of(t->tile) != GreenDragon ) allgreen = 0;
break;
case WindSuit:
allbamboo = allcharacter = allcircle = 0;
allgreen = 0;
break;
default:
warn("Strange suit seen in hand");
}
if ( !is_honour(t->tile) ) allhonours = 0;
if ( !is_terminal(t->tile) ) allterminals = 0;
}
/* now set the flags again */
if ( numpungs+numkongs+numchows >= 3 && allbamboo )
psetdflags(p,s,DangerBamboo);
if ( numpungs+numkongs+numchows >= 3 && allcharacter )
psetdflags(p,s,DangerCharacter);
if ( numpungs+numkongs+numchows >= 3 && allcircle )
psetdflags(p,s,DangerCircle);
if ( windsets >= 3 ) psetdflags(p,s,DangerWind);
if ( dragonsets >= 2 ) psetdflags(p,s,DangerDragon);
if ( numpungs+numkongs+numchows >= 3 && allhonours )
psetdflags(p,s,DangerHonour);
if ( numpungs+numkongs+numchows >= 3 && allgreen )
psetdflags(p,s,DangerGreen);
if ( numpungs+numkongs+numchows >= 3 && allterminals )
psetdflags(p,s,DangerTerminal);
/* This is always set (for convenience); it's not a property of
the player, but of the game as a whole, and will only be applied
if a dangerous discard is made. */
psetdflags(p,s,DangerEnd);
}
/* This internal function sets the flags for the supply of a dangerous
discard. It is called (by handle_cmsg) after a claim has been implemented,
but before the claiming player's danger flags are re-evaluated. */
static void mark_dangerous_discards(Game *g) {
PlayerP p;
unsigned int i;
seats s,sup; /* seat of player, seat of supplier */
Tile t; /* the discard claimed */
unsigned int danger;
int nochoice;
p = g->players[g->player];
s = p->wind-1;
sup = g->supplier;
t = g->tile;
danger = 0;
nochoice = 0;
if ( pdflag(p,s,DangerBamboo)
&& suit_of(t) == BambooSuit ) danger |= DangerBamboo;
if ( pdflag(p,s,DangerCharacter)
&& suit_of(t) == CharacterSuit ) danger |= DangerCharacter;
if ( pdflag(p,s,DangerCircle)
&& suit_of(t) == CircleSuit ) danger |= DangerCircle;
if ( pdflag(p,s,DangerWind)
&& suit_of(t) == WindSuit ) danger |= DangerWind;
if ( pdflag(p,s,DangerDragon)
&& suit_of(t) == DragonSuit ) danger |= DangerDragon;
if ( pdflag(p,s,DangerHonour)
&& is_honour(t) ) danger |= DangerHonour;
if ( pdflag(p,s,DangerTerminal)
&& is_terminal(t) ) danger |= DangerTerminal;
if ( pdflag(p,s,DangerGreen)
&& is_green(t) ) danger |= DangerGreen;
/* End danger is special */
if ( g->wall.live_end - g->wall.live_used <= 4
&& g->exposed_tile_count[t] == 0 ) danger |= DangerEnd;
/* if we've determined that the discard was dangerous,
we now have to see whether the supplier had no choice */
if ( danger && !pflag(g->players[sup],Hidden) ) {
seats i;
int j;
PlayerP psup = g->players[sup];
PlayerP pp;
Tile t;
int dangerous;
nochoice = 1;
for ( j = 0; j < psup->num_concealed ; j++ ) {
t = psup->concealed[j];
dangerous = 0;
for ( i = 0 ; i < NUM_SEATS; i++ ) {
if ( i == sup ) continue;
pp = g->players[i];
if (
( pdflag(pp,i,DangerBamboo) && suit_of(t) == BambooSuit )
|| ( pdflag(pp,i,DangerCharacter) && suit_of(t) == CharacterSuit )
|| ( pdflag(pp,i,DangerCircle) && suit_of(t) == CircleSuit )
|| ( pdflag(pp,i,DangerWind) && suit_of(t) == WindSuit )
|| ( pdflag(pp,i,DangerDragon) && suit_of(t) == DragonSuit )
|| ( pdflag(pp,i,DangerHonour) && is_honour(t) )
|| ( pdflag(pp,i,DangerTerminal) && is_terminal(t) )
|| ( pdflag(pp,i,DangerGreen) && is_green(t) )
|| ( g->wall.live_end - g->wall.live_used <= 4
&& g->exposed_tile_count[t] == 0 )
) dangerous = 1;
}
if ( ! dangerous ) {
nochoice = 0;
break;
}
}
}
if ( danger && ! nochoice ) {
/* The supplier has supplied a dangerous discard without excuse */
psetdflags(p,sup,danger);
/* and this discharges the liability of any other player that
previously made a dangerous discard */
for ( i = 0 ; i < NUM_SEATS ; i++ ) {
if ( i != s && i != sup ) presetdflags(p,i);
}
}
/* set the game danger flag */
if ( danger ) game_setflag(g,GFDangerousDiscard);
if ( danger && nochoice ) game_setflag(g,GFNoChoice);
}
#include "game-enums.c"
|