QTfrontend/net/hwmapoptimizer.h
author Wuzzy <Wuzzy2@mail.ru>
Sun, 29 Oct 2017 16:21:24 +0100
changeset 12796 d97fa936778e
parent 10256 b07288b729c4
permissions -rw-r--r--
ACF2: Fix Lua error spam when Leaks A Lot died in same turn as weaklings, also do other minor tweaks - Grant skip to Dense Cloud and Leaks A Lot again, after refusing the cyborg's offer - Fix flow chart - String freeze is maintained, the new string is already in stub.lua.

#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