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
|
/*
* Copyright (C) 2002,2003,2004,2005 Daniel Heck
* Copyright (C) 2006,2007,2008,2009 Ronald Lamprecht
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "main.hh"
#include "display.hh"
#include "lua.hh"
#include "gui/MainMenu.hh"
#include "gui/ErrorMenu.hh"
#include "gui/LevelPreviewCache.hh"
#include "options.hh"
#include "resource_cache.hh"
#include "oxyd.hh"
#include "SoundEngine.hh"
#include "SoundEffectManager.hh"
#include "MusicManager.hh"
#include "video.hh"
#include "ecl_argp.hh"
#include "ecl_font.hh"
#include "ecl_system.hh"
#include "errors.hh"
#include "world.hh"
#include "game.hh"
#include "nls.hh"
#include "LocalToXML.hh"
#include "ObjectValidator.hh"
#include "PreferenceManager.hh"
#include "Utf8ToXML.hh"
#include "XMLtoUtf8.hh"
#include "XMLtoLocal.hh"
#include "lev/RatingManager.hh"
#include "lev/VolatileIndex.hh"
#include "lev/PersistentIndex.hh"
#include "lev/ScoreManager.hh"
#include "enet/enet.h"
#include "tinygettext/include/tinygettext/log.hpp"
#include <locale.h>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <fstream>
#include <iostream>
#include <xercesc/dom/DOM.hpp>
#include <xercesc/framework/XMLRecognizer.hpp>
#include <xercesc/util/XMLString.hpp>
#include <xercesc/util/XMLUniDefs.hpp>
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/XercesVersion.hpp>
#include "SDL_main.h"
#include <SDL_image.h>
#include <SDL_mixer.h>
#include <SDL_ttf.h>
#ifdef MACOSX
// for search paths
#include "NSSystemDirectories.h"
#include <Carbon/Carbon.h>
#include <CoreFoundation/CoreFoundation.h>
#include <CoreServices/CoreServices.h>
#endif
using namespace std;
using namespace ecl;
using namespace enigma;
XERCES_CPP_NAMESPACE_USE
#ifdef WIN32
// LoadImage is a Syscall on Windows, which gets defined to LoadImageA
// or LoadImageW in winuser.h so we simply undefine it to use this
// name for one of the methods
#undef LoadImage
#endif
namespace
{
class Nulbuf : public std::streambuf {};
Nulbuf* nullbuffer = new Nulbuf;
}
/* -------------------- Variables -------------------- */
namespace enigma
{
Application app;
bool noAssert = true; // block expensive assert evaluations by default
bool WizardMode = false;
//! If true, do not ``grab'' the mouse and keyboard
bool Nograb = false;
bool Robinson = false; // do not connect to internet if true
}
/*! The stream object that is used for logging messages. As defined
here, it is not connected to any file or buffer.
(Note: I think writing to a stream without a streambuffer *should*
be a no-op, but it leads to crashes with g++ 2.95. to circumvent
this, Log is initialized with a dummy streambuf in init(). ) */
std::ostream enigma::Log(0);
/*! This is the stream object that is used when logging to a file. In
this case, enigma::Log uses this object's streambuffer. */
static std::fstream logfile;
/* -------------------- Functions -------------------- */
static void usage()
{
printf("Usage: %s [OPTION]... [levelfile.xml]...\n\n"
"Available options :\n\n"
" --assert Evaluate all debugging assertions\n"
" --data -d path Load data from additional directory\n"
" --help -h Show this help\n"
" --lang -l lang Set game language\n"
" --l10n path Set path to translation/localization files\n"
" --log Turn on logging to the standard output\n"
" --nograb Do not use exclusive mouse/keyboard access\n"
" --nomusic Disable music\n"
" --nosound Disable music and sound effects\n"
" --pref -p file Use filename or dirname for preferences\n"
" --redirect Redirect stdout/stderr to files on user path\n"
" --robinson avoid connections to the internet\n"
" --showfps Show the framerate (FPS) during the Game\n"
" --version Print the executable's version number\n"
" --window -w Run in a window; do not enter fullscreen mode\n"
"\n",
app.progCallPath.c_str()
);
}
namespace
{
struct AP : public ecl::ArgParser {
public:
// Constructor
AP();
// Variables.
bool nosound, nomusic, show_help, show_version, do_log, do_assert, force_window;
bool dumpinfo, makepreview, measureperformance, show_fps, redirect;
string gamename;
string datapath;
string preffilename;
std::vector<string> levelnames;
private:
enum {
OPT_WINDOW, OPT_GAME, OPT_DATA, OPT_LANG, OPT_PREF, OPT_LOCALE
};
// ArgParser interface.
void on_error (ErrorType t, const string &option) {
cout << errormsg(t, option) << endl;
show_help = true;
}
void on_option (int id, const string ¶m);
void on_argument (const string &arg);
};
}
AP::AP() : ArgParser (app.args.begin(), app.args.end())
{
nosound = nomusic = show_help = show_version = do_log = do_assert = force_window = false;
dumpinfo = makepreview = measureperformance = show_fps = redirect = false;
gamename = "";
datapath = "";
preffilename = PREFFILENAME;
def (&nosound, "nosound");
def (&nomusic, "nomusic");
def (&show_version, "version");
def (&show_help, "help", 'h');
def (&WizardMode, "wizard");
def (&Nograb, "nograb");
def (&do_log, "log");
def (&do_assert, "assert");
def (&dumpinfo, "dumpinfo");
def (&makepreview, "makepreview");
def (&measureperformance, "measureperformance");
def (&show_fps, "showfps");
def (&redirect, "redirect");
def (&Robinson, "robinson");
def (&force_window, "window", 'w');
def (OPT_GAME, "game", true);
def (OPT_DATA, "data", true, 'd');
def (OPT_LANG, "lang", true, 'l');
def (OPT_PREF, "pref", true, 'p');
def (OPT_LOCALE, "l10n", true);
}
void AP::on_option (int id, const string ¶m)
{
switch (id) {
case OPT_GAME:
gamename = param;
break;
case OPT_DATA:
// we should be able to add several paths -- file.cc has does not yet support this
// if (datapath.empty())
datapath = param;
// else
// datapath = param + ":" + datapath;
break;
case OPT_LANG:
app.argumentLanguage = param;
break;
case OPT_PREF:
preffilename = param;
break;
case OPT_LOCALE:
app.l10nPath = param;
}
}
void AP::on_argument (const string &arg)
{
levelnames.push_back (arg);
}
/*! Initialize enough of the game to be able to show error messages in
the window, not on the console. */
/* -------------------- Application -------------------- */
Application::Application() : wizard_mode (false), nograb (false), language (""),
defaultLanguage (""), argumentLanguage (""), errorInit (false),
isMakePreviews (false), isMeasurePerformance (false),
bossKeyPressed (false), l10nPath("") {
}
void Application::init(int argc, char **argv)
{
sscanf(PACKAGE_VERSION, "%4lf", &enigmaVersion);
progCallPath = argv[0];
#if MACOSX
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef cfurlmain = CFBundleCopyExecutableURL(mainBundle);
CFStringRef cffileStr = CFURLCopyFileSystemPath(cfurlmain, kCFURLPOSIXPathStyle);
CFIndex cfmax = CFStringGetMaximumSizeOfFileSystemRepresentation(cffileStr);
char localbuffer[cfmax];
if (CFStringGetFileSystemRepresentation(cffileStr, localbuffer, cfmax)) {
progCallPath = localbuffer; // error skips this and defaults to argv[0] which works for most purposes
}
CFRelease(cfurlmain);
CFRelease(cffileStr);
#endif
for (int i=1; i<argc; i++) {
if (0 == strcmp(argv[i], "-NSDocumentRevisionsDebugMode"))
i++;
else
args.push_back(argv[i]);
}
// parse commandline arguments -- needs args
AP ap;
ap.parse();
// ----- Evaluate command line arguments.
// start with simple actions that do not need further initialization
if (ap.show_help || ap.show_version) {
printf("Enigma %s\n", getVersionInfo().c_str());
if (ap.show_help) usage();
exit(0);
}
//
if (ap.makepreview) {
ap.force_window = true;
ap.nosound = true;
ap.nomusic = true;
isMakePreviews = true;
}
//
if (ap.measureperformance) {
isMeasurePerformance = true;
}
// initialize assertion stop flag
if (ap.do_assert)
enigma::noAssert = false;
// initialize system datapaths -- needs ap
systemCmdDataPath = ap.datapath;
initSysDatapaths(ap.preffilename);
// redirect stdout, stderr
#ifdef WIN32
ap.redirect = true;
#endif
if (ap.redirect) {
FILE *newfp;
newfp = std::freopen((userStdPath + "/Output.log").c_str(), "w", stdout);
if ( newfp == NULL ) { // This happens on NT
newfp = fopen((userStdPath + "/Output.log").c_str(), "w");
if (newfp) { // in case stdout is a macro
*stdout = *newfp;
}
}
setvbuf(stdout, NULL, _IOLBF, BUFSIZ); // Line buffered
newfp = std::freopen((userStdPath + "/Error.log").c_str(), "w", stderr);
if ( newfp == NULL ) { // This happens on NT
newfp = fopen((userStdPath + "/Error.log").c_str(), "w");
if (newfp) { // in case stderr is a macro
*stderr = *newfp;
}
}
setbuf(stderr, NULL); // No buffering
}
// initialize logfile -- needs ap
if (ap.do_log)
enigma::Log.rdbuf(cout.rdbuf());
else
enigma::Log.rdbuf(::nullbuffer);
// postponed system datapath logs
Log << "Enigma " << getVersionInfo() << "\n";
Log << "systemFS = \"" << systemFS->getDataPath() << "\"\n";
Log << "docPath = \"" << docPath << "\"\n";
Log << "prefPath = \"" << prefPath << "\"\n";
// initialize XML -- needs log, datapaths
initXerces();
// initialize LUA - Run initialization scripts
lua_State *L = lua::GlobalState();
lua::CheckedDoFile(L, app.systemFS, "startup.lua");
// initialize preferences -- needs LUA, XML
if (!options::Load()) {
fprintf(stderr, "%s", _("Error in configuration file.\n"));
fprintf(stderr, "%s\n", lua::LastError (lua::GlobalState()).c_str());
}
prefs = PreferenceManager::instance();
if (ap.force_window) {
app.prefs->setProperty("FullScreen", false);
}
if (isMakePreviews) {
// we will not save the prefs!
app.prefs->setProperty("VideoModesFullscreen", "-0-");
app.prefs->setProperty("FullscreenTileset", "32x32 Standard");
app.prefs->setProperty("VideoModesWindow", "-0-");
app.prefs->setProperty("WindowWidth", 640);
app.prefs->setProperty("WindowHeight", 480);
app.prefs->setProperty("WindowSizeFactor", 1);
app.prefs->setProperty("WindowTileset", "32x32 Standard");
}
// initialize user data paths -- needs preferences, system datapaths
initUserDatapaths();
// set message language
init_i18n();
// initialize application state
state = StateManager::instance();
// ----- Object declarations
ObjectValidator::didInitXML(); // enable initialization
ObjectValidator::instance(); // force early initialization (an optional statement)
// ----- Initialize object repositories
InitWorld();
if (ap.dumpinfo) {
DumpObjectInfo();
exit(0);
}
// ----- Initialize SDL library
#ifdef WIN32
// SDL_putenv("SDL_VIDEODRIVER=directx"); //needed for SDL 1.2.12 that crashes on SetGamma on default GDI driver
#endif
int sdl_flags = SDL_INIT_VIDEO;
if (enigma::WizardMode)
sdl_flags |= SDL_INIT_NOPARACHUTE;
if (SDL_Init(sdl_flags) < 0) {
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
exit(1);
}
std::atexit(SDL_Quit);
SDL_version sdl_version;
SDL_GetVersion(&sdl_version);
Log << ecl::strf("SDL Version: %u.%u.%u\n", sdl_version.major, sdl_version.minor,
sdl_version.patch);
const SDL_version *vi;
vi = TTF_Linked_Version();
Log << ecl::strf("SDL_ttf Version: %u.%u.%u\n", vi->major, vi->minor, vi->patch);
if(TTF_Init() == -1) {
fprintf(stderr, "Couldn't initialize SDL_ttf: %s\n", TTF_GetError());
exit(1);
}
vi = IMG_Linked_Version();
Log << ecl::strf("SDL_image Version: %u.%u.%u\n", vi->major, vi->minor, vi->patch);
#ifdef SDL_IMG_INIT
int img_flags = IMG_INIT_PNG | IMG_INIT_JPG;
if ((IMG_Init(img_flags) & img_flags) != img_flags) {
fprintf(stderr, "Couldn't initialize SDL_image: %s\n", IMG_GetError());
exit(1);
}
#endif
// ----- Initialize video subsystem
VideoInit();
video_engine->SetCaption("Enigma v" PACKAGE_VERSION);
errorInit = true;
// ----- Initialize sound subsystem
sound::Init(!ap.nomusic, !ap.nosound);
lua::CheckedDoFile (L, app.systemFS, "sound-defaults.lua");
lua::DoSubfolderfile (L, "soundsets", "soundset.lua");
// ----- Initialize TCP network layer
if (!InitCurl()) {
fprintf (stderr, "An error occurred while initializing Curl.\n");
exit (1);
}
// ----- Initialize UDP network layer
if (enet_initialize() != 0) {
fprintf (stderr, "An error occurred while initializing ENet.\n");
exit (1);
}
// ----- Load models
display::Init(ap.show_fps);
// ----- Load level packs -- needs state
lev::Index::initGroups();
oxyd::Init(!isMakePreviews); // Load oxyd data files - must be first to create correct proxies
lev::PersistentIndex::registerPersistentIndices(ap.makepreview);
if (!isMakePreviews) {
lua::Dofile(L, "levels/index.lua");
lua::DoSubfolderfile(L, "levels", "index.lua");
lua::Dofile(L, "levels/index_user.lua");
if (!ap.levelnames.empty()) {
lev::Index::registerIndex(new lev::VolatileIndex(INDEX_STARTUP_PACK_NAME,
INDEX_EVERY_GROUP, ap.levelnames, INDEX_STARTUP_PACK_LOCATION));
lev::Index::setCurrentIndex(INDEX_STARTUP_PACK_NAME);
}
std::vector<std::string> emptyList;
lev::Index::registerIndex(new lev::VolatileIndex(INDEX_SEARCH_PACK_NAME,
INDEX_DEFAULT_GROUP, emptyList, INDEX_SEARCH_PACK_LOCATION));
}
lev::Proxy::countLevels();
// ----- Initialize sound tables -- needs sound, oxyd, video (error messages!)
sound::InitSoundSets();
// ----- Initialize music -- needs application state
sound::InitMusic();
#if MACOSX
updateMac1_00();
#endif
// initialize random
enigma::Randomize(false);
enigma::Randomize(true);
if (isMakePreviews) {
createPreviews();
return;
}
if (isMeasurePerformance) {
measurePerformance();
return;
}
// initialize score -- needs random init
lev::ScoreManager::instance();
}
std::string Application::getVersionInfo() {
std::string versionInfo;
if (enigmaVersion >= ENIGMACOMPATIBITLITY)
versionInfo = "v" PACKAGE_VERSION;
else {
versionInfo = "v" PACKAGE_VERSION
" (development version - v" +
ecl::strf("%.2f",ENIGMACOMPATIBITLITY) + " compatibility branch)";
}
return versionInfo;
}
double Application::getEnigmaVersion() {
return enigmaVersion;
}
void Application::initSysDatapaths(const std::string &prefFilename)
{
std::string progDir; // directory path part of args[0]
std::string progName; // filename part of args[0]
bool progDirExists = split_path(progCallPath, &progDir, &progName);
std::string systemPath = SYSTEM_DATA_DIR; // substituted by configure.ac
bool haveHome = (getenv("HOME") != 0);
#ifdef __MINGW32__
// windows standard user specific application data directory path
std::string winAppDataPath = ecl::ApplicationDataPath() + "/Enigma";
#endif
#ifdef __MINGW32__
if (!progDirExists) {
// filename only -- working dir should be on enigma as enigma
// should never be located on exec path on windows
systemAppDataPath = "./data";
} else {
// a call from elsewhere -- absolute or relative path does not matter.
// this enables calls from a commandline.
systemAppDataPath = progDir + "/data";
}
#elif MACOSX
// Mac OS X applications are self-contained bundles,
// i.e., directories like "Enigma.app". Resources are
// placed in those bundles under "Enigma.app/Contents/Resources",
// the main executable would be "Enigma.app/Contents/MacOS/enigma".
// Here, we get the executable name, clip off the last bit, chdir into it,
// then chdir to ../Resources. The original SDL implementation chdirs to
// "../../..", i.e. the directory the bundle is placed in. This breaks
// the self-containedness.
systemAppDataPath = progDir + "/../Resources/data";
if (!ecl::FolderExists(systemAppDataPath))
systemAppDataPath = systemPath;
#else
// Unix -- we get our data path from the installation
systemAppDataPath = systemPath;
#endif
// systemFS
systemFS = new GameFS();
systemFS->append_dir(systemAppDataPath);
if (!systemCmdDataPath.empty())
systemFS->prepend_dir(systemCmdDataPath);
// docPath
docPath = DOCDIR; // defined in src/Makefile.am
#ifdef __MINGW32__
if (progDirExists) {
docPath = progDir;
}
#elif MACOSX
if (ecl::FolderExists(progDir + "/../Resources/doc"))
docPath = progDir + "/../Resources/doc";
#endif
// prefPath
if (prefFilename.find_first_of(ecl::PathSeparators) != std::string::npos) {
// pref is a path - absolute or home relative
prefPath = ecl::ExpandPath(prefFilename);
if (!ecl::FolderExists(prefPath))
if(!ecl::FolderCreate(prefPath)) {
fprintf(stderr, "%s", _("Error: Cannot create pref directory.\n"));
exit(1);
}
userStdPath = prefPath; // default if pref is a path
prefPath = prefPath + ecl::PathSeparator + "." + PREFFILENAME; // include pref in user data path
} else if (haveHome) {
prefPath = ecl::ExpandPath("~");
if (!ecl::FolderExists(prefPath))
// may happen on Windows
if(!ecl::FolderCreate(prefPath)) {
fprintf(stderr, "%s", _("Error: Home directory does not exist.\n"));
exit(1);
}
#ifdef MACOSX
userStdPathMac1_00 = prefPath + "/.enigma";
userStdPath = prefPath + "/Library/Application Support/Enigma";
#else
userStdPath = prefPath + "/.enigma";
#endif
prefPath = prefPath + ecl::PathSeparator + "." + prefFilename;
#ifdef __MINGW32__
} else if (!winAppDataPath.empty()) {
if (!ecl::FolderExists(winAppDataPath))
// may happen on Windows
if(!ecl::FolderCreate(winAppDataPath)) {
fprintf(stderr, "%s", _("Error: Application Data directory does not exist.\n"));
exit(1);
}
// Log << "winAppDataPath " << winAppDataPath << "\n";
userStdPath = winAppDataPath;
prefPath = winAppDataPath + ecl::PathSeparator + "." + prefFilename;
#endif
} else {
fprintf(stderr, "%s", _("Error: Home directory does not exist.\n"));
exit(1);
}
}
void Application::initXerces() {
// init XML
try {
// Initialize to en_US - we don't know the user prefs yet
// If more than the error messages should be influenced we would
// have to terminate and reinit after reading the user prefs.
XMLPlatformUtils::Initialize();
// Initialize transcoding service for XML <-> utf8
XMLTransService::Codes initResult;
xmlUtf8Transcoder = XMLPlatformUtils::fgTransService->
makeNewTranscoderFor(XMLRecognizer::UTF_8, initResult,
4096); // the block size is irrelevant for utf-8
if (initResult != XMLTransService::Ok) {
fprintf(stderr, "%s", _("Error in XML initialization.\n"));
exit(1);
}
static const XMLCh ls[] = { chLatin_L, chLatin_S, chNull };
static const XMLCh core[] = { chLatin_C, chLatin_O, chLatin_R, chLatin_E, chNull };
domImplementationLS = (DOMImplementationLS*)
(DOMImplementationRegistry::getDOMImplementation(ls));
domImplementationCore = (DOMImplementation*)
(DOMImplementationRegistry::getDOMImplementation(core));
domParserErrorHandler = new DOMErrorReporter(&Log);
domParserSchemaResolver = new DOMSchemaResolver();
domSerErrorHandler = new DOMErrorReporter(&Log);
#if _XERCES_VERSION >= 30000
domParser = domImplementationLS->createLSParser(DOMImplementationLS::MODE_SYNCHRONOUS, 0);
DOMConfiguration *config = domParser->getDomConfig();
config->setParameter(XMLUni::fgDOMNamespaces, true);
config->setParameter(XMLUni::fgXercesSchema, true);
config->setParameter(XMLUni::fgXercesSchemaFullChecking, true);
config->setParameter(XMLUni::fgDOMValidate, true);
config->setParameter(XMLUni::fgDOMDatatypeNormalization, true);
config->setParameter(XMLUni::fgDOMErrorHandler, domParserErrorHandler);
config->setParameter(XMLUni::fgDOMResourceResolver, domParserSchemaResolver);
domSer = domImplementationLS->createLSSerializer();
config = domSer->getDomConfig();
config->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true);
config->setParameter(XMLUni::fgDOMErrorHandler, domSerErrorHandler);
#else
domParser = domImplementationLS->createDOMBuilder(DOMImplementationLS::MODE_SYNCHRONOUS, 0);
domParser->setFeature(XMLUni::fgDOMNamespaces, true);
domParser->setFeature(XMLUni::fgXercesSchema, true);
domParser->setFeature(XMLUni::fgXercesSchemaFullChecking, true);
domParser->setFeature(XMLUni::fgDOMValidation, true);
domParser->setFeature(XMLUni::fgDOMDatatypeNormalization, true);
domParser->setErrorHandler(domParserErrorHandler);
domParser->setEntityResolver(domParserSchemaResolver);
domSer = domImplementationLS->createDOMWriter();
domSer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint, true);
domSer->setErrorHandler(domSerErrorHandler);
#endif
}
catch (...) {
fprintf(stderr, "%s", _("Error in XML initialization.\n"));
exit(1);
}
}
void Application::initUserDatapaths() {
// userPath
userPath = prefs->getString("UserPath");
if (userPath.empty()) {
#ifdef MACOSX
if (prefs->getInt("_MacUpdate1.00") != 1)
userPath = userStdPathMac1_00; // empty prefs user path is 1.00 std user path
else {
// first installation of Enigma on a Mac
userPath = userStdPath; // use the new path
prefs->setProperty("UserPath", std::string(XMLtoUtf8(LocalToXML(&userPath).x_str()).c_str()));
prefs->setProperty("UserImagePath", std::string(XMLtoUtf8(LocalToXML(&userPath).x_str()).c_str()));
prefs->setProperty("_MacUpdate1.00", 2);
}
#else
userPath = userStdPath;
#endif
} else {
userPath = XMLtoLocal(Utf8ToXML(userPath.c_str()).x_str()).c_str();
}
Log << "userPath = \"" << userPath << "\"\n";
// userImagePath
userImagePath = prefs->getString("UserImagePath");
if (userImagePath.empty()) {
#ifdef MACOSX
userImagePath = userStdPathMac1_00; // empty prefs user path is 1.00 std user path
#else
userImagePath = userStdPath;
#endif
} else {
userImagePath = XMLtoLocal(Utf8ToXML(userImagePath.c_str()).x_str()).c_str();
}
Log << "userImagePath = \"" << userImagePath << "\"\n";
// resourceFS
resourceFS = new GameFS();
resourceFS->append_dir(systemAppDataPath);
#ifdef MACOSX
// set user-visible data paths -- use it for resource paths
NSSearchPathEnumerationState cur=NSStartSearchPathEnumeration(NSLibraryDirectory, NSAllDomainsMask);
char path[PATH_MAX];
while(cur) {
cur=NSGetNextSearchPathEnumeration(cur, path);
resourceFS->prepend_dir(std::string(path)+"/Application Support/Enigma");
}
#endif
if (!systemCmdDataPath.empty())
resourceFS->prepend_dir(systemCmdDataPath);
resourceFS->prepend_dir(userPath);
if (userImagePath != userPath)
resourceFS->prepend_dir(userImagePath);
Log << "resourceFS = \"" << resourceFS->getDataPath() << "\"\n";
// create levels/auto, levels/cross, levels/legacy_dat on userPath
if (!ecl::FolderExists(userPath + "/levels/auto"))
ecl::FolderCreate (userPath + "/levels/auto");
if (!ecl::FolderExists(userPath + "/levels/cross"))
ecl::FolderCreate (userPath + "/levels/cross");
if (!ecl::FolderExists(userPath + "/levels/externaldata"))
ecl::FolderCreate (userPath + "/levels/externaldata");
if (!ecl::FolderExists(userPath + "/levels/legacy_dat"))
ecl::FolderCreate (userPath + "/levels/legacy_dat");
if (!ecl::FolderExists(userPath + "/backup"))
ecl::FolderCreate (userPath + "/backup");
}
#ifdef MACOSX
void Application::updateMac1_00() {
if (prefs->getInt("_MacUpdate1.00") == 0 &&
prefs->getString("UserPath").empty() &&
prefs->getString("UserImagePath").empty()) {
gui::ErrorMenu m(ecl::strf(N_("Mac OS X upgrade from Enigma 1.00\n\nThe default user data path has changed from\n %s \n\nto the visible data path\n %s \n\nIf ok Enigma will move your data to this new location.\nNote that you have to restart Enigma once for completion of this update."), userStdPathMac1_00.c_str(), userStdPath.c_str()),
N_("OK"), N_("Never"), N_("Remind"));
m.manage();
if (m.isRejectQuit()) {
prefs->setProperty("_MacUpdate1.00", 2);
} else if (m.isLaterQuit()) {
prefs->setProperty("_MacUpdate1.00", 0);
} else { // OK move now
Log << "Mac update\n";
// move
std::system(ecl::strf("mkdir '%s' && cd ~/.enigma && tar -cf - * | (cd '%s' && tar -xf -) && cd ~ && rm -rf ~/.enigma", userStdPath.c_str(), userStdPath.c_str()).c_str());
setUserPath("");
setUserImagePath("");
prefs->setProperty("_MacUpdate1.00", 2);
prefs->shutdown();
exit(0);
}
}
}
#endif
void Application::createPreviews() {
app.state->setProperty("Difficulty", DIFFICULTY_HARD); // will not be saved
const auto &proxies = lev::Proxy::getProxies();
const std::string message =
ecl::strf("Make 3 x %d previews on system path '%s'", static_cast<int>(proxies.size()),
systemAppDataPath.c_str());
Log << message;
Screen *scr = video_engine->GetScreen();
GC gc(scr->get_surface());
Font *f = enigma::GetFont("menufont");
f->render(gc, 80, 240, message);
set_color(gc, 200, 200, 200);
const int kProgressWidth = 300;
hline(gc, 170, 280, kProgressWidth);
hline(gc, 170, 300, kProgressWidth);
vline(gc, 170, 280, 20);
vline(gc, 470, 280, 20);
scr->update_all();
scr->flush_updates();
int i = 0;
const int num_thumbnails = 3 * proxies.size();
ThumbnailInfo thumbinfos[] = {
{120, 78, 0, "-120x78"}, {160, 104, 0, "-160x104"}, {60, 39, 0, "-60x39"}};
for (auto &thumbinfo : thumbinfos) {
for (auto &level : proxies) {
Log << "Make preview " << level->getId() << "\n";
gui::LevelPreviewCache::makeSystemPreview(level, thumbinfo, systemAppDataPath);
vline(gc, 170 + kProgressWidth * (float(i) / num_thumbnails), 280, 20);
scr->update_all();
scr->flush_updates();
i++;
}
}
Log << "Make preview finished successfully.\n";
}
void Application::measurePerformance() {
if (lev::Index::setCurrentIndex(INDEX_STARTUP_PACK_NAME)) {
std::clock_t c_start, c_end;
while (!app.bossKeyPressed) {
lev::Index::getCurrentIndex()->setCurrentPosition(0);
c_start = std::clock();
game::StartGame();
c_end = std::clock();
fprintf(stdout, "%.1f ms\n", 1000.0 * (c_end - c_start) / CLOCKS_PER_SEC);
}
} else {
fprintf(stderr, "No levels defined for performance test. Please provide them as arguments to the command line.\n");
}
}
void Application::init_i18n()
{
// Initialize the internationalization subsystem
// l10nPath, might already be defined by command line option
if (l10nPath == "") {
app.prefs->getProperty("LocalizationPath", l10nPath);
if (l10nPath == "") {
l10nPath = systemAppDataPath + ecl::PathSeparator + "locale";
#ifdef __MINGW32__
std::string progDir; // directory path part of args[0]
std::string progName; // filename part of args[0]
bool progDirExists = split_path(progCallPath, &progDir, &progName);
if (progDirExists) {
l10nPath = progDir + ecl::PathSeparator + "data" + ecl::PathSeparator + "locale";
}
#endif
}
}
Log << "l10nPath = \"" << l10nPath << "\"\n";
// priorities:
// language: command-line --- user option --- system (environment)
// defaultLanguage: command-line --- system (environment)
app.language = app.argumentLanguage;
app.defaultLanguage = app.argumentLanguage;
if (app.language == "") {
options::GetOption("Language", app.language);
}
if (app.defaultLanguage == "") {
app.defaultLanguage = ecl::SysMessageLocaleName();
if (app.language == "") {
app.language = app.defaultLanguage;
}
}
#if defined(ENABLE_NLS)
l10nFS = new GameFS();
l10nFS->append_dir(l10nPath);
nls::theDictionaryManager.reset(new tinygettext::DictionaryManager(std::make_unique<nls::TinyGetTextFileSystem>(), "UTF-8"));
nls::theDictionaryManager->add_directory(l10nPath);
tinygettext::Log::set_log_info_callback(nullptr);
tinygettext::Log::set_log_warning_callback(&nls::tinygettext_log_callback);
tinygettext::Log::set_log_error_callback(&nls::tinygettext_error_callback);
nls::SetMessageLocale (app.language);
// TODO: Make sure that bindtextdomain accepts UTF-8, then replace
// by XMLtoUtf8(LocalToXML(app.l10nPath.c_str()).x_str()).c_str().
bindtextdomain (PACKAGE_NAME, app.l10nPath.c_str());
// SDL_ttf does not handle arbitrary encodings, so use UTF-8
bind_textdomain_codeset (PACKAGE_NAME, "utf-8");
textdomain (PACKAGE_NAME);
#endif
}
void Application::setLanguage(std::string newLanguage)
{
language = newLanguage.empty() ? defaultLanguage : newLanguage;
nls::SetMessageLocale(language);
}
void Application::setUserPath(std::string newPath) {
std::string prefUserPath = (newPath == userStdPath) ? "" : newPath;
if ((prefUserPath.empty() && userPath != userStdPath) || (!prefUserPath.empty() && prefUserPath != userPath)) {
// set the new userPath - used for saves
if (prefUserPath.empty())
userPath = userStdPath;
else
userPath = prefUserPath;
// load all resources primarily from the new path but keep the old user path
// because the user could not yet copy his user data to the new location
resourceFS->prepend_dir(userPath);
// set the new path as the users preference - the standard path is saved as ""
#ifdef MACOSX
// 1.00 uses "" as "~/.enigma" - we have to store the complete path
if (prefUserPath.empty()) prefUserPath = userStdPath;
#endif
prefs->setProperty("UserPath", std::string(XMLtoUtf8(LocalToXML(&prefUserPath).x_str()).c_str()));
}
}
void Application::setUserImagePath(std::string newPath) {
std::string prefUserImagePath = (newPath == userStdPath) ? "" : newPath;
if ((prefUserImagePath.empty() && userImagePath != userStdPath) || (!prefUserImagePath.empty() && prefUserImagePath != userImagePath)) {
// set the new userImagePath - used for saves
if (prefUserImagePath.empty())
userImagePath = userStdPath;
else
userImagePath = prefUserImagePath;
// load all resources primarily from the new path but keep the old user path
// because the user could not yet copy his user data to the new location
if (userImagePath != userPath)
resourceFS->prepend_dir(userImagePath);
// set the new path as the users preference - the standard path is saved as ""
#ifdef MACOSX
// 1.00 uses "" as "~/.enigma" - we have to store the complete path
if (prefUserImagePath.empty()) prefUserImagePath = userStdPath;
#endif
prefs->setProperty("UserImagePath", std::string(XMLtoUtf8(LocalToXML(&prefUserImagePath).x_str()).c_str()));
}
}
/* -------------------- Functions -------------------- */
void Application::shutdown()
{
if(strlen(SDL_GetError()) > 0)
Log << "Last SDL error: " << SDL_GetError() << "\n";
oxyd::Shutdown();
enigma::ShutdownWorld();
display::Shutdown();
if (!isMakePreviews) { // avoid saves on preview generation
if (!video_engine->IsFullscreen())
video_engine->SaveWindowSizePreferences();
lev::RatingManager::instance()->save();
if (lev::PersistentIndex::historyIndex != NULL)
lev::PersistentIndex::historyIndex->save();
lev::ScoreManager::instance()->shutdown();
app.state->shutdown();
app.prefs->shutdown();
lev::Index::shutdown();
}
// now we shutdown SDL - no error reports will be possible!
app.errorInit = false;
video_engine->Shutdown();
sound::Shutdown();
enet_deinitialize();
enigma::ShutdownCurl();
lua::ShutdownGlobal();
XMLPlatformUtils::Terminate();
#ifdef SDL_IMG_INIT
IMG_Quit();
#endif
ClearFontCache();
TTF_Quit();
ClearImageCache();
delete ::nullbuffer;
}
int main(int argc, char **argv)
{
try {
app.init(argc,argv);
if (!app.isMakePreviews && !app.isMeasurePerformance)
gui::ShowMainMenu();
app.shutdown();
return 0;
}
catch (XFrontend &e) {
cerr << "Error: " << e.what() << endl;
std::string message = _("Fatal error that caused the application to quit:\n\n");
if (app.errorInit) {
gui::ErrorMenu m(message + e.what(), N_("Quit"));
m.manage();
}
}
catch (ecl::XGeneric &e) {
cerr << "Error: " << e.what() << endl;
}
catch (std::exception &e) {
cerr << "Error: " << e.what() << endl;
}
catch (...) {
cerr << "Uncaught exception...\n";
}
return 1;
}
|