QTfrontend/main.cpp
author sheepluva
Thu, 21 Mar 2013 15:01:27 +0100
changeset 8763 988901d27abf
parent 8722 2dead6b84bca
child 8799 44e520374cfc
permissions -rw-r--r--
don't poison the dead, it's not cool. (poisoning hogs during their death animation would cause them to still be poisoned after resurrect) thanks to CheezeMonkey for pointing this out
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 579
diff changeset
     2
 * Hedgewars, a free turn based strategy game
6952
7f70f37bbf08 license header year range adjustments
sheepluva
parents: 6937
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     4
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     8
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    13
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    17
 */
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    18
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
    19
#include "HWApplication.h"
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
    20
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    21
#include <QTranslator>
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    22
#include <QLocale>
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    23
#include <QMessageBox>
1416
60b86d6fe9ae Force plastique style, as others don't fully support stylesheets
unc0rr
parents: 1415
diff changeset
    24
#include <QPlastiqueStyle>
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
    25
#include <QRegExp>
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
    26
#include <QMap>
2898
c53636f556f8 Frontend:
smxx
parents: 2897
diff changeset
    27
#include <QSettings>
5289
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
    28
#include <QStringListModel>
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    29
#include <QDate>
8337
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
    30
#include <QDesktopWidget>
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
    31
#include <QLabel>
1146
0bc17a69b3d8 Background for Hedgewars is ready
displacer
parents: 1066
diff changeset
    32
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    33
#include "hwform.h"
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    34
#include "hwconsts.h"
6721
7dbf8a0c1f5d - Register HWTeam metatype so HWTeam objects could be passed via queued connections
unc0rr
parents: 6700
diff changeset
    35
#include "newnetclient.h"
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    36
6930
d187ea93fc4f renaming HWDataManager -> DataManager
sheepluva
parents: 6721
diff changeset
    37
#include "DataManager.h"
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents: 7724
diff changeset
    38
#include "FileEngine.h"
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6129
diff changeset
    39
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    40
#ifdef _WIN32
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    41
#include <Shlobj.h>
8355
df0ea4323295 GCI2012: Unix Qt Signals
martin_bede
parents: 8344
diff changeset
    42
#elif defined __APPLE__
df0ea4323295 GCI2012: Unix Qt Signals
martin_bede
parents: 8344
diff changeset
    43
#include "CocoaInitializer.h"
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    44
#endif
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    45
8405
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
    46
// Program resources
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
    47
#ifdef __APPLE__
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
    48
static CocoaInitializer * cocoaInit = NULL;
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
    49
#endif
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
    50
static FileEngineHandler * engine = NULL;
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    51
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    52
//Determines the day of easter in year
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    53
//from http://aa.usno.navy.mil/faq/docs/easter.php,adapted to C/C++
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    54
QDate calculateEaster(long year)
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    55
{
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    56
    int c, n, k, i, j, l, m, d;
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    57
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    58
    c = year/100;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    59
    n = year - 19*(year/19);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    60
    k = (c - 17)/25;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    61
    i = c - c/4 - (c - k)/3 + 19*n + 15;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    62
    i = i - 30*(i/30);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    63
    i = i - (i/28)*(1 - (i/28)*(29/(i + 1))*((21 - n)/11));
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    64
    j = year + year/4 + i + 2 - c + c/4;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    65
    j = j - 7*(j/7);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    66
    l = i - j;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    67
    m = 3 + (l + 40)/44;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    68
    d = l + 28 - 31*(m / 4);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    69
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    70
    return QDate(year, m, d);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    71
}
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    72
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    73
//Checks season and assigns it to the variable season in "hwconsts.h"
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    74
void checkSeason()
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    75
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    76
    QDate date = QDate::currentDate();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    77
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    78
    //Christmas?
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    79
    if (date.month() == 12 && date.day() >= 24
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    80
            && date.day() <= 26)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    81
        season = SEASON_CHRISTMAS;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    82
    //Hedgewars birthday?
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    83
    else if (date.month() == 10 && date.day() == 31)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    84
    {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    85
        season = SEASON_HWBDAY;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    86
        years_since_foundation = date.year() - 2004;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    87
    }
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    88
    //Easter?
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    89
    else if (calculateEaster(date.year()) == date)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    90
        season = SEASON_EASTER;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    91
    else
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    92
        season = SEASON_NONE;
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    93
}
8385
9e8924ff9813 Convert feedback page to dialog (+some fixes from unC0Rr)
dag10
parents: 8355
diff changeset
    94
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    95
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    96
bool checkForDir(const QString & dir)
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    97
{
8206
1633a6510834 Create hedgewars.ini if not exists manually,
unc0rr
parents: 8187
diff changeset
    98
    QDir tmpdir(dir);
1633a6510834 Create hedgewars.ini if not exists manually,
unc0rr
parents: 8187
diff changeset
    99
    if (!tmpdir.exists())
1633a6510834 Create hedgewars.ini if not exists manually,
unc0rr
parents: 8187
diff changeset
   100
        if (!tmpdir.mkpath(dir))
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   101
        {
7794
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   102
            QMessageBox directoryMsg(QApplication::activeWindow());
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   103
            directoryMsg.setIcon(QMessageBox::Warning);
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   104
            directoryMsg.setWindowTitle(QMessageBox::tr("Main - Error"));
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   105
            directoryMsg.setText(QMessageBox::tr("Cannot create directory %1").arg(dir));
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   106
            directoryMsg.setWindowModality(Qt::WindowModal);
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   107
            directoryMsg.exec();
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   108
            return false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   109
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   110
    return true;
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   111
}
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   112
8405
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   113
// Guaranteed to be the last thing ran in the application's life time.
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   114
// Closes resources that need to exist as long as possible.
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   115
void closeResources(void)
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   116
{
8187
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   117
#ifdef __APPLE__
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   118
    if (cocoaInit != NULL)
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   119
    {
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   120
        delete cocoaInit;
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   121
        cocoaInit = NULL;
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   122
    }
8405
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   123
#endif
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   124
    if (engine != NULL)
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   125
    {
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   126
        delete engine;
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   127
        engine = NULL;
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   128
    }
8187
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   129
}
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   130
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   131
int main(int argc, char *argv[])
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   132
{
8406
8a834943609d Accidentally left atexit() inside a mac-only section in last revision (rbecac012d502)
dag10 <gottlieb.drew@gmail.com>
parents: 8405
diff changeset
   133
    // Since we're calling this first, closeResources() will be the last thing called after main() returns.
8a834943609d Accidentally left atexit() inside a mac-only section in last revision (rbecac012d502)
dag10 <gottlieb.drew@gmail.com>
parents: 8405
diff changeset
   134
    atexit(closeResources);
8a834943609d Accidentally left atexit() inside a mac-only section in last revision (rbecac012d502)
dag10 <gottlieb.drew@gmail.com>
parents: 8405
diff changeset
   135
8187
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   136
#ifdef __APPLE__
8406
8a834943609d Accidentally left atexit() inside a mac-only section in last revision (rbecac012d502)
dag10 <gottlieb.drew@gmail.com>
parents: 8405
diff changeset
   137
    cocoaInit = new CocoaInitializer(); // Creates the autoreleasepool preventing cocoa object leaks on OS X.
8187
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   138
#endif
fa725fe25708 GCI2012: Find Out What is Causing This Problem (frontend leaks on OS X)
Drew Gottlieb
parents: 8117
diff changeset
   139
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
   140
    HWApplication app(argc, argv);
7130
fcab1fd02bc6 - Allow switching colors with mouse wheel
unc0rr
parents: 6958
diff changeset
   141
8337
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   142
    QLabel *splash = NULL;
8344
3d18f7f71d65 ok, enable the splashscreen for win only
koda
parents: 8341
diff changeset
   143
#if defined Q_WS_WIN
8337
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   144
    QPixmap pixmap(":res/splash.png");
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   145
    splash = new QLabel(0, Qt::FramelessWindowHint|Qt::WindowStaysOnTopHint);
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   146
    splash->setAttribute(Qt::WA_TranslucentBackground);
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   147
    const QRect deskSize = QApplication::desktop()->screenGeometry(-1);
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   148
    QPoint splashCenter = QPoint( (deskSize.width() - pixmap.width())/2,
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   149
                                  (deskSize.height() - pixmap.height())/2 );
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   150
    splash->move(splashCenter);
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   151
    splash->setPixmap(pixmap);
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   152
    splash->show();
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   153
#endif
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   154
8405
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   155
    engine = new FileEngineHandler(argv[0]);
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents: 7724
diff changeset
   156
4888
3c96e99468c5 activate icon display in menus
sheepluva
parents: 4513
diff changeset
   157
    app.setAttribute(Qt::AA_DontShowIconsInMenus,false);
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   158
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   159
    QStringList arguments = app.arguments();
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   160
    QMap<QString, QString> parsedArgs;
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   161
    {
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   162
        QList<QString>::iterator i = arguments.begin();
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   163
        while(i != arguments.end())
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   164
        {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   165
            QString arg = *i;
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   166
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   167
            QRegExp opt("--(\\S+)=(.+)");
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   168
            if(opt.exactMatch(arg))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   169
            {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   170
                parsedArgs[opt.cap(1)] = opt.cap(2);
2035
70734c4f52a7 patch to prior checkin
nemo
parents: 2034
diff changeset
   171
                i = arguments.erase(i);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   172
            }
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   173
            else
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   174
            {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   175
                ++i;
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   176
            }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   177
        }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   178
    }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   179
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   180
    if(parsedArgs.contains("data-dir"))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   181
    {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   182
        QFileInfo f(parsedArgs["data-dir"]);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   183
        if(!f.exists())
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   184
        {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   185
            qWarning() << "WARNING: Cannot open DATA_PATH=" << f.absoluteFilePath();
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   186
        }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   187
        *cDataDir = f.absoluteFilePath();
3932
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   188
        custom_data = true;
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   189
    }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   190
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   191
    if(parsedArgs.contains("config-dir"))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   192
    {
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   193
        QFileInfo f(parsedArgs["config-dir"]);
8323
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   194
        cfgdir->setPath(f.absoluteFilePath());
3932
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   195
        custom_config = true;
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   196
    }
8323
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   197
    else
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   198
    {
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   199
        cfgdir->setPath(QDir::homePath());
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   200
        custom_config = false;
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   201
    }
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   202
7772
a33077239712 Oops, forgot this
unc0rr
parents: 7768
diff changeset
   203
    app.setStyle(new QPlastiqueStyle());
2377
f3fab2b09e0c And in frontend
nemo
parents: 2261
diff changeset
   204
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   205
    QDateTime now = QDateTime::currentDateTime();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   206
    srand(now.toTime_t());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   207
    rand();
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   208
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   209
    Q_INIT_RESOURCE(hedgewars);
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   210
6721
7dbf8a0c1f5d - Register HWTeam metatype so HWTeam objects could be passed via queued connections
unc0rr
parents: 6700
diff changeset
   211
    qRegisterMetaType<HWTeam>("HWTeam");
7dbf8a0c1f5d - Register HWTeam metatype so HWTeam objects could be passed via queued connections
unc0rr
parents: 6700
diff changeset
   212
8323
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   213
    bindir->cd(QCoreApplication::applicationDirPath());
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   214
8323
ab0b618bdf13 get executable directory at runtime rather than configure time
koda
parents: 8316
diff changeset
   215
    if(custom_config == false)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   216
    {
1965
340bfd438ca5 - Apply koda's patch
unc0rr
parents: 1940
diff changeset
   217
#ifdef __APPLE__
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   218
        checkForDir(cfgdir->absolutePath() + "/Library/Application Support/Hedgewars");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   219
        cfgdir->cd("Library/Application Support/Hedgewars");
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   220
#elif defined _WIN32
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   221
        char path[1024];
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   222
        if(!SHGetFolderPathA(0, CSIDL_PERSONAL, NULL, 0, path))
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   223
        {
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   224
            cfgdir->cd(path);
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   225
            checkForDir(cfgdir->absolutePath() + "/Hedgewars");
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   226
            cfgdir->cd("Hedgewars");
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   227
        }
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   228
        else // couldn't retrieve documents folder? almost impossible, but in case fall back to classic path
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   229
        {
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   230
            checkForDir(cfgdir->absolutePath() + "/.hedgewars");
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   231
            cfgdir->cd(".hedgewars");
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   232
        }
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   233
#else
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   234
        checkForDir(cfgdir->absolutePath() + "/.hedgewars");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   235
        cfgdir->cd(".hedgewars");
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   236
#endif
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   237
    }
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   238
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   239
    if (checkForDir(cfgdir->absolutePath()))
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   240
    {
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   241
        // alternative loading/lookup paths
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   242
        checkForDir(cfgdir->absolutePath() + "/Data");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   243
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   244
        // config/save paths
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   245
        checkForDir(cfgdir->absolutePath() + "/Demos");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   246
        checkForDir(cfgdir->absolutePath() + "/Saves");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   247
        checkForDir(cfgdir->absolutePath() + "/Screenshots");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   248
        checkForDir(cfgdir->absolutePath() + "/Teams");
3914
c5c903c6225b Engine:
smaxx
parents: 3865
diff changeset
   249
        checkForDir(cfgdir->absolutePath() + "/Logs");
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7130
diff changeset
   250
        checkForDir(cfgdir->absolutePath() + "/Videos");
7235
baa69bd025d9 1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents: 7180
diff changeset
   251
        checkForDir(cfgdir->absolutePath() + "/VideoTemp");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   252
    }
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   253
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   254
    datadir->cd(bindir->absolutePath());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   255
    datadir->cd(*cDataDir);
8316
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8223
diff changeset
   256
    if(!datadir->cd("Data"))
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   257
    {
7794
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   258
        QMessageBox missingMsg(QApplication::activeWindow());
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   259
        missingMsg.setIcon(QMessageBox::Critical);
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   260
        missingMsg.setWindowTitle(QMessageBox::tr("Main - Error"));
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   261
        missingMsg.setText(QMessageBox::tr("Failed to open data directory:\n%1\n\n"
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   262
                                           "Please check your installation!").
8316
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8223
diff changeset
   263
                                            arg(datadir->absolutePath()+"/Data"));
7794
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   264
        missingMsg.setWindowModality(Qt::WindowModal);
ab7b94c03bc9 QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents: 7724
diff changeset
   265
        missingMsg.exec();
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   266
        return 1;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   267
    }
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   268
7931
5a27ed7f17b7 Wee, now frontend is able to load translation file
unc0rr
parents: 7928
diff changeset
   269
    // setup PhysFS
8405
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   270
    engine->mount(datadir->absolutePath());
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   271
    engine->mount(cfgdir->absolutePath() + "/Data");
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   272
    engine->mount(cfgdir->absolutePath());
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   273
    engine->setWriteDir(cfgdir->absolutePath());
becac012d502 Moved FileEngineHandler instance in main() to be a pointer released "atexit". (Fixes issue 509)
dag10 <gottlieb.drew@gmail.com>
parents: 8385
diff changeset
   274
    engine->mountPacks();
7772
a33077239712 Oops, forgot this
unc0rr
parents: 7768
diff changeset
   275
8508
f849b7b3af1d - Ensure that team file exists before saving into it (same fix as for hedgewars.ini, due to bug in Qt)
unc0rr
parents: 8406
diff changeset
   276
    DataManager::ensureFileExists("physfs://hedgewars.ini");
8206
1633a6510834 Create hedgewars.ini if not exists manually,
unc0rr
parents: 8187
diff changeset
   277
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   278
    QTranslator Translator;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   279
    {
8098
4efee370e2de - Fix saving .ini files
unc0rr
parents: 8078
diff changeset
   280
        QSettings settings("physfs://hedgewars.ini", QSettings::IniFormat);
5289
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   281
        QString cc = settings.value("misc/locale", QString()).toString();
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   282
        if(cc.isEmpty())
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   283
            cc = QLocale::system().name();
6167
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   284
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   285
        // load locale file into translator
7931
5a27ed7f17b7 Wee, now frontend is able to load translation file
unc0rr
parents: 7928
diff changeset
   286
        if(!Translator.load(QString("physfs://Locale/hedgewars_%1").arg(cc)))
5a27ed7f17b7 Wee, now frontend is able to load translation file
unc0rr
parents: 7928
diff changeset
   287
            qWarning("Failed to install translation");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   288
        app.installTranslator(&Translator);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   289
    }
2898
c53636f556f8 Frontend:
smxx
parents: 2897
diff changeset
   290
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5307
diff changeset
   291
#ifdef _WIN32
3679
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   292
    // Win32 registry setup (used for xfire detection etc. - don't set it if we're running in "portable" mode with a custom config dir)
3932
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   293
    if(!custom_config)
3679
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   294
    {
3932
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   295
        QSettings registry_hklm("HKEY_LOCAL_MACHINE", QSettings::NativeFormat);
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   296
        registry_hklm.setValue("Software/Hedgewars/Frontend", bindir->absolutePath().replace("/", "\\") + "\\hedgewars.exe");
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   297
        registry_hklm.setValue("Software/Hedgewars/Path", bindir->absolutePath().replace("/", "\\"));
3679
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   298
    }
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   299
#endif
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   300
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   301
    QString style = "";
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   302
    QString fname;
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   303
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   304
    checkSeason();
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   305
    //For each season, there is an extra stylesheet
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   306
    //Todo: change background for easter and birthday
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   307
    //(simply replace res/BackgroundBirthday.png and res/BackgroundEaster.png
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   308
    //with an appropriate background
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   309
    switch (season)
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   310
    {
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   311
        case SEASON_CHRISTMAS :
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   312
            fname = "christmas.css";
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   313
            break;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   314
        case SEASON_EASTER :
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   315
            fname = "easter.css";
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   316
            break;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   317
        case SEASON_HWBDAY :
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   318
            fname = "birthday.css";
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   319
            break;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   320
        default :
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   321
            fname = "qt.css";
8337
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   322
            break;
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   323
    }
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   324
6176
19ef039a8474 frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists
sheepluva
parents: 6174
diff changeset
   325
    // load external stylesheet if there is any
8049
133e22b5c410 Get rid of DataManager::findFileForRead
unc0rr
parents: 7955
diff changeset
   326
    QFile extFile("physfs://css/" + fname);
2898
c53636f556f8 Frontend:
smxx
parents: 2897
diff changeset
   327
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   328
    QFile resFile(":/res/css/" + fname);
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   329
7724
36c539c9cfb1 Simplify file loading procedure
unc0rr
parents: 7278
diff changeset
   330
    QFile & file = (extFile.exists() ? extFile : resFile);
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   331
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   332
    if (file.open(QIODevice::ReadOnly | QIODevice::Text))
7724
36c539c9cfb1 Simplify file loading procedure
unc0rr
parents: 7278
diff changeset
   333
        style.append(file.readAll());
2377
f3fab2b09e0c And in frontend
nemo
parents: 2261
diff changeset
   334
8651
da384b09eb2b add version info to frontend output too
koda
parents: 8508
diff changeset
   335
    qWarning("Starting Hedgewars %s-r%d (%s)", qPrintable(*cVersionString), cRevisionString->toInt(), qPrintable(*cHashString));
da384b09eb2b add version info to frontend output too
koda
parents: 8508
diff changeset
   336
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   337
    app.form = new HWForm(NULL, style);
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
   338
    app.form->show();
8337
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   339
    if(splash)
bf237f7f1d94 add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good
koda
parents: 8323
diff changeset
   340
        splash->close();
8722
2dead6b84bca this should supposedly add hwplay:// schemes to windows, after user presses file association
koda
parents: 8715
diff changeset
   341
    if (app.urlString)
2dead6b84bca this should supposedly add hwplay:// schemes to windows, after user presses file association
koda
parents: 8715
diff changeset
   342
        app.fakeEvent();
8223
14d9a3c33650 backout rea7541f77944 since development of frontlib is on another branch
koda
parents: 8206
diff changeset
   343
    return app.exec();
2845
19db164dd20d Frontend:
smxx
parents: 2798
diff changeset
   344
}