QTfrontend/net/hwmapoptimizer.h
author Wuzzy <almikes@aol.com>
Mon, 10 Apr 2017 21:42:53 +0200
changeset 12217 a6cd48b8ef61
parent 10256 b07288b729c4
permissions -rw-r--r--
Prevent frontend from starting game w/ >48 hogs This is because the engine does not support >48 hogs (another bug), but at least this commit a common crash with useless/confusing error message.

#ifndef HWMAPOPTIMIZER_H
#define HWMAPOPTIMIZER_H

#include "tcpBase.h"
#include "drawmapscene.h"

class HWMapOptimizer : public TCPBase
{
    Q_OBJECT
public:
    explicit HWMapOptimizer(QObject *parent = 0);

    void optimizeMap(const Paths & paths);
    bool couldBeRemoved();
    
signals:    
    void optimizedMap(const Paths & paths);
    
public slots:

protected:
    QStringList getArguments();
    void onClientDisconnect();
    void SendToClientFirst();

private:
    Paths m_paths;
};

#endif // HWMAPOPTIMIZER_H