[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" |
---|
[8767] | 30 | |
---|
| 31 | #include "core/CoreIncludes.h" |
---|
[8177] | 32 | #include "core/XMLPort.h" |
---|
[8767] | 33 | |
---|
[8243] | 34 | #include "worldentities/MobileEntity.h" |
---|
[8177] | 35 | |
---|
| 36 | namespace orxonox |
---|
| 37 | { |
---|
[9667] | 38 | RegisterClass(PortalLink); |
---|
[8243] | 39 | |
---|
| 40 | std::map<PortalEndPoint *, PortalEndPoint *> PortalLink::links_s; |
---|
[8767] | 41 | |
---|
[9667] | 42 | PortalLink::PortalLink(Context* context) : BaseObject(context), fromID_(0), toID_(0), from_(0), to_(0) |
---|
[8177] | 43 | { |
---|
| 44 | RegisterObject(PortalLink); |
---|
| 45 | } |
---|
[8767] | 46 | |
---|
[8177] | 47 | PortalLink::~PortalLink() |
---|
| 48 | { |
---|
[8767] | 49 | |
---|
[8177] | 50 | } |
---|
[8767] | 51 | |
---|
[8177] | 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 | |
---|
[8767] | 58 | // Beware: This means, that the PortalEndPoints must exist before the PortalLink is created. |
---|
[8177] | 59 | if(mode == XMLPort::LoadObject) |
---|
| 60 | { |
---|
[8243] | 61 | PortalEndPoint * from = PortalEndPoint::idMap_s[this->fromID_]; |
---|
| 62 | PortalEndPoint * to = PortalEndPoint::idMap_s[this->toID_]; |
---|
| 63 | PortalLink::links_s[from] = to; |
---|
[8177] | 64 | } |
---|
| 65 | } |
---|
[8243] | 66 | |
---|
| 67 | void PortalLink::use(MobileEntity* entity, PortalEndPoint * entrance) |
---|
[8177] | 68 | { |
---|
[8243] | 69 | if(entrance == 0) |
---|
[8198] | 70 | return; |
---|
[8767] | 71 | |
---|
[8706] | 72 | std::map<PortalEndPoint *, PortalEndPoint *>::iterator endpoints = PortalLink::links_s.find(entrance); |
---|
| 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 | } |
---|