1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/*
Minetest-c55
Copyright (C) 2010-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
Copyright (C) 2012 sapier sapier at gmx dot net
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "clientlinkableobject.h"
ClientLinkableObject::ClientLinkableObject() {
this->m_Parent = NULL;
}
ClientLinkableObject::~ClientLinkableObject() {
if (this->isLinked())
this->unlink(this);
}
void ClientLinkableObject::link(ClientLinkableObject* entity) {
//TODO check if entity is already linkt (shouldn't be the case but just to be sure)
this->m_LinkedObjects.push_back(entity);
}
void ClientLinkableObject::unlink(ClientLinkableObject* entity) {
this->m_LinkedObjects.remove(entity);
}
void ClientLinkableObject::stepLinkedObjects(v3f pos,float dtime) {
for(std::list<ClientLinkableObject*>::iterator i = this->m_LinkedObjects.begin();
i != this->m_LinkedObjects.end(); i++) {
(*i)->setPosition(pos,dtime);
}
}
bool ClientLinkableObject::handleLinkUnlinkMessages(u8 cmd,std::istringstream* is,ClientEnvironment *m_env) {
if(cmd == AO_Message_type::Link) // Link entity
{
//Object to link entity to
u16 object_id = readU16(*is);
//offset against linked object
v3f offset = readV3F1000(*is);
ClientActiveObject* parent_cao = m_env->getActiveObject(object_id);
ClientLinkableObject* parent = dynamic_cast<ClientLinkableObject*>(parent_cao);
if (parent != NULL) {
this->linkEntity(offset,parent);
}
else {
errorstream << "Invalid object to link to!" << std::endl;
}
return true;
}
else if(cmd == AO_Message_type::UnLink) // UnLink entity
{
if (this->m_Parent == NULL) {
errorstream << "Unlinking object not linked!" << std::endl;
}
this->unlinkEntity();
return true;
}
return false;
}
bool ClientLinkableObject::linkEntity(v3f offset, ClientLinkableObject* parent) {
//already linked unlink first
if (this->m_Parent != NULL) {
return false;
}
//TODO add linkchain support
if (this->m_LinkedObjects.size() > 0) {
return false;
}
parent->link(this);
updateLinkState(true);
this->m_linkOffset = offset;
this->m_Parent = parent;
return true;
}
bool ClientLinkableObject::unlinkEntity() {
if (this->m_Parent != NULL) {
updateLinkState(false);
this->m_Parent->unlink(this);
this->m_Parent = NULL;
return true;
}
return false;
}
bool ClientLinkableObject::isLinked() {
if (this->m_Parent != NULL)
return true;
else
return false;
}
|