00001 //////////////////////////////////////////////////////////////////////////////// 00002 // Scorched3D (c) 2000-2009 00003 // 00004 // This file is part of Scorched3D. 00005 // 00006 // Scorched3D is free software; you can redistribute it and/or modify 00007 // it under the terms of the GNU General Public License as published by 00008 // the Free Software Foundation; either version 2 of the License, or 00009 // (at your option) any later version. 00010 // 00011 // Scorched3D is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU General Public License 00017 // along with Scorched3D; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 //////////////////////////////////////////////////////////////////////////////// 00020 00021 #include <landscapemap/TargetGroups.h> 00022 #include <landscapemap/LandscapeMaps.h> 00023 #include <common/Defines.h> 00024 #include <stdio.h> 00025 00026 TargetGroups::TargetGroups() 00027 { 00028 } 00029 00030 TargetGroups::~TargetGroups() 00031 { 00032 } 00033 00034 void TargetGroups::clearGroups() 00035 { 00036 // Groups 00037 std::map<std::string, TargetGroupsGroupEntry*>::iterator itor; 00038 for (itor = groups_.begin(); 00039 itor != groups_.end(); 00040 itor++) 00041 { 00042 TargetGroupsGroupEntry *entry = (*itor).second; 00043 delete entry; 00044 } 00045 groups_.clear(); 00046 } 00047 00048 TargetGroupsGroupEntry *TargetGroups::getGroup( 00049 const char *name, HeightMap *create) 00050 { 00051 std::map<std::string, TargetGroupsGroupEntry*>::iterator findItor = 00052 groups_.find(name); 00053 if (findItor != groups_.end()) 00054 { 00055 return (*findItor).second; 00056 } 00057 if (create) 00058 { 00059 TargetGroupsGroupEntry *entry = new TargetGroupsGroupEntry(name, *create); 00060 groups_[name] = entry; 00061 return entry; 00062 } 00063 return 0; 00064 }
1.5.3