QTfrontend/net/hwmapoptimizer.h
author unc0rr
Tue, 30 Dec 2014 22:59:15 +0300
changeset 10732 7c4f9e5e447c
parent 10256 b07288b729c4
permissions -rw-r--r--
Get rid of teamownerId since rejoin feature makes it virtually useless, as you cannot rely on it anymore. Should fix recently experienced server crashes.

#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