Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/portals2/src/modules/portals/PortalLink.cc @ 8599

Last change on this file since 8599 was 8599, checked in by anbueche, 13 years ago

comments and license added

  • Property svn:executable set to *
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    void PortalLink::XMLPort(Element& xmlelement, XMLPort::Mode mode)
50    {
51        SUPER(PortalLink, XMLPort, xmlelement, mode);
52        XMLPortParam(PortalLink, "fromID", setFromID, getFromID, xmlelement, mode);
53        XMLPortParam(PortalLink, "toID", setToID, getToID, xmlelement, mode);
54
55        if(mode == XMLPort::LoadObject)
56        {
57            PortalEndPoint * from = PortalEndPoint::idMap_s[this->fromID_];
58            PortalEndPoint * to   = PortalEndPoint::idMap_s[this->toID_];
59            PortalLink::links_s[from] = to;
60        }
61    }
62
63    void PortalLink::use(MobileEntity* entity, PortalEndPoint * entrance)
64    {
65        if(entrance == 0)
66        {
67            return;
68        }
69       
70        std::map<PortalEndPoint *, PortalEndPoint *>::iterator endpoints = PortalLink::links_s.find(entrance);
71       
72        if(endpoints == PortalLink::links_s.end())  // entrance has no corresponding exit
73            return;
74
75        endpoints->second->jumpOut(entity);
76    }
77}
Note: See TracBrowser for help on using the repository browser.