1 | /* |
---|
2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
3 | * > www.orxonox.net < |
---|
4 | * |
---|
5 | * |
---|
6 | * License notice: |
---|
7 | * |
---|
8 | * This program is free software; you can redistribute it and/or |
---|
9 | * modify it under the terms of the GNU General Public License |
---|
10 | * as published by the Free Software Foundation; either version 2 |
---|
11 | * of the License, or (at your option) any later version. |
---|
12 | * |
---|
13 | * This program is distributed in the hope that it will be useful, |
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
16 | * GNU General Public License for more details. |
---|
17 | * |
---|
18 | * You should have received a copy of the GNU General Public License |
---|
19 | * along with this program; if not, write to the Free Software |
---|
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
21 | * |
---|
22 | * Author: |
---|
23 | * Andreas Büchel |
---|
24 | * Co-authors: |
---|
25 | * ... |
---|
26 | * |
---|
27 | */ |
---|
28 | |
---|
29 | #include "PortalLink.h" |
---|
30 | |
---|
31 | #include "core/CoreIncludes.h" |
---|
32 | #include "core/XMLPort.h" |
---|
33 | |
---|
34 | #include "worldentities/MobileEntity.h" |
---|
35 | |
---|
36 | namespace orxonox |
---|
37 | { |
---|
38 | CreateFactory(PortalLink); |
---|
39 | |
---|
40 | std::map<PortalEndPoint *, PortalEndPoint *> PortalLink::links_s; |
---|
41 | |
---|
42 | PortalLink::PortalLink(BaseObject* creator) : BaseObject(creator), fromID_(0), toID_(0), from_(0), to_(0) |
---|
43 | { |
---|
44 | RegisterObject(PortalLink); |
---|
45 | } |
---|
46 | |
---|
47 | PortalLink::~PortalLink() |
---|
48 | { |
---|
49 | |
---|
50 | } |
---|
51 | |
---|
52 | void PortalLink::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
53 | { |
---|
54 | SUPER(PortalLink, XMLPort, xmlelement, mode); |
---|
55 | XMLPortParam(PortalLink, "fromID", setFromID, getFromID, xmlelement, mode); |
---|
56 | XMLPortParam(PortalLink, "toID", setToID, getToID, xmlelement, mode); |
---|
57 | |
---|
58 | // Beware: This means, that the PortalEndPoints must exist before the PortalLink is created. |
---|
59 | if(mode == XMLPort::LoadObject) |
---|
60 | { |
---|
61 | PortalEndPoint * from = PortalEndPoint::idMap_s[this->fromID_]; |
---|
62 | PortalEndPoint * to = PortalEndPoint::idMap_s[this->toID_]; |
---|
63 | PortalLink::links_s[from] = to; |
---|
64 | } |
---|
65 | } |
---|
66 | |
---|
67 | void PortalLink::use(MobileEntity* entity, PortalEndPoint * entrance) |
---|
68 | { |
---|
69 | if(entrance == 0) |
---|
70 | return; |
---|
71 | |
---|
72 | std::map<PortalEndPoint *, PortalEndPoint *>::iterator endpoints = PortalLink::links_s.find(entrance); |
---|
73 | if(endpoints == PortalLink::links_s.end()) // entrance has no corresponding exit |
---|
74 | return; |
---|
75 | |
---|
76 | endpoints->second->jumpOut(entity); |
---|
77 | } |
---|
78 | } |
---|