QTfrontend/net/netudpserver.h
author Simon McVittie <smcv@debian.org>
Mon, 12 Sep 2022 10:40:53 -0400
branch1.0.0
changeset 15859 7b1d6dfa3173
parent 11046 47a8c19ecb60
permissions -rw-r--r--
Remove FindSDL2 find-module, use sdl2-config.cmake instead This requires SDL >= 2.0.4. Since <https://bugzilla.libsdl.org/show_bug.cgi?id=2464> was fixed in SDL 2.0.4, SDL behaves as a CMake "config-file package", even if it was not itself built using CMake: it installs a sdl2-config.cmake file to ${libdir}/cmake/SDL2, which tells CMake where to find SDL's headers and library, analogous to a pkg-config .pc file. As a result, we no longer need to copy/paste a "find-module package" to be able to find a system copy of SDL >= 2.0.4 with find_package(SDL2). Find-module packages are now discouraged by the CMake developers, in favour of having upstream projects behave as config-file packages. This results in a small API change: FindSDL2 used to set SDL2_INCLUDE_DIR and SDL2_LIBRARY, but the standard behaviour for config-file packages is to set <name>_INCLUDE_DIRS and <name>_LIBRARIES. Use the CONFIG keyword to make sure we search in config-file package mode, and will not find a FindSDL2.cmake in some other directory that implements the old interface. In addition to deleting redundant code, this avoids some assumptions in FindSDL2 about the layout of a SDL installation. The current libsdl2-dev package in Debian breaks those assumptions; this is considered a bug and will hopefully be fixed soon, but it illustrates how fragile these assumptions can be. We can be more robust against different installation layouts by relying on SDL's own CMake integration. When linking to a copy of CMake in a non-standard location, users can now set the SDL2_DIR or CMAKE_PREFIX_PATH environment variable to point to it; previously, these users would have used the SDL2DIR environment variable. This continues to be unnecessary if using matching system-wide installations of CMake and SDL2, for example both from Debian.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
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: 1066
diff changeset
     3
 * Copyright (c) 2007-2008 Igor Ulyanov <iulyanov@gmail.com>
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10108
diff changeset
     4
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
     5
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
     9
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    13
 * GNU General Public License for more details.
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    14
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    15
 * You should have received a copy of the GNU General Public License
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    16
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 9998
diff changeset
    17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    18
 */
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 413
diff changeset
    19
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    20
#ifndef _NET_UDPSERVER_INCLUDED
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    21
#define _NET_UDPSERVER_INCLUDED
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    22
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    23
#include <QObject>
633
9050a949db21 Half implement registration in servers list
unc0rr
parents: 486
diff changeset
    24
#include "netregister.h"
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    25
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    26
class QUdpSocket;
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    27
633
9050a949db21 Half implement registration in servers list
unc0rr
parents: 486
diff changeset
    28
class HWNetUdpServer : public HWNetRegisterServer
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    29
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    30
        Q_OBJECT
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    31
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    32
    public:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    33
        HWNetUdpServer(QObject *parent, const QString & descr, quint16 port);
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    34
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    35
    public slots:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    36
        void unregister();
659
5eafb20566f1 - Fix some stupid object casts
unc0rr
parents: 633
diff changeset
    37
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    38
    private slots:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    39
        void onClientRead();
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    40
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    41
    private:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    42
        QUdpSocket* pUdpSocket;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    43
        QString m_descr;
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    44
};
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    45
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    46
#endif // _NET_UDPSERVER_INCLUDED