1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569
|
------------------------------------------------------------------------
r572 | waltervn | 2007-11-18 02:07:07 +0100 (Sun, 18 Nov 2007) | 2 lines
* Updated ChangeLog.
------------------------------------------------------------------------
r571 | waltervn | 2007-11-18 00:38:37 +0100 (Sun, 18 Nov 2007) | 2 lines
* data/sounds/move1.wav: Replaced move sound.
------------------------------------------------------------------------
r570 | waltervn | 2007-11-18 00:19:36 +0100 (Sun, 18 Nov 2007) | 3 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Turned off specular reflection for the
board.
------------------------------------------------------------------------
r569 | krismca | 2007-11-17 04:01:59 +0100 (Sat, 17 Nov 2007) | 2 lines
* Yet more lighting tweaks.
------------------------------------------------------------------------
r568 | krismca | 2007-11-17 01:09:18 +0100 (Sat, 17 Nov 2007) | 2 lines
* Tweaked lighting.
------------------------------------------------------------------------
r567 | waltervn | 2007-11-16 13:48:18 +0100 (Fri, 16 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl.h: Set FPS limit to 60 again.
------------------------------------------------------------------------
r565 | waltervn | 2007-11-15 23:06:42 +0100 (Thu, 15 Nov 2007) | 2 lines
* Created branch for 0.2.
------------------------------------------------------------------------
r564 | krismca | 2007-11-15 19:03:53 +0100 (Thu, 15 Nov 2007) | 2 lines
* Updated UV coords on elements pieces.
------------------------------------------------------------------------
r562 | ljsebald | 2007-11-15 05:42:20 +0100 (Thu, 15 Nov 2007) | 2 lines
* Updated Mac OS X project files and config.h for 0.2.0
------------------------------------------------------------------------
r561 | waltervn | 2007-11-15 00:44:41 +0100 (Thu, 15 Nov 2007) | 2 lines
* Set version to 0.2.0.
------------------------------------------------------------------------
r560 | waltervn | 2007-11-14 20:58:44 +0100 (Wed, 14 Nov 2007) | 1 line
* Added a very basic move sound.
------------------------------------------------------------------------
r559 | waltervn | 2007-11-14 19:48:38 +0100 (Wed, 14 Nov 2007) | 1 line
* Updated pipe routines for win32.
------------------------------------------------------------------------
r558 | waltervn | 2007-11-14 17:47:42 +0100 (Wed, 14 Nov 2007) | 2 lines
* Added error handling of engine not starting or quitting suddenly.
------------------------------------------------------------------------
r557 | waltervn | 2007-11-13 16:53:10 +0100 (Tue, 13 Nov 2007) | 2 lines
* Merged in r435:436 (OS X patch by BlueCrab).
------------------------------------------------------------------------
r556 | waltervn | 2007-11-13 15:14:30 +0100 (Tue, 13 Nov 2007) | 5 lines
* Switching back to size 16 VeraBd, but with 1 pixel spacing between
the characters.
* Changed figurine board colours.
------------------------------------------------------------------------
r555 | waltervn | 2007-11-13 03:08:52 +0100 (Tue, 13 Nov 2007) | 2 lines
* Updated AUTHORS and NEWS.
------------------------------------------------------------------------
r554 | waltervn | 2007-11-13 03:01:44 +0100 (Tue, 13 Nov 2007) | 2 lines
* Added more spacing to config dialog.
------------------------------------------------------------------------
r553 | waltervn | 2007-11-13 02:16:50 +0100 (Tue, 13 Nov 2007) | 4 lines
* New font.
* Turned off shadow of chess pieces in saveload dialog.
------------------------------------------------------------------------
r550 | krismca | 2007-11-12 22:47:31 +0100 (Mon, 12 Nov 2007) | 2 lines
* Fixed the sketch pawn. Tweaked elements piece textures.
------------------------------------------------------------------------
r549 | waltervn | 2007-11-12 22:08:28 +0100 (Mon, 12 Nov 2007) | 2 lines
* Remove texture spin.
------------------------------------------------------------------------
r548 | waltervn | 2007-11-12 20:45:00 +0100 (Mon, 12 Nov 2007) | 2 lines
* Moved pieces and seletor closer to the board.
------------------------------------------------------------------------
r547 | waltervn | 2007-11-12 20:14:14 +0100 (Mon, 12 Nov 2007) | 2 lines
* Removed marble and metal themes.
------------------------------------------------------------------------
r546 | waltervn | 2007-11-12 20:08:43 +0100 (Mon, 12 Nov 2007) | 2 lines
* data/: Changed figurine theme selector.
------------------------------------------------------------------------
r545 | waltervn | 2007-11-12 19:45:02 +0100 (Mon, 12 Nov 2007) | 2 lines
* data/: Updated figurine theme.
------------------------------------------------------------------------
r544 | waltervn | 2007-11-12 18:34:45 +0100 (Mon, 12 Nov 2007) | 2 lines
* Updated classic wooden theme.
------------------------------------------------------------------------
r543 | waltervn | 2007-11-12 05:40:10 +0100 (Mon, 12 Nov 2007) | 2 lines
* data/pieces/classic: Fixed sharp edges.
------------------------------------------------------------------------
r542 | waltervn | 2007-11-12 04:22:20 +0100 (Mon, 12 Nov 2007) | 2 lines
* data/pieces: New classic theme.
------------------------------------------------------------------------
r541 | waltervn | 2007-11-11 19:30:05 +0100 (Sun, 11 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Fixed transparancies (again...).
------------------------------------------------------------------------
r540 | krismca | 2007-11-11 07:41:23 +0100 (Sun, 11 Nov 2007) | 2 lines
* Updated Sketch theme. Add theme sketch author to AUTHORS.
------------------------------------------------------------------------
r539 | waltervn | 2007-11-11 05:43:19 +0100 (Sun, 11 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Fixed lighting of 2D themes.
------------------------------------------------------------------------
r538 | waltervn | 2007-11-11 04:54:24 +0100 (Sun, 11 Nov 2007) | 2 lines
* AUTHORS, src/credits.c: Added Lara.
------------------------------------------------------------------------
r537 | waltervn | 2007-11-11 04:46:54 +0100 (Sun, 11 Nov 2007) | 2 lines
* src/theme.c, data/: Removed low quality themes.
------------------------------------------------------------------------
r536 | waltervn | 2007-11-11 04:04:37 +0100 (Sun, 11 Nov 2007) | 2 lines
* data/boards/: Removed chess board ridge.
------------------------------------------------------------------------
r535 | waltervn | 2007-11-11 00:02:57 +0100 (Sun, 11 Nov 2007) | 3 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Put immediate rendering code back in for
texture spin.
------------------------------------------------------------------------
r534 | waltervn | 2007-11-10 20:56:06 +0100 (Sat, 10 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl.c: Enabled reflections again.
------------------------------------------------------------------------
r533 | waltervn | 2007-11-10 20:51:56 +0100 (Sat, 10 Nov 2007) | 3 lines
* src/ui_sdlgl: Switched back to display lists. Some minor changes
to OpenGL code.
------------------------------------------------------------------------
r532 | waltervn | 2007-11-10 05:45:59 +0100 (Sat, 10 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Use DrawRangeElements.
------------------------------------------------------------------------
r531 | waltervn | 2007-11-10 04:43:51 +0100 (Sat, 10 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Attempt #5.
------------------------------------------------------------------------
r530 | waltervn | 2007-11-10 04:28:43 +0100 (Sat, 10 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Attempt #4.
------------------------------------------------------------------------
r529 | waltervn | 2007-11-10 03:44:26 +0100 (Sat, 10 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Speed-up attempt #3.
------------------------------------------------------------------------
r528 | waltervn | 2007-11-10 03:31:52 +0100 (Sat, 10 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Another speed-up attempt.
------------------------------------------------------------------------
r527 | waltervn | 2007-11-10 02:27:39 +0100 (Sat, 10 Nov 2007) | 6 lines
* src/ui_sdlgl/theme.c: Fixed error printing.
* src/ui_sdlgl_3d.c: Fixed texture spin.
* data/: Added HQ elements theme.
------------------------------------------------------------------------
r526 | waltervn | 2007-11-10 01:27:49 +0100 (Sat, 10 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Now uses vertex arrays.
------------------------------------------------------------------------
r525 | krismca | 2007-11-09 21:42:18 +0100 (Fri, 09 Nov 2007) | 2 lines
* Clipped a fingernail.
------------------------------------------------------------------------
r524 | krismca | 2007-11-09 20:28:14 +0100 (Fri, 09 Nov 2007) | 2 lines
* Toying with lighting. Uh oh!
------------------------------------------------------------------------
r523 | waltervn | 2007-11-09 19:53:57 +0100 (Fri, 09 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Fixed reflection bug.
------------------------------------------------------------------------
r522 | waltervn | 2007-11-09 19:33:16 +0100 (Fri, 09 Nov 2007) | 3 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: More cleanup to the lighting code
(WIP).
------------------------------------------------------------------------
r521 | waltervn | 2007-11-09 18:53:43 +0100 (Fri, 09 Nov 2007) | 4 lines
* data/: Removed border of flat themes.
* src/ui_sdlgl/ui_sdlgl_3d.c: Changed some of the lighting code.
------------------------------------------------------------------------
r520 | waltervn | 2007-11-09 04:28:58 +0100 (Fri, 09 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Move reflected pieces below the board.
------------------------------------------------------------------------
r519 | waltervn | 2007-11-09 04:14:50 +0100 (Fri, 09 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: New light values.
------------------------------------------------------------------------
r517 | waltervn | 2007-11-09 01:17:54 +0100 (Fri, 09 Nov 2007) | 2 lines
* New classic high knight.
------------------------------------------------------------------------
r516 | waltervn | 2007-11-09 00:43:52 +0100 (Fri, 09 Nov 2007) | 2 lines
* data/pieces/classichigh: Set updated.
------------------------------------------------------------------------
r514 | krismca | 2007-11-08 02:55:12 +0100 (Thu, 08 Nov 2007) | 2 lines
* Fixed lighting on 2D boards.
------------------------------------------------------------------------
r513 | krismca | 2007-11-08 02:51:12 +0100 (Thu, 08 Nov 2007) | 2 lines
* Lighting on pieces. Updated bits of Sketch, and selectors.
------------------------------------------------------------------------
r512 | waltervn | 2007-11-07 23:56:38 +0100 (Wed, 07 Nov 2007) | 2 lines
* Added WIP Classic Wooden HQ theme.
------------------------------------------------------------------------
r511 | krismca | 2007-11-06 21:52:11 +0100 (Tue, 06 Nov 2007) | 2 lines
* Selector no longer appears until a key is pressed.
------------------------------------------------------------------------
r510 | krismca | 2007-11-06 21:48:21 +0100 (Tue, 06 Nov 2007) | 2 lines
* Fixed an alpha ordering issue with alpha blended pieces.
------------------------------------------------------------------------
r509 | waltervn | 2007-11-06 01:32:04 +0100 (Tue, 06 Nov 2007) | 3 lines
* Added level and other game options to system config. Make dialog
layout more consistent.
------------------------------------------------------------------------
r508 | waltervn | 2007-11-04 12:52:32 +0100 (Sun, 04 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl.c: Removed "Press any key" message.
------------------------------------------------------------------------
r507 | waltervn | 2007-11-04 04:27:49 +0100 (Sun, 04 Nov 2007) | 3 lines
* src/theme.c, src/include/theme.h: Brought back code from the
initial theme rewrite.
------------------------------------------------------------------------
r506 | waltervn | 2007-11-03 19:53:07 +0100 (Sat, 03 Nov 2007) | 3 lines
* src/audio/sdlmixer.c, src/ui_sdlgl/Makefile.am, src/Makefile.am,
configure.ac: Fixed building without SDL. Closes bug #8928.
------------------------------------------------------------------------
r505 | waltervn | 2007-11-03 16:15:42 +0100 (Sat, 03 Nov 2007) | 4 lines
* src/dreamchess.c, src/gamegui_dialogs/resolution.c,
src/include/gamegui_dialogs.h, src/ui_sdlgl/ui_sdlgl.c: Popup restart
notice.
------------------------------------------------------------------------
r504 | waltervn | 2007-11-03 04:22:28 +0100 (Sat, 03 Nov 2007) | 4 lines
* src/gamegui_dialog/resolution.c, src/include/gamegui_dialogs.c,
src/ui_sdlgl/ui_sdlgl.c: Added startup dialog when reverting to
default video mode.
------------------------------------------------------------------------
r503 | waltervn | 2007-11-03 04:05:57 +0100 (Sat, 03 Nov 2007) | 3 lines
* Added multisampling option. Added error recovery when setting video
mode.
------------------------------------------------------------------------
r502 | waltervn | 2007-11-02 04:36:35 +0100 (Fri, 02 Nov 2007) | 1 line
* src/ui_sdlgl/ui_sdlgl.c: Fixed WM icon on win32.
------------------------------------------------------------------------
r501 | waltervn | 2007-11-02 04:22:29 +0100 (Fri, 02 Nov 2007) | 1 line
* src/ui_sdlgl/ui_sdlgl.c: Only reload textures on win32.
------------------------------------------------------------------------
r500 | waltervn | 2007-11-02 03:43:07 +0100 (Fri, 02 Nov 2007) | 1 line
* src/dreamchess.c: Disabled fullscreen toggle on win32.
------------------------------------------------------------------------
r499 | waltervn | 2007-11-02 03:11:35 +0100 (Fri, 02 Nov 2007) | 2 lines
* src/ui_sdlgl/ui_sdlgl.c: Reorganized the code a little.
------------------------------------------------------------------------
r498 | waltervn | 2007-11-02 00:26:04 +0100 (Fri, 02 Nov 2007) | 3 lines
* src/dreamchess.c, src/ui.h, src/ui_sdlgl/ui_sdlgl.c,
src/ui_sdlgl/system.c: Attempt at getting resizing to work on win32.
------------------------------------------------------------------------
r497 | waltervn | 2007-10-31 17:07:57 +0100 (Wed, 31 Oct 2007) | 2 lines
* Cleanup for release.
------------------------------------------------------------------------
r496 | waltervn | 2007-10-30 00:23:18 +0100 (Tue, 30 Oct 2007) | 3 lines
* Made selector animation use time instead of frames. Fixed texture
spin and lighting options.
------------------------------------------------------------------------
r495 | waltervn | 2007-10-29 00:07:10 +0100 (Mon, 29 Oct 2007) | 3 lines
* src/ui_sdlgl/ui_sdlgl_3d.c: Added autohide of piece selector. Also,
mouse no longer moves selector.
------------------------------------------------------------------------
r494 | waltervn | 2007-10-28 18:41:34 +0100 (Sun, 28 Oct 2007) | 4 lines
* src/theme.c, src/include/theme.h, src/ui_sdlgl/ui_sdlgl.c,
src/ui_sdlgl/theme.c, src/ui_sdlgl/ui_sdlgl.h,
src/ui_sdlgl/ui_sdlgl_3d.c: Revived the piece selector.
------------------------------------------------------------------------
r493 | waltervn | 2007-10-28 03:13:20 +0100 (Sun, 28 Oct 2007) | 4 lines
* src/system_config.c, src/dreamchess.c,
src/gamegui_dialogs/configuration.c, src/include/options.h,
src/options.c: Added engine name to config dialog.
------------------------------------------------------------------------
r492 | waltervn | 2007-10-28 02:08:34 +0100 (Sun, 28 Oct 2007) | 2 lines
* src/dreamchess.c: Fixed command line option handling.
------------------------------------------------------------------------
r491 | waltervn | 2007-10-28 02:18:07 +0200 (Sun, 28 Oct 2007) | 3 lines
* src/ui_sdlgl/theme.c: Look for styles, pieces and boards in user
dir.
------------------------------------------------------------------------
r490 | waltervn | 2007-10-28 01:40:29 +0200 (Sun, 28 Oct 2007) | 2 lines
* src/gamegui_dialogs/resolution.c: Added missing file.
------------------------------------------------------------------------
r489 | waltervn | 2007-10-28 01:39:40 +0200 (Sun, 28 Oct 2007) | 5 lines
* src/gamegui_dialogs/systemopts.c: Renamed to configuration.c
* src/gamegui_dialogs/Makefile.am: Updated.
* src/gamegui_dialogs/resolution.c: Fixed Cancel.
------------------------------------------------------------------------
r488 | waltervn | 2007-10-28 01:32:53 +0200 (Sun, 28 Oct 2007) | 2 lines
* Added resolution settings to configuration dialog.
------------------------------------------------------------------------
r487 | krismca | 2007-10-27 08:52:37 +0200 (Sat, 27 Oct 2007) | 2 lines
* Added set_video to ui driver.
------------------------------------------------------------------------
r486 | krismca | 2007-10-24 02:31:51 +0200 (Wed, 24 Oct 2007) | 3 lines
* Added victory, checkmate and stalemate status messages to UI.
Time to blow out them candles =o
------------------------------------------------------------------------
r485 | waltervn | 2007-10-22 19:22:13 +0200 (Mon, 22 Oct 2007) | 3 lines
* src/audio/sdlmixer.c, src/ui_sdlgl/systemopts_dialog.c: Hooked up
the volume controls.
------------------------------------------------------------------------
r484 | waltervn | 2007-10-22 01:28:51 +0200 (Mon, 22 Oct 2007) | 4 lines
* src/system_config.c, src/include/options.h,
src/include/system_config.h, src/ui_sdlgl/systemopts_dialog.c,
src/options.c: Added option saving.
------------------------------------------------------------------------
r483 | waltervn | 2007-10-21 18:44:38 +0200 (Sun, 21 Oct 2007) | 2 lines
* New config system (WIP).
------------------------------------------------------------------------
r482 | waltervn | 2007-10-18 22:45:56 +0200 (Thu, 18 Oct 2007) | 7 lines
* doc/ogg.txt, doc/vorbis.txt: Added to repository.
* doc/Makefile.am: Updated.
* pkg/win32/dreamchess.nsi: Uninstall old version first.
* README: Updated.
------------------------------------------------------------------------
r481 | waltervn | 2007-10-18 21:57:25 +0200 (Thu, 18 Oct 2007) | 14 lines
* configure.ac, src/Makefile.am: Fixed build problem caused by
removal of mxml.
* COPYRIGHT: Set eol-style to native.
* src/audio/sdlmixer.c: Fixed crash when no music pack is present.
* src/credits.c: Fixed encoding.
* src/theme.c: Load music pack dir from registry on win32.
* src/ui_sdlgl/ui_sdlgl_3d.c: Reverted lighting code (accidental
commit).
------------------------------------------------------------------------
r478 | krismca | 2007-09-14 00:37:29 +0200 (Fri, 14 Sep 2007) | 2 lines
* Added initial system options dialog.
------------------------------------------------------------------------
r477 | waltervn | 2007-09-11 23:35:14 +0200 (Tue, 11 Sep 2007) | 3 lines
* depcomp, missing, install-sh: Removed (can be installed with
autoreconf -i).
------------------------------------------------------------------------
r476 | waltervn | 2007-09-11 18:25:06 +0200 (Tue, 11 Sep 2007) | 3 lines
* Switched to GPL v3. Updated headers and other meta data. Removed
mxml.
------------------------------------------------------------------------
r474 | waltervn | 2007-09-08 01:02:34 +0200 (Sat, 08 Sep 2007) | 10 lines
* src/include/gamegui/dialog.h: Removed SCREEN_BPP.
* src/ui_sdlgl/ui_sdlgl.c, src/ui_sdlgl/ui_sdlgl.h,
src/ui_sdlgl/draw_scene.c, src/ui_sdlgl/ui_sdlgl_3d.c,
src/ui_sdlgl/ui_sdlgl_3d.h: Implemented board reflections.
* data/boards/classic/board.dcm, data/boards/sketch/board.dcm,
data/boards/metal/board.dcm, data/boards/elements/board.dcm: Removed
center quad.
------------------------------------------------------------------------
r472 | waltervn | 2007-09-06 00:32:50 +0200 (Thu, 06 Sep 2007) | 2 lines
* AUTHORS, README: Updated.
------------------------------------------------------------------------
r471 | waltervn | 2007-09-06 00:20:02 +0200 (Thu, 06 Sep 2007) | 2 lines
* src/credits.c: Updated.
------------------------------------------------------------------------
r470 | waltervn | 2007-09-05 23:43:04 +0200 (Wed, 05 Sep 2007) | 3 lines
* src/include/audio.h, src/audio/sdlmixer.c, src/ui_sdlgl/ui_sdlgl.c:
Added stub for "now playing" functionality.
------------------------------------------------------------------------
r469 | waltervn | 2007-09-05 22:33:44 +0200 (Wed, 05 Sep 2007) | 3 lines
* src/include/audio.h, src/audio/sdlmixer.c: Added volume control
functions.
------------------------------------------------------------------------
r468 | krismca | 2007-09-05 22:23:34 +0200 (Wed, 05 Sep 2007) | 2 lines
* Removed callbacks from action/option widgets. Fixed vkeyboard.
------------------------------------------------------------------------
r467 | krismca | 2007-09-05 22:08:32 +0200 (Wed, 05 Sep 2007) | 2 lines
* Dialogs update to the new gamegui signal system.
------------------------------------------------------------------------
r466 | waltervn | 2007-09-03 22:53:49 +0200 (Mon, 03 Sep 2007) | 11 lines
* src/include/gamegui/signal.h, src/lib/gamegui/signal.c: Added.
* src/include/gamegui/widget.h, src/include/gamegui/system.h,
src/libs/gamegui/widget.c, src/libs/gamegui/system.c: Added signal
system.
* src/include/Makefile.am, src/libs/gamegui/Makefile.am: Updated.
* src/include/gamegui/option.h, src/include/gamegui/action.h,
src/libs/gamegui/option.c, src/libs/gamegui/action.c,
src/ui_sdlgl/title_dialog.c: Ported to new signal system.
------------------------------------------------------------------------
r465 | krismca | 2007-08-26 04:33:28 +0200 (Sun, 26 Aug 2007) | 2 lines
* Fixed a bug causing the selector bounce to fail.
------------------------------------------------------------------------
r464 | krismca | 2007-08-26 04:16:44 +0200 (Sun, 26 Aug 2007) | 2 lines
* ui_sdlgl_3d.c: Fixed the sel rotation sticking between themes.
------------------------------------------------------------------------
r463 | krismca | 2007-08-26 04:08:12 +0200 (Sun, 26 Aug 2007) | 2 lines
* Added the selector images. Whoops.
------------------------------------------------------------------------
r462 | krismca | 2007-08-26 04:06:17 +0200 (Sun, 26 Aug 2007) | 2 lines
* Selector theme additions. Texture, bounce, size, drop shadow.
------------------------------------------------------------------------
r461 | krismca | 2007-08-21 21:32:17 +0200 (Tue, 21 Aug 2007) | 2 lines
* theme.c: Removed some printfs.
------------------------------------------------------------------------
r460 | krismca | 2007-08-21 21:30:19 +0200 (Tue, 21 Aug 2007) | 2 lines
* Added abilty to select selector colour. Added a spin effect.
------------------------------------------------------------------------
r459 | krismca | 2007-08-12 00:24:10 +0200 (Sun, 12 Aug 2007) | 2 lines
* AUTHORS: Updated an email address.
------------------------------------------------------------------------
r458 | krismca | 2007-08-11 05:01:24 +0200 (Sat, 11 Aug 2007) | 3 lines
* Fullscreen toggle limited to unix. README updated. Ingame
fullscreen toggle fixed.
------------------------------------------------------------------------
r457 | krismca | 2007-08-11 04:31:08 +0200 (Sat, 11 Aug 2007) | 2 lines
* ui_sdlgl/ui_sdlgl.c: The default theme XML is loaded first.
------------------------------------------------------------------------
r456 | krismca | 2007-08-11 04:11:25 +0200 (Sat, 11 Aug 2007) | 2 lines
* F11 toggles fullscreen. Added A fullscreen toggle to title.
------------------------------------------------------------------------
r451 | waltervn | 2007-08-05 14:58:11 +0200 (Sun, 05 Aug 2007) | 9 lines
* src/audio/sdlmixer.c, src/include/audio.h,
src/ui_sdlgl/ui_sdlgl.c: Play first song at title screen, and songs 2+
in-game.
* src/audio/playlist.c: Allow title, album and artist to be
unspecified in the XML file.
* src/credits.c: Changed date to 2007.
------------------------------------------------------------------------
r450 | waltervn | 2007-07-31 23:58:30 +0200 (Tue, 31 Jul 2007) | 4 lines
* data/sounds: Added (temporary?) sound effects.
* src/dreamchess.c, src/audio/sdlmixer.c, src/include/audio.h: Load
sound effects. Play sound when receiving move from engine.
------------------------------------------------------------------------
r445 | waltervn | 2007-03-27 23:11:12 +0200 (Tue, 27 Mar 2007) | 2 lines
* src/ui_sdlgl/saveload_dialog.c: Added difficulty to dialog.
------------------------------------------------------------------------
r440 | waltervn | 2007-01-01 19:14:10 +0100 (Mon, 01 Jan 2007) | 8 lines
* src/audio/playlist.c, src/audio/playlist.h,
src/audio/sdlmixer.c, src/audio/Makefile.am,
src/include/audio.h: Added music playing code to repository.
* src/theme.c, src/include/theme.h: Added music pack code.
* src/ui_sdlgl/ui_sdlgl.c: Call music functions.
* src/Makefile.am, configure.ac: Updated.
------------------------------------------------------------------------
r439 | krismca | 2006-12-23 00:00:30 +0100 (Sat, 23 Dec 2006) | 2 lines
* Added start of new theme system.
------------------------------------------------------------------------
r438 | waltervn | 2006-12-15 01:50:50 +0100 (Fri, 15 Dec 2006) | 16 lines
* src/dreamchess.c, src/dreamchess.h, src/dreamer/commands.c,
src/dreamer/search.c, src/dreamer/dreamer.c, src/dreamer/dreamer.h:
Added an option to disable quiescence search to make the game easier.
* src/ui_sdlgl/title_dialog.c, src/ui_sdlgl/theme.c,
src/ui_sdlgl/ui_sdlgl.h, src/ui_sdlgl/saveload_dialog.c,
src/ui_sdlgl/xmlsavefile.c: Added the new option to the menu and the
savegames. Cleaned up some of the files in the process.
* src/ui_sdlgl/matrix.c, src/ui_sdlgl/matrix.h: Added to repository.
* src/ui_sdlgl/Makefile.am: Updated for added files.
* src/ui_sdlgl/ui_sdlgl_3d.c: Preliminary code for 3D animation.
* src/credits.c: Added Chris Noll who kindly donated a Dreamcast.
* configure.ac: Added detection code for SDL_Mixer.
------------------------------------------------------------------------
r437 | krismca | 2006-10-31 15:31:08 +0100 (Tue, 31 Oct 2006) | 2 lines
* Moved trivial dialogs out of ui_sdlgl.
------------------------------------------------------------------------
r433 | waltervn | 2006-09-25 04:45:17 +0200 (Mon, 25 Sep 2006) | 2 lines
* configure.ac: Set version to 0.2.0-SVN.
------------------------------------------------------------------------
r432 | waltervn | 2006-09-25 04:41:30 +0200 (Mon, 25 Sep 2006) | 2 lines
Merged revisions 254:431 into HEAD.
------------------------------------------------------------------------
r253 | waltervn | 2006-01-13 00:55:23 +0100 (Fri, 13 Jan 2006) | 14 lines
* src/include/gamegui/hbox.h, src/include/gamegui/vbox.h,
src/include/gamegui/widget.h, src/libs/gamegui/hbox.c,
src/libs/gamegui/vbox.c, src/libs/gamegui/widget.c: Changed
get_focus_pos() to return a gg_rect_t as focus position rather than
a pixel offset.
* src/include/gamegui/viewport.h, src/libs/gamegui/viewport.c: Added
viewport widget.
* src/libs/gamegui/bin.c: Added input() function.
* src/include/gamegui/Makefile.am, src/libs/gamegui/Makefile.am:
Updated for added files.
------------------------------------------------------------------------
r252 | waltervn | 2005-12-30 16:08:57 +0100 (Fri, 30 Dec 2005) | 7 lines
* src/ui_sdlgl.c, src/include/gamegui/widget.h,
src/libs/gamegui/dialog.c, src/libs/gamegui/hbox.c,
src/libs/gamegui/entry.c, src/libs/gamegui/option.c,
src/libs/gamegui/action.c, src/libs/gamegui/vbox.c: Added mouse
click support to gamegui. Implemented mouse click handling for
action, option and entry widgets.
------------------------------------------------------------------------
r251 | waltervn | 2005-12-30 00:18:51 +0100 (Fri, 30 Dec 2005) | 12 lines
* src/ui_sdlgl.c, src/include/gamegui/dialog.h,
src/include/gamegui/hbox.h, src/include/gamegui/entry.h,
src/include/gamegui/option.h, src/include/gamegui/action.h,
src/include/gamegui/vbox.h, src/include/gamegui/widget.h,
src/libs/gamegui/dialog.c, src/libs/gamegui/hbox.c,
src/libs/gamegui/entry.c, src/libs/gamegui/option.c,
src/libs/gamegui/action.c, src/libs/gamegui/vbox.c,
src/libs/gamegui/widget.c: Added a gg_event type to gamegui in
preparation of proper mouse events.
* src/libs/gamegui/dialog.c: Fixed mouse focus position.
------------------------------------------------------------------------
r250 | waltervn | 2005-12-27 00:36:40 +0100 (Tue, 27 Dec 2005) | 4 lines
* src/ui.h, src/ui_sdlgl.c: Added HOME, END and DELETE events.
* src/include/gamegui/entry.h, src/libs/gamegui/entry.c: Finished
(initial) implementation of entry widget.
------------------------------------------------------------------------
r249 | waltervn | 2005-12-26 14:23:46 +0100 (Mon, 26 Dec 2005) | 13 lines
* src/include/gamegui/system.h, src/ui_sdlgl.c,
src/libs/gamegui/dialog.c, src/libs/gamegui/entry.c,
src/libs/gamegui/image.c, src/libs/gamegui/system.c: Corrected some
doc errors. Changed text printing interface; drivers now supply
character images to gamegui.
* src/include/gamegui/clipping.h, src/libs/gamegui/clipping.c: Added
to repostory.
* src/include/gamegui/Makefile.am, src/libs/gamegui/Makefile.am:
Updated for added files.
* src/Makefile.am: Added auxiliary libs as dependencies.
------------------------------------------------------------------------
r248 | waltervn | 2005-11-23 01:01:29 +0100 (Wed, 23 Nov 2005) | 2 lines
* src/ui_sdlgl.c (init_gui): Set title after creating window.
------------------------------------------------------------------------
r247 | waltervn | 2005-11-23 00:40:39 +0100 (Wed, 23 Nov 2005) | 4 lines
* src/ui_sdlgl.c (do_menu): Fixed mixed declarations and code.
* configure.ac: Also check for glu functions in libGL.
------------------------------------------------------------------------
r246 | waltervn | 2005-09-29 11:12:49 +0200 (Thu, 29 Sep 2005) | 2 lines
* src/ui_sdlgl.c: Set icon before creating window.
------------------------------------------------------------------------
r245 | waltervn | 2005-09-29 02:13:22 +0200 (Thu, 29 Sep 2005) | 2 lines
* src/include/gamegui/Makefile.am: Added to repository.
------------------------------------------------------------------------
r244 | waltervn | 2005-09-29 02:05:34 +0200 (Thu, 29 Sep 2005) | 3 lines
* data/icon.png: Added to repository.
* src/ui_sdlgl.c: Set WM icon.
------------------------------------------------------------------------
r243 | waltervn | 2005-09-29 01:47:38 +0200 (Thu, 29 Sep 2005) | 7 lines
* src/include/Makefile.am, Makefile.am, configure.ac: Fixed dist
target.
* desktop/Makefile.am: Cosmetic change.
* data/menu_cursor.png: Removed from repository.
------------------------------------------------------------------------
r242 | waltervn | 2005-09-28 16:23:53 +0200 (Wed, 28 Sep 2005) | 4 lines
* desktop/dreamchess.png, desktop/dreamchess.desktop,
desktop/Makefile.am: Added to repository.
* configure.ac, Makefile.am: Added desktop entry installation.
------------------------------------------------------------------------
r240 | waltervn | 2005-09-28 12:04:47 +0200 (Wed, 28 Sep 2005) | 3 lines
* COPYING: Changed svn:eol-style property to native.
* pkg/win32/dreamchess.nsi: Install COPYING.
------------------------------------------------------------------------
r239 | waltervn | 2005-09-28 10:22:59 +0200 (Wed, 28 Sep 2005) | 5 lines
* doc/lgpl.txt, doc/kos.txt, doc/newlib.txt: Added to repository.
* README: Updated library information.
* pkg/win32/dreamchess.nsi: Install DLLs.
------------------------------------------------------------------------
r238 | waltervn | 2005-09-27 20:08:52 +0200 (Tue, 27 Sep 2005) | 6 lines
* src/win32.rc, src/win32.ico: Added to repository.
* configure.ac, src/Makefile.am: Added icon to Win32 dreamchess
executable.
* pkg/win32/dreamchess.nsi: Added Win32 NSIS installer script.
------------------------------------------------------------------------
r236 | waltervn | 2005-09-26 10:54:39 +0200 (Mon, 26 Sep 2005) | 2 lines
* README, AUTHORS: Set svn:eol-style property to native.
------------------------------------------------------------------------
r235 | waltervn | 2005-09-03 01:14:58 +0200 (Sat, 03 Sep 2005) | 2 lines
* configure.ac: Link with -lglu32 on win32.
------------------------------------------------------------------------
r234 | waltervn | 2005-09-02 00:40:39 +0200 (Fri, 02 Sep 2005) | 11 lines
* src/include/mxml.h, src/libs/mxml/mxml-node.c,
src/libs/mxml/mxml-search.c, src/libs/mxml/mxml-string.c,
src/libs/mxml/mxml-index.c, src/libs/mxml/mxml-attr.c,
src/libs/mxml/mxml-private.c, src/libs/mxml/mxml-set.c,
src/libs/mxml/mxml-entity.c, src/libs/mxml/Makefile.am,
src/libs/mxml/mxml-file.c: Imported Mini-XML library by Michael
Sweet.
* src/include/Makefile.am, src/libs/Makefile.am, src/Makefile.am,
configure.ac: Updated.
------------------------------------------------------------------------
r233 | waltervn | 2005-09-01 02:23:45 +0200 (Thu, 01 Sep 2005) | 6 lines
* src/ui_sdlgl.c, src/ui_sdlgl_3d.c, src/ui_sdlgl_3d.h: Added mouse
support for gameplay and WM quit requests. GLU is now required.
* configure.ac: Added check for GLU.
* README: Renamed 'dreamcast-ports' to 'dreamcast-libs'.
------------------------------------------------------------------------
r232 | waltervn | 2005-08-22 20:42:23 +0200 (Mon, 22 Aug 2005) | 5 lines
* src/ui_sdlgl.c, src/include/gamegui/system.h,
src/libs/gamegui/entry.c, src/libs/gamegui/image.c,
src/libs/gamegui/system.c: Added a get_ticks() function to gamegui
drivers. Now the gamegui library no longer depends on SDL.
------------------------------------------------------------------------
r231 | waltervn | 2005-08-22 04:01:57 +0200 (Mon, 22 Aug 2005) | 3 lines
* src/dreamer/commands.c: Added `white', `black' and `playother'
commands.
------------------------------------------------------------------------
r230 | waltervn | 2005-08-17 05:20:50 +0200 (Wed, 17 Aug 2005) | 6 lines
* src/dreamchess.c, src/dreamchess.h, src/pgn_scanner.l: Added more
error checking to PGN loading. Game is now correctly set up after
loading a PGN file (based on player config settings).
* src/ui_sdlgl.c: Fixed playing as black.
------------------------------------------------------------------------
r229 | waltervn | 2005-08-17 00:45:55 +0200 (Wed, 17 Aug 2005) | 2 lines
* src/ui_sdlgl.c: Fixed move list rendering.
------------------------------------------------------------------------
r228 | waltervn | 2005-08-15 23:31:48 +0200 (Mon, 15 Aug 2005) | 5 lines
* src/dreamchess.c, src/dreamchess.h, src/pgn_parser.y,
src/ui_sdlgl.c: Added experimental PGN loading.
* src/pgn_scanner.l: Fixed crash when parsing second file.
------------------------------------------------------------------------
r227 | waltervn | 2005-08-14 21:32:54 +0200 (Sun, 14 Aug 2005) | 5 lines
* src/history.c: Fixed incorrect PGN syntax in output file.
* src/pgn_scanner.l, src/pgn_parser.y: Added to repository.
* configure.ac, src/Makefile.am: Updated.
------------------------------------------------------------------------
r226 | waltervn | 2005-08-12 21:54:25 +0200 (Fri, 12 Aug 2005) | 2 lines
* src/dir.c: Added win32 implementation of ch_userdir().
------------------------------------------------------------------------
r225 | waltervn | 2005-08-12 05:06:40 +0200 (Fri, 12 Aug 2005) | 15 lines
* src/history.c, src/history.h: Added PGN saving. Code cleanup.
* src/include/gamegui/dialog.h, src/include/gamegui/action.h,
src/include/gamegui/widget.h, src/ui_sdlgl.c,
src/libs/gamegui/dialog.c, src/libs/gamegui/image.c,
src/libs/gamegui/widget.c, src/libs/gamegui/system.c: Code cleanup.
* src/datadir.c, src/datadir.h: Added ch_userdir() to change to
directory for settings, savegames etc. Renamed to src/dir.c and
src/dir.h respectively.
* src/Makefile.am: Updated.
* src/dreamchess.c, src/dreamchess.h: Added game_save() function
(temporary).
------------------------------------------------------------------------
r224 | waltervn | 2005-06-23 01:17:12 +0200 (Thu, 23 Jun 2005) | 18 lines
* src/ui_sdlgl.c, src/include/gamegui/align.h,
src/include/gamegui/dialog.h, src/include/gamegui/hbox.h,
src/include/gamegui/entry.h, src/include/gamegui/option.h,
src/include/gamegui/bin.h, src/include/gamegui/action.h,
src/include/gamegui/vbox.h, src/include/gamegui/label.h,
src/include/gamegui/select.h, src/include/gamegui/image.h,
src/include/gamegui/container.h, src/include/gamegui/widget.h,
src/include/gamegui/system.h, src/include/gamegui/box.h,
src/libs/gamegui/dialog.c, src/libs/gamegui/hbox.c,
src/libs/gamegui/entry.c, src/libs/gamegui/option.c,
src/libs/gamegui/bin.c, src/libs/gamegui/action.c,
src/libs/gamegui/vbox.c, src/libs/gamegui/label.c,
src/libs/gamegui/select.c, src/libs/gamegui/image.c,
src/libs/gamegui/container.c, src/libs/gamegui/widget.c,
src/libs/gamegui/system.c, src/libs/gamegui/box.c,
src/libs/gamegui/align.c: Changed widget library prefix from w_ to
gg_.
------------------------------------------------------------------------
r223 | krismca | 2005-06-15 22:17:02 +0200 (Wed, 15 Jun 2005) | 3 lines
* src/ui_sdlgl.c: Moved the health bars behinf the avatars.
Made the ingame dialogs use textured borders.
------------------------------------------------------------------------
r222 | waltervn | 2005-06-15 21:53:43 +0200 (Wed, 15 Jun 2005) | 3 lines
* src/dreamer/commands.c: Fixed a bug in the handling of pawn
promotion moves.
------------------------------------------------------------------------
r221 | waltervn | 2005-06-15 20:24:45 +0200 (Wed, 15 Jun 2005) | 3 lines
* src/ui_sdlgl.c: Allow for board rotation with Dreamcast analog
stick.
------------------------------------------------------------------------
r220 | waltervn | 2005-06-13 13:53:41 +0200 (Mon, 13 Jun 2005) | 5 lines
* src/lib/gamegui/dialog.c: Borders can now be drawn any size.
* src/ui_sdlgl.c: Brought back the thin borders in-game.
* src/libs/gamegui/image.c, src/ui_sdlgl.c: Fixed image widget.
------------------------------------------------------------------------
r219 | waltervn | 2005-06-13 03:18:19 +0200 (Mon, 13 Jun 2005) | 4 lines
* src/ui_sdlgl.c, src/libs/gamegui/dialog.c,
src/libs/gamegui/system.c, src/include/gamegui/system.h: Make use of
quads with tiled textures in dialog borders.
------------------------------------------------------------------------
r218 | waltervn | 2005-06-12 13:08:09 +0200 (Sun, 12 Jun 2005) | 13 lines
* src/ui_sdlgl.c: Added DC-specific functions to draw quads by
bypassing OpenGL matrix transformations. This fixes the Z-ordering
issues.
* src/libs/gamegui/dialog.c: Draw center of textured dialog
background using a single quad with a tiled image. Removed some
OpenGL code.
* src/ui_sdlgl_3d.c: Fixed several memory-related bugs.
* data/menu_border.png: Removed. Title menu now loads border image
from default theme.
------------------------------------------------------------------------
r217 | waltervn | 2005-06-07 16:32:31 +0200 (Tue, 07 Jun 2005) | 4 lines
* src/ui_sdlgl.c: Removed `Ignoring event' message.
* src/ui_sdlgl_3d.c: Fixed accelerating piece movement.
------------------------------------------------------------------------
r216 | waltervn | 2005-06-07 12:26:50 +0200 (Tue, 07 Jun 2005) | 3 lines
* src/ui_sdlgl.c: Fixed title image. Fixed board not being displayed
on Dreamcast.
------------------------------------------------------------------------
r215 | waltervn | 2005-06-05 22:50:03 +0200 (Sun, 05 Jun 2005) | 21 lines
* src/include/gamegui.h, src/include/gamegui/align.h,
src/include/gamegui/dialog.h, src/include/gamegui/hbox.h,
src/include/gamegui/entry.h, src/include/gamegui/bin.h,
src/include/gamegui/option.h, src/include/gamegui/action.h,
src/include/gamegui/vbox.h, src/include/gamegui/label.h,
src/include/gamegui/select.h, src/include/gamegui/image.h,
src/include/gamegui/container.h, src/include/gamegui/widget.h,
src/include/gamegui/system.h, src/include/gamegui/box.h: Added
header files for seperate widget library, now called libgamegui.
* src/libs/gamegui/dialog.c, src/libs/gamegui/hbox.c,
src/libs/gamegui/entry.c, src/libs/gamegui/option.c,
src/libs/gamegui/bin.c, src/libs/gamegui/action.c,
src/libs/gamegui/vbox.c, src/libs/gamegui/select.c,
src/libs/gamegui/label.c, src/libs/gamegui/image.c,
src/libs/gamegui/container.c, src/libs/gamegui/widget.c,
src/libs/gamegui/system.c, src/libs/gamegui/box.c,
src/libs/gamegui/align.c, src/libs/Makefile.am: Added to repository.
Code was removed from ui_sdlgl.c and put into seperate files.
* src/ui_sdlgl.c: Widget code removed.
* configure.ac, src/Makefile.am, src/libs/Makefile.am: Updated.
------------------------------------------------------------------------
r214 | krismca | 2005-06-02 13:54:22 +0200 (Thu, 02 Jun 2005) | 3 lines
* src/ui_sdlgl.c: Fixed a bug where the title menu didn't refresh
properly when returned to after a game.
------------------------------------------------------------------------
r213 | krismca | 2005-05-19 16:34:23 +0200 (Thu, 19 May 2005) | 3 lines
* src/ui_sdlgl.c, ui_sdlgl_3d.c: Cleaned up the piece movement.
* data/menu_title.png: Added back the star field.
------------------------------------------------------------------------
r212 | krismca | 2005-05-19 15:17:06 +0200 (Thu, 19 May 2005) | 2 lines
* src/ui_sdlgl_3d.c: Fixed the piece animation.
------------------------------------------------------------------------
r211 | krismca | 2005-05-19 15:02:00 +0200 (Thu, 19 May 2005) | 2 lines
* src/ui_sdlgl_3d.c: Tweaked piece motion animation.
------------------------------------------------------------------------
r210 | krismca | 2005-05-19 14:36:13 +0200 (Thu, 19 May 2005) | 2 lines
* src/ui_sdlgl_3d.c: Fixed a Z order problem with 2d mode.
------------------------------------------------------------------------
r209 | krismca | 2005-05-19 14:30:22 +0200 (Thu, 19 May 2005) | 2 lines
* src/ui_sdlgl.c: Fixed a buggy with poll_move.
------------------------------------------------------------------------
r208 | krismca | 2005-05-19 14:27:17 +0200 (Thu, 19 May 2005) | 2 lines
* src/ui_sdlgl.c, ui_sdlgl3d.c: Added piece movement animation.
------------------------------------------------------------------------
r207 | krismca | 2005-05-19 11:23:34 +0200 (Thu, 19 May 2005) | 8 lines
* src/ui_sdlgl.c: Many changes. Move list reversed, added gradient.
Turn time clock added. Piece graphics draw properly
beside the captured piece counts. Z order fixed for
several objects. Text 'type' turned off.
* src/credits.c: Changed Andrew Ball's credited name.
* data/../backdrop.png: Cleaned up.
* data/../pieces.png: Added new avatars.
------------------------------------------------------------------------
r206 | waltervn | 2005-05-19 03:26:00 +0200 (Thu, 19 May 2005) | 2 lines
* src/ui_sdlgl.c: Added basic mouse support to widget system.
------------------------------------------------------------------------
r205 | waltervn | 2005-05-18 09:54:26 +0200 (Wed, 18 May 2005) | 3 lines
* src/ui_sdlgl.c: Reapplied the changes of r202 that accidently got
reverted.
------------------------------------------------------------------------
r204 | krismca | 2005-05-18 03:26:15 +0200 (Wed, 18 May 2005) | 3 lines
* src/ui_sdlgl.c: Yet another ingame UI attempt.
* data/themes/defualt/pieces.png: Aligned white avatar better.
------------------------------------------------------------------------
r203 | krismca | 2005-05-18 02:53:53 +0200 (Wed, 18 May 2005) | 2 lines
* ui_sdlgl.c: Tweaked the ingame ui stuffs yet again.
------------------------------------------------------------------------
r202 | waltervn | 2005-05-18 02:48:58 +0200 (Wed, 18 May 2005) | 2 lines
* src/ui_sdlgl.c: Changed widget hierarchy.
------------------------------------------------------------------------
r201 | krismca | 2005-05-18 00:14:55 +0200 (Wed, 18 May 2005) | 2 lines
* src/ui_sdlgl.c: Tweaked the player info ingame gui stuffs a bit.
------------------------------------------------------------------------
r200 | krismca | 2005-05-17 11:50:01 +0200 (Tue, 17 May 2005) | 2 lines
* src/ui_sdlgl.c: Shrunk the player window.
------------------------------------------------------------------------
r199 | krismca | 2005-05-17 11:32:07 +0200 (Tue, 17 May 2005) | 2 lines
* src/ui_sdlgl.c: Fixed a loading bug.
------------------------------------------------------------------------
r198 | krismca | 2005-05-17 11:25:15 +0200 (Tue, 17 May 2005) | 2 lines
* src/ui_sdlgl.c: Cleaned up the ingame GUI some.
------------------------------------------------------------------------
r197 | krismca | 2005-05-17 10:24:53 +0200 (Tue, 17 May 2005) | 2 lines
* data/menu_border.png: Shrunk the border's width.
------------------------------------------------------------------------
r196 | krismca | 2005-05-17 10:17:53 +0200 (Tue, 17 May 2005) | 3 lines
* src/ui_sdlgl.c: Added transparency to the dialog backs. Fixed text
'typing' im places.
------------------------------------------------------------------------
r195 | krismca | 2005-05-17 09:56:45 +0200 (Tue, 17 May 2005) | 2 lines
* src/ui_sdlgl.c: Added text 'typing' to dialogs.
------------------------------------------------------------------------
r194 | krismca | 2005-05-17 07:05:37 +0200 (Tue, 17 May 2005) | 3 lines
* src/ui_sdlgl.c: Added tiled border and backdrop for dialog.
as well as the required image files.
------------------------------------------------------------------------
r193 | krismca | 2005-05-17 04:01:40 +0200 (Tue, 17 May 2005) | 2 lines
* src/ui_sdlgl.c: Initial dialog border texture stuff.
------------------------------------------------------------------------
r192 | waltervn | 2005-05-16 20:48:11 +0200 (Mon, 16 May 2005) | 2 lines
* src/ui_sdlgl.c: Added container class.
------------------------------------------------------------------------
r191 | waltervn | 2005-05-12 16:16:54 +0200 (Thu, 12 May 2005) | 9 lines
* src/libs/pipe_beos.c: Added a variant of pipe_unix for BeOS that
uses non-blocking read() calls instead of select() to poll the pipe
for incoming data.
* configure.ac, src/libs/Makefile.am: Updated.
* src/dreamchess.c, src/ui_sdlgl.c: Don't change to datadir until
after SDL has been initialized. Works around a weird BeOS CWD problem
related to SDL_Init().
------------------------------------------------------------------------
r190 | waltervn | 2005-05-06 20:06:43 +0200 (Fri, 06 May 2005) | 4 lines
* src/ui_sdlgl.c: Start of container class.
* Makefile.am: Fixed install bug.
------------------------------------------------------------------------
r189 | waltervn | 2005-04-27 13:28:27 +0200 (Wed, 27 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Removed loading of board image (is done seperately
from theme now).
------------------------------------------------------------------------
r188 | waltervn | 2005-04-24 01:11:24 +0200 (Sun, 24 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Added w_alignable.
------------------------------------------------------------------------
r187 | waltervn | 2005-04-23 21:08:13 +0200 (Sat, 23 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Added realtime widget type checking.
------------------------------------------------------------------------
r186 | waltervn | 2005-04-23 19:28:32 +0200 (Sat, 23 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Completed widget conversion to new system.
------------------------------------------------------------------------
r185 | waltervn | 2005-04-23 16:43:49 +0200 (Sat, 23 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Converted vbox and hbox widgets to new system.
------------------------------------------------------------------------
r184 | waltervn | 2005-04-23 15:49:47 +0200 (Sat, 23 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Convert option widget to new system.
------------------------------------------------------------------------
r183 | waltervn | 2005-04-23 14:21:56 +0200 (Sat, 23 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Converted image and action widgets to new system.
------------------------------------------------------------------------
r182 | waltervn | 2005-04-23 03:04:42 +0200 (Sat, 23 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Start of new widget class system.
------------------------------------------------------------------------
r181 | krismca | 2005-04-21 03:58:15 +0200 (Thu, 21 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Added 'health' bars.
------------------------------------------------------------------------
r180 | waltervn | 2005-04-21 03:01:06 +0200 (Thu, 21 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Fixed bug in render functions of vbox and hbox
widgets. Evenly space out vkeyboard dialog.
------------------------------------------------------------------------
r179 | krismca | 2005-04-21 02:25:45 +0200 (Thu, 21 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Fixed up the vkeyboard some.
------------------------------------------------------------------------
r178 | waltervn | 2005-04-21 01:51:02 +0200 (Thu, 21 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Bug fix involving uninitialized variable in vbox
and hbox widget's input functions.
------------------------------------------------------------------------
r177 | waltervn | 2005-04-20 22:58:57 +0200 (Wed, 20 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Fixed bug in filling of list of available chess
piece and board sets.
------------------------------------------------------------------------
r176 | waltervn | 2005-04-20 21:48:45 +0200 (Wed, 20 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Several bug fixes related to focus setting.
------------------------------------------------------------------------
r175 | waltervn | 2005-04-20 20:53:28 +0200 (Wed, 20 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Added coordinate-based focus setting in dialogs.
------------------------------------------------------------------------
r174 | waltervn | 2005-04-20 14:17:51 +0200 (Wed, 20 Apr 2005) | 4 lines
* src/ui_sdlgl.c: Hooked up the vkeyboard dialog. Selected key is
now fed to currently open dialog. Changed vkeyboard toggle key to
CTRL-K, and FPS toggle key to CTRL-F.
------------------------------------------------------------------------
r173 | krismca | 2005-04-20 02:02:13 +0200 (Wed, 20 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Started the vkeyboard dialog.
------------------------------------------------------------------------
r172 | waltervn | 2005-04-19 23:08:13 +0200 (Tue, 19 Apr 2005) | 3 lines
* src/ui_sdlgl_3d.c: Fixed textures upside-down bug.
* data/pieces/figurine/flat.dcm: Flipped texture.
------------------------------------------------------------------------
r171 | waltervn | 2005-04-19 02:51:56 +0200 (Tue, 19 Apr 2005) | 3 lines
* src/ui.h, src/ui_sdlgl.c: Use unicode values of SDL keyboard
events (currently broken on Dreamcast).
------------------------------------------------------------------------
r170 | waltervn | 2005-04-18 20:14:57 +0200 (Mon, 18 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Allocated sizes of widgets are no longer passed
via the render() function. Added widget size override function.
------------------------------------------------------------------------
r169 | waltervn | 2005-04-18 15:44:55 +0200 (Mon, 18 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Draw box around text entry widget. Converted part
of the widgets to use the new set_size() method.
------------------------------------------------------------------------
r168 | waltervn | 2005-04-17 22:27:08 +0200 (Sun, 17 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Use blinking cursor in text entry widget. Added
`bouncy' property to text widgets.
------------------------------------------------------------------------
r167 | waltervn | 2005-04-17 14:59:19 +0200 (Sun, 17 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Small cosmetic change to entry widget.
------------------------------------------------------------------------
r166 | waltervn | 2005-04-17 14:00:38 +0200 (Sun, 17 Apr 2005) | 2 lines
* src/ui.h, src/ui_sdlgl.c: Added text entry widget (not finished).
------------------------------------------------------------------------
r165 | waltervn | 2005-04-17 01:27:45 +0200 (Sun, 17 Apr 2005) | 4 lines
* src/ui_sdlgl.c, src/ui.h: Added characters to ui_event_t.
* src/ui_sdlgl_3d.c: Fixed Dreamcast lighting bug.
------------------------------------------------------------------------
r164 | waltervn | 2005-04-16 20:32:38 +0200 (Sat, 16 Apr 2005) | 3 lines
* src/ui.h, src/ui_sdlgl.c: Dialog system now uses abstract events
instead of SDL events.
------------------------------------------------------------------------
r162 | waltervn | 2005-04-16 15:47:56 +0200 (Sat, 16 Apr 2005) | 5 lines
* data/pieces/figurine/*: Added figurine set.
* Makefile.am: Updated.
* src/ui_sdlgl_3d.c: Special handling of 2D chess sets.
------------------------------------------------------------------------
r161 | waltervn | 2005-04-16 01:48:31 +0200 (Sat, 16 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Added board selection.
------------------------------------------------------------------------
r160 | waltervn | 2005-04-16 01:37:15 +0200 (Sat, 16 Apr 2005) | 11 lines
* data/pieces/classiclow: Renamed directory.
* data/boards/classic/board.dcm, data/boards/classic/board.png:
Moved board into own directory.
* src/ui_sdlgl.c, src/ui_sdlgl_3d.c, src/ui_sdlgl_3d.h: Added chess
set selection.
* data/Makefile.am: Removed from repository.
* configure.ac: Updated.
* Makefile.am: Added new directories.
------------------------------------------------------------------------
r159 | waltervn | 2005-04-16 01:01:32 +0200 (Sat, 16 Apr 2005) | 2 lines
* data/pieces/classicl: Moved pieces into own directory.
------------------------------------------------------------------------
r158 | waltervn | 2005-04-15 20:58:36 +0200 (Fri, 15 Apr 2005) | 6 lines
* src/ui_sdlgl_3d.c: Some Dreamcast speed hacks.
* configure.ac: Small fix.
* data/themes/default/*.dcm: Low polygon models.
------------------------------------------------------------------------
r156 | waltervn | 2005-04-15 02:28:42 +0200 (Fri, 15 Apr 2005) | 2 lines
* src/dcm_export.py: Moved from dreamchess to tools.
------------------------------------------------------------------------
r153 | waltervn | 2005-04-14 12:07:31 +0200 (Thu, 14 Apr 2005) | 2 lines
* Changed repository layout to allow tools to be stored seperately.
------------------------------------------------------------------------
r152 | waltervn | 2005-04-11 23:04:12 +0200 (Mon, 11 Apr 2005) | 2 lines
* src/ui_sdlgl_3d.c: Fixed lighting of black pieces.
------------------------------------------------------------------------
r151 | waltervn | 2005-04-11 14:42:18 +0200 (Mon, 11 Apr 2005) | 2 lines
* src/ui_sdlgl_3d.c: Light now moves with camera.
------------------------------------------------------------------------
r150 | waltervn | 2005-04-10 23:37:08 +0200 (Sun, 10 Apr 2005) | 3 lines
* src/ui_sdlgl_3d.c, data/themes/default/*.dcm: Switched to
triangle-stripped models.
------------------------------------------------------------------------
r149 | waltervn | 2005-04-09 17:19:44 +0200 (Sat, 09 Apr 2005) | 5 lines
* src/ui_sdlgl_3d.h: Added to repository.
* src/Makefile.am: Updated.
* data/themes/default/cursor.png: Removed from repository.
* src/ui_sdlgl.c, src/ui_sdlgl_3d.c: Implemented simple selector.
------------------------------------------------------------------------
r148 | waltervn | 2005-04-09 14:22:00 +0200 (Sat, 09 Apr 2005) | 3 lines
* src/ui_sdlgl.c: Added missing #include <math.h>. Use 'copy' of
gluPerspective on all targets.
------------------------------------------------------------------------
r147 | waltervn | 2005-04-09 01:48:22 +0200 (Sat, 09 Apr 2005) | 4 lines
* src/ui_sdlgl_3d.c: Rotate the black pieces to make them face the
right way. (And a correction: rotate board with left ctrl, not left
shift.)
------------------------------------------------------------------------
r146 | waltervn | 2005-04-09 01:40:13 +0200 (Sat, 09 Apr 2005) | 3 lines
* src/ui_sdlgl.c, src/ui_sdlgl_3d.c: Added board rotation (use left
shift + arrow keys).
------------------------------------------------------------------------
r145 | waltervn | 2005-04-08 16:40:34 +0200 (Fri, 08 Apr 2005) | 6 lines
* tools/dcm_export.py: Fixed bug related to models with quads.
* src/ui_sdlgl_3d.c: Added board rendering.
* data/themes/default/board.dcm: Added to repository.
* data/themes/default/set.cfg: Added board to list.
------------------------------------------------------------------------
r144 | waltervn | 2005-04-08 13:54:31 +0200 (Fri, 08 Apr 2005) | 12 lines
* tools/dcm_export.py: Removed texture name from model files.
* src/ui_sdlgl_3d.c: Added to repository.
* src/Makefile.am: Updated.
* src/ui_sdlgl.c, src/dreamchess.c: Initial implementation of 3D
board view.
* data/themes/default/*.dcm: Added models to repository.
* data/themes/default/white.png, data/themes/default/black.png:
Added to repository.
* data/themes/default/set.cfg: Added to repository.
------------------------------------------------------------------------
r143 | waltervn | 2005-04-07 01:01:09 +0200 (Thu, 07 Apr 2005) | 3 lines
* tools/Makefile.am, tools/dcm_export.py: Added blender export
script for our model format.
------------------------------------------------------------------------
r142 | waltervn | 2005-04-01 22:54:05 +0200 (Fri, 01 Apr 2005) | 2 lines
* src/ui_sdlgl.c, src/ui.h: Added message dialog.
------------------------------------------------------------------------
r141 | waltervn | 2005-04-01 16:04:20 +0200 (Fri, 01 Apr 2005) | 3 lines
* src/ui.h, src/dreamchess.c, src/ui_sdlgl.c: Fixed segfault related
to game result and history browsing.
------------------------------------------------------------------------
r140 | waltervn | 2005-04-01 13:46:36 +0200 (Fri, 01 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Created new victory dialog.
------------------------------------------------------------------------
r139 | waltervn | 2005-04-01 02:04:10 +0200 (Fri, 01 Apr 2005) | 2 lines
* src/ui_sdlgl.c: Hooked up promotion dialog.
------------------------------------------------------------------------
r138 | waltervn | 2005-03-31 17:22:32 +0200 (Thu, 31 Mar 2005) | 8 lines
* src/ui_sdlgl.c: Added some widget destroy functions.
* src/libs/san.y: Renamed to san_parse.y to avoid name collision of
autogenerated header file with src/include/san.h.
* src/libs/Makefile.am: Updated.
* src/credits.c: Use PACKAGE_VERSION instead of VERSION.
------------------------------------------------------------------------
r137 | waltervn | 2005-03-31 02:27:24 +0200 (Thu, 31 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Improved option widget. Added image widget.
------------------------------------------------------------------------
r136 | waltervn | 2005-03-30 21:14:02 +0200 (Wed, 30 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Improved option widget.
------------------------------------------------------------------------
r135 | waltervn | 2005-03-30 13:32:54 +0200 (Wed, 30 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Implemented hbox and vbox widgets.
------------------------------------------------------------------------
r134 | waltervn | 2005-03-28 01:56:50 +0200 (Mon, 28 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Converted part of the dialogs to the new system.
------------------------------------------------------------------------
r133 | waltervn | 2005-03-26 18:10:38 +0100 (Sat, 26 Mar 2005) | 2 lines
* src/include/Makefile.am, src/credits.c: Only display VERSION.
------------------------------------------------------------------------
r132 | waltervn | 2005-03-26 18:05:12 +0100 (Sat, 26 Mar 2005) | 3 lines
* src/include/Makefile.am, src/credits.c: Added version number to
credits.
------------------------------------------------------------------------
r131 | waltervn | 2005-03-26 02:33:17 +0100 (Sat, 26 Mar 2005) | 2 lines
* src/ui_sdlgl.c: First part of new dialog creation code.
------------------------------------------------------------------------
r130 | waltervn | 2005-03-25 13:09:01 +0100 (Fri, 25 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Removed labels from widgets.
------------------------------------------------------------------------
r129 | waltervn | 2005-03-24 23:06:23 +0100 (Thu, 24 Mar 2005) | 2 lines
* src/ui_sdlg.c: Updated comments.
------------------------------------------------------------------------
r128 | waltervn | 2005-03-23 00:51:17 +0100 (Wed, 23 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Removed superfluous documentation.
------------------------------------------------------------------------
r127 | waltervn | 2005-03-23 00:40:35 +0100 (Wed, 23 Mar 2005) | 2 lines
* src/ui_sdlgl.c: More documentation.
------------------------------------------------------------------------
r126 | waltervn | 2005-03-21 16:15:37 +0100 (Mon, 21 Mar 2005) | 4 lines
* src/dreamer/eval.c: C89 fix.
* src/ui_sdlgl.c: First part of documentation.
------------------------------------------------------------------------
r125 | waltervn | 2005-03-19 22:05:30 +0100 (Sat, 19 Mar 2005) | 2 lines
* src/ui_sdlgl.c: New widget system.
------------------------------------------------------------------------
r124 | waltervn | 2005-03-16 19:56:28 +0100 (Wed, 16 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Menus can now be positioned.
------------------------------------------------------------------------
r123 | waltervn | 2005-03-16 00:22:57 +0100 (Wed, 16 Mar 2005) | 2 lines
* src/ui_sdlgl.c: Added FPS counter (toggle with 'f' key).
------------------------------------------------------------------------
r122 | waltervn | 2005-03-15 20:07:11 +0100 (Tue, 15 Mar 2005) | 3 lines
* src/ui_sdlgl.c: Changed bouncy text animation from frame-based to
timer-based. Removed some unused code.
------------------------------------------------------------------------
r121 | waltervn | 2005-03-15 12:07:02 +0100 (Tue, 15 Mar 2005) | 2 lines
* src/ui_sdlgl.c: New code for controlling FPS.
------------------------------------------------------------------------
r120 | waltervn | 2005-03-15 00:40:24 +0100 (Tue, 15 Mar 2005) | 5 lines
* src/dreamer/commands.c: Ignore `sd' command when argument is below
1.
* src/ui_sdlgl.c: Fixed title menu.
------------------------------------------------------------------------
r119 | waltervn | 2005-03-14 10:38:53 +0100 (Mon, 14 Mar 2005) | 7 lines
* src/dreamer/dreamer.c: Use snooze() instead of usleep() on BeOS.
* src/dreamer/search.c, src/ui_sdlgl.c, src/dreamchess.c,
src/board.c: Removed mid-scope variable declarations.
* autogen.sh: Removed version numbers.
------------------------------------------------------------------------
r118 | waltervn | 2005-03-14 03:07:46 +0100 (Mon, 14 Mar 2005) | 3 lines
* src/ui_sdlgl.c: Removed use of flexible arrays in structs, this is
a C99 feature.
------------------------------------------------------------------------
r117 | waltervn | 2005-03-11 01:05:04 +0100 (Fri, 11 Mar 2005) | 2 lines
* src/ui_sdlgl.c: New menu system (work in progress).
------------------------------------------------------------------------
r116 | waltervn | 2005-03-01 22:14:34 +0100 (Tue, 01 Mar 2005) | 7 lines
* AUTHORS: Updated.
* src/credits.c, src/credits.h: Added to repository.
* src/Makefile.am: Updated
* src/ui_sdlgl.c: Display credits. Fixed latin1 character display.
------------------------------------------------------------------------
r115 | waltervn | 2005-03-01 02:08:42 +0100 (Tue, 01 Mar 2005) | 2 lines
* src/dreamer/commands.c: Accept `remove' command in force mode.
------------------------------------------------------------------------
r114 | waltervn | 2005-02-27 12:13:32 +0100 (Sun, 27 Feb 2005) | 12 lines
* src/dreamer/e_comm.c, src/dreamer/e_comm_sdlthd.c,
src/dreamer/history.c, src/dreamer/e_comm_unix.c,
src/dreamer/e_comm.h, src/dreamer/commands.h, src/dreamer/history.h,
src/dreamer/move.c, src/dreamer/gen_chess_moves.c,
src/dreamer/move.h, src/dreamer/hashing.c,
src/dreamer/e_comm_win32.c, src/dreamer/main.c,
src/dreamer/hashing.h, src/dreamer/board.c, src/dreamer/eval.c
src/dreamer/board.h, src/dreamer/eval.h: Updated copyright statements.
* src/dreamer/commands.c, src/dreamer/dreamer.c, src/dreamer/state.h:
Implemented `remove' command.
------------------------------------------------------------------------
r113 | waltervn | 2005-02-21 14:32:54 +0100 (Mon, 21 Feb 2005) | 5 lines
* src/dreamchess.c, src/dreamchess.h, src/ui_sdlgl.c: Implemented
`retract move' and `move now' UI commands.
* data/menu_title.png: Updated title screen.
------------------------------------------------------------------------
r112 | krismca | 2005-02-05 03:24:12 +0100 (Sat, 05 Feb 2005) | 2 lines
* src/ui_sdlgl.c: Fixed a menu selection bug.
------------------------------------------------------------------------
r111 | waltervn | 2005-01-25 02:55:12 +0100 (Tue, 25 Jan 2005) | 2 lines
* src/ui_sdlgl.c: Fixed win32 font.wid bug.
------------------------------------------------------------------------
r110 | waltervn | 2004-12-31 18:56:34 +0100 (Fri, 31 Dec 2004) | 3 lines
* src/dreamer/repetition.c, src/dreamer/repetition.h: Added
repetition list history.
------------------------------------------------------------------------
r109 | krismca | 2004-12-10 22:57:21 +0100 (Fri, 10 Dec 2004) | 3 lines
* src/ui_sdlgl.c: Added player avatars drawing.
* data/themes/defualt/pieces.png: Added player avatars.
------------------------------------------------------------------------
r108 | krismca | 2004-12-09 22:13:39 +0100 (Thu, 09 Dec 2004) | 2 lines
* src/ui_sdlgl.c: Split the system menu into two menus.
------------------------------------------------------------------------
r107 | krismca | 2004-12-08 23:05:01 +0100 (Wed, 08 Dec 2004) | 2 lines
* src/ui_sdlgl.c: Added end game state menu changes.
------------------------------------------------------------------------
r106 | krismca | 2004-12-06 10:24:36 +0100 (Mon, 06 Dec 2004) | 3 lines
* src/ui_sdlgl.c: Fixed a bug which allowed the player to
escape from the promotion dialog without picking a piece.
------------------------------------------------------------------------
r105 | krismca | 2004-12-02 18:02:35 +0100 (Thu, 02 Dec 2004) | 2 lines
* src/ui_sdlgl.c: Fixed promotion dialog.
------------------------------------------------------------------------
r104 | krismca | 2004-12-02 08:23:08 +0100 (Thu, 02 Dec 2004) | 2 lines
* src/ui_sdlgl.c: Improved the promotion dialog.
------------------------------------------------------------------------
r103 | waltervn | 2004-11-11 00:40:27 +0100 (Thu, 11 Nov 2004) | 5 lines
* src/dreamer/commands.c, src/dreamer/search.c,
src/dreamer/dreamer.c, src/dreamer/state.h: Implemented `?' command.
* src/libs/san.y: Removed `\0' character.
------------------------------------------------------------------------
r102 | waltervn | 2004-11-01 01:20:24 +0100 (Mon, 01 Nov 2004) | 2 lines
* src/ui_sdlgl.c: Implemented flipped board view.
------------------------------------------------------------------------
r101 | waltervn | 2004-10-30 23:15:43 +0200 (Sat, 30 Oct 2004) | 5 lines
* src/dreamer/commands.c, src/dreamer/search.c,
src/dreamer/search.h, src/dreamer/dreamer.c, src/dreamer/state.h,
src/ui_sdlgl.c, src/dreamchess.c, src/dreamchess.h: Implemented
`sd' command. Added difficulty setting to UI.
------------------------------------------------------------------------
r100 | waltervn | 2004-10-30 00:57:50 +0200 (Sat, 30 Oct 2004) | 6 lines
* src/dreamer/history.c: Made variables static to avoid a conflict
with a variable of the UI.
* src/dreamer/dreamer.c, src/dreamer/repetition.c: Small cosmetic
changes.
------------------------------------------------------------------------
r99 | waltervn | 2004-10-29 00:44:41 +0200 (Fri, 29 Oct 2004) | 7 lines
* src/dreamer/history.c: Style fix.
* src/dreamer/commands.c, src/dreamer/search.c,
src/dreamer/dreamer.c, src/dreamer/repetition.c, src/dreamer/board.c,
src/dreamer/repetition.h, src/dreamer/board.h: Improved 3-fold
repetition and fifty-move rule handling.
------------------------------------------------------------------------
r98 | waltervn | 2004-10-26 00:21:13 +0200 (Tue, 26 Oct 2004) | 4 lines
* src/dreamer/commands.c: Implemented `force' command.
* src/dreamer/state.h: Style fix.
------------------------------------------------------------------------
r97 | waltervn | 2004-10-25 01:54:34 +0200 (Mon, 25 Oct 2004) | 2 lines
* src/dreamer/commands.c: Implemented `go' command.
------------------------------------------------------------------------
r96 | waltervn | 2004-10-24 23:13:51 +0200 (Sun, 24 Oct 2004) | 4 lines
* src/history.c, src/ui_sdlgl.c, src/history.h, src/ui.c,
src/dreamchess.c, src/ui.h, src/board.c, src/board.h: Added player
selection and game result handling to the UI.
------------------------------------------------------------------------
r95 | waltervn | 2004-10-14 01:28:43 +0200 (Thu, 14 Oct 2004) | 4 lines
* src/history.c, src/ui_sdlgl.c, src/dreamchess.c, src/ui.h,
src/dreamchess.h, src/board.c, src/board.h: Partial implementation
of game setup and game termination handling.
------------------------------------------------------------------------
r94 | krismca | 2004-10-09 15:37:29 +0200 (Sat, 09 Oct 2004) | 2 lines
* src/ui_sdlgl.c: Changed the window caption.
------------------------------------------------------------------------
r93 | waltervn | 2004-10-05 21:13:37 +0200 (Tue, 05 Oct 2004) | 8 lines
* src/comm_unix.c, src/dreamer/e_comm.c,
src/dreamer/e_comm_sdlthd.c, src/dreamer/e_comm_unix.c,
src/dreamer/e_comm.h, src/dreamer/dreamer.c, src/comm.h,
src/ui_sdlgl.c, src/libs/msgbuf.c, src/libs/san.y, src/datadir.c,
src/dreamchess.c, src/dreamchess.h, src/main_sdlthd.c, src/board.c,
src/comm.c, src/board.h, src/comm_sdlthd.c: Fixed gcc warnings
(Dreamcast and Linux only).
------------------------------------------------------------------------
r92 | krismca | 2004-10-05 03:21:41 +0200 (Tue, 05 Oct 2004) | 2 lines
* src/ui_sdlgl.c: Fixed the loading screen.
------------------------------------------------------------------------
r91 | waltervn | 2004-10-05 01:50:19 +0200 (Tue, 05 Oct 2004) | 2 lines
* src/ui_sdlgl.c: Added support for textures without alpha.
------------------------------------------------------------------------
r90 | krismca | 2004-10-03 23:44:26 +0200 (Sun, 03 Oct 2004) | 2 lines
* src/ui_sdlgl.c: Tweaked the cursor.
------------------------------------------------------------------------
r89 | krismca | 2004-10-03 23:31:05 +0200 (Sun, 03 Oct 2004) | 3 lines
* src/ui_sdlgl.c: Added check/checkmate checking. End game
(checkmate) dialog.
------------------------------------------------------------------------
r88 | waltervn | 2004-10-03 21:58:17 +0200 (Sun, 03 Oct 2004) | 3 lines
* src/ui.h, src/ui_sdlgl.c, src/dreamchess.c: Send move to ui during
update.
------------------------------------------------------------------------
r87 | waltervn | 2004-10-03 19:52:10 +0200 (Sun, 03 Oct 2004) | 4 lines
* src/ui_sdlgl.c, src/dreamchess.c, src/board.c, src/board.h,
data/themes/default/backdrop.png: Added captured pieces display
routines.
------------------------------------------------------------------------
r86 | krismca | 2004-10-03 05:21:15 +0200 (Sun, 03 Oct 2004) | 3 lines
* src/ui_sdlgl.c: Tinkered with the title screen some. Added
a loading screen.
------------------------------------------------------------------------
r85 | krismca | 2004-10-03 04:33:40 +0200 (Sun, 03 Oct 2004) | 2 lines
* data/themes/defualt/cursor.png: Whoops! I forgot to commit it!
------------------------------------------------------------------------
r84 | krismca | 2004-10-03 04:30:06 +0200 (Sun, 03 Oct 2004) | 3 lines
* src/ui_sdlgl.c: Improved the bouncy text animation.
Cleaned up some of the dialogs.
------------------------------------------------------------------------
r83 | krismca | 2004-10-03 03:05:37 +0200 (Sun, 03 Oct 2004) | 7 lines
* src/ui_sdlgl.c: Changed the way the board is displayed. Added
initial theme backdrop.
* data/themes/default/blacksquare.png, whitesquare.png: Removed,
in favour a single board image.
* data/themes/defualt/board.png: The theme board image.
* data/themes/defualt/backdrop.png: The initial theme backdrop.
------------------------------------------------------------------------
r82 | waltervn | 2004-10-03 02:35:44 +0200 (Sun, 03 Oct 2004) | 4 lines
* src/dreamchess.c: Clear move list when a new game is started.
* data/font.wid, data/font.png: Increased space around figurines.
------------------------------------------------------------------------
r81 | waltervn | 2004-10-03 00:50:14 +0200 (Sun, 03 Oct 2004) | 5 lines
* src/board.c, src/board.h, src/dreamchess.c, data/font.png,
data/font.wid: Added FAN support.
* AUTHORS: Updated.
------------------------------------------------------------------------
r80 | krismca | 2004-10-01 00:20:59 +0200 (Fri, 01 Oct 2004) | 4 lines
* src/ui_sdlgl.c: Changed the action button mapping on the
gamepad from X to A. Removed the backdrop from the name,
and move list gui objects.
------------------------------------------------------------------------
r79 | krismca | 2004-09-30 23:47:38 +0200 (Thu, 30 Sep 2004) | 6 lines
* src/ui_sdlgl.c: Fixed up the system menu to remove features
that won't be present in the first release. Changed the title
screen behavior, so that the 'press any key' pause will only
appear when first ran. Added joystick support. Centered the
system dialog.
------------------------------------------------------------------------
r78 | krismca | 2004-09-30 02:14:16 +0200 (Thu, 30 Sep 2004) | 3 lines
* src/ui_sdlgl.c: Added the player names to the gui, and added
a backdrop to the move lists.
------------------------------------------------------------------------
r77 | waltervn | 2004-09-30 02:10:35 +0200 (Thu, 30 Sep 2004) | 2 lines
* src/ui_sdlgl.c: Fixed text scaling that I broke a few days ago.
------------------------------------------------------------------------
r76 | waltervn | 2004-09-30 01:29:51 +0200 (Thu, 30 Sep 2004) | 2 lines
* src/ui_sdlgl.c, src/dreamchess.c: Added move list implementation.
------------------------------------------------------------------------
r75 | waltervn | 2004-09-28 00:47:10 +0200 (Tue, 28 Sep 2004) | 19 lines
* src/README: Removed references to SDL_ttf and freetype.
* data/themes/default/blackpawn.png,
data/themes/default/whitepawn.png,
data/themes/default/blackrook.png,
data/themes/default/blackqueen.png,
data/themes/default/whiterook.png,
data/themes/default/whitequeen.png,
data/themes/default/blackknight.png,
data/themes/default/blackbishop.png,
data/themes/default/blackking.png,
data/themes/default/whitebishop.png,
data/themes/default/whiteknight.png,
data/themes/default/whiteking.png: Removed from repository.
* data/themes/default/pieces.png: Added to repository.
* data/Makefile.am: Updated.
* src/ui_sdlgl.c: Load piece graphics from a single image and
render them using texture coordinates.
------------------------------------------------------------------------
r74 | krismca | 2004-09-26 23:50:05 +0200 (Sun, 26 Sep 2004) | 2 lines
* src/ui_sdlgl.c: Tinkered with the title screen menu some.
------------------------------------------------------------------------
r73 | waltervn | 2004-09-26 22:53:00 +0200 (Sun, 26 Sep 2004) | 8 lines
* src/ui_sdlgl.c: Changed font system to use pregenerated bitmaps.
* data/text.ttf: Removed from repository.
* data/font.png, data/font.wid: Added to repository.
* data/Makefile.am: Updated.
* configure.ac: Removed freetype and SDL_ttf checks.
* autogen.sh: Re-added version numbers.
------------------------------------------------------------------------
r72 | krismca | 2004-09-25 04:37:16 +0200 (Sat, 25 Sep 2004) | 4 lines
* src/ui_sdlgl.c: Added colour changing to the font code, and
added an experimental text effect. Removed difficulty dialog
from main menu, twas redundant.
------------------------------------------------------------------------
r71 | waltervn | 2004-09-25 02:37:04 +0200 (Sat, 25 Sep 2004) | 3 lines
* src/ui_sdlgl.c: Converted all texture loading/drawing code to use
texture coordinates.
------------------------------------------------------------------------
r70 | waltervn | 2004-09-24 19:03:12 +0200 (Fri, 24 Sep 2004) | 8 lines
* src/ui_sdlgl.c, src/ui.h: Added message dialog type. Added
texture loading and displaying routines that use texture
coordinates. Fixed black menu in Linux.
* src/dreamchess.c: Added preliminary support for move lists.
* data/menu_title.png: New title image (not finished yet).
------------------------------------------------------------------------
r69 | krismca | 2004-09-24 03:04:15 +0200 (Fri, 24 Sep 2004) | 2 lines
* /src/ui_sdlgl.c: Modified the title menu a bit.
------------------------------------------------------------------------
r68 | waltervn | 2004-09-24 01:56:44 +0200 (Fri, 24 Sep 2004) | 12 lines
* src/history.c: Reformatted sourcecode.
* src/include/san.h, src/libs/san.y: Added info about board state
to SAN move struct.
* src/board.c, src/board.h, src/ui_sdlgl.c, src/ui_sdl.c: Added
move_t to SAN string conversion code. Renamed EMPTY to NONE.
* src/ui_sdlgl.c, src/dreamchess.c, src/ui.h, src/dreamchess.h:
Changed to polling+callback interface.
* configure.ac: Disabled building of ui_sdl driver.
------------------------------------------------------------------------
r67 | krismca | 2004-09-21 22:57:53 +0200 (Tue, 21 Sep 2004) | 3 lines
* src/ui_sdlgl.c: More dialog changes. Fixed a text rendering
bug.
------------------------------------------------------------------------
r66 | krismca | 2004-09-21 08:49:00 +0200 (Tue, 21 Sep 2004) | 3 lines
* src/ui_sdlgl.c: Cleaned up the new font rendering stuff.
Started work on new dialog code.
------------------------------------------------------------------------
r65 | krismca | 2004-09-20 07:03:49 +0200 (Mon, 20 Sep 2004) | 3 lines
* src/ui_sdlgl.c: Changed the position and size of the board.
Replaced the text rendering functions.
------------------------------------------------------------------------
r64 | waltervn | 2004-09-19 00:53:33 +0200 (Sun, 19 Sep 2004) | 2 lines
* README: Updated Dreamcast build instructions.
------------------------------------------------------------------------
r63 | waltervn | 2004-09-14 22:12:44 +0200 (Tue, 14 Sep 2004) | 4 lines
* src/board.c: Corrected a typo that caused a segfault.
* README: Corrected an error in the Windows install section.
------------------------------------------------------------------------
r62 | waltervn | 2004-09-13 13:04:28 +0200 (Mon, 13 Sep 2004) | 3 lines
* src/board.c, src/board.h, src/dreamchess.c: Added preliminary SAN
support.
------------------------------------------------------------------------
r61 | waltervn | 2004-09-13 02:53:41 +0200 (Mon, 13 Sep 2004) | 11 lines
* src/include/san.h: Added to repository.
* src/include/Makefile.am: Updated.
* src/san.y: Moved to src/libs/san.y.
* src/libs/Makefile.am: Build libsan.a from san.y.
* src/Makefile.am: Added libsan.a to LDADD.
* configure.ac: Added check for bison.
* README: Added bison to list of requirements for building from
SVN.
------------------------------------------------------------------------
r60 | waltervn | 2004-09-11 20:39:21 +0200 (Sat, 11 Sep 2004) | 7 lines
* ChangeLog: Changed to UNIX text format.
* src/libs/pipe_unix.c: Reset timeout before each select() call.
* src/dreamchess.c: Do not change to the data directory until after
starting the engine. This prevents crafty from segfaulting.
------------------------------------------------------------------------
r59 | waltervn | 2004-09-11 03:48:57 +0200 (Sat, 11 Sep 2004) | 21 lines
* AUTHORS: Updated.
* src/san.y: Added copyright message. Fixed #include statements.
* ChangeLog: Added stub message.
* NEWS: Added 0.1.0-SVN.
* src/dreamer/move_data.h, src/dreamer/move_data.h,
src/dreamer/search.c, src/dreamer/search.h,
src/dreamer/transposition.c, src/dreamer/transposition.h,
src/dreamer/repetition.c, src/dreamer/state.h,
src/dreamer/repetition.h, src/comm_unix.c, src/comm.h, src/history.c
src/ui_sdlgl.c, src/include/pipe_mem.h,src/include/pipe_win32.h,
src/include/pipe_unix.h, src/include/engine.h,
src/include/main_sdlthd.h, src/history.h, src/datadir.c,
src/libs/pipe_win32.c, src/libs/pipe_unix.c, src/libs/msgbuf.c,
src/libs/msgbuf.h, src/libs/pipe_mem.c, src/comm_win32.c, src/ui.c,
src/datadir.h, src/ui_sdl.c, src/ui.h, src/dreamchess.h, src/main.c,
src/main_sdlthd.c, src/board.c, src/comm.c, src/board.h,
src/comm_sdlthd.c: Updated copyright messages.
------------------------------------------------------------------------
r58 | waltervn | 2004-09-10 17:57:39 +0200 (Fri, 10 Sep 2004) | 5 lines
* src/dreamchess.c: The engine to use is now an option (-f).
* configure.ac: Changed version to 0.1.0-SVN.
* README, man/dreamchess.6: Updated documentation.
------------------------------------------------------------------------
r57 | waltervn | 2004-09-09 18:09:20 +0200 (Thu, 09 Sep 2004) | 3 lines
* src/include/engine.h: Added to repository.
* src/include/Makefile.am, src/main_sdlthd.c: Updated.
------------------------------------------------------------------------
r56 | waltervn | 2004-09-09 11:12:13 +0200 (Thu, 09 Sep 2004) | 10 lines
* src/include/game.h: Removed from repository.
* src/libs/pipe_mem.h, src/libs/pipe_win32.h, src/libs/pipe_unix.h:
Moved to src/include directory.
* src/include/comm.h, src/include/ui.h, src/include/dreamchess.h,
src/include/history.h, src/include/board.h, src/include/datadir.h:
Moved to src directory.
* src/Makefile.am, src/include/Makefile.am,
src/dreamer/Makefile.am: Updated.
------------------------------------------------------------------------
r55 | waltervn | 2004-09-09 10:34:59 +0200 (Thu, 09 Sep 2004) | 12 lines
* src/dreamer/e_comm.c, src/dreamer/history.c,
src/dreamer/commands.c, src/dreamer/e_comm_sdlthd.c,
src/dreamer/e_comm_unix.c, src/dreamer/search.c, src/dreamer/move.c
src/dreamer/dreamer.c, src/dreamer/e_comm_win32.c,
src/dreamer/eval.c, src/dreamer/board.c, src/comm_unix.c,
src/history.c, src/ui_sdlgl.c, src/include/ui.h,
src/include/history.h, src/include/main_sdlthd.h, src/datadir.c,
src/libs/pipe_win32.c, src/libs/pipe_unix.c, src/libs/pipe_mem.c,
src/ui.c, src/dreamchess.c, src/ui_sdl.c, src/main.c,
src/main_sdlthd.c, src/board.c, src/comm.c, src/comm_sdlthd.c,
configure.ac: Cleaned up #include statements.
------------------------------------------------------------------------
r54 | waltervn | 2004-09-08 17:13:04 +0200 (Wed, 08 Sep 2004) | 16 lines
* src/dreamer/Makefile.am: Removed `move_data.h' target.
* src/libs/pipe_win32.c, src/libs/pipe_win32.h: pipe_win32_poll() no
longer blocks when no data is available.
* src/libs/msgbuf.c, src/libs/pipe_unix.c, src/libs/pipe_men.c: Fixed
exit() functions.
* configure.ac, src/libs/Makefile.am: Renamed `libpipe.a' to
`libpipe_unix.a' and `libmsglist.a' to `libpipe_mem.a'.
`libpipe_mem.a' is now only built when configured with
`--enable-linked-engine'.
* src/comm_win32.c: Added to repository.
* src/Makefile.am: Updated.
------------------------------------------------------------------------
r53 | waltervn | 2004-09-07 15:49:32 +0200 (Tue, 07 Sep 2004) | 4 lines
* src/dreamer/e_comm.c: Added to repository.
* configure.ac: Changed autoconf version requirement to 2.56.
------------------------------------------------------------------------
r52 | waltervn | 2004-09-07 13:52:29 +0200 (Tue, 07 Sep 2004) | 9 lines
* m4, m4/sdl.m4, m4/Makefile.am: Added to repository.
* src/Makefile.am, autogen.sh: Call aclocal with -I m4'.
* src/include/datadir.h, src/datadir.c: Converted to UNIX text
format. Implemented chdir() for Dreamcast.
* src/dreamcast: Removed from repository.
* configure.ac: Updated for building a Dreamcast binary.
------------------------------------------------------------------------
r51 | waltervn | 2004-09-06 11:16:07 +0200 (Mon, 06 Sep 2004) | 7 lines
* src/dreamer/move_data.h, data/Makefile.am: Added to repository.
* src/dreamer/gen_chess_moves.c, src/dreamer/Makefile.am:
`move_data.h' is no longer autogenerated. Properly clean
`move_data.c'.
* configure.ac, src/Makefile.am, data/Makefile.am: Add data files
to `dist'. A few minor fixes to the `dist' target.
------------------------------------------------------------------------
r50 | waltervn | 2004-09-06 03:11:47 +0200 (Mon, 06 Sep 2004) | 11 lines
* src/libs/pipe.*: Renamed to src/libs/pipe_unix.*.
* src/comm.c: Added to repository.
* src/comm_unix.c, src/dreamer/e_comm_sdlthd.c,
src/dreamer/e_com_unix.c, src/dreamer/dreamer.c,
src/dreamer/e_comm_win32.c, src/dreamer/Makefile.am,
src/libs/pipe_win32.c, src/libs/pipe_win32.h, src/libs/Makefile.am,
src/main_sdlthd.c, src/Makefile.am, src/comm_sdlthd.c, configure.ac:
Renamed several function names.
------------------------------------------------------------------------
r49 | waltervn | 2004-09-06 02:48:31 +0200 (Mon, 06 Sep 2004) | 5 lines
* src/pipe: Renamed to src/libs.
* src/libs/pipe_sdlthd.*: Renamed to src/libs/pipe_mem.*.
* src/include/main_sdlthd.h, src/main_sdlthd.c: Updated.
------------------------------------------------------------------------
r48 | waltervn | 2004-09-06 02:33:11 +0200 (Mon, 06 Sep 2004) | 13 lines
* src/comm_unix.c, src/dreamer/commands.c,
src/dreamer/e_comm_sdlthd.c, src/dreamer/e_comm_unix.c,
src/dreamer/e_comm.h, src/dreamer/dreamer.c,
src/dreamer/e_comm_win32.c, src/dreamer/Makefile.am,
src/include/comm.h, src/include/main_sdlthd.h,
src/pipe/pipe_win32.c, src/pipe/pipe.h, src/pipe/Makefile.am,
src/pipe/pipe.c, src/dreamchess.c, src/main_sdlthd.c,
src/Makefile.am, src/comm_sdlthd.c: Simplified communication code
and reduced redundancy.
* src/pipe/pipe_sdlthd.c, src/pipe/pipe_sdlthd.h,
src/pipe/msgbuf.c, src/pipe_mshbuf.h: Added to repository.
* src/pipe/msglist.c, src/pipe/msglist.h: Removed from repository.
------------------------------------------------------------------------
r47 | waltervn | 2004-09-05 03:23:44 +0200 (Sun, 05 Sep 2004) | 8 lines
* src/dreamer/e_comm_win32.c, src/pipe/pipe_win32.c,
src/pipe/pipe_win32.h: Added to repository.
* src/dreamer/e_comm_sdlthd.c, src/dreamer/e_comm_unix.c,
src/dreamer/Makefile.am, src/comm_unix.c, src/pipe/Makefile.am,
src/dreamcast/config.h.in, src/main.c, src/main_sdlthd.c,
src/comm_sdlthd.c, configure.ac: Added initial implementation of Win32
UI<->engine communication.
------------------------------------------------------------------------
r46 | waltervn | 2004-09-03 19:39:06 +0200 (Fri, 03 Sep 2004) | 7 lines
* src/datadir.c, src/include/datadir.h: Added to repository.
* configure.ac, src/ui_sdlgl.c, src/ui_sdl.c, src/dreamchess.c:
Changed handling of data directory for win32 port. Some minor
bugfixes in theme loading code.
* src/include/Makefile.am, src/Makefile.am: Updated.
------------------------------------------------------------------------
r45 | waltervn | 2004-09-03 03:20:16 +0200 (Fri, 03 Sep 2004) | 5 lines
* configure.ac: Added MinGW OpenGL library detection. DreamChess now
works on win32 when the `--enable-linked-engine' option is used.
* autogen.sh: Removed version numbers from calls.
------------------------------------------------------------------------
r44 | waltervn | 2004-09-03 03:11:40 +0200 (Fri, 03 Sep 2004) | 11 lines
* src/io_*.c, src/include/io.h: `io' renamed to `comm' to avoid
name clashes in MinGW.
* src/dreamer/io_*.c, src/dreamer/io.h: `io' renamed to `e_comm'
to avoid name clashes in MinGW.
* src/dreamer/dreamer.c, src/dreamer/commands.c, src/dreamchess.c:
Updated.
* src/Makefile.am, src/include/Makefile.am,
src/dreamer/Makefile.am, src/dreamcast/Makefile: Updated.
* src/dreamer/dreamer.c: Defined drm_sleep().
------------------------------------------------------------------------
r43 | waltervn | 2004-09-02 13:15:59 +0200 (Thu, 02 Sep 2004) | 3 lines
* src/dreamer/Makefile.am, src/pipe/Makefile.am, src/Makefile.am,
configure.ac: Some small changes to support cross-compilation.
------------------------------------------------------------------------
r42 | waltervn | 2004-08-30 19:00:56 +0200 (Mon, 30 Aug 2004) | 11 lines
* src/dreamer/Makefile.am, src/dreamer/io_sdlthread.c,
src/io_sdlthread.c, src/main_sdlthd.c: Added mutexes to make access
to message lists thread-safe.
* src/dreamer/dreamer.c: Fixed an exit-related bug.
* src/dreamchess.c: Re-init engine when a new game is started.
* src/include/main_sdlthd.h: Added to repository.
* src/include/Makefile.am: Updated.
------------------------------------------------------------------------
r41 | waltervn | 2004-08-30 02:02:50 +0200 (Mon, 30 Aug 2004) | 5 lines
* src/include/dreamchess.h: Added to repository.
* src/dreamcast/config.h.in, src/dreamcast/Makefile: Updated
Dreamcast build process for recent changes.
------------------------------------------------------------------------
r40 | waltervn | 2004-08-30 00:37:21 +0200 (Mon, 30 Aug 2004) | 11 lines
* src/dreamer/io_sdlthread.c, src/dreamer/main.c,
src/io_sdlthread.c, src/pipe/msglist.c, src/pipe/msglist.h,
src/main_sdlthd.c, src/main.c: Added to repository.
* src/dreamchess.c: Renamed from src/main.c.
* src/dreamer/commands.c, src/dreamer/io_unix.c,
src/dreamer/io.h, src/dreamer/dreamer.c, src/dreamer/state.h,
src/dreamer/Makefile.am, src/include/board.h, src/io_unix.c,
src/pipe/Makefile.am, src/board.c, src/Makefile.am
configure.ac: Added --enable-linked-engine configure option to
statically link with the `dreamer' engine.
------------------------------------------------------------------------
r39 | waltervn | 2004-08-27 02:04:41 +0200 (Fri, 27 Aug 2004) | 11 lines
* src/main.c, src/ui_sdlgl.c, src/include/ui.h: Added proper game
quitting. Added texture freeing. On Dreamcast, copy TTF file to
ramdisk to speed things up. On Dreamcast, don't parse command line
arguments.
* data/themes/default/blacksquare.bmp,
data/themes/default/whitesquare.bmp: Replaced by PNG files.
* src/dreamcast/config.h.in, src/dreamcast/Makefile: Added to
repository.
------------------------------------------------------------------------
r38 | waltervn | 2004-08-20 02:28:19 +0200 (Fri, 20 Aug 2004) | 2 lines
* src/san.y: Added to repository.
------------------------------------------------------------------------
r37 | waltervn | 2004-08-19 03:49:11 +0200 (Thu, 19 Aug 2004) | 2 lines
* src/board.c: Added simple SAN parser.
------------------------------------------------------------------------
r36 | waltervn | 2004-08-18 02:02:19 +0200 (Wed, 18 Aug 2004) | 13 lines
* src/dreamer/commands.c: Do not start game after receiving an
invalid move.
* src/dreamer/dreamer.c: Do not check for game end when in idle
mode.
* src/ui_sdlgl.c: Set promotion_piece to 0 when sending a
non-promotion move.
* src/board.c: Added move validation routines.
* src/main.c: Engine communication temporarily disabled for
easier testing of move validation routines.
------------------------------------------------------------------------
r35 | waltervn | 2004-08-12 23:28:01 +0200 (Thu, 12 Aug 2004) | 3 lines
* configure.ac: Added --without-sdl and --without-gl configure
options.
------------------------------------------------------------------------
r34 | waltervn | 2004-08-12 03:15:46 +0200 (Thu, 12 Aug 2004) | 4 lines
* src/ui_sdl.c, src/include/ui.h, src/ui.c, configure.ac: Added
support for the sdl user interface driver to the configure
script.
------------------------------------------------------------------------
r33 | waltervn | 2004-08-11 21:26:18 +0200 (Wed, 11 Aug 2004) | 7 lines
* src/ui_sdl.c: Added to repository.
* src/include/ui.h, src/Makefile.am, src/ui.c (ui_driver[]):
Updated for added driver.
* src/main.c (main): Workaround for GNU Chess's way of reporting
illegal moves.
------------------------------------------------------------------------
r32 | waltervn | 2004-08-09 21:09:00 +0200 (Mon, 09 Aug 2004) | 2 lines
* src/main.c (main): Fix for GNUChess.
------------------------------------------------------------------------
r31 | waltervn | 2004-08-09 19:19:48 +0200 (Mon, 09 Aug 2004) | 12 lines
* src/include/io.h, src/io_unix.c: Added to repository.
* src/Makefile.am, src/include/Makefile.am: Updated for added
files.
* src/include/board.h, src/board.c: Implemented
fullalg_to_move().
* src/pipe/pipe.c (pipe_poll): Small bugfix.
* src/main.c: Added initial implementation of engine
communication.
------------------------------------------------------------------------
r30 | waltervn | 2004-08-03 01:28:57 +0200 (Tue, 03 Aug 2004) | 9 lines
* src/dreamer/Makefile.am, src/Makefile.am,
src/pipe/Makefile.am: Added header files to EXTRA_DIST.
* src/include/Makefile.am, man/Makefile.am, man/dreamchess.6,
man/dreamer.6: Added to repository.
* Makefile.am: Added man directory to SUBDIRS.
* configure.ac: Changed version to 0.1.
------------------------------------------------------------------------
r29 | waltervn | 2004-07-30 19:29:54 +0200 (Fri, 30 Jul 2004) | 6 lines
* src/history.c, src/board.c, src/ui.c, src/include/board.h:
Fixed #includes.
* src/include/ui.h, src/main.c, src/ui_sdlgl.c: Moved history
manipulation from ui driver to main.
------------------------------------------------------------------------
r28 | waltervn | 2004-07-29 01:31:59 +0200 (Thu, 29 Jul 2004) | 6 lines
* src/dreamer/Makefile.am: Do not install genchessmoves.
* src/Makefile.am, src/ui_sdlgl.c: Use DATADIR for location of
data directory.
* Makefile.am: Added install-data-local and uninstall-local
targets.
------------------------------------------------------------------------
r27 | waltervn | 2004-07-28 02:51:54 +0200 (Wed, 28 Jul 2004) | 3 lines
* configure.ac, src/Makefile.am: Only link dreamchess itself
against SDL.
------------------------------------------------------------------------
r26 | waltervn | 2004-07-27 03:50:06 +0200 (Tue, 27 Jul 2004) | 4 lines
* configure.ac, src/ui_sdlgl.c, src/include/ui.h, src/main.c,
src/Makefile.am, src/ui.c: Added checks for SDL and GL headers
and libraries.
------------------------------------------------------------------------
r25 | waltervn | 2004-07-26 23:19:57 +0200 (Mon, 26 Jul 2004) | 7 lines
* configure.ac: Check for getopt.h and getopt_long().
* src/main.c: Added commandline options.
* src/ui.c: Added to repository.
* src/include/ui.h, src/ui_sdlgl.c: Added 'name' field to
ui_driver struct.
* src/Makefile.am: Updated for added file.
------------------------------------------------------------------------
r24 | waltervn | 2004-07-25 00:57:05 +0200 (Sun, 25 Jul 2004) | 2 lines
* configure.ac: Point to src/main.c for sources.
------------------------------------------------------------------------
r23 | waltervn | 2004-07-25 00:54:30 +0200 (Sun, 25 Jul 2004) | 10 lines
* configure.ac: Point to src/main.c for sources.
* src/include/ui.h: Added to repository.
* src/player_gui.c, src/gui.c, src/include/gui.h: Merged into
new file src/ui_sdlgl.c, which was added to the repository. The
old files were removed.
* src/game.c: Renamed to src/main.c.
* src/Makefile.am: Updated because of the changes above.
------------------------------------------------------------------------
r22 | waltervn | 2004-07-21 19:36:28 +0200 (Wed, 21 Jul 2004) | 2 lines
* src/history.c: Added to repository (for real this time ;)
------------------------------------------------------------------------
r21 | waltervn | 2004-07-21 19:17:22 +0200 (Wed, 21 Jul 2004) | 15 lines
* configure.ac: Point to src/gui.c for sources.
* src/hashing.c, src/move.c, src/eval.c,
src/include/transposition.h, src/include/player.h,
src/include/player_gui.h, src/include/hashing.h,
src/include/history.h, src/include/repetition.h,
src/include/search.h, src/include/move.h, src/include/iface.h,
src/include/eval.h: Removed from repository.
* src/history.c, src/include/history.h: Added implementation
of game history to repository.
* src/Makefile.am, src/gui.c, src/player_gui.c: Added keyboard
shortcuts for browsing game steps, and undo move.
------------------------------------------------------------------------
r20 | krismca | 2004-07-02 01:15:02 +0200 (Fri, 02 Jul 2004) | 2 lines
* src/player_gui.c, src/gui.c: Added initial mouse support.
------------------------------------------------------------------------
r19 | krismca | 2004-07-02 00:26:19 +0200 (Fri, 02 Jul 2004) | 4 lines
* src/include/gui.h, src/gui.c: Added the ability for
the player to select board/piece themes from the main
menu screen.
------------------------------------------------------------------------
r18 | waltervn | 2004-07-02 00:19:31 +0200 (Fri, 02 Jul 2004) | 3 lines
* data/themes/default/black.bmp: Renamed to blacksquare.bmp.
* data/themes/default/white.bmp: Renamed to whitesquare.bmp.
------------------------------------------------------------------------
r17 | waltervn | 2004-07-02 00:11:51 +0200 (Fri, 02 Jul 2004) | 3 lines
* data/themes/default: Restored the graphics from r15.
* data/test.ttf: Renamed to text.ttf.
------------------------------------------------------------------------
r16 | waltervn | 2004-07-02 00:00:57 +0200 (Fri, 02 Jul 2004) | 2 lines
* data/black*.png, data/white*.png: Moved to data/themes/default.
------------------------------------------------------------------------
r15 | krismca | 2004-06-27 04:35:25 +0200 (Sun, 27 Jun 2004) | 6 lines
* src/gui.c: Adjusted the drawing size of pieces from
two tiles high, to one tile high. Fixed the promotion
dialog to reflect the change.
* data/black*.png, data/white*.png: Changed the size
of the graphics from 128x256 to 128x128.
------------------------------------------------------------------------
r14 | krismca | 2004-06-22 23:43:59 +0200 (Tue, 22 Jun 2004) | 5 lines
* src/include/gui.h, src/gui.c: Changed the text string used to
display whether it is black or white's turn, and fixed it.
* src/player_gui.c: Fixed the board cursor's movement code to
respect the boards edges.
------------------------------------------------------------------------
r13 | waltervn | 2004-06-22 18:00:00 +0200 (Tue, 22 Jun 2004) | 6 lines
* data/blackpawn.png, data/whitepawn.png, data/blackrook.png,
data/blackqueen.png, data/whiterook.png, data/whitequeen.png,
data/blackknight.png, data/blackbishop.png, data/blackking.png
data/whitebishop.png, data/whiteknight.png, data/whiteking.png:
Updated graphics to conform to new format.
------------------------------------------------------------------------
r12 | waltervn | 2004-06-21 18:45:26 +0200 (Mon, 21 Jun 2004) | 2 lines
* src/board.c, src/include/board.h: New board and move types.
------------------------------------------------------------------------
r11 | waltervn | 2004-06-21 17:10:28 +0200 (Mon, 21 Jun 2004) | 6 lines
* src/player_gui.c: Implemented poll_move().
* src/include/gui.h, src/gui.c: Added black promotion dialog.
* src/board.c: Implemented move_to_fullalg() and make_move().
------------------------------------------------------------------------
r10 | waltervn | 2004-06-18 15:01:22 +0200 (Fri, 18 Jun 2004) | 8 lines
* src/player_gui.c, src/game.c, src/gui.c, src/board.c,
src/Makefile.am: Initial adaptation for transition to xboard
protocol.
* src/history.c, src/player_ai.c, src/search.c,
src/gen_chess_moves.c, src/transposition.c, src/repetition.c,
src/player_human.c: Removed from repository.
------------------------------------------------------------------------
r9 | waltervn | 2004-05-01 17:55:14 +0200 (Sat, 01 May 2004) | 14 lines
* src/dreamer/transposition.h, src/dreamer/state.h,
src/dreamer/history.h, src/dreamer/hashing.h,
src/dreamer/repetition.h, src/dreamer/search.h, src/dreamer/move.h,
src/dreamer/eval.h, src/dreamer/board.h, src/dreamer/io.h: Moved
from the src/dreamer/include/ directory.
* src/dreamer/history.c, src/dreamer/commands.c,
src/dreamer/search.c, src/dreamer/move.c,
src/dreamer/transposition.c, src/dreamer/dreamer.c,
src/dreamer/hashing.c, src/dreamer/repetition.c, src/dreamer/eval.c,
src/dreamer/board.c: Updated #include statements.
* src/dreamer/commands.h: Added to repository.
* src/dreamer/Makefile.am: Removed 'game.c' from dreamer_SOURCES.
------------------------------------------------------------------------
r8 | waltervn | 2004-05-01 03:32:23 +0200 (Sat, 01 May 2004) | 14 lines
* configure.ac, src/Makefile.am, src/dreamer/Makefile.am: Updated to
handle added files.
* src/dreamer/hashing.c, src/dreamer/repetition.c,
src/dreamer/search.c, src/dreamer/move.c, src/dreamer/eval.c,
src/dreamer/transposition.c, src/dreamer/include/transposition.h,
src/dreamer/include/hashing.h, src/dreamer/include/repetition.h,
src/dreamer/include/search.h, src/dreamer/include/eval.h: Copied
from src/ for dreamer. Removed global 'chess_board' entirely.
* src/dreamer/dreamer.c, src/dreamer/commands.c,
src/dreamer/io_unix.c, src/dreamer/include/state.h,
src/dreamer/include/io.h: Added to repository.
* src/pipe/pipe.c: Implemented send function.
------------------------------------------------------------------------
r7 | waltervn | 2004-04-21 22:26:29 +0200 (Wed, 21 Apr 2004) | 5 lines
* configure.ac, Makefile.am, src/Makefile.am: Updated to handle added
files.
* src/pipe/Makefile.am, src/pipe/pipe.h, src/pipe/pipe.c: Added to
repository.
------------------------------------------------------------------------
r6 | krismca | 2004-03-31 22:49:36 +0200 (Wed, 31 Mar 2004) | 2 lines
* AUTHORS: Added my email address.
------------------------------------------------------------------------
r5 | waltervn | 2004-03-31 16:32:45 +0200 (Wed, 31 Mar 2004) | 2 lines
* src/player_human.c: Minor clean-up work.
------------------------------------------------------------------------
r4 | waltervn | 2004-03-31 16:24:00 +0200 (Wed, 31 Mar 2004) | 2 lines
* README: Entered a short description of the project.
------------------------------------------------------------------------
r3 | waltervn | 2004-03-31 01:17:18 +0200 (Wed, 31 Mar 2004) | 2 lines
Updated svn:ignore properties.
------------------------------------------------------------------------
r2 | waltervn | 2004-03-30 20:11:50 +0200 (Tue, 30 Mar 2004) | 2 lines
Initial checkin.
------------------------------------------------------------------------
r1 | waltervn | 2004-03-30 18:52:40 +0200 (Tue, 30 Mar 2004) | 1 line
Initial repository layout
------------------------------------------------------------------------
|