QTfrontend/net/netudpwidget.cpp
author nemo
Sat, 27 Apr 2013 16:56:50 -0400
changeset 8939 b26aaf28c920
parent 8609 3f6c08223aa1
child 9080 9b42757d7e71
permissions -rw-r--r--
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 883
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 3236
diff changeset
     3
 * Copyright (c) 2007 Igor Ulyanov <iulyanov@gmail.com>
6952
7f70f37bbf08 license header year range adjustments
sheepluva
parents: 6700
diff changeset
     4
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
     5
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
     9
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    13
 * GNU General Public License for more details.
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    14
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    15
 * You should have received a copy of the GNU General Public License
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    16
 * along with this program; if not, write to the Free Software
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    18
 */
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 468
diff changeset
    19
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    20
#include <QUdpSocket>
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    21
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    22
#include "netudpwidget.h"
8609
3f6c08223aa1 use NETGAME_DEFAULT_PORT macro across frontend sources
koda
parents: 6952
diff changeset
    23
#include "hwconsts.h"
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    24
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    25
HWNetUdpModel::HWNetUdpModel(QObject* parent) :
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    26
    HWNetServersModel(parent)
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    27
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    28
    pUdpSocket = new QUdpSocket(this);
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    29
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    30
    pUdpSocket->bind();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    31
    connect(pUdpSocket, SIGNAL(readyRead()), this, SLOT(onClientRead()));
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    32
}
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    33
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    34
void HWNetUdpModel::updateList()
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    35
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    36
    games.clear();
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    37
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    38
    reset();
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    39
8609
3f6c08223aa1 use NETGAME_DEFAULT_PORT macro across frontend sources
koda
parents: 6952
diff changeset
    40
    pUdpSocket->writeDatagram("hedgewars client", QHostAddress::Broadcast, NETGAME_DEFAULT_PORT);
416
595d8663254d update button for udp servers list
displacer
parents: 414
diff changeset
    41
}
595d8663254d update button for udp servers list
displacer
parents: 414
diff changeset
    42
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    43
void HWNetUdpModel::onClientRead()
416
595d8663254d update button for udp servers list
displacer
parents: 414
diff changeset
    44
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    45
    while (pUdpSocket->hasPendingDatagrams())
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    46
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    47
        QByteArray datagram;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    48
        datagram.resize(pUdpSocket->pendingDatagramSize());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    49
        QHostAddress clientAddr;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    50
        quint16 clientPort;
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    51
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    52
        pUdpSocket->readDatagram(datagram.data(), datagram.size(), &clientAddr, &clientPort);
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    53
5146
7b65e83e261d Send server's name in udp packet. Fixes issue #25
unc0rr
parents: 4976
diff changeset
    54
        QString packet = QString::fromUtf8(datagram.data());
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    55
        if(packet.startsWith("hedgewars server"))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    56
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    57
            QStringList sl;
8609
3f6c08223aa1 use NETGAME_DEFAULT_PORT macro across frontend sources
koda
parents: 6952
diff changeset
    58
            sl << packet.remove(0, 17) << clientAddr.toString() << QString::number(NETGAME_DEFAULT_PORT);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    59
            games.append(sl);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    60
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    61
    }
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    62
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    63
    reset();
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    64
}
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    65
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    66
QVariant HWNetUdpModel::data(const QModelIndex &index,
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    67
                             int role) const
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    68
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    69
    if (!index.isValid() || index.row() < 0
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    70
            || index.row() >= games.size()
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    71
            || role != Qt::DisplayRole)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    72
        return QVariant();
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    73
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    74
    return games[index.row()][index.column()];
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    75
}