Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/world_entities/src/util/object_manager.cc @ 5794

Last change on this file since 5794 was 5794, checked in by bensch, 18 years ago

we: sync

File size: 1.7 KB
RevLine 
[4744]1/*
[3655]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: ...
13   co-programmer: ...
14*/
15
16//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
17
[5629]18#include "object_manager.h"
[5782]19#include "class_list.h"
[3655]20
[5782]21#include "p_node.h"
22#include "world_entity.h"
23#include "list.h"
24
[3655]25using namespace std;
26
27
28/**
[4838]29 * standard constructor
30 */
[5629]31ObjectManager::ObjectManager ()
[3655]32{
[5629]33   this->setClassID(CL_OBJECT_MANAGER, "ObjectManager");
34   this->setName("ObjectManager");
[5782]35
36   pNodeList = NULL;
[3655]37}
38
39/**
[4838]40 *  the singleton reference to this class
41 */
[5629]42ObjectManager* ObjectManager::singletonRef = NULL;
[3655]43
44/**
[4838]45   @brief standard deconstructor
46 */
[5629]47ObjectManager::~ObjectManager ()
[3655]48{
[5629]49  ObjectManager::singletonRef = NULL;
[3655]50}
[5782]51
52/**
53 * returns a new List with a list of WorldEntities of distance Radius from center
54 */
[5794]55std::list<WorldEntity*>* ObjectManager::distanceFromObject(const PNode& center, float radius, ClassID classID)
[5782]56{
57  const tList<BaseObject>* objectList = ClassList::getList(classID);
58  if (objectList != NULL)
59  {
60    std::list<WorldEntity*>* newList = new  std::list<WorldEntity*>;
61
62    tIterator<BaseObject>* iter = objectList->getIterator();
[5794]63    WorldEntity* tmp = dynamic_cast<WorldEntity*>(iter->firstElement());
[5782]64    while (tmp != NULL)
65    {
66      if ((tmp->getAbsCoor() - center.getAbsCoor()).len() < radius)
67        newList->push_back(dynamic_cast<WorldEntity*>(tmp));
68
[5794]69      tmp = dynamic_cast<WorldEntity*>(iter->nextElement());
[5782]70    }
71    delete iter;
72    return newList;
73
74  }
75  return NULL;
76}
Note: See TracBrowser for help on using the repository browser.