Add remote thing to owner
This commit is contained in:
parent
1dd0c3a4a9
commit
6cfa481548
13
Thing.cpp
13
Thing.cpp
@ -8,10 +8,10 @@
|
||||
|
||||
namespace RoboidControl {
|
||||
|
||||
Thing::Thing(RemoteParticipant* participant, Type thingType) : Thing(participant, (unsigned char)thingType) {}
|
||||
Thing::Thing(RemoteParticipant* owner, Type thingType) : Thing(owner, (unsigned char)thingType) {}
|
||||
|
||||
Thing::Thing(RemoteParticipant* participant, unsigned char thingType) {
|
||||
this->participant = participant;
|
||||
Thing::Thing(RemoteParticipant* owner, unsigned char thingType) {
|
||||
this->participant = owner;
|
||||
this->id = 0;
|
||||
this->type = thingType;
|
||||
this->networkId = 0;
|
||||
@ -23,12 +23,12 @@ Thing::Thing(RemoteParticipant* participant, unsigned char thingType) {
|
||||
this->angularVelocity = Spherical16::zero;
|
||||
|
||||
// std::cout << "add thing to participant\n";
|
||||
participant->Add(this);
|
||||
owner->Add(this);
|
||||
}
|
||||
|
||||
Thing::Thing(RemoteParticipant* participant, unsigned char networkId, unsigned char thingId, Type thingType) {
|
||||
Thing::Thing(RemoteParticipant* owner, unsigned char networkId, unsigned char thingId, Type thingType) {
|
||||
// no participant reference yet..
|
||||
this->participant = participant;
|
||||
this->participant = owner;
|
||||
this->networkId = networkId;
|
||||
this->id = thingId;
|
||||
this->type = (unsigned char)thingType;
|
||||
@ -37,6 +37,7 @@ Thing::Thing(RemoteParticipant* participant, unsigned char networkId, unsigned c
|
||||
this->angularVelocity = Spherical16::zero;
|
||||
// std::cout << "Created thing " << (int)this->networkId << "/" << (int)this->id
|
||||
// << "\n";
|
||||
owner->Add(this);
|
||||
}
|
||||
|
||||
void Thing::Terminate() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user