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
|
/***************************************************************************
sg.cpp - description
-------------------
begin : a long time ago...
copyright : (C) 1994-2010 by Martin Bickel
email : bickel@asc-hq.org
***************************************************************************/
/*! \file sg.cpp
\brief THE main program: ASC
*/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
/*!
\mainpage
\section A short walk through the source
THE central class of ASC is GameMap in gamemap.h .
It is the anchor where nearly all elements of ASC are chained to. The global
variable #actmap is a pointer to the active map. There can be a maximum of
8 #Player on a map, plus neutral units (which are handled like a 9th #Player).
Hence the array of 9 #GameMap::Player classes in #GameMap.
Each player has units and buildings, which are stored in the lists
#Player::vehicleList and #Player::buildingList .
The terms units and vehicles are used synonymously in ASC. Since unit was a
reserved word in Borland Pascal (the language that ASC was originally written in),
we decided to use the term vehicle instead. But now, with ASC written in C++, 'unit' is also used.
Every building and unit is of a certain 'type': Vehicletype and BuildingType .
These are stored in the data files which are loaded on startup and are globally
available. They are not modified during runtime in any way and are referenced
by the indiividual instances of Vehicle and Building.
The Vehicletype has information that are shared by all vehicles of this 'type', like speed,
weapon systems, accessible terrain etc, while the vehicle stores things like remaining movement for this
turn, ammo, fuel and cargo.
The primary contents of a GameMap are its fields ( #tfield ). Each field has again a pointer
to a certain weather of a TerrainType. Each TerrainType has up to 5
different weathers ("dry (standard)","light rain", "heavy rain", "few snow",
"lot of snow"). If there is a #Vehicle or a #Building standing on a field, the field
has a pointer to it: tfield::vehicle and tfield::building .
On the field can be several instances of Object. Objects are another central class of
ASC. Roads, pipleines, trenches and woods are examples of objects. #Vehicle and #Building
are NOT objects. Objects modify the terrain for the field, like changing movement cost or adding
defense bonus. There is again a class #ObjectType containing immutable properties.
\section Interacting Interacting with the game's artefacts
\link gameinteraction See dedicated page \endlink
\section The basic class structure of ASC
<p><img src="ClassDiagram1.png">
\section Paragui
ASC uses the Paragui as widget engine. The documentation is available at
<A HREF="http://terdon.asc-hq.org/asc/paragui-doc/html/">terdon.asc-hq.org</A>.
*/
#include "global.h"
#include <stdio.h>
#include <stdlib.h>
#include <new>
#include <cstdlib>
#include <ctype.h>
#include <algorithm>
#include <memory>
#include <fstream>
#include <boost/regex.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string/classification.hpp>
#include "paradialog.h"
#include "vehicletype.h"
#include "buildingtype.h"
#include "ai/ai.h"
#include "misc.h"
#include "events.h"
#include "typen.h"
#include "spfst.h"
#include "loaders.h"
#include "dlg_box.h"
#include "controls.h"
#include "dlg_box.h"
#include "dialog.h"
#include "strtmesg.h"
#include "gamedlg.h"
#include "sg.h"
#include "gameoptions.h"
#include "loadimage.h"
#include "astar2.h"
#include "errors.h"
#include "dialogs/pwd_dlg.h"
#include "viewcalculation.h"
#include "replay.h"
#include "graphicset.h"
#include "loadbi3.h"
#include "itemrepository.h"
#include "music.h"
#include "messagedlg.h"
#include "statisticdialog.h"
#include "clipboard.h"
#include "guifunctions.h"
#include "iconrepository.h"
#include "dashboard.h"
#include "gamedialog.h"
#include "unitset.h"
#include "applicationstarter.h"
#include "replaymapdisplay.h"
#ifdef WEATHERGENERATOR
# include "weathercast.h"
#endif
#include "asc-mainscreen.h"
#include "dialogs/unitinfodialog.h"
#include "util/messaginghub.h"
#include "cannedmessages.h"
#include "memorycheck.cpp"
#include "networkinterface.h"
#include "resourcenet.h"
#include "mapimageexport.h"
#include "loadpcx.h"
#include "gameeventsystem.h"
#include "sdl/sound.h"
#include "soundList.h"
#include "turncontrol.h"
#include "networksupervisor.h"
#include "dialogs/newgame.h"
#include "dialogs/soundsettings.h"
#include "dialogs/alliancesetup.h"
#include "dialogs/unitcounting.h"
#include "dialogs/editgameoptions.h"
#include "dialogs/nextcampaignmap.h"
#include "dialogs/terraininfo.h"
#include "dialogs/editplayerdata.h"
#include "dialogs/locatefile.h"
#include "dialogs/infodialogs.h"
#include "stdio-errorhandler.h"
#include "widgets/textrenderer.h"
#include "dialogs/productionanalysis.h"
#include "dialogs/fileselector.h"
#include "containerbase-functions.h"
#include "memory-measurement.h"
#include "dialogs/mailoptionseditor.h"
#include "dialogs/unitguidedialog.h"
#include "actions/cancelresearchcommand.h"
#include "actions/diplomacycommand.h"
#include "gameevent_dialogs.h"
#include "actions/commandwriter.h"
#include "dialogs/actionmanager.h"
#include "dialogs/gotoposition.h"
#include "loggingoutput.h"
#include "contextutils.h"
#include "actions/taskinterface.h"
#include "tasks/taskcontainer.h"
#include "dialogs/taskmanager.h"
#include "autotraining.h"
#include "spfst-legacy.h"
#include "dialogs/eventinfo.h"
#include "lua/luarunner.h"
#include "lua/luastate.h"
#include "luacommandwriter.h"
#include "campaignactionrecorder.h"
#include "textfiletags.h"
#include "dataversioncheck.h"
#include "packagemanager.h"
#include "i18n.h"
#ifdef WIN32
# include "win32/win32-errormsg.h"
# include "win32/msvc/mdump.h"
MiniDumper miniDumper( "main" );
# include <direct.h>
# include <stdlib.h>
# include <stdio.h>
#endif
MapField* getSelectedField(void)
{
return actmap->getField( actmap->getCursor() );
}
#define mmaintainence
bool maintainencecheck( void )
{
int res = 0;
if ( res )
return true;
#ifdef maintainence
int num = 0;
for ( int i = 0; i < 8; i++ )
if ( actmap->player[i].stat == Player::human && actmap->player[i].exist())
num++;
if ( actmap->campaign )
num++;
if ( actmap->network )
num++;
if ( num <= 1 )
return 1;
else
return 0;
#else
return false;
#endif
}
void positionCursor( Player& player )
{
getDefaultMapDisplay().displayPosition( player.getParentMap()->getCursor() );
}
void viewcomp( Player& player )
{
computeview( player.getParentMap() );
}
void runOpenTasks()
{
GameMap* map = actmap;
if ( map->tasks ) {
TaskContainer* tc = dynamic_cast<TaskContainer*>( map->tasks );
if ( tc ) {
while ( tc->pendingCommands.begin() != tc->pendingCommands.end() ) {
Command* c = tc->pendingCommands.front();
TaskInterface* ti = dynamic_cast<TaskInterface*>( c );
if ( ti->operatable() ) {
ActionResult res = c->execute( createFollowerContext( map ));
if ( !res.successful() )
dispmessage2(res);
}
tc->pendingCommands.erase( tc->pendingCommands.begin() );
}
}
}
}
void runPendingTasks( Player& player )
{
GameMap* map = player.getParentMap();
if ( map->tasks ) {
TaskContainer* tc = dynamic_cast<TaskContainer*>( map->tasks );
if ( tc )
if( tc->pendingCommands.begin() != tc->pendingCommands.end() )
if (choice_dlg("run pending tasks ?","~y~es","~n~o") == 1)
runOpenTasks();
}
}
void hookGuiToMap( GameMap* map )
{
if ( !map->getGuiHooked() ) {
map->sigPlayerUserInteractionBegins.connect( sigc::ptr_fun( &viewcomp ) );
map->sigPlayerUserInteractionBegins.connect( sigc::hide( repaintMap.make_slot() ));
map->sigPlayerUserInteractionBegins.connect( sigc::ptr_fun( &positionCursor ));
map->sigPlayerUserInteractionBegins.connect( sigc::hide( sigc::ptr_fun( &checkforreplay )));
map->sigPlayerUserInteractionBegins.connect( sigc::ptr_fun( &checkForNewResearch ));
map->sigPlayerUserInteractionBegins.connect( sigc::ptr_fun( &viewunreadmessages ));
map->sigPlayerUserInteractionBegins.connect( sigc::ptr_fun( &checkJournal ));
map->sigPlayerUserInteractionBegins.connect( sigc::ptr_fun( &checkUsedASCVersions ));
map->sigPlayerUserInteractionBegins.connect( sigc::hide( updateFieldInfo.make_slot() ));
map->sigPlayerUserInteractionEnds.connect( sigc::ptr_fun( &runPendingTasks ));
map->sigPlayerTurnHasEnded.connect( sigc::ptr_fun( &viewOwnReplay));
map->guiHooked();
}
}
bool loadGameFromFile( const ASCString& filename )
{
GameMap* m = mapLoadingExceptionChecker( filename, MapLoadingFunction( tsavegameloaders::loadGameFromFile ));
if ( !m )
return false;
delete actmap;
actmap = m;
actmap->levelfinished = false;
if ( actmap->replayinfo ) {
if ( actmap->replayinfo->actmemstream )
displaymessage2( "actmemstream already open at begin of turn ",2 );
if ( actmap->replayinfo->guidata[actmap->actplayer] )
actmap->replayinfo->actmemstream = new MemoryStream ( actmap->replayinfo->guidata[actmap->actplayer], tnstream::appending );
else {
actmap->replayinfo->guidata[actmap->actplayer] = new MemoryStreamStorage;
actmap->replayinfo->actmemstream = new MemoryStream ( actmap->replayinfo->guidata[actmap->actplayer], tnstream::writing );
}
}
computeview( actmap );
hookGuiToMap ( actmap );
return true;
}
bool loadGame( bool mostRecent )
{
ASCString s1;
if ( mostRecent ) {
int datefound = 0;
tfindfile ff ( savegameextension );
tfindfile::FileInfo fi;
while ( ff.getnextname( fi ))
if ( fi.date > datefound ) {
datefound = fi.date;
s1 = fi.name;
}
} else {
// s1 = selectFile( savegameextension, true );
s1 = selectSavegame( savegameextension, true );
}
if ( !s1.empty() ) {
StatusMessageWindowHolder smw = MessagingHub::Instance().infoMessageWindow( "loading " + s1 );
loadGameFromFile( s1 );
updateFieldInfo();
positionCursor( actmap->getCurrentPlayer() );
getDefaultMapDisplay().displayPosition( actmap->getCursor() );
displaymap();
return true;
} else
return false;
}
void saveGame( bool as )
{
if ( !actmap )
return;
ASCString s1;
int nameavail = 0;
if ( !actmap->preferredFileNames.savegame[actmap->actplayer].empty() )
nameavail = 1;
if ( as || !nameavail ) {
s1 = selectSavegame( savegameextension, false);
} else
s1 = actmap->preferredFileNames.savegame[actmap->actplayer];
if ( !s1.empty() ) {
actmap->preferredFileNames.savegame[actmap->actplayer] = s1;
StatusMessageWindowHolder smw = MessagingHub::Instance().infoMessageWindow( "saving " + s1 );
savegame( s1, actmap );
}
}
void loadmap( const ASCString& name, bool campaign )
{
GameMap* m = mapLoadingExceptionChecker( name, MapLoadingFunction( tmaploaders::loadmap ));
delete actmap;
actmap = m;
computeview( actmap );
hookGuiToMap( actmap );
if ( !campaign )
actmap->campaign.avail = false;
}
enum MapTypeLoaded { None, Map, Savegame, Mailfile };
MapTypeLoaded loadStartupMap ( const char *gameToLoad=NULL )
{
if ( gameToLoad && gameToLoad[0] ) {
try {
if ( patimat ( ASCString("*")+tournamentextension, gameToLoad )) {
if( validateemlfile( gameToLoad ) == 0 )
fatalError( "Email gamefile %s is invalid. Aborting.", gameToLoad );
try {
GameMap* map = continueNetworkGame( ASCString(gameToLoad) );
if ( map ) {
delete actmap;
actmap = map;
hookGuiToMap(actmap);
}
return Mailfile;
} catch ( tfileerror ) {
fatalError ( "%s is not a legal email game.", gameToLoad );
}
} else if( patimat ( savegameextension, gameToLoad )) {
if( validatesavfile( gameToLoad ) == 0 )
fatalError ( "The savegame %s is invalid. Aborting.", gameToLoad );
try {
loadGameFromFile( gameToLoad );
computeview( actmap );
return Savegame;
} catch ( tfileerror ) {
fatalError ( "%s is not a legal savegame. ", gameToLoad );
}
} else if( patimat ( mapextension, gameToLoad )) {
if( validatemapfile( gameToLoad ) == 0 )
fatalError ( "Mapfile %s is invalid. Aborting.", gameToLoad );
try {
loadmap( gameToLoad, false );
} catch ( tfileerror ) {
fatalError ( "%s is not a legal map. ", gameToLoad );
}
} else
fatalError ( "Don't know how to handle the file %s ", gameToLoad );
}
catch ( const InvalidID & err ) {
displaymessage( err.getMessage(), 2 );
} /* endcatch */
catch ( const tinvalidversion & err ) {
if ( err.expected < err.found )
displaymessage( "File/module %s has invalid version.\nExpected version %d\nFound version %d\nPlease install the latest version from www.asc-hq.org", 2, err.getFileName().c_str(), err.expected, err.found );
else
displaymessage( "File/module %s has invalid version.\nExpected version %d\nFound version %d\nThis is a bug, please report it!", 2, err.getFileName().c_str(), err.expected, err.found );
}
} else { // resort to loading defaults
ASCString s = CGameOptions::Instance()->startupMap;
if ( s.empty() )
s = "asc001.map";
int maploadable;
{
tfindfile ff ( s );
string filename = ff.getnextname();
maploadable = validatemapfile ( filename );
}
if ( !maploadable ) {
tfindfile ff ( mapextension );
string filename = ff.getnextname();
if ( filename.empty() )
displaymessage( "unable to load startup-map",2);
while ( !validatemapfile ( filename ) ) {
filename = ff.getnextname();
if ( filename.empty() )
displaymessage( "unable to load startup-map",2);
}
s = filename;
}
loadmap( s, true );
return Map;
displayLogMessage ( 6, "done\n" );
}
return None;
}
void startnextcampaignmap( int id)
{
GameMap* map = nextCampaignMap( id );
delete actmap;
actmap = map;
if ( actmap ) {
computeview( actmap );
hookGuiToMap( actmap );
repaintMap();
if ( CGameOptions::Instance()->recordCampaignMaps )
actmap->actionRecorder = new CampaignActionLogger( actmap );
}
}
void benchgame ( bool withViewCalc )
{
int t2;
int t = ticker;
int n = 0;
do {
if ( withViewCalc )
computeview( actmap );
repaintMap();
n++;
t2 = ticker;
} while ( t + 1000 > t2 ); /* enddo */
double d = 100 * n;
d /= (t2-t);
char buf[100];
sprintf ( buf, "%3.1f fps", d );
infoMessage ( buf );
}
void changePassword( GameMap* gamemap )
{
if ( Player::getHumanPlayerNum( gamemap) < 2 ) {
infoMessage ("Passwords are only used for multiplayer games");
return;
}
bool success;
do {
Password oldpwd = gamemap->player[gamemap->actplayer].passwordcrc;
gamemap->player[gamemap->actplayer].passwordcrc.reset();
success = enterpassword ( gamemap->player[gamemap->actplayer].passwordcrc, true, true );
if ( !success )
gamemap->player[gamemap->actplayer].passwordcrc = oldpwd;
} while ( gamemap->player[gamemap->actplayer].passwordcrc.empty() && success && viewtextquery ( 910, "warning", "~e~nter password", "~c~ontinue without password" ) == 0 ); /* enddo */
}
void helpAbout()
{
ASCString s = "#fontsize=22#Advanced Strategic Command#fontsize=14#\n";
s += getVersionAndCompilation();
s += "\n#fontsize=18#Credits#fontsize=14#\n";
s += readtextmessage( 30 );
ViewFormattedText vft( "About", s, PG_Rect(-1,-1,450,550));
vft.Show();
vft.RunModal();
}
void undo()
{
if ( actmap ) {
resetActiveGuiAction( actmap );
actmap->actions.undo( createContext( actmap ) );
displaymap();
mapChanged(actmap);
updateFieldInfo();
}
}
void redo()
{
if ( actmap ) {
resetActiveGuiAction( actmap );
actmap->actions.redo( createContext( actmap ) );
displaymap();
mapChanged(actmap);
updateFieldInfo();
}
}
bool continueAndStartMultiplayerGame( bool mostRecent = false )
{
GameMap* map = continueNetworkGame( mostRecent );
if ( map ) {
delete actmap;
actmap = map;
hookGuiToMap(actmap);
actmap->sigPlayerUserInteractionBegins( actmap->player[actmap->actplayer] );
displaymap();
return true;
} else
return false;
}
void writeLuaCommands()
{
ASCString filename = selectFile("*.lua", false );
if ( !filename.empty() ) {
LuaCommandFileWriter writer ( filename );
actmap->actions.getCommands( writer );
}
}
void selectAndRunLuaScript()
{
ASCString file = selectFile( "*.lua", true );
if ( file.size() ) {
LuaState state;
LuaRunner runner( state );
runner.runFile( file );
if ( !runner.getErrors().empty() )
errorMessage( runner.getErrors() );
updateFieldInfo();
}
}
void showUnitAiProperties()
{
MapField* fld = getSelectedField();
if ( fld->vehicle && fieldvisiblenow(fld ) ) {
Vehicle* v = fld->vehicle;
ASCString s;
s += "Unit nwid = " + ASCString::toString( v->networkid ) + "\n";
AiParameter* a = NULL;
for ( int i = 0; i < 8; ++i )
if ( v->aiparam[i] ) {
a = v->aiparam[i];
break;
}
s += "Task = " + ASCString(AItasks[(int)a->getTask() ]) + "\n";
s += "Job = " + ASCString(AIjobs[(int)a->getJob() ]) + "\n";
s += "Destination: ";
if ( a->dest.valid() )
s += a->dest.toString();
s += "\n";
ViewFormattedText vat ( "AI properties", s, PG_Rect( 20, -1 , 450, 480 ));
vat.Show();
vat.RunModal();
}
}
void showUsedPackages()
{
PackageManager::storeData( actmap );
if ( actmap->packageData ) {
ASCString s;
for ( PackageData::Packages::const_iterator i = actmap->packageData->packages.begin(); i != actmap->packageData->packages.end(); ++i ) {
s += "#fontsize=14#" + i->second->name + "#fontsize=11#\n";
s += i->second->description;
s += "\n\n";
}
ViewFormattedText vat ( "Used Packages", s, PG_Rect( 20, -1 , 450, 480 ));
vat.Show();
vat.RunModal();
}
}
class CommandAllianceSetupStrategy : public AllianceSetupWidget::ApplyStrategy {
virtual void sneakAttack ( GameMap* map, int actingPlayer, int towardsPlayer )
{
auto_ptr<DiplomacyCommand> dc ( new DiplomacyCommand( map->player[actingPlayer]));
dc->sneakAttack( map->getPlayer( towardsPlayer ));
ActionResult res = dc->execute( createContext(actmap) );
if ( res.successful() )
dc.release();
else
displayActionError( res );
}
virtual void setState ( GameMap* map, int actingPlayer, int towardsPlayer, DiplomaticStates newState )
{
auto_ptr<DiplomacyCommand> dc ( new DiplomacyCommand( map->player[actingPlayer]));
dc->newstate( newState, map->getPlayer( towardsPlayer ));
ActionResult res = dc->execute( createContext(actmap) );
if ( res.successful() )
dc.release();
else
displayActionError( res );
}
};
void editAlliances()
{
CommandAllianceSetupStrategy cass;
if ( setupalliances( actmap, &cass, actmap->getCurrentPlayer().stat == Player::supervisor ) ) {
if ( computeview( actmap ))
displaymap();
}
}
/** this performs some check if a technology may be choosen right now and than
either calls chooseTechnology
or displays some informational messages
*/
void chooseTechnologyIfAvail( Player& player )
{
if ( player.research.activetechnology ) {
infoMessage("You are already researching " + player.research.activetechnology->name);
} else {
if ( !player.research.progress )
infoMessage("You don't have any research points to spend");
else {
checkForNewResearch( player );
}
}
}
// user actions using the old event system
void executeUserAction ( tuseractions action )
{
switch ( action ) {
case ua_repainthard :
case ua_repaint :
repaintDisplay();
break;
case ua_help :
help(20);
break;
case ua_howtostartpbem :
help(21);
break;
case ua_howtocontinuepbem :
help(22);
break;
/*
case ua_mntnc_morefog:
if (actmap->weather.fog < 255 && maintainencecheck() ) {
actmap->weather.fog++;
computeview( actmap );
displaymessage2("fog intensity set to %d ", actmap->weather.fog);
displaymap();
}
break;
case ua_mntnc_lessfog:
if (actmap->weather.fog && maintainencecheck()) {
actmap->weather.fog--;
computeview( actmap );
displaymessage2("fog intensity set to %d ", actmap->weather.fog);
displaymap();
}
break;
case ua_mntnc_morewind:
if ((actmap->weather.windSpeed < 254) && maintainencecheck()) {
actmap->weather.windSpeed+=2;
displaywindspeed ( );
updateFieldInfo();
}
break;
case ua_mntnc_lesswind:
if ((actmap->weather.windSpeed > 1) && maintainencecheck() ) {
actmap->weather.windSpeed-=2;
displaywindspeed ( );
updateFieldInfo();
}
break;
case ua_mntnc_rotatewind:
if ( maintainencecheck() ) {
if (actmap->weather.windDirection < sidenum-1 )
actmap->weather.windDirection++;
else
actmap->weather.windDirection = 0;
displaymessage2("wind dir set to %d ", actmap->weather.windDirection);
updateFieldInfo();
displaymap();
}
break;
*/
case ua_changeresourceview:
if ( mainScreenWidget )
mainScreenWidget->toggleMapLayer( "resources");
displaymap();
break;
case ua_visibilityInfo:
if ( mainScreenWidget )
mainScreenWidget->toggleMapLayer( "visibilityvalue");
displaymap();
break;
case ua_showCargoLayer:
if ( mainScreenWidget )
mainScreenWidget->toggleMapLayer( "container");
displaymap();
break;
case ua_benchgamewov:
benchgame( false );
break;
case ua_benchgamewv :
benchgame( true );
break;
case ua_writescreentopcx:
{
ASCString name = getnextfilenumname ( "screen", "pcx", 0 );
Surface s ( PG_Application::GetScreen() );
writepcx ( name, s);
displaymessage2( "screen saved to %s", name.c_str() );
}
break;
case ua_bi3preferences:
bi3preferences();
break;
case ua_settribute :
settributepayments ();
break;
case ua_giveunitaway:
if ( actmap && actmap->getgameparameter( cgp_disableUnitTransfer ) == 0 )
giveunitaway ( actmap->getField( actmap->getCursor() ), createContext( actmap ));
else
infoMessage("Sorry, this function has been disabled when starting the map!");
break;
case ua_newmessage:
newmessage();
break;
case ua_viewqueuedmessages:
viewmessages( "queued messages", actmap->unsentmessage, 1 );
break;
case ua_viewsentmessages:
viewmessages( "sent messages", actmap->player[ actmap->actplayer ].sentmessage, 0);
break;
case ua_viewreceivedmessages:
viewmessages( "received messages", actmap->player[ actmap->actplayer ].oldmessage, 0 );
break;
case ua_viewjournal:
viewjournal( true );
break;
case ua_editjournal:
editjournal();
break;
case ua_viewaboutmessage:
helpAbout();
break;
case ua_viewlayerhelp:
help(49);
break;
case ua_SDLinfo:
showSDLInfo();
break;
case ua_toggleunitshading:
{
CGameOptions::Instance()->units_gray_after_move = !CGameOptions::Instance()->units_gray_after_move;
CGameOptions::Instance()->setChanged();
displaymap();
while ( mouseparams.taste )
releasetimeslice();
ASCString condition;
if ( CGameOptions::Instance()->units_gray_after_move )
condition = "- thay can't move";
else
condition = "- thay can't move AND\n- thay can't shoot";
infoMessage ("units that now displayed shaded when:\n" + condition);
}
break;
case ua_computerturn:
if ( maintainencecheck() ) {
displaymessage("This function is under development and for programmers only\n"
"unpredictable things may happen ...",3 ) ;
if (choice_dlg("do you really want to start the AI?","~y~es","~n~o") == 1) {
if ( !actmap->player[ actmap->actplayer ].ai )
actmap->player[ actmap->actplayer ].ai = new AI ( actmap, actmap->actplayer );
savegame ( "aistart.sav", actmap);
actmap->player[ actmap->actplayer ].ai->run( &getDefaultMapDisplay() );
}
}
break;
case ua_setupnetwork:
/*
if ( actmap->network )
setupnetwork ( actmap->network );
else
displaymessage("This map is not played across a network",3 );
*/
displaymessage("Not implemented yet",3 );
break;
case ua_UnitSetInfo:
viewUnitSetinfo();
break;
case ua_GameParameterInfo:
showGameParameters();
break;
case ua_viewunitweaponrange:
mainScreenWidget->showWeaponRange( actmap, actmap->getCursor() );
break;
case ua_viewunitmovementrange:
mainScreenWidget->showMovementRange( actmap, actmap->getCursor() );
break;
case ua_aibench:
if ( maintainencecheck() && 0 ) {
if ( !actmap->player[ actmap->actplayer ].ai )
actmap->player[ actmap->actplayer ].ai = new AI ( actmap, actmap->actplayer );
if ( AI* ai = dynamic_cast<AI*>( actmap->player[ actmap->actplayer ].ai )) {
savegame ( "ai-bench-start.sav", actmap);
ai->run( true, &getDefaultMapDisplay() );
}
}
break;
case ua_selectPlayList:
selectPlayList();
break;
case ua_statisticdialog:
statisticDialog();
break;
case ua_togglesound:
if ( !SoundSystem::getInstance()->isOff() ) {
bool on = !SoundSystem::getInstance()->areEffectsMuted();
SoundSystem::getInstance()->setEffectsMute( on );
if ( on )
SoundSystem::getInstance()->pauseMusic();
else
SoundSystem::getInstance()->resumeMusic();
}
break;
case ua_showPlayerSpeed:
showPlayerTime();
break;
case ua_cancelResearch:
if ( actmap->player[actmap->actplayer].research.activetechnology ) {
ASCString s = "do you really want to cancel the current research project ?\n";
// s += strrr ( actmap->player[actmap->actplayer].research.progress );
// s += " research points will be lost.";
if (choice_dlg(s.c_str(),"~y~es","~n~o") == 1) {
auto_ptr<CancelResearchCommand> crc ( new CancelResearchCommand( actmap ));
crc->setPlayer( actmap->player[actmap->actplayer] );
ActionResult res = crc->execute( createContext( actmap ));
if ( res.successful() )
crc.release();
else
displayActionError( res );
}
} else
displaymessage("you are not researching anything", 3);
break;
case ua_showResearchStatus: {
ASCString s;
s += "Current technology:\n";
if ( actmap->player[actmap->actplayer].research.activetechnology )
s += actmap->player[actmap->actplayer].research.activetechnology->name;
else
s += " - none - ";
s += "\n\n";
s += "Research Points: \n";
s += strrr( actmap->player[actmap->actplayer].research.progress );
if ( actmap->player[actmap->actplayer].research.activetechnology )
s += ASCString(" / ") + strrr ( actmap->player[actmap->actplayer].research.activetechnology->researchpoints );
s += "\n\n";
s+= "Research Points Plus \n";
s += strrr ( actmap->player[actmap->actplayer].research.getResearchPerTurn() );
s += "\n\n";
s+= "Developed Technologies: \n";
for ( vector<int>::iterator i = actmap->player[actmap->actplayer].research.developedTechnologies.begin(); i != actmap->player[actmap->actplayer].research.developedTechnologies.end(); ++i ) {
Technology* t = technologyRepository.getObject_byID( *i );
if ( t )
s += t->name + "\n";
}
tviewanytext vat ;
vat.init ( "Research Status", s.c_str(), 20, -1 , 450, 480 );
vat.run();
vat.done();
}
break;
case ua_exportUnitToFile:
warningMessage("this function is not supported any longer");
break;
case ua_undo:
undo();
break;
case ua_redo:
redo();
break;
case ua_unitweightinfo:
if ( fieldvisiblenow ( getSelectedField() )) {
Vehicle* eht = getSelectedField()->vehicle;
if ( eht && actmap->player[actmap->actplayer].diplomacy.getState( eht->getOwner()) >= PEACE_SV )
infoMessage(" weight of unit: \n basic: " + ASCString::toString(eht->typ->weight) + "\n+cargo: " + ASCString::toString(eht->cargoWeight()) + "\n= " + ASCString::toString( eht->weight() ));
}
break;
case ua_GameStatus:
infoMessage ( "Current game time is:\n turn " + ASCString::toString( actmap->time.turn() ) + " , move " + ASCString::toString( actmap->time.move() ));
break;
case ua_soundDialog:
soundSettings( NULL );
break;
case ua_reloadDlgTheme:
getPGApplication().reloadTheme();
MessagingHub::Instance().message( MessagingHubBase::InfoMessage, "Theme reloaded" );
// soundSettings( NULL );
break;
case ua_viewButtonPanel: mainScreenWidget->spawnPanel( ASC_MainScreenWidget::ButtonPanel );
break;
case ua_viewWindPanel: mainScreenWidget->spawnPanel( ASC_MainScreenWidget::WindInfo );
break;
case ua_clearImageCache: IconRepository::clear();
break;
case ua_viewUnitInfoPanel: mainScreenWidget->spawnPanel( ASC_MainScreenWidget::UnitInfo );
break;
case ua_viewOverviewMapPanel: mainScreenWidget->spawnPanel( ASC_MainScreenWidget::OverviewMap );
break;
case ua_viewMapControlPanel: mainScreenWidget->spawnPanel( ASC_MainScreenWidget::MapControl );
break;
// case ua_viewActionPanel: mainScreenWidget->spawnPanel( ASC_MainScreenWidget::ActionInfo );
// break;
case ua_vehicleinfo: unitInfoDialog();
break;
#ifdef WEATHERGENERATOR
case ua_weathercast: weathercast();
break;
#endif
case ua_newGame:
startMultiplayerGame();
break;
case ua_continuerecentnetworkgame:
continueAndStartMultiplayerGame( true );
break;
case ua_continuenetworkgame:
continueAndStartMultiplayerGame();
break;
case ua_loadgame: loadGame( false);
break;
case ua_loadrecentgame: loadGame ( true );
break;
case ua_savegame: saveGame( true );
break;
case ua_setupalliances:
editAlliances();
updateFieldInfo();
break;
case ua_mainmenu:
/*
if (choice_dlg("do you really want to close the current game ?","~y~es","~n~o") == 1) {
delete actmap;
actmap = NULL;
throw NoMapLoaded();
}
*/
GameDialog::gameDialog();
break;
case ua_viewterraininfo:
if ( fieldvisiblenow( actmap->getField( actmap->getCursor())))
viewterraininfo( actmap, actmap->getCursor(), fieldVisibility( actmap->getField( actmap->getCursor())) == visible_all );
break;
case ua_testMessages:
MessagingHub::Instance().message( MessagingHubBase::InfoMessage, "This is an informational message" );
MessagingHub::Instance().message( MessagingHubBase::Warning, "This is an warning message" );
MessagingHub::Instance().message( MessagingHubBase::Error, "This is an error message" );
MessagingHub::Instance().message( MessagingHubBase::FatalError, "This is an fatal error message. Game will be exited." );
break;
case ua_writemaptopcx :
writemaptopcx ( actmap, choice_dlg("Include View ?","~y~es","~n~o")==1 );
break;
case ua_exitgame:
if (choiceDialog("do you really want to quit ?","~y~es","~n~o", "quitasc") == 1)
getPGApplication().Quit();
break;
case ua_cargosummary:
showCargoSummary( getSelectedField() );
break;
case ua_unitsummary: showUnitSummary( actmap );
break;
case ua_gamepreferences:
editGameOptions();
break;
case ua_increase_zoom:
if ( mainScreenWidget && mainScreenWidget->getMapDisplay() ) {
mainScreenWidget->getMapDisplay()->changeZoom( 10 );
viewChanged();
repaintMap();
}
break;
case ua_decrease_zoom:
if ( mainScreenWidget && mainScreenWidget->getMapDisplay() ) {
mainScreenWidget->getMapDisplay()->changeZoom( -10 );
viewChanged();
repaintMap();
}
break;
case ua_selectgraphicset:
selectgraphicset();
break;
case ua_networksupervisor:
networksupervisor();
displaymap();
break;
case ua_researchinfo:
researchinfo ();
break;
case ua_viewPipeNet:
mainScreenWidget->getMapDisplay()->toggleMapLayer("pipes");
repaintMap();
break;
case ua_viewReactionfireOverlay:
mainScreenWidget->getMapDisplay()->toggleMapLayer("reactionfire");
repaintMap();
break;
case ua_viewUnitinfoOverlay:
mainScreenWidget->getMapDisplay()->toggleMapLayer("unitinfo");
repaintMap();
break;
case ua_viewUnitexperienceOverlay:
mainScreenWidget->getMapDisplay()->toggleMapLayer("unittraining");
repaintMap();
break;
case ua_showsearchdirs: showSearchPath();
break;
case ua_changepassword:
changePassword( actmap );
break;
case ua_editPlayerData:
editPlayerData( actmap );
break;
case ua_locatefile:
locateFile();
break;
case ua_viewfont:
viewFont();
break;
case ua_resourceAnalysis:
resourceAnalysis();
break;
case ua_unitproductionanalysis:
unitProductionAnalysis( actmap );
break;
case ua_gotoPosition: {
GotoPosition gp( actmap );
gp.Show();
gp.RunModal();
};
break;
case ua_showTechAdapter: {
ViewFormattedText vft("TechAdapter", actmap->getCurrentPlayer().research.listTriggeredTechAdapter(), PG_Rect( -1,-1,300,500));
vft.Show();
vft.RunModal();
};
break;
case ua_showUnitEndurance: showUnitEndurance();
break;
case ua_getMemoryFootprint: showMemoryFootprint();
break;
case ua_showMiningPower: viewMiningPower();
break;
case ua_emailOptions: editEmailOptions();
break;
case ua_createReminder: newreminder();
break;
case ua_recompteview:
computeview(actmap);
displaymap();
break;
case ua_unitGuideDialog:
unitGuideWindow( 2);
break;
case ua_writeLuaCommands: writeLuaCommands();
break;
case ua_chooseTechnology: chooseTechnologyIfAvail( actmap->getCurrentPlayer() );
break;
case ua_actionManager: actionManager( actmap );
break;
case ua_runLuaCommands: selectAndRunLuaScript();
break;
case ua_unitAiOptions: showUnitAiProperties();
break;
case ua_showUsedPackages: showUsedPackages();
break;
case ua_runOpenTasks: runOpenTasks();
break;
case ua_taskManager: taskManager( actmap );
break;
case ua_createUnitCostList: createUnitCostList();
break;
case ua_eventInfo: viewEventInfo( actmap );
break;
default:
break;
};
}
bool mainloopidle( PG_MessageObject* msgObj )
{
if ( msgObj != PG_Application::GetApp())
return false;
if ( actmap ) {
while ( actmap->player[ actmap->actplayer ].queuedEvents ) {
displayLogMessage ( 6, " EVENT: queued events to be evaluated for player %d \n", actmap->actplayer );
if ( !checkevents( actmap, &getDefaultMapDisplay() ))
return false;
}
checktimedevents( actmap, &getDefaultMapDisplay() );
checkforvictory( actmap, true );
}
return false;
}
void resetActions( GameMap& map )
{
if ( NewGuiHost::pendingCommand ) {
delete NewGuiHost::pendingCommand;
NewGuiHost::pendingCommand = NULL;
}
}
void resetActmap( GameMap& map )
{
if ( &map == actmap )
actmap = NULL;
}
pfont load_font ( const char* name )
{
tnfilestream stream ( name , tnstream::reading );
return loadfont ( &stream );
}
void loadLegacyFonts()
{
schriften.smallarial = load_font("smalaril.fnt");
schriften.large = load_font("usablack.fnt");
schriften.arial8 = load_font("arial8.fnt");
schriften.smallsystem = load_font("msystem.fnt");
schriften.guifont = load_font("gui.fnt");
schriften.guicolfont = load_font("guicol.fnt");
schriften.monogui = load_font("monogui.fnt");
activefontsettings.markfont = schriften.guicolfont;
shrinkfont ( schriften.guifont, -1 );
shrinkfont ( schriften.guicolfont, -1 );
shrinkfont ( schriften.monogui, -1 );
}
class GameThreadParams: public sigc::trackable
{
private:
bool exit() { exitMainloop = true; return true; };
public:
ASCString filename;
ASC_PG_App& application;
bool exitMainloop;
GameThreadParams( ASC_PG_App& app ) : application ( app ), exitMainloop(false)
{
app.sigQuit.connect( sigc::hide( sigc::mem_fun( *this, &GameThreadParams::exit )));
};
};
void checkGameEvents( GameMap* map,const Command& command )
{
checktimedevents( map, &getDefaultMapDisplay() );
checkevents( map, &getDefaultMapDisplay() );
}
int gamethread ( void* data )
{
GameMap::sigMapDeletion.connect( sigc::ptr_fun( &resetActions ));
GameMap::sigMapDeletion.connect( sigc::ptr_fun( &resetActmap ));
GameMap::sigPlayerTurnEndsStatic.connect( sigc::ptr_fun( &automaticTrainig ));
TaskContainer::registerHooks();
GameThreadParams* gtp = (GameThreadParams*) data;
std::auto_ptr<StartupScreen> startupScreen;
MapTypeLoaded mtl = None;
try {
loadpalette();
virtualscreenbuf.init();
startupScreen.reset( new StartupScreen( "title.jpg", dataLoaderTicker ));
loadLegacyFonts();
loaddata();
suppressMapTriggerExecution = false;
mtl = loadStartupMap( gtp->filename.c_str() );
}
catch ( const ParsingError & err ) {
errorMessage ( "Error parsing text file " + err.getMessage() );
return -1;
}
catch ( const tfileerror & err ) {
errorMessage ( "Error loading file " + err.getFileName() );
return -1;
}
catch ( const ASCmsgException & msg ) {
errorMessage ( msg.getMessage() );
return -1;
}
catch ( const ASCexception & ) {
errorMessage ( "loading of game failed" );
return -1;
}
catch ( const ThreadExitException & ) {
displayLogMessage(0, "caught thread exiting exception, shutting down");
return -1;
}
#ifndef _WIN32_
// Windows/MSVC will catch access violations with this, which we don't want to, because it makes our dump files useless.
catch ( ... ) {
fatalError ( "caught undefined exception" );
}
#endif
// ActionContainer::postActionExecution.connect( SigC::slot( &checkGameEvents ));
static ShowNewTechnology showNewTechs;
setResearchPresenter( &showNewTechs );
displayLogMessage ( 5, "loaddata completed successfully.\n" );
dataLoaderTicker();
displayLogMessage ( 5, "starting music..." );
startMusic();
displayLogMessage ( 5, " done\n" );
dataLoaderTicker();
repaintDisplay.connect( repaintMap );
mainScreenWidget = new ASC_MainScreenWidget( getPGApplication());
dataLoaderTicker();
/*
//! we are performing this the first time here while the startup logo is still active
if ( actmap && actmap->actplayer == -1 ) {
displayLogMessage ( 8, "Startup :: performing first next_turn..." );
next_turn( actmap, NextTurnStrategy_AskUser(), &getDefaultMapDisplay() );
displayLogMessage ( 8, "done.\n" );
}
*/
displayLogMessage ( 5, "entering outer main loop.\n" );
do {
try {
if ( !actmap || actmap->xsize <= 0 || actmap->ysize <= 0 ) {
displayLogMessage ( 8, "gamethread :: starting main menu.\n" );
startupScreen.reset();
GameDialog::gameDialog();
mtl = None;
} else {
mainScreenWidget->Show();
startupScreen.reset();
if ( actmap->actplayer == -1 ) {
displayLogMessage ( 8, "gamethread :: performing next_turn..." );
next_turn( actmap, NextTurnStrategy_AskUser(), &getDefaultMapDisplay() );
displayLogMessage ( 8, "done.\n" );
}
updateFieldInfo();
displayLogMessage ( 4, "Spawning MainScreenWidget\n ");
displayLogMessage ( 7, "Entering main event loop\n");
if ( mtl == Mailfile )
actmap->sigPlayerUserInteractionBegins( actmap->player[actmap->actplayer] );
mtl = None;
getPGApplication().Run();
displayLogMessage ( 7, "mainloop exited\n");
}
} /* endtry */
catch ( const NoMapLoaded & ) {
delete actmap;
actmap = NULL;
} /* endcatch */
catch ( const ShutDownMap & ) {
delete actmap;
actmap = NULL;
}
catch ( const LoadNextMap & lnm ) {
if ( actmap->campaign.avail ) {
delete actmap;
actmap = NULL;
startnextcampaignmap( lnm.id );
} else {
viewtext2(904);
if (choice_dlg("Do you want to continue playing ?","~y~es","~n~o") == 2) {
delete actmap;
actmap = NULL;
} else {
actmap->continueplaying = 1;
if ( actmap->replayinfo ) {
delete actmap->replayinfo;
actmap->replayinfo = NULL;
}
}
}
}
} while ( !gtp->exitMainloop );
delete actmap;
actmap = NULL;
return 0;
}
static void __runResearch( Player& player ){
runResearch( player, NULL, NULL );
}
void deployMapPlayingHooks ( GameMap* map )
{
map->sigPlayerTurnBegins.connect( sigc::ptr_fun( &initReplayLogging ));
map->sigPlayerTurnBegins.connect( sigc::ptr_fun( &transfer_all_outstanding_tribute ));
map->sigPlayerTurnBegins.connect( sigc::ptr_fun( &__runResearch ));
}
// including the command line parser, which is generated by genparse
#include "clparser/asc.cpp"
class ResourceLogger: public sigc::trackable {
ofstream s;
public:
ResourceLogger() {
s.open("resource-log", ios_base::out | ios_base::trunc );
MessagingHub::Instance().logCategorizedMessage.connect( sigc::mem_fun( *this, &ResourceLogger::message ));
MessagingHub::Instance().setLoggingCategory("ResourceWork", true);
};
void message( const ASCString& category, const ASCString& msg )
{
if ( category == "ResourceWork" )
s << msg << "\n";
}
~ResourceLogger() {
s.close();
}
};
class ScreenResolutionSetup {
Cmdline& cli;
int x,y;
bool fullscreen;
public:
ScreenResolutionSetup( Cmdline& commandLine );
int getWidth() { return x; };
int getHeight() { return y; };
bool isFullscreen() { return fullscreen; };
};
ScreenResolutionSetup::ScreenResolutionSetup( Cmdline& commandLine ) : cli( commandLine )
{
if ( SDL_Init( SDL_INIT_VIDEO ) )
fatalError( ASCString("Unable to init SDL: ") + SDL_GetError());
putenv(const_cast<char*>("SDL_VIDEO_CENTERED=1")) ;
fullscreen = true;
if ( cli.w() )
fullscreen = false;
if ( cli.f() )
fullscreen = true;
if ( CGameOptions::Instance()->forceWindowedMode && !cli.f() ) // cl->f == force fullscreen command line param
fullscreen = false;
int xr = -1;
int yr = -1;
// determining the graphics resolution
if ( CGameOptions::Instance()->xresolution != -1 )
xr = CGameOptions::Instance()->xresolution;
if ( cli.x() != -1 )
xr = cli.x();
if ( CGameOptions::Instance()->yresolution != -1 )
yr = CGameOptions::Instance()->yresolution;
if ( cli.y() != -1 )
yr = cli.y();
GetVideoModes gvm;
GetVideoModes::ModeRes best = gvm.getBest();
if ( xr == -1 ) {
if ( fullscreen )
xr = best.first;
else
xr = best.first - 100;
}
if ( yr == -1 ) {
if ( fullscreen )
yr = best.second;
else
yr = best.second - 100;
}
if ( CGameOptions::Instance()->graphicsDriver.compare_ci("default") != 0 ) {
static char buf[100];
strcpy(buf, "SDL_VIDEODRIVER=" );
strncat( buf, CGameOptions::Instance()->graphicsDriver.c_str(), 100 - strlen(buf));
buf[99] = 0;
putenv( buf );
}
if ( xr == -1 )
xr = 1024;
if ( yr == -1 )
yr = 768;
x = xr;
y = yr;
}
int main(int argc, char *argv[] )
{
assert ( sizeof(PointerSizedInt) == sizeof(int*));
// we should think about replacing clparser with libpopt
Cmdline* cl = NULL;
try {
cl = new Cmdline ( argc, argv );
} catch ( const string & s ) {
cerr << s;
exit(1);
}
auto_ptr<Cmdline> apcl ( cl );
if ( cl->v() ) {
ASCString msg = getstartupmessage();
printf( "%s", msg.c_str() );
exit(0);
}
MessagingHub::Instance().setVerbosity( cl->r() );
StdIoErrorHandler stdIoErrorHandler(false);
MessagingHub::Instance().exitHandler.connect( sigc::bind( &exit_asc, -1 ));
// ResourceLogger rl;
#ifdef WIN32
Win32IoErrorHandler* win32ErrorDialogGenerator = new Win32IoErrorHandler;
#endif
displayLogMessage( 1, getstartupmessage() );
ConfigurationFileLocator::Instance().setExecutableLocation( argv[0] );
try {
initFileIO( cl->c() ); // passing the filename from the command line options
checkDataVersion();
} catch ( const tfileerror & err ) {
displaymessage ( "unable to access file %s \n", 2, err.getFileName().c_str() );
}
catch ( ... ) {
displaymessage ( "loading of game failed during pre graphic initializing", 2 );
}
LoggingOutputHandler logger( getSearchPath( 0 ));
SoundSystem soundSystem ( CGameOptions::Instance()->sound.muteEffects, CGameOptions::Instance()->sound.muteMusic, cl->q() || CGameOptions::Instance()->sound.off );
soundSystem.setMusicVolume ( CGameOptions::Instance()->sound.musicVolume );
soundSystem.setEffectVolume ( CGameOptions::Instance()->sound.soundVolume );
tspfldloaders::mapLoaded.connect( sigc::ptr_fun( &deployMapPlayingHooks ));
PG_FileArchive archive( argv[0] );
ASC_PG_App app ( "asc2_dlg" );
app.sigAppIdle.connect ( sigc::ptr_fun( &mainloopidle ));
cursorMoved.connect( updateFieldInfo.make_slot() );
ScreenResolutionSetup screenResolutionSetup ( *cl );
int flags = 0;
if ( CGameOptions::Instance()->hardwareSurface )
flags |= SDL_HWSURFACE;
else
flags |= SDL_SWSURFACE;
if ( screenResolutionSetup.isFullscreen() )
flags |= SDL_FULLSCREEN;
app.setIcon( "program-icon.png" );
bool initialized = false;
if ( !app.InitScreen( screenResolutionSetup.getWidth(), screenResolutionSetup.getHeight(), 32, flags)) {
if ( flags & SDL_FULLSCREEN ) {
GetVideoModes gvm;
if ( gvm.getList().size() > 0 ) {
if ( app.InitScreen( gvm.getx(0), gvm.gety(0), 32, flags))
initialized = true;
}
}
} else
initialized = true;
if ( !initialized )
fatalError( "Could not initialize video mode");
#ifdef WIN32
delete win32ErrorDialogGenerator;
#endif
setWindowCaption ( "Advanced Strategic Command" );
GameThreadParams gtp ( app );
gtp.filename = cl->l();
if ( cl->next_param() < argc )
for ( int i = cl->next_param(); i < argc; i++ )
gtp.filename = argv[i];
int returncode = 0;
try {
// this starts the gamethread procedure, whichs will run the entire game
returncode = initializeEventHandling ( gamethread, >p );
}
catch ( const bad_alloc & ) {
fatalError ("Out of memory");
}
writegameoptions ( );
return( returncode );
}
|