QTfrontend/main.cpp
author Xeli
Sat, 04 Feb 2012 16:22:46 +0100
changeset 6622 01889d5bc79b
parent 6616 f77bb02b669f
child 6700 e04da46ee43c
permissions -rw-r--r--
Rewrote the Ammomenu: Added landscape ammomenu At the moment MOBILE indicates landscape, but we could just as easily make a variable out of it Draw to texture once uVariables.AmmoMenuInvalidated indicates a new ammo menu needs to be drawn, see uTeams and uAmmos Slot/Cellsize is dependent on uConsts.AMSlotSize this should make it easier to scale the ammo menu on smaller screens AmmoRect AmmoRect indicates where and how big the ammo menu is, this makes positioning a bit easier imo, because you only need to change the position at one single point needs testing on the iphone (and other systems as well ofcourse..)
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
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4888
diff changeset
     3
 * Copyright (c) 2005-2011 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>
1146
0bc17a69b3d8 Background for Hedgewars is ready
displacer
parents: 1066
diff changeset
    30
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    31
#include "hwform.h"
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    32
#include "hwconsts.h"
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    33
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
    34
#include "HWDataManager.h"
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
    35
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    36
#ifdef _WIN32
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    37
#include <Shlobj.h>
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    38
#endif
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 4976
diff changeset
    39
#ifdef __APPLE__
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 4976
diff changeset
    40
#include "CocoaInitializer.h"
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 4976
diff changeset
    41
#endif
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
    42
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    43
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    44
//Determines the day of easter in year
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    45
//from http://aa.usno.navy.mil/faq/docs/easter.php,adapted to C/C++
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    46
QDate calculateEaster(long year)
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    47
{
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    48
    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
    49
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    50
    c = year/100;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    51
    n = year - 19*(year/19);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    52
    k = (c - 17)/25;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    53
    i = c - c/4 - (c - k)/3 + 19*n + 15;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    54
    i = i - 30*(i/30);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    55
    i = i - (i/28)*(1 - (i/28)*(29/(i + 1))*((21 - n)/11));
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    56
    j = year + year/4 + i + 2 - c + c/4;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    57
    j = j - 7*(j/7);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    58
    l = i - j;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    59
    m = 3 + (l + 40)/44;
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    60
    d = l + 28 - 31*(m / 4);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    61
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    62
    return QDate(year, m, d);
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    63
}
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    64
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    65
//Checks season and assigns it to the variable season in "hwconsts.h"
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    66
void checkSeason()
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    67
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    68
    QDate date = QDate::currentDate();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    69
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    70
    //Christmas?
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    71
    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
    72
            && date.day() <= 26)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    73
        season = SEASON_CHRISTMAS;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    74
    //Hedgewars birthday?
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    75
    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
    76
    {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    77
        season = SEASON_HWBDAY;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    78
        years_since_foundation = date.year() - 2004;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    79
    }
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    80
    //Easter?
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    81
    else if (calculateEaster(date.year()) == date)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    82
        season = SEASON_EASTER;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    83
    else
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    84
        season = SEASON_NONE;
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    85
}
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
    86
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    87
bool checkForDir(const QString & dir)
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    88
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    89
    QDir tmpdir;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    90
    if (!tmpdir.exists(dir))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    91
        if (!tmpdir.mkdir(dir))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    92
        {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    93
            QMessageBox::critical(0,
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    94
                                  QObject::tr("Error"),
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    95
                                  QObject::tr("Cannot create directory %1").arg(dir),
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
    96
                                  QObject::tr("OK"));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    97
            return false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    98
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
    99
    return true;
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   100
}
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   101
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   102
int main(int argc, char *argv[])
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   103
{
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
   104
    HWApplication app(argc, argv);
4888
3c96e99468c5 activate icon display in menus
sheepluva
parents: 4513
diff changeset
   105
    app.setAttribute(Qt::AA_DontShowIconsInMenus,false);
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   106
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   107
    QStringList arguments = app.arguments();
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   108
    QMap<QString, QString> parsedArgs;
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   109
    {
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   110
        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
   111
        while(i != arguments.end())
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   112
        {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   113
            QString arg = *i;
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   114
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   115
            QRegExp opt("--(\\S+)=(.+)");
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   116
            if(opt.exactMatch(arg))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   117
            {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   118
                parsedArgs[opt.cap(1)] = opt.cap(2);
2035
70734c4f52a7 patch to prior checkin
nemo
parents: 2034
diff changeset
   119
                i = arguments.erase(i);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   120
            }
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   121
            else
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   122
            {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   123
                ++i;
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   124
            }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   125
        }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   126
    }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   127
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   128
    if(parsedArgs.contains("data-dir"))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   129
    {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   130
        QFileInfo f(parsedArgs["data-dir"]);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   131
        if(!f.exists())
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   132
        {
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   133
            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
   134
        }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   135
        *cDataDir = f.absoluteFilePath();
3932
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   136
        custom_data = true;
2034
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   137
    }
decdf48cffd7 david_ac adding a commandline parameter for the data dir, as requested by svenstaro
nemo
parents: 1969
diff changeset
   138
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   139
    if(parsedArgs.contains("config-dir"))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   140
    {
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   141
        QFileInfo f(parsedArgs["config-dir"]);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   142
        *cConfigDir = f.absoluteFilePath();
3932
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   143
        custom_config = true;
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   144
    }
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   145
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   146
    app.setStyle(new QPlastiqueStyle);
2377
f3fab2b09e0c And in frontend
nemo
parents: 2261
diff changeset
   147
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   148
    QDateTime now = QDateTime::currentDateTime();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   149
    srand(now.toTime_t());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   150
    rand();
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   151
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   152
    Q_INIT_RESOURCE(hedgewars);
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   153
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   154
    bindir->cd("bin"); // workaround over NSIS installer
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   155
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   156
    if(cConfigDir->length() == 0)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   157
        cfgdir->setPath(cfgdir->homePath());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   158
    else
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   159
        cfgdir->setPath(*cConfigDir);
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   160
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   161
    if(cConfigDir->length() == 0)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   162
    {
1965
340bfd438ca5 - Apply koda's patch
unc0rr
parents: 1940
diff changeset
   163
#ifdef __APPLE__
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   164
        checkForDir(cfgdir->absolutePath() + "/Library/Application Support/Hedgewars");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   165
        cfgdir->cd("Library/Application Support/Hedgewars");
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   166
#elif defined _WIN32
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   167
        char path[1024];
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   168
        if(!SHGetFolderPathA(0, CSIDL_PERSONAL, NULL, 0, path))
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   169
        {
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   170
            cfgdir->cd(path);
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   171
            checkForDir(cfgdir->absolutePath() + "/Hedgewars");
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   172
            cfgdir->cd("Hedgewars");
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   173
        }
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   174
        else // couldn't retrieve documents folder? almost impossible, but in case fall back to classic path
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   175
        {
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   176
            checkForDir(cfgdir->absolutePath() + "/.hedgewars");
3333
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   177
            cfgdir->cd(".hedgewars");
560e2766c445 Frontend:
smxx
parents: 3236
diff changeset
   178
        }
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   179
#else
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   180
        checkForDir(cfgdir->absolutePath() + "/.hedgewars");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   181
        cfgdir->cd(".hedgewars");
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2418
diff changeset
   182
#endif
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   183
    }
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   184
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   185
    if (checkForDir(cfgdir->absolutePath()))
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   186
    {
3758
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   187
        // alternative loading/lookup paths
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   188
        checkForDir(cfgdir->absolutePath() + "/Data");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   189
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   190
        // config/save paths
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   191
        checkForDir(cfgdir->absolutePath() + "/Demos");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   192
        checkForDir(cfgdir->absolutePath() + "/Saves");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   193
        checkForDir(cfgdir->absolutePath() + "/Screenshots");
80007c41c35e Frontend:
smaxx
parents: 3714
diff changeset
   194
        checkForDir(cfgdir->absolutePath() + "/Teams");
3914
c5c903c6225b Engine:
smaxx
parents: 3865
diff changeset
   195
        checkForDir(cfgdir->absolutePath() + "/Logs");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   196
    }
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   197
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   198
    datadir->cd(bindir->absolutePath());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   199
    datadir->cd(*cDataDir);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   200
    if(!datadir->cd("hedgewars/Data"))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   201
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   202
        QMessageBox::critical(0, QMessageBox::tr("Error"),
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   203
                              QMessageBox::tr("Failed to open data directory:\n%1\n"
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   204
                                              "Please check your installation").
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   205
                              arg(datadir->absolutePath()+"/hedgewars/Data"));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   206
        return 1;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   207
    }
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   208
6196
c16e84558f71 minor cleanups, mostly in own code
sheepluva
parents: 6186
diff changeset
   209
    HWDataManager & dataMgr = HWDataManager::instance();
c16e84558f71 minor cleanups, mostly in own code
sheepluva
parents: 6186
diff changeset
   210
5276
562070d3f978 Derive themes list from list of dirs in Themes folder which have icon.png inside
unc0rr
parents: 5257
diff changeset
   211
    {
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
   212
        QStringList themes;
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
   213
6196
c16e84558f71 minor cleanups, mostly in own code
sheepluva
parents: 6186
diff changeset
   214
        themes.append(dataMgr.entryList(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   215
                          "Themes",
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   216
                          QDir::AllDirs | QDir::NoDotAndDotDot)
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
   217
                     );
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
   218
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   219
        QList<QPair<QIcon, QIcon> > icons;
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   220
5307
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   221
        themes.sort();
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
   222
        for(int i = themes.size() - 1; i >= 0; --i)
5276
562070d3f978 Derive themes list from list of dirs in Themes folder which have icon.png inside
unc0rr
parents: 5257
diff changeset
   223
        {
6196
c16e84558f71 minor cleanups, mostly in own code
sheepluva
parents: 6186
diff changeset
   224
            QString file = dataMgr.findFileForRead(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   225
                               QString("Themes/%1/icon.png").arg(themes.at(i))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   226
                           );
5307
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   227
6167
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   228
            if(QFile::exists(file))
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   229
            {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   230
                // load icon
5307
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   231
                QPair<QIcon, QIcon> ic;
6167
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   232
                ic.first = QIcon(file);
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
   233
6167
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   234
                // load preview icon
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   235
                ic.second = QIcon(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   236
                                dataMgr.findFileForRead(
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   237
                                    QString("Themes/%1/icon@2x.png").arg(themes.at(i))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   238
                                )
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   239
                            );
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
   240
5307
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   241
                icons.prepend(ic);
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   242
            }
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   243
            else
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   244
            {
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   245
                themes.removeAt(i);
5276
562070d3f978 Derive themes list from list of dirs in Themes folder which have icon.png inside
unc0rr
parents: 5257
diff changeset
   246
            }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   247
        }
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
   248
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   249
        themesModel = new ThemesModel(themes);
5307
dd53755e0fca Fix broken theme icon loading from user dir
unc0rr
parents: 5300
diff changeset
   250
        Q_ASSERT(themes.size() == icons.size());
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
   251
        for(int i = 0; i < icons.size(); ++i)
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   252
        {
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   253
            themesModel->setData(themesModel->index(i), icons[i].first, Qt::DecorationRole);
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   254
            themesModel->setData(themesModel->index(i), icons[i].second, Qt::UserRole);
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5276
diff changeset
   255
        }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   256
    }
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
   257
6196
c16e84558f71 minor cleanups, mostly in own code
sheepluva
parents: 6186
diff changeset
   258
    mapList = new QStringList(dataMgr.entryList(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   259
                                  QString("Maps"),
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   260
                                  QDir::Dirs | QDir::NoDotAndDotDot
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   261
                              )
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
   262
                             );
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   263
6196
c16e84558f71 minor cleanups, mostly in own code
sheepluva
parents: 6186
diff changeset
   264
    scriptList = new QStringList(dataMgr.entryList(
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
   265
                                     QString("Scripts/Multiplayer"),
6174
2d5717595471 fix multiplayer script loading
sheepluva
parents: 6167
diff changeset
   266
                                     QDir::Files,
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
   267
                                     QStringList("*.lua")
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   268
                                 )
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6600
diff changeset
   269
                                );
2898
c53636f556f8 Frontend:
smxx
parents: 2897
diff changeset
   270
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   271
    QTranslator Translator;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   272
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   273
        QSettings settings(cfgdir->absolutePath() + "/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
   274
        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
   275
        if(cc.isEmpty())
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   276
            cc = QLocale::system().name();
6167
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   277
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   278
        // load locale file into translator
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   279
        Translator.load(
6196
c16e84558f71 minor cleanups, mostly in own code
sheepluva
parents: 6186
diff changeset
   280
            dataMgr.findFileForRead(
6167
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   281
                QString("Locale/hedgewars_" + cc)
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   282
            )
728cabee2c9f simplified some stuff I wrote
sheepluva
parents: 6160
diff changeset
   283
        );
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   284
        app.installTranslator(&Translator);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   285
    }
2898
c53636f556f8 Frontend:
smxx
parents: 2897
diff changeset
   286
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5307
diff changeset
   287
#ifdef _WIN32
3679
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   288
    // 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
   289
    if(!custom_config)
3679
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   290
    {
3932
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   291
        QSettings registry_hklm("HKEY_LOCAL_MACHINE", QSettings::NativeFormat);
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   292
        registry_hklm.setValue("Software/Hedgewars/Frontend", bindir->absolutePath().replace("/", "\\") + "\\hedgewars.exe");
2fc211f60015 Engine:
smaxx
parents: 3914
diff changeset
   293
        registry_hklm.setValue("Software/Hedgewars/Path", bindir->absolutePath().replace("/", "\\"));
3679
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   294
    }
acf5acc18522 Frontend:
smaxx
parents: 3350
diff changeset
   295
#endif
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 4976
diff changeset
   296
#ifdef __APPLE__
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 4976
diff changeset
   297
    // this creates the autoreleasepool that prevents leaking
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 4976
diff changeset
   298
    CocoaInitializer initializer;
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 4976
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";
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   322
    }
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
   323
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
   324
    // load external stylesheet if there is any
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   325
    QFile extFile(dataMgr.findFileForRead("css/" + fname));
2898
c53636f556f8 Frontend:
smxx
parents: 2897
diff changeset
   326
6579
fc52f7c22c9b GCI task: season greetings
valnut
parents: 6376
diff changeset
   327
    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
   328
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
    QFile & file = (extFile.exists()?extFile:resFile);
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents: 6177
diff changeset
   330
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
    if (file.open(QIODevice::ReadOnly | QIODevice::Text))
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
   332
    {
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
   333
        QTextStream in(&file);
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
   334
        while (!in.atEnd())
19ef039a8474 frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists
sheepluva
parents: 6174
diff changeset
   335
        {
19ef039a8474 frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists
sheepluva
parents: 6174
diff changeset
   336
            QString line = in.readLine();
19ef039a8474 frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists
sheepluva
parents: 6174
diff changeset
   337
            if(!line.isEmpty())
19ef039a8474 frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists
sheepluva
parents: 6174
diff changeset
   338
                style.append(line);
19ef039a8474 frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists
sheepluva
parents: 6174
diff changeset
   339
        }
19ef039a8474 frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists
sheepluva
parents: 6174
diff changeset
   340
    }
2377
f3fab2b09e0c And in frontend
nemo
parents: 2261
diff changeset
   341
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
   342
    app.form = new HWForm(NULL, style);
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
   343
    app.form->show();
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2913
diff changeset
   344
    return app.exec();
2845
19db164dd20d Frontend:
smxx
parents: 2798
diff changeset
   345
}