QTfrontend/ui/page/pagemain.cpp
branchflibqtfrontend
changeset 8363 0b4ac686fc44
parent 8361 2831c1403666
equal deleted inserted replaced
8306:50fe80adbfcb 8363:0b4ac686fc44
    19 #include <QGridLayout>
    19 #include <QGridLayout>
    20 #include <QHBoxLayout>
    20 #include <QHBoxLayout>
    21 #include <QPushButton>
    21 #include <QPushButton>
    22 #include <QLabel>
    22 #include <QLabel>
    23 #include <QTime>
    23 #include <QTime>
       
    24 #include <QTextStream>
    24 
    25 
    25 #include "pagemain.h"
    26 #include "pagemain.h"
    26 #include "hwconsts.h"
    27 #include "hwconsts.h"
    27 #include "hwform.h"
    28 #include "hwform.h"
    28 
    29 
    44     BtnSinglePlayer = addButton(":/res/LocalPlay.png", pageLayout, 2, 0, 1, 2, true);
    45     BtnSinglePlayer = addButton(":/res/LocalPlay.png", pageLayout, 2, 0, 1, 2, true);
    45     BtnSinglePlayer->setToolTip(tr("Local Game"));
    46     BtnSinglePlayer->setToolTip(tr("Local Game"));
    46     BtnSinglePlayer->setWhatsThis(tr("Play a game on a single computer"));
    47     BtnSinglePlayer->setWhatsThis(tr("Play a game on a single computer"));
    47     pageLayout->setAlignment(BtnSinglePlayer, Qt::AlignHCenter);
    48     pageLayout->setAlignment(BtnSinglePlayer, Qt::AlignHCenter);
    48 
    49 
       
    50     //BtnNet = addButton(":/res/NetworkPlay.png", (QBoxLayout*)netLayout, 1, true);
    49     BtnNet = addButton(":/res/NetworkPlay.png", pageLayout, 2, 2, 1, 2, true);
    51     BtnNet = addButton(":/res/NetworkPlay.png", pageLayout, 2, 2, 1, 2, true);
    50     BtnNet->setToolTip(tr("Network Game"));
    52     BtnNet->setToolTip(tr("Network Game"));
    51     BtnNet->setWhatsThis(tr("Play a game across a network"));
    53     BtnNet->setWhatsThis(tr("Play a game across a network"));
    52     pageLayout->setAlignment(BtnNet, Qt::AlignHCenter);
    54     pageLayout->setAlignment(BtnNet, Qt::AlignHCenter);
       
    55     connect(BtnNet, SIGNAL(clicked()), this, SLOT(toggleNetworkChoice()));
       
    56     
       
    57     originalNetworkIcon = BtnNet->icon();
       
    58     disabledNetworkIcon = QIcon(":/res/NetworkPlayDisabled.png");
       
    59 
       
    60     //QWidget *netLayoutWidget = new QWidget();
       
    61     QVBoxLayout *netLayout = new QVBoxLayout(BtnNet);
       
    62     //pageLayout->addWidget(netLayoutWidget, 2, 2, 1, 2);
       
    63     //netLayoutWidget->setStyleSheet("background: green;");
       
    64     //netLayoutWidget->setFixedSize(314, 260);
       
    65     netLayout->setSpacing(20);
       
    66     netLayout->setAlignment(Qt::AlignHCenter);
       
    67 
       
    68     BtnNetLocal = addButton("Play local network game", (QBoxLayout*)netLayout, 0, false);
       
    69     BtnNetLocal->setToolTip(tr("Play a local network game"));
       
    70     BtnNetLocal->setWhatsThis(tr("Play a game across a local area network"));
       
    71     BtnNetLocal->setFixedSize(BtnNet->width() - 50, 60);
       
    72     BtnNetLocal->setVisible(false);
       
    73 
       
    74     BtnNetOfficial = addButton("Play official network game", (QBoxLayout*)netLayout, 0, false);
       
    75     BtnNetOfficial->setToolTip(tr("Play a network game"));
       
    76     BtnNetOfficial->setWhatsThis(tr("Play a game on an official server"));
       
    77     BtnNetOfficial->setFixedSize(BtnNet->width() - 50, 60);
       
    78     BtnNetOfficial->setVisible(false);
    53 
    79 
    54     // button order matters for overlapping (what's on top and what isn't)
    80     // button order matters for overlapping (what's on top and what isn't)
    55     BtnInfo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true);
    81     BtnInfo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true);
    56     BtnInfo->setStyleSheet("border: transparent;background: transparent;");
    82     BtnInfo->setStyleSheet("border: transparent;background: transparent;");
    57     //BtnInfo->setToolTip(tr("Credits")); //tooltip looks horrible with transparent background buttons
    83     //BtnInfo->setToolTip(tr("Credits")); //tooltip looks horrible with transparent background buttons
   122 
   148 
   123 }
   149 }
   124 
   150 
   125 QString PageMain::randomTip() const
   151 QString PageMain::randomTip() const
   126 {
   152 {
       
   153 #ifdef _WIN32
       
   154     int platform = 1;
       
   155 #elif defined __APPLE__
       
   156     int platform = 2;
       
   157 #else
       
   158     int platform = 3;
       
   159 #endif
   127     QStringList Tips;
   160     QStringList Tips;
   128     Tips << tr("Simply pick the same color as a friend to play together as a team. Each of you will still control his or her own hedgehogs but they'll win or lose together.", "Tips");
   161     QFile file(":/res/xml/tips.xml");
   129     Tips << tr("Some weapons might do only low damage but they can be a lot more devastating in the right situation. Try to use the Desert Eagle to knock multiple hedgehogs into the water.", "Tips");
   162     file.open(QIODevice::ReadOnly);
   130     Tips << tr("If you're unsure what to do and don't want to waste ammo, skip one round. But don't let too much time pass as there will be Sudden Death!", "Tips");
   163     QTextStream in(&file);
   131     Tips << tr("Want to save ropes? Release the rope in mid air and then shoot again. As long as you don't touch the ground you'll reuse your rope without wasting ammo!", "Tips");
   164     QString line = in.readLine();
   132     Tips << tr("If you'd like to keep others from using your preferred nickname on the official server, register an account at http://www.hedgewars.org/.", "Tips");
   165     int tip_platform = 0;
   133     Tips << tr("You're bored of default gameplay? Try one of the missions - they'll offer different gameplay depending on the one you picked.", "Tips");
   166     while (!line.isNull()) {
   134     Tips << tr("By default the game will always record the last game played as a demo. Select 'Local Game' and pick the 'Demos' button on the lower right corner to play or manage them.", "Tips");
   167         if(line.contains("<windows-only>", Qt::CaseSensitive))
   135     Tips << tr("Hedgewars is Open Source and Freeware we create in our spare time. If you've got problems, ask on our forums but please don't expect 24/7 support!", "Tips");
   168             tip_platform = 1;
   136     Tips << tr("Hedgewars is Open Source and Freeware we create in our spare time. If you like it, help us with a small donation or contribute your own work!", "Tips");
   169         if(line.contains("<mac-only>", Qt::CaseSensitive))
   137     Tips << tr("Hedgewars is Open Source and Freeware we create in our spare time. Share it with your family and friends as you like!", "Tips");
   170             tip_platform = 2;
   138     Tips << tr("Hedgewars is Open Source and Freeware we create in our spare time. If someone sold you the game, you should try get a refund!", "Tips");
   171         if(line.contains("<linux-only>", Qt::CaseSensitive))
   139     Tips << tr("From time to time there will be official tournaments. Upcoming events will be announced at http://www.hedgewars.org/ some days in advance.", "Tips");
   172             tip_platform = 3;
   140     Tips << tr("Hedgewars is available in many languages. If the translation in your language seems to be missing or outdated, feel free to contact us!", "Tips");
   173         if(line.contains("</windows-only>", Qt::CaseSensitive) || 
   141     Tips << tr("Hedgewars can be run on lots of different operating systems including Microsoft Windows, Mac OS X and Linux.", "Tips");
   174                 line.contains("</mac-only>", Qt::CaseSensitive) || 
   142     Tips << tr("Always remember you're able to set up your own games in local and network/online play. You're not restricted to the 'Simple Game' option.", "Tips");
   175                 line.contains("</linux-only>", Qt::CaseSensitive)) {
   143     Tips << tr("Connect one or more gamepads before starting the game to be able to assign their controls to your teams.", "Tips");
   176             tip_platform = 0;
   144     Tips << tr("Create an account on %1 to keep others from using your most favourite nickname while playing on the official server.", "Tips").arg("<a href=\"http://www.hedgewars.org/\">http://www.hedgewars.org/</a>");
   177         }
   145     Tips << tr("While playing you should give yourself a short break at least once an hour.", "Tips");
   178         QStringList split_string = line.split(QRegExp("</?tip>"));
   146     Tips << tr("If your graphics card isn't able to provide hardware accelerated OpenGL, try to enable the low quality mode to improve performance.", "Tips");
   179         if((tip_platform == platform || tip_platform == 0) && split_string.size() != 1)
   147     Tips << tr("If your graphics card isn't able to provide hardware accelerated OpenGL, try to update the associated drivers.", "Tips");
   180             Tips << tr(split_string[1].toLatin1().data(), "Tips");
   148     Tips << tr("We're open to suggestions and constructive feedback. If you don't like something or got a great idea, let us know!", "Tips");
   181         line = in.readLine();
   149     Tips << tr("Especially while playing online be polite and always remember there might be some minors playing with or against you as well!", "Tips");
   182     }
   150     Tips << tr("Special game modes such as 'Vampirism' or 'Karma' allow you to develop completely new tactics. Try them in a custom game!", "Tips");
       
   151     Tips << tr("The Windows version of Hedgewars supports Xfire. Make sure to add Hedgewars to its game list so your friends can see you playing.", "Tips");
       
   152     Tips << tr("You should never install Hedgewars on computers you don't own (school, university, work, etc.). Please ask the responsible person instead!", "Tips");
       
   153     Tips << tr("Hedgewars can be perfect for short games during breaks. Just ensure you don't add too many hedgehogs or use an huge map. Reducing time and health might help as well.", "Tips");
       
   154     Tips << tr("No hedgehogs were harmed in making this game.", "Tips");
       
   155     Tips << tr("There are three different jumps available. Tap [high jump] twice to do a very high/backwards jump.", "Tips");
       
   156     Tips << tr("Afraid of falling off a cliff? Hold down [precise] to turn [left] or [right] without actually moving.", "Tips");
       
   157     Tips << tr("Some weapons require special strategies or just lots of training, so don't give up on a particular tool if you miss an enemy once.", "Tips");
       
   158     Tips << tr("Most weapons won't work once they touch the water. The Homing Bee as well as the Cake are exceptions to this.", "Tips");
       
   159     Tips << tr("The Old Limbuger only causes a small explosion. However the wind affected smelly cloud can poison lots of hogs at once.", "Tips");
       
   160     Tips << tr("The Piano Strike is the most damaging air strike. You'll lose the hedgehog performing it, so there's a huge downside as well.", "Tips");
       
   161     Tips << tr("The Homing Bee can be tricky to use. Its turn radius depends on its velocity, so try to not use full power.", "Tips");
       
   162     Tips << tr("Sticky Mines are a perfect tool to create small chain reactions knocking enemy hedgehogs into dire situations ... or water.", "Tips");
       
   163     Tips << tr("The Hammer is most effective when used on bridges or girders. Hit hogs will just break through the ground.", "Tips");
       
   164     Tips << tr("If you're stuck behind an enemy hedgehog, use the Hammer to free yourself without getting damaged by an explosion.", "Tips");
       
   165     Tips << tr("The Cake's maximum walking distance depends on the ground it has to pass. Use [attack] to detonate it early.", "Tips");
       
   166     Tips << tr("The Flame Thrower is a weapon but it can be used for tunnel digging as well.", "Tips");
       
   167     Tips << tr("Use the Molotov or Flame Thrower to temporary keep hedgehogs from passing terrain such as tunnels or platforms.", "Tips");
       
   168     Tips << tr("Want to know who's behind the game? Click on the Hedgewars logo in the main menu to see the credits.", "Tips");
       
   169     Tips << tr("Like Hedgewars? Become a fan on %1 or follow us on %2!", "Tips").arg("<a href=\"http://www.facebook.com/Hedgewars\">Facebook</a>").arg("<a href=\"http://twitter.com/hedgewars\">Twitter</a>");
       
   170     Tips << tr("Feel free to draw your own graves, hats, flags or even maps and themes! But note that you'll have to share them somewhere to use them online.", "Tips");
       
   171     Tips << tr("Really want to wear a specific hat? Donate to us and receive an exclusive hat of your choice!", "Tips");
       
   172     // The following tip will require links to app store entries first.
   183     // The following tip will require links to app store entries first.
   173     //Tips << tr("Want to play Hedgewars any time? Grab the Mobile version for %1 and %2.", "Tips").arg("").arg("");
   184     //Tips << tr("Want to play Hedgewars any time? Grab the Mobile version for %1 and %2.", "Tips").arg("").arg("");
   174     // the ios version is located here: http://itunes.apple.com/us/app/hedgewars/id391234866
   185     // the ios version is located here: http://itunes.apple.com/us/app/hedgewars/id391234866
   175     Tips << tr("Keep your video card drivers up to date to avoid issues playing the game.", "Tips");
       
   176     Tips << tr("You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser.", "Tips");
       
   177 #ifdef _WIN32
       
   178     Tips << tr("You can find your Hedgewars configuration files under \"My Documents\\Hedgewars\". Create backups or take the files with you, but don't edit them by hand.", "Tips");
       
   179 #elif defined __APPLE__
       
   180     Tips << tr("You can find your Hedgewars configuration files under \"Library/Application Support/Hedgewars\" in your home directory. Create backups or take the files with you, but don't edit them by hand.", "Tips");
       
   181 #else
       
   182     Tips << tr("You can find your Hedgewars configuration files under \".hedgewars\" in your home directory. Create backups or take the files with you, but don't edit them by hand.", "Tips");
       
   183 #endif
       
   184 
   186 
       
   187     file.close();
   185     return Tips[QTime(0, 0, 0).secsTo(QTime::currentTime()) % Tips.length()];
   188     return Tips[QTime(0, 0, 0).secsTo(QTime::currentTime()) % Tips.length()];
   186 }
   189 }
       
   190 
       
   191 void PageMain::toggleNetworkChoice()
       
   192 {
       
   193     bool visible = BtnNetLocal->isVisible();
       
   194     BtnNetLocal->setVisible(!visible);
       
   195     BtnNetOfficial->setVisible(!visible);
       
   196     if (visible)    BtnNet->setIcon(originalNetworkIcon);
       
   197     else            BtnNet->setIcon(disabledNetworkIcon);
       
   198 }