CHG: changed to fit to the new base message

This commit is contained in:
Henry Winkel
2023-08-11 11:04:49 +02:00
parent 1f96b32aff
commit 2bc36527a3
8 changed files with 21 additions and 21 deletions

View File

@@ -99,6 +99,7 @@ namespace Entities {
std::atomic<bool> MovementWorkerStarted = false;
std::shared_ptr<DirectCommunication::DirectCommunicationServer> MovemtServer_ = nullptr;
void handleMovement();
std::string MovementPodUUID_;
std::shared_ptr<DirectCommunication::DirectCommunicationServer> CommandCommsServer_ = nullptr;

View File

@@ -11,9 +11,9 @@ namespace Orders
class MoveOrder: public Order
{
public:
MoveOrder(const SimCore::Identifier OwnID, WHISPER::SourceType srcType);
MoveOrder(const SimCore::Identifier OwnID);
MoveOrder(const SimCore::Identifier OwnID,WHISPER::SourceType srcType,SimCore::Position pos,double speed = 0,double course = 0, int startTime = 0);
MoveOrder(const SimCore::Identifier OwnID,SimCore::Position pos,double speed = 0,double course = 0, int startTime = 0);
~MoveOrder();

View File

@@ -16,13 +16,12 @@ namespace Orders
class Order
{
public:
Order(const SimCore::Identifier OwnID,const WHISPER::SourceType srcType, const Orders::OrderType OrderType_);
Order(const SimCore::Identifier OwnID, const Orders::OrderType OrderType_);
const SimCore::Identifier getOrderID();
const SimCore::Identifier getOwnID();
const WHISPER::SourceType srcType;
const Orders::OrderType getOrderType();