[8706] | 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 | |
---|
[8177] | 29 | #include "PortalLink.h" |
---|
| 30 | #include "core/XMLPort.h" |
---|
[8198] | 31 | #include "objects/triggers/MultiTriggerContainer.h" |
---|
[8243] | 32 | #include "worldentities/MobileEntity.h" |
---|
[8177] | 33 | |
---|
| 34 | namespace orxonox |
---|
| 35 | { |
---|
| 36 | CreateFactory(PortalLink); |
---|
[8243] | 37 | |
---|
| 38 | std::map<PortalEndPoint *, PortalEndPoint *> PortalLink::links_s; |
---|
[8177] | 39 | |
---|
[8243] | 40 | PortalLink::PortalLink(BaseObject* creator) : BaseObject(creator), fromID_(0), toID_(0), from_(0), to_(0) |
---|
[8177] | 41 | { |
---|
| 42 | RegisterObject(PortalLink); |
---|
| 43 | } |
---|
| 44 | |
---|
| 45 | PortalLink::~PortalLink() |
---|
| 46 | { |
---|
[8706] | 47 | |
---|
[8177] | 48 | } |
---|
| 49 | |
---|
| 50 | void PortalLink::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
| 51 | { |
---|
| 52 | SUPER(PortalLink, XMLPort, xmlelement, mode); |
---|
| 53 | XMLPortParam(PortalLink, "fromID", setFromID, getFromID, xmlelement, mode); |
---|
| 54 | XMLPortParam(PortalLink, "toID", setToID, getToID, xmlelement, mode); |
---|
| 55 | |
---|
| 56 | if(mode == XMLPort::LoadObject) |
---|
| 57 | { |
---|
[8243] | 58 | PortalEndPoint * from = PortalEndPoint::idMap_s[this->fromID_]; |
---|
| 59 | PortalEndPoint * to = PortalEndPoint::idMap_s[this->toID_]; |
---|
| 60 | PortalLink::links_s[from] = to; |
---|
[8177] | 61 | } |
---|
| 62 | } |
---|
[8243] | 63 | |
---|
| 64 | void PortalLink::use(MobileEntity* entity, PortalEndPoint * entrance) |
---|
[8177] | 65 | { |
---|
[8243] | 66 | if(entrance == 0) |
---|
[8198] | 67 | { |
---|
| 68 | return; |
---|
| 69 | } |
---|
[8243] | 70 | |
---|
[8706] | 71 | std::map<PortalEndPoint *, PortalEndPoint *>::iterator endpoints = PortalLink::links_s.find(entrance); |
---|
[8243] | 72 | |
---|
[8706] | 73 | if(endpoints == PortalLink::links_s.end()) // entrance has no corresponding exit |
---|
[8198] | 74 | return; |
---|
[8706] | 75 | |
---|
| 76 | endpoints->second->jumpOut(entity); |
---|
[8177] | 77 | } |
---|
[8200] | 78 | } |
---|