akashi-esquizolandia/core/include/packet/packet_factory.h
scatterflower ca84b54597
Replace packet handler with templates (#300)
* Replace packet handler with templates

* Move all packet functions into classes

* Liberal use of Q_UNSUED

* Add correct argument count to packets

* Fix windows build issues

* Partially implement argument type validation
* Where applicable.
* Checking if we can convert from a string to a string would be useless

* Fix unit tests for AOPacket

Co-authored-by: scatterflower <marisa@scatterflower.online>
Co-authored-by: Salanto <62221668+Salanto@users.noreply.github.com>
2022-07-07 10:33:41 -05:00

21 lines
747 B
C++

#include "include/network/aopacket.h"
class PacketFactory
{
public:
// thingy here to register/map strings to constructors
static AOPacket *createPacket(QString header, QStringList contents);
static AOPacket *createPacket(QString raw_packet);
template <typename T>
static void registerClass(QString header) { class_map[header] = &createInstance<T>; };
private:
template <typename T>
static AOPacket *createInstance(QStringList contents) { return new T(contents); };
template <typename T>
static AOPacket *createInstance(QString header, QStringList contents) { return new T(header, contents); };
typedef std::map<QString, AOPacket *(*)(QStringList)> type_map;
static inline type_map class_map;
};