IsHogLocal: If there's a mission team, only count members in the clan of that team
This attends to a hack in some missions which use fake human teams in the enemy clans for animation purposes.
#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