[4592] | 1 | /* |
---|
[4245] | 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: Patrick Boenzli |
---|
| 13 | */ |
---|
| 14 | |
---|
| 15 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_OBJECT_MANAGER |
---|
| 16 | |
---|
| 17 | #include "object_manager.h" |
---|
[4288] | 18 | #include "garbage_collector.h" |
---|
[4286] | 19 | #include "list.h" |
---|
[4245] | 20 | |
---|
[4288] | 21 | |
---|
[4245] | 22 | using namespace std; |
---|
| 23 | |
---|
| 24 | |
---|
| 25 | /** |
---|
| 26 | \brief standard constructor |
---|
| 27 | */ |
---|
[4592] | 28 | ObjectManager::ObjectManager () |
---|
[4245] | 29 | { |
---|
[4320] | 30 | this->setClassID(CL_OBJECT_MANAGER, "ObjectManager"); |
---|
[4597] | 31 | this->setName("ObjectManager"); |
---|
[4592] | 32 | |
---|
[4286] | 33 | this->managedObjectList = new tList<BaseObject>*[CL_NUMBER]; |
---|
[4318] | 34 | for(int i = 0; i < CL_NUMBER; ++i) |
---|
| 35 | { |
---|
| 36 | this->managedObjectList[i] = NULL; |
---|
| 37 | } |
---|
[4288] | 38 | |
---|
| 39 | this->garbageCollector = GarbageCollector::getInstance(); |
---|
[4245] | 40 | } |
---|
| 41 | |
---|
[4322] | 42 | |
---|
[4245] | 43 | /** |
---|
| 44 | \brief the singleton reference to this class |
---|
| 45 | */ |
---|
| 46 | ObjectManager* ObjectManager::singletonRef = NULL; |
---|
| 47 | |
---|
| 48 | /** |
---|
| 49 | \brief standard deconstructor |
---|
| 50 | */ |
---|
[4592] | 51 | ObjectManager::~ObjectManager () |
---|
[4245] | 52 | { |
---|
| 53 | ObjectManager::singletonRef = NULL; |
---|
[4285] | 54 | } |
---|
[4245] | 55 | |
---|
[4485] | 56 | /** |
---|
| 57 | \brief adds an element to the list of dead objects |
---|
| 58 | \param index: The type of object to add |
---|
| 59 | \param object: pointer to the object at hand |
---|
| 60 | */ |
---|
[4322] | 61 | void ObjectManager::addToDeadList(int index, BaseObject* object) |
---|
[4288] | 62 | { |
---|
| 63 | if( likely(this->managedObjectList[index] != NULL)) |
---|
| 64 | this->managedObjectList[index]->add(object); |
---|
| 65 | else |
---|
[4324] | 66 | PRINTF(0)(" Critical: unable to add object to the list nr. %i: no list initialized - ignoring\n", index); |
---|
[4288] | 67 | } |
---|
[4285] | 68 | |
---|
[4485] | 69 | /** |
---|
| 70 | \brief resurects an object |
---|
| 71 | \param index: the type of resource to load |
---|
| 72 | \param number: how many of them |
---|
[4285] | 73 | |
---|
[4485] | 74 | \todo if it is unable to get an object from the deadList, it should create it |
---|
| 75 | */ |
---|
[4322] | 76 | BaseObject* ObjectManager::getFromDeadList(int index, int number) |
---|
[4289] | 77 | { |
---|
| 78 | if( likely(this->managedObjectList[index] != NULL)) |
---|
| 79 | { |
---|
| 80 | BaseObject* obj = this->managedObjectList[index]->firstElement(); |
---|
| 81 | this->managedObjectList[index]->remove(obj); |
---|
[4324] | 82 | if( unlikely(obj == NULL)) |
---|
[4592] | 83 | { |
---|
| 84 | PRINTF(0)("Critical: there was no object anymore in the dead list! This could result in Segfaults\n"); |
---|
| 85 | } |
---|
[4289] | 86 | return obj; |
---|
| 87 | } |
---|
| 88 | else |
---|
[4324] | 89 | PRINTF(0)(" Critical: unable to get object from the list nr. %i: no elements initialized - ignoring\n", index); |
---|
| 90 | return NULL; |
---|
[4289] | 91 | } |
---|
[4287] | 92 | |
---|
[4485] | 93 | /** |
---|
| 94 | \brief outputs some simple debug information about the ObjectManage |
---|
| 95 | */ |
---|
| 96 | void ObjectManager::debug(void) const |
---|
[4287] | 97 | { |
---|
| 98 | PRINT(0)("\n==========================| ObjectManager::debug() |===\n"); |
---|
[4592] | 99 | PRINT(0)("= Number of registerable classes: %i\n", CL_NUMBER ); |
---|
[4287] | 100 | PRINT(0)("= Currently cached objects: \n"); |
---|
| 101 | for(int i = 0; i < CL_NUMBER; ++i) |
---|
| 102 | { |
---|
[4318] | 103 | if( this->managedObjectList[i] != NULL) |
---|
[4592] | 104 | PRINT(0)("= o Class Nr. %i has cached %i object(s)\n", i, this->managedObjectList[i]->getSize()); |
---|
[4287] | 105 | else |
---|
[4592] | 106 | PRINT(0)("= o Class Nr. %i has cached 0 object(s)\n", i); |
---|
[4287] | 107 | } |
---|
| 108 | PRINT(0)("=======================================================\n"); |
---|
| 109 | } |
---|