2020-12-05 02:00:46 +00:00
|
|
|
#pragma once
|
2020-12-03 08:48:44 +00:00
|
|
|
#include "ProtobufPlugin.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Position plugin for sending/receiving positions into the mesh
|
|
|
|
*/
|
|
|
|
class PositionPlugin : public ProtobufPlugin<Position>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Constructor
|
|
|
|
* name is for debugging output
|
|
|
|
*/
|
|
|
|
PositionPlugin() : ProtobufPlugin("position", PortNum_POSITION_APP, Position_fields) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send our position into the mesh
|
|
|
|
*/
|
|
|
|
void sendOurPosition(NodeNum dest = NODENUM_BROADCAST, bool wantReplies = false);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/** Called to handle a particular incoming message
|
|
|
|
|
|
|
|
@return true if you've guaranteed you've handled this message and no other handlers should be considered for it
|
|
|
|
*/
|
|
|
|
virtual bool handleReceivedProtobuf(const MeshPacket &mp, const Position &p);
|
2020-12-05 03:15:06 +00:00
|
|
|
|
|
|
|
/** Messages can be received that have the want_response bit set. If set, this callback will be invoked
|
2020-12-07 02:18:11 +00:00
|
|
|
* so that subclasses can (optionally) send a response back to the original sender. */
|
|
|
|
virtual MeshPacket *allocReply();
|
2020-12-03 08:48:44 +00:00
|
|
|
};
|
|
|
|
|
2021-01-08 05:15:49 +00:00
|
|
|
extern PositionPlugin *positionPlugin;
|