Changed namespace
This commit is contained in:
parent
c19508179d
commit
db51be8034
@ -42,7 +42,7 @@ DOXYFILE_ENCODING = UTF-8
|
|||||||
# title of most generated pages and in a few other places.
|
# title of most generated pages and in a few other places.
|
||||||
# The default value is: My Project.
|
# The default value is: My Project.
|
||||||
|
|
||||||
PROJECT_NAME = "Control Core for C++"
|
PROJECT_NAME = "Roboid Control for C++"
|
||||||
|
|
||||||
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
|
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
@ -61,14 +61,14 @@ PROJECT_BRIEF =
|
|||||||
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
|
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
|
||||||
# the logo to the output directory.
|
# the logo to the output directory.
|
||||||
|
|
||||||
PROJECT_LOGO = //intranet/home/Afbeeldingen/PasserVR/Logos/Logo3NameRight100.png
|
PROJECT_LOGO = //intranet/home/Afbeeldingen/PasserVR/Logos/PasserLife/PasserLifeLogoLeft_300.png
|
||||||
|
|
||||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
|
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
|
||||||
# into which the generated documentation will be written. If a relative path is
|
# into which the generated documentation will be written. If a relative path is
|
||||||
# entered, it will be relative to the location where doxygen was started. If
|
# entered, it will be relative to the location where doxygen was started. If
|
||||||
# left blank the current directory will be used.
|
# left blank the current directory will be used.
|
||||||
|
|
||||||
OUTPUT_DIRECTORY = //intranet/web/passer_life/apis/ControlCore/Cpp/
|
OUTPUT_DIRECTORY = //intranet/web/roboidcontrol_doc/Cpp/
|
||||||
|
|
||||||
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096
|
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096
|
||||||
# sub-directories (in 2 levels) under the output directory of each output format
|
# sub-directories (in 2 levels) under the output directory of each output format
|
||||||
@ -777,7 +777,7 @@ MAX_INITIALIZER_LINES = 30
|
|||||||
# list will mention the files that were used to generate the documentation.
|
# list will mention the files that were used to generate the documentation.
|
||||||
# The default value is: YES.
|
# The default value is: YES.
|
||||||
|
|
||||||
SHOW_USED_FILES = YES
|
SHOW_USED_FILES = NO
|
||||||
|
|
||||||
# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
|
# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
|
||||||
# will remove the Files entry from the Quick Index and from the Folder Tree View
|
# will remove the Files entry from the Quick Index and from the Folder Tree View
|
||||||
@ -1044,7 +1044,7 @@ RECURSIVE = YES
|
|||||||
# Note that relative paths are relative to the directory from which doxygen is
|
# Note that relative paths are relative to the directory from which doxygen is
|
||||||
# run.
|
# run.
|
||||||
|
|
||||||
EXCLUDE =
|
EXCLUDE = ../LinearAlgebra
|
||||||
|
|
||||||
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
|
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
|
||||||
# directories that are symbolic links (a Unix file system feature) are excluded
|
# directories that are symbolic links (a Unix file system feature) are excluded
|
||||||
|
@ -57,7 +57,7 @@ Spherical16 LowLevelMessages::ReceiveSpherical16(const char *buffer,
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Passer::Control::LowLevelMessages::SendQuat32(char *buffer,
|
void Passer::RoboidControl::LowLevelMessages::SendQuat32(char *buffer,
|
||||||
unsigned char *ix,
|
unsigned char *ix,
|
||||||
SwingTwist16 rotation) {
|
SwingTwist16 rotation) {
|
||||||
Quaternion q = rotation.ToQuaternion();
|
Quaternion q = rotation.ToQuaternion();
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#include "LinearAlgebra/SwingTwist.h"
|
#include "LinearAlgebra/SwingTwist.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class LowLevelMessages {
|
class LowLevelMessages {
|
||||||
public:
|
public:
|
||||||
@ -20,6 +20,6 @@ public:
|
|||||||
static SwingTwist16 ReceiveQuat32(const char *buffer, unsigned char *ix);
|
static SwingTwist16 ReceiveQuat32(const char *buffer, unsigned char *ix);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
using namespace Passer::Control;
|
using namespace Passer::RoboidControl;
|
@ -6,7 +6,7 @@
|
|||||||
#include "float16.h"
|
#include "float16.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class Participant;
|
class Participant;
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ public:
|
|||||||
// bool SendTo(Participant *participant);
|
// bool SendTo(Participant *participant);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
|
|
||||||
using namespace Passer::Control;
|
using namespace Passer::RoboidControl;
|
@ -1,6 +1,6 @@
|
|||||||
#include "ClientMsg.h"
|
#include "ClientMsg.h"
|
||||||
|
|
||||||
namespace Passer::Control {
|
namespace Passer::RoboidControl {
|
||||||
|
|
||||||
ClientMsg::ClientMsg(char networkId) { this->networkId = networkId; }
|
ClientMsg::ClientMsg(char networkId) { this->networkId = networkId; }
|
||||||
|
|
||||||
@ -20,4 +20,4 @@ unsigned char ClientMsg::Serialize(char *buffer) {
|
|||||||
// }
|
// }
|
||||||
// Client Msg
|
// Client Msg
|
||||||
|
|
||||||
} // namespace Passer::Control
|
} // namespace Passer::RoboidControl
|
@ -3,7 +3,7 @@
|
|||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// @brief A client message announces the presence of a participant
|
/// @brief A client message announces the presence of a participant
|
||||||
/// When received by another participant, it can be followed by a NetworkIdMsg
|
/// When received by another participant, it can be followed by a NetworkIdMsg
|
||||||
@ -21,5 +21,5 @@ public:
|
|||||||
virtual unsigned char Serialize(char *buffer) override;
|
virtual unsigned char Serialize(char *buffer) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
@ -1,7 +1,7 @@
|
|||||||
#include "CustomMsg.h"
|
#include "CustomMsg.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
CustomMsg::CustomMsg(char *buffer) {
|
CustomMsg::CustomMsg(char *buffer) {
|
||||||
unsigned char ix = 1;
|
unsigned char ix = 1;
|
||||||
@ -22,7 +22,7 @@ CustomMsg::~CustomMsg() {}
|
|||||||
|
|
||||||
unsigned char CustomMsg::Serialize(char *buffer) {
|
unsigned char CustomMsg::Serialize(char *buffer) {
|
||||||
unsigned char ix = this->length;
|
unsigned char ix = this->length;
|
||||||
this->thing->SendBytes(buffer, &ix);
|
this->thing->GenerateBinary(buffer, &ix);
|
||||||
if (ix <= this->length) // in this case, no data is actually sent
|
if (ix <= this->length) // in this case, no data is actually sent
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@ -37,5 +37,5 @@ CustomMsg CustomMsg::Receive(char *buffer, unsigned char bufferSize) {
|
|||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class CustomMsg : public IMessage {
|
class CustomMsg : public IMessage {
|
||||||
public:
|
public:
|
||||||
@ -26,5 +26,5 @@ public:
|
|||||||
static CustomMsg Receive(char *buffer, unsigned char bufferSize);
|
static CustomMsg Receive(char *buffer, unsigned char bufferSize);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "DestroyMsg.h"
|
#include "DestroyMsg.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
DestroyMsg::DestroyMsg(unsigned char networkId, Thing *thing) {
|
DestroyMsg::DestroyMsg(unsigned char networkId, Thing *thing) {
|
||||||
this->networkId = networkId;
|
this->networkId = networkId;
|
||||||
@ -18,5 +18,5 @@ unsigned char DestroyMsg::Serialize(char *buffer) {
|
|||||||
return ix;
|
return ix;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class DestroyMsg : public IMessage {
|
class DestroyMsg : public IMessage {
|
||||||
public:
|
public:
|
||||||
@ -15,5 +15,5 @@ public:
|
|||||||
virtual unsigned char Serialize(char *buffer) override;
|
virtual unsigned char Serialize(char *buffer) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
@ -3,7 +3,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
// ModelUrlMsg::ModelUrlMsg(unsigned char networkId, unsigned char thingId,
|
// ModelUrlMsg::ModelUrlMsg(unsigned char networkId, unsigned char thingId,
|
||||||
// unsigned char urlLength, const char *url,
|
// unsigned char urlLength, const char *url,
|
||||||
@ -51,5 +51,5 @@ unsigned char ModelUrlMsg::Serialize(char *buffer) {
|
|||||||
return ix;
|
return ix;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidControl
|
||||||
} // namespace Passer
|
} // namespace Passer
|
@ -1,7 +1,7 @@
|
|||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class ModelUrlMsg : public IMessage {
|
class ModelUrlMsg : public IMessage {
|
||||||
public:
|
public:
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
NameMsg::NameMsg(const char *buffer) {
|
NameMsg::NameMsg(const char *buffer) {
|
||||||
unsigned char ix = 1; // first byte is msg id
|
unsigned char ix = 1; // first byte is msg id
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class NameMsg : public IMessage {
|
class NameMsg : public IMessage {
|
||||||
public:
|
public:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "NetworkIdMsg.h"
|
#include "NetworkIdMsg.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
NetworkIdMsg::NetworkIdMsg(const char *buffer) { this->networkId = buffer[1]; }
|
NetworkIdMsg::NetworkIdMsg(const char *buffer) { this->networkId = buffer[1]; }
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class NetworkIdMsg : public IMessage {
|
class NetworkIdMsg : public IMessage {
|
||||||
public:
|
public:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "ThingMsg.h"
|
#include "ThingMsg.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
ThingMsg::ThingMsg(const char *buffer) {
|
ThingMsg::ThingMsg(const char *buffer) {
|
||||||
unsigned char ix = 1; // first byte is msg id
|
unsigned char ix = 1; // first byte is msg id
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class ThingMsg : public IMessage {
|
class ThingMsg : public IMessage {
|
||||||
public:
|
public:
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
Participant::Participant() {}
|
Participant::Participant() {}
|
||||||
|
|
||||||
@ -136,7 +136,7 @@ void Participant::SendThingInfo(Thing *thing) {
|
|||||||
delete modelMsg;
|
delete modelMsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Passer::Control::Participant::PublishThingInfo(Thing *thing) {
|
void Passer::RoboidControl::Participant::PublishThingInfo(Thing *thing) {
|
||||||
// std::cout << "Publish thing info" << thing->networkId << "\n";
|
// std::cout << "Publish thing info" << thing->networkId << "\n";
|
||||||
// Strange, when publishing, the network id is irrelevant, because it is
|
// Strange, when publishing, the network id is irrelevant, because it is
|
||||||
// connected to a specific site...
|
// connected to a specific site...
|
||||||
@ -271,7 +271,7 @@ void Participant::Process(PoseMsg *msg) {}
|
|||||||
void Participant::Process(CustomMsg *msg) {
|
void Participant::Process(CustomMsg *msg) {
|
||||||
Thing *thing = this->Get(msg->networkId, msg->thingId);
|
Thing *thing = this->Get(msg->networkId, msg->thingId);
|
||||||
if (thing != nullptr)
|
if (thing != nullptr)
|
||||||
thing->ProcessBytes(msg->bytes);
|
thing->ProcessBinary(msg->bytes);
|
||||||
else
|
else
|
||||||
std::cout << "custom msg for unknown thing " << (int)msg->networkId << ":"
|
std::cout << "custom msg for unknown thing " << (int)msg->networkId << ":"
|
||||||
<< (int)msg->thingId << "\n";
|
<< (int)msg->thingId << "\n";
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// @brief A participant is device which can communicate with other participants
|
/// @brief A participant is device which can communicate with other participants
|
||||||
class Participant {
|
class Participant {
|
||||||
@ -104,4 +104,4 @@ protected:
|
|||||||
|
|
||||||
} // namespace Control
|
} // namespace Control
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
using namespace Passer::Control;
|
using namespace Passer::RoboidControl;
|
15
README.md
15
README.md
@ -1,3 +1,14 @@
|
|||||||
\mainpage Control Core for C++
|
\mainpage Roboid Control for C++
|
||||||
|
|
||||||
Control Core contains generic functionality for Controlling Things.
|
Roboid Control support for C++ applications.
|
||||||
|
Supporting:
|
||||||
|
- Windows
|
||||||
|
- MacOS
|
||||||
|
- Linux
|
||||||
|
- Arduino (using PlatformIO)
|
||||||
|
|
||||||
|
# Basic components
|
||||||
|
|
||||||
|
- Passer::RoboidControl::Thing
|
||||||
|
- Passer::RoboidControl::Participant
|
||||||
|
- Passer::RoboidControl::SiteServer
|
@ -3,7 +3,7 @@
|
|||||||
#include "LowLevelMessages.h"
|
#include "LowLevelMessages.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
// TemperatureSensor::TemperatureSensor() : Thing(Type::TemperatureSensor) {}
|
// TemperatureSensor::TemperatureSensor() : Thing(Type::TemperatureSensor) {}
|
||||||
|
|
||||||
@ -15,12 +15,12 @@ TemperatureSensor::TemperatureSensor(unsigned char networkId,
|
|||||||
|
|
||||||
void TemperatureSensor::SetTemperature(float temp) { this->temp = temp; }
|
void TemperatureSensor::SetTemperature(float temp) { this->temp = temp; }
|
||||||
|
|
||||||
void TemperatureSensor::SendBytes(char *buffer, unsigned char *ix) {
|
void TemperatureSensor::GenerateBinary(char *buffer, unsigned char *ix) {
|
||||||
std::cout << "Send temperature: " << this->temp << "\n";
|
std::cout << "Send temperature: " << this->temp << "\n";
|
||||||
LowLevelMessages::SendFloat16(buffer, ix, this->temp);
|
LowLevelMessages::SendFloat16(buffer, ix, this->temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TemperatureSensor::ProcessBytes(char *bytes) {
|
void TemperatureSensor::ProcessBinary(char *bytes) {
|
||||||
unsigned char ix = 0;
|
unsigned char ix = 0;
|
||||||
this->temp = LowLevelMessages::ReceiveFloat16(bytes, &ix);
|
this->temp = LowLevelMessages::ReceiveFloat16(bytes, &ix);
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "Thing.h"
|
#include "Thing.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class TemperatureSensor : public Thing {
|
class TemperatureSensor : public Thing {
|
||||||
public:
|
public:
|
||||||
@ -12,8 +12,8 @@ public:
|
|||||||
|
|
||||||
virtual void SetTemperature(float temp);
|
virtual void SetTemperature(float temp);
|
||||||
|
|
||||||
void SendBytes(char *buffer, unsigned char *ix) override;
|
void GenerateBinary(char *buffer, unsigned char *ix) override;
|
||||||
virtual void ProcessBytes(char *bytes) override;
|
virtual void ProcessBinary(char *bytes) override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
float temp = 0;
|
float temp = 0;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
SiteServer::SiteServer(int port) {
|
SiteServer::SiteServer(int port) {
|
||||||
this->name = "Site Server";
|
this->name = "Site Server";
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// @brief A participant is device which can communicate with other participants
|
/// @brief A participant is device which can communicate with other participants
|
||||||
class SiteServer : public Participant {
|
class SiteServer : public Participant {
|
||||||
@ -37,4 +37,4 @@ protected:
|
|||||||
|
|
||||||
} // namespace Control
|
} // namespace Control
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
using namespace Passer::Control;
|
using namespace Passer::RoboidControl;
|
17
Thing.cpp
17
Thing.cpp
@ -29,8 +29,9 @@ Thing::Thing(unsigned char thingType) {
|
|||||||
this->angularVelocity = Spherical16::zero;
|
this->angularVelocity = Spherical16::zero;
|
||||||
}
|
}
|
||||||
|
|
||||||
Passer::Control::Thing::Thing(Participant *participant, unsigned char networkId,
|
Passer::RoboidControl::Thing::Thing(Participant *participant,
|
||||||
unsigned char thingId, Type thingType) {
|
unsigned char networkId,
|
||||||
|
unsigned char thingId, Type thingType) {
|
||||||
// no participant reference yet..
|
// no participant reference yet..
|
||||||
this->networkId = networkId;
|
this->networkId = networkId;
|
||||||
this->id = thingId;
|
this->id = thingId;
|
||||||
@ -140,7 +141,7 @@ Thing *Thing::RemoveChild(Thing *child) {
|
|||||||
return child;
|
return child;
|
||||||
}
|
}
|
||||||
|
|
||||||
Thing *Passer::Control::Thing::GetChild(unsigned char id, bool recursive) {
|
Thing *Thing::GetChild(unsigned char id, bool recursive) {
|
||||||
for (unsigned char childIx = 0; childIx < this->childCount; childIx++) {
|
for (unsigned char childIx = 0; childIx < this->childCount; childIx++) {
|
||||||
Thing *child = this->children[childIx];
|
Thing *child = this->children[childIx];
|
||||||
if (child == nullptr)
|
if (child == nullptr)
|
||||||
@ -157,12 +158,16 @@ Thing *Passer::Control::Thing::GetChild(unsigned char id, bool recursive) {
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
Thing *Passer::Control::Thing::GetChildByIndex(unsigned char ix) {
|
Thing *Thing::GetChildByIndex(unsigned char ix) { return this->children[ix]; }
|
||||||
return this->children[ix];
|
|
||||||
}
|
|
||||||
|
|
||||||
void Thing::SetModel(const char *url) { this->modelUrl = url; }
|
void Thing::SetModel(const char *url) { this->modelUrl = url; }
|
||||||
|
|
||||||
|
void Thing::GenerateBinary(char *buffer, unsigned char *ix) {
|
||||||
|
(void)buffer;
|
||||||
|
(void)ix;
|
||||||
|
}
|
||||||
|
void Thing::ProcessBinary(char *bytes) { (void)bytes; };
|
||||||
|
|
||||||
void Thing::SetPosition(Spherical16 position) {
|
void Thing::SetPosition(Spherical16 position) {
|
||||||
this->position = position;
|
this->position = position;
|
||||||
this->positionUpdated = true;
|
this->positionUpdated = true;
|
||||||
|
88
Thing.h
88
Thing.h
@ -5,7 +5,7 @@
|
|||||||
#include <list>
|
#include <list>
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class Participant;
|
class Participant;
|
||||||
|
|
||||||
@ -13,15 +13,17 @@ class Participant;
|
|||||||
// IMPORTANT: values higher than 256 will need to change the Thing::id type
|
// IMPORTANT: values higher than 256 will need to change the Thing::id type
|
||||||
// to 16-bit or higher, breaking the networking protocol!
|
// to 16-bit or higher, breaking the networking protocol!
|
||||||
|
|
||||||
/// @brief A thing is the basic building block
|
/// @brief A thing is the primitive building block
|
||||||
class Thing {
|
class Thing {
|
||||||
public:
|
public:
|
||||||
// Participant *client;
|
// RemoteParticipant *client;
|
||||||
|
|
||||||
|
/// @brief The network ID of this thing
|
||||||
unsigned char networkId = 0;
|
unsigned char networkId = 0;
|
||||||
/// @char The id of the thing
|
/// @brief The ID of the thing
|
||||||
unsigned char id = 0;
|
unsigned char id = 0;
|
||||||
|
|
||||||
/// @brief Basic Thing types
|
/// @brief Predefined thing types
|
||||||
enum class Type {
|
enum class Type {
|
||||||
Undetermined,
|
Undetermined,
|
||||||
// Sensor,
|
// Sensor,
|
||||||
@ -38,14 +40,27 @@ public:
|
|||||||
Humanoid,
|
Humanoid,
|
||||||
ExternalSensor,
|
ExternalSensor,
|
||||||
};
|
};
|
||||||
|
/// @brief The type of Thing
|
||||||
|
unsigned char type = 0;
|
||||||
|
|
||||||
|
/// @brief Create a new thing of the given type
|
||||||
|
/// @param thingType The predefined type of thing
|
||||||
Thing(Type thingType = Type::Undetermined);
|
Thing(Type thingType = Type::Undetermined);
|
||||||
|
/// @brief Create a new thing of the give type
|
||||||
|
/// @param thingType The custom type of the thing
|
||||||
Thing(unsigned char thingType);
|
Thing(unsigned char thingType);
|
||||||
|
/// @brief Create a new thing for the given participant
|
||||||
|
/// @param participant The participant for which this thing is created
|
||||||
|
/// @param networkId The network ID of the thing
|
||||||
|
/// @param thingId The ID of the thing
|
||||||
|
/// @param thingType The type of thing
|
||||||
Thing(Participant *participant, unsigned char networkId,
|
Thing(Participant *participant, unsigned char networkId,
|
||||||
unsigned char thingId, Type thingType = Type::Undetermined);
|
unsigned char thingId, Type thingType = Type::Undetermined);
|
||||||
|
|
||||||
|
/// @brief Find a thing by name
|
||||||
|
/// @param name Rhe name of the thing
|
||||||
|
/// @return The found thing or nullptr when nothing is found
|
||||||
Thing *FindThing(const char *name);
|
Thing *FindThing(const char *name);
|
||||||
// Thing *FindChild(unsigned char id);
|
|
||||||
|
|
||||||
/// @brief Sets the parent Thing
|
/// @brief Sets the parent Thing
|
||||||
/// @param parent The Thing which should become the parnet
|
/// @param parent The Thing which should become the parnet
|
||||||
@ -60,10 +75,21 @@ public:
|
|||||||
/// @param child The Thing which should become a child
|
/// @param child The Thing which should become a child
|
||||||
/// @remark When the Thing is already a child, it will not be added again
|
/// @remark When the Thing is already a child, it will not be added again
|
||||||
virtual void AddChild(Thing *child);
|
virtual void AddChild(Thing *child);
|
||||||
|
/// @brief Remove the given thing as a child of this thing
|
||||||
|
/// @param child The child to remove
|
||||||
|
/// @return The removed child or nullptr if the child could not be found
|
||||||
Thing *RemoveChild(Thing *child);
|
Thing *RemoveChild(Thing *child);
|
||||||
|
|
||||||
|
/// @brief The number of children
|
||||||
unsigned char childCount = 0;
|
unsigned char childCount = 0;
|
||||||
|
/// @brief Get a child by thing Id
|
||||||
|
/// @param id The thing ID to find
|
||||||
|
/// @param recursive Look recursively through all descendants
|
||||||
|
/// @return The found thing of nullptr when nothing is found
|
||||||
Thing *GetChild(unsigned char id, bool recursive = false);
|
Thing *GetChild(unsigned char id, bool recursive = false);
|
||||||
|
/// @brief Get a child by index
|
||||||
|
/// @param ix The child index
|
||||||
|
/// @return The found thing of nullptr when nothing is found
|
||||||
Thing *GetChildByIndex(unsigned char ix);
|
Thing *GetChildByIndex(unsigned char ix);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@ -71,20 +97,31 @@ protected:
|
|||||||
Thing **children = nullptr;
|
Thing **children = nullptr;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// @brief The type of Thing
|
/// @brief The name of the thing
|
||||||
unsigned char type = 0;
|
|
||||||
const char *name = nullptr;
|
const char *name = nullptr;
|
||||||
|
/// @brief An URL pointing to the location where a model of the thing can be found
|
||||||
const char *modelUrl = nullptr;
|
const char *modelUrl = nullptr;
|
||||||
|
/// @brief The scale of the model (deprecated I think)
|
||||||
float modelScale = 1;
|
float modelScale = 1;
|
||||||
// protected Sensor sensor;
|
|
||||||
|
|
||||||
|
/// @brief Set the position of the thing
|
||||||
|
/// @param position The new position in local space, in meters
|
||||||
void SetPosition(Spherical16 position);
|
void SetPosition(Spherical16 position);
|
||||||
|
/// @brief Get the position of the thing
|
||||||
|
/// @return The position in local space, in meters
|
||||||
Spherical16 GetPosition();
|
Spherical16 GetPosition();
|
||||||
|
/// @brief Set the orientation of the thing
|
||||||
|
/// @param orientation The new orientation in local space
|
||||||
void SetOrientation(SwingTwist16 orientation);
|
void SetOrientation(SwingTwist16 orientation);
|
||||||
|
/// @brief Get the orientation of the thing
|
||||||
|
/// @return The orienation in local space
|
||||||
SwingTwist16 GetOrientation();
|
SwingTwist16 GetOrientation();
|
||||||
|
/// @brief The scale of the thing (deprecated I think)
|
||||||
float scale = 1; // assuming uniform scale
|
float scale = 1; // assuming uniform scale
|
||||||
|
|
||||||
|
/// @brief boolean indicating if the position was updated
|
||||||
bool positionUpdated = false;
|
bool positionUpdated = false;
|
||||||
|
/// @brief boolean indicating if the orientation was updated
|
||||||
bool orientationUpdated = false;
|
bool orientationUpdated = false;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@ -100,11 +137,16 @@ protected:
|
|||||||
public:
|
public:
|
||||||
Spherical16 linearVelocity;
|
Spherical16 linearVelocity;
|
||||||
Spherical16 angularVelocity;
|
Spherical16 angularVelocity;
|
||||||
|
|
||||||
|
/// @brief Get the linear velocity of the thing
|
||||||
|
/// @return The linear velocity in local space, in meters per second
|
||||||
virtual Spherical16 GetLinearVelocity();
|
virtual Spherical16 GetLinearVelocity();
|
||||||
|
/// @brief Get the angular velocity of the thing
|
||||||
|
/// @return The angular velocity in local space
|
||||||
virtual Spherical16 GetAngularVelocity();
|
virtual Spherical16 GetAngularVelocity();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// @brief Terminated thins are no longer updated
|
/// @brief Terminated things are no longer updated
|
||||||
void Terminate();
|
void Terminate();
|
||||||
|
|
||||||
/// @brief Sets the location from where the 3D model of this Thing can be
|
/// @brief Sets the location from where the 3D model of this Thing can be
|
||||||
@ -118,27 +160,19 @@ public:
|
|||||||
/// @param currentTimeMs The current clock time in milliseconds
|
/// @param currentTimeMs The current clock time in milliseconds
|
||||||
virtual void Update(unsigned long currentTimeMs) { (void)currentTimeMs; };
|
virtual void Update(unsigned long currentTimeMs) { (void)currentTimeMs; };
|
||||||
|
|
||||||
virtual void SendBytes(char *buffer, unsigned char *ix) {
|
/// @brief Function used to generate binary data for this thing
|
||||||
(void)buffer;
|
/// @param buffer The byte array for thw binary data
|
||||||
(void)ix;
|
/// @param ix The starting position for writing the binary data
|
||||||
};
|
virtual void GenerateBinary(char *buffer, unsigned char *ix);
|
||||||
virtual void ProcessBytes(char *bytes) { (void)bytes; };
|
// /// @brief FUnction used to process binary data received for this thing
|
||||||
|
/// @param bytes The binary data
|
||||||
|
virtual void ProcessBinary(char *bytes);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void Init();
|
virtual void Init();
|
||||||
|
|
||||||
//------------ All things
|
|
||||||
// public:
|
|
||||||
// static Thing *Get(unsigned char networkId, unsigned char thingId);
|
|
||||||
// static int Add(Thing *thing);
|
|
||||||
// static void Remove(Thing *thing);
|
|
||||||
// static void UpdateAll(unsigned long currentTimeMs);
|
|
||||||
|
|
||||||
// static std::list<Thing *> allThings;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// static std::list<Thing *> allThings;
|
|
||||||
|
|
||||||
} // namespace Control
|
} // namespace RoboidConttrol
|
||||||
} // namespace Passer
|
} // namespace Passer
|
||||||
using namespace Passer::Control;
|
using namespace Passer::RoboidControl;
|
@ -4,7 +4,7 @@
|
|||||||
#include <ESP8266WiFi.h>
|
#include <ESP8266WiFi.h>
|
||||||
#endif
|
#endif
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
void UdpArduino::Setup(int localPort, const char *remoteIpAddress,
|
void UdpArduino::Setup(int localPort, const char *remoteIpAddress,
|
||||||
int remotePort) {
|
int remotePort) {
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "Participant.h"
|
#include "Participant.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class UdpArduino : public Participant {
|
class UdpArduino : public Participant {
|
||||||
public:
|
public:
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
void UdpPosix::Setup(int localPort, const char *remoteIpAddress,
|
void UdpPosix::Setup(int localPort, const char *remoteIpAddress,
|
||||||
int remotePort) {
|
int remotePort) {
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "Participant.h"
|
#include "Participant.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class UdpPosix : public Participant {
|
class UdpPosix : public Participant {
|
||||||
public:
|
public:
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
void UdpWindows::Setup(int localPort, const char *remoteIpAddress,
|
void UdpWindows::Setup(int localPort, const char *remoteIpAddress,
|
||||||
int remotePort) {
|
int remotePort) {
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "Participant.h"
|
#include "Participant.h"
|
||||||
|
|
||||||
namespace Passer {
|
namespace Passer {
|
||||||
namespace Control {
|
namespace RoboidControl {
|
||||||
|
|
||||||
class UdpWindows : public Participant {
|
class UdpWindows : public Participant {
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user