Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/modules/portals/PortalLink.cc @ 8645

Last change on this file since 8645 was 8645, checked in by landauf, 13 years ago

set svn:eol-style to native, removed svn:executable property. no code changes.

  • Property svn:eol-style set to native
File size: 2.4 KB
Line 
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#include "core/XMLPort.h"
31#include "objects/triggers/MultiTriggerContainer.h"
32#include "worldentities/MobileEntity.h"
33
34namespace orxonox
35{
36    CreateFactory(PortalLink);
37
38    std::map<PortalEndPoint *, PortalEndPoint *> PortalLink::links_s;
39   
40    PortalLink::PortalLink(BaseObject* creator) : BaseObject(creator), fromID_(0), toID_(0), from_(0), to_(0)
41    {
42        RegisterObject(PortalLink);
43    }
44   
45    PortalLink::~PortalLink()
46    {
47       
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        {
58            PortalEndPoint * from = PortalEndPoint::idMap_s[this->fromID_];
59            PortalEndPoint * to   = PortalEndPoint::idMap_s[this->toID_];
60            PortalLink::links_s[from] = to;
61        }
62    }
63
64    void PortalLink::use(MobileEntity* entity, PortalEndPoint * entrance)
65    {
66        if(entrance == 0)
67        {
68            return;
69        }
70       
71        std::map<PortalEndPoint *, PortalEndPoint *>::iterator endpoints = PortalLink::links_s.find(entrance);
72       
73        if(endpoints == PortalLink::links_s.end())  // entrance has no corresponding exit
74            return;
75
76        endpoints->second->jumpOut(entity);
77    }
78}
Note: See TracBrowser for help on using the repository browser.