- Timestamp:
- May 26, 2011, 4:35:46 PM (13 years ago)
- Location:
- code/branches/presentation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation
- Property svn:mergeinfo changed
/code/branches/portals2 (added) merged: 8460,8466,8483,8511,8599-8600
- Property svn:mergeinfo changed
-
code/branches/presentation/src/modules/portals/PortalLink.cc
r8457 r8605 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 1 29 #include "PortalLink.h" 2 30 #include "core/XMLPort.h" … … 17 45 PortalLink::~PortalLink() 18 46 { 47 19 48 } 20 49 … … 37 66 if(entrance == 0) 38 67 { 39 // TODO COUT40 68 return; 41 69 } 42 70 43 std::map<PortalEndPoint *, PortalEndPoint *>::iterator endpoint = PortalLink::links_s.find(entrance);71 std::map<PortalEndPoint *, PortalEndPoint *>::iterator endpoints = PortalLink::links_s.find(entrance); 44 72 45 if(endpoint == PortalLink::links_s.end()) // entrance has no corresponding exit73 if(endpoints == PortalLink::links_s.end()) // entrance has no corresponding exit 46 74 return; 47 48 endpoint ->second->jumpOut(entity);75 76 endpoints->second->jumpOut(entity); 49 77 } 50 51 52 78 }
Note: See TracChangeset
for help on using the changeset viewer.