37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "LocalParticipant.h"
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <unordered_map>
|
|
|
|
namespace RoboidControl {
|
|
|
|
/// @brief A participant is device which can communicate with other participants
|
|
class SiteServer : public LocalParticipant {
|
|
public:
|
|
SiteServer(int port = 7681);
|
|
|
|
// virtual void Update(unsigned long currentTimeMs = 0) override;
|
|
|
|
template <typename ThingClass>
|
|
void Register(unsigned char thingType) {
|
|
thingMsgProcessors[thingType] = [](Participant* participant, unsigned char networkId, unsigned char thingId) {
|
|
return new ThingClass(participant, networkId, thingId);
|
|
};
|
|
};
|
|
|
|
protected:
|
|
unsigned long nextPublishMe = 0;
|
|
|
|
virtual void Process(Participant* sender, ParticipantMsg* msg) override;
|
|
virtual void Process(Participant* sender, SiteMsg* msg) override;
|
|
virtual void Process(Participant* sender, ThingMsg* msg) override;
|
|
|
|
using ThingConstructor = std::function<Thing*(Participant* participant, unsigned char networkId, unsigned char thingId)>;
|
|
std::unordered_map<unsigned char, ThingConstructor> thingMsgProcessors;
|
|
};
|
|
|
|
} // namespace RoboidControl
|