Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/util/array.h @ 5100

Last change on this file since 5100 was 5100, checked in by bensch, 19 years ago

orxonox/trunk: testing some AutoCompletion in the Shell.

File size: 4.7 KB
Line 
1/*
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: Benjamin Grauer
13   co-programmer: ...
14*/
15
16/*!
17  \file array.h
18  \brief Contains the Array Class that handles arrays of classes.
19  this class creates a Array of a semi-Dynamic length.
20  beware, that after finalizing the array may not be resized again.
21*/
22
23#ifndef _ARRAY_H
24#define _ARRAY_H
25#include "debug.h"
26
27//! Array Class that handles dynamic-type arrays.
28template<class T> class Array
29{
30  public:
31    Array ();
32    ~Array();
33
34    void finalizeArray ();
35    void addEntry (T entry);
36    void addEntry(T entry0, T entry1, T entry2);
37
38    /** @returns The array */
39    inline const T* getArray () const { return this->array; };
40    inline const T getEntry(unsigned int number) const;
41    /** * @returns The Count of entries in the Array*/
42    inline unsigned int getCount()const { return this->entryCount; };
43    inline int getIndex(T* entry) const;
44    inline bool isFinalized() const { return this->finalized; }
45    void debug() const ;
46
47  private:
48    //! One entry of the Array
49    struct Entry
50    {
51      T            value;          //!< The value of this Entry.
52      Entry*       next;           //!< Pointer to the Next entry.
53    };
54
55    T*            array;           //!< The array that will be produced when finalizing the Array.
56    unsigned int  entryCount;      //!< The count of Entries in this Array.
57    bool          finalized;       //!< If this variable is set to true, the Array can not be changed anymore. true if finalized, false else (initially).
58    Entry*        firstEntry;      //!< Pointer to the first Entry of this Array
59    Entry*        currentEntry;    //!< Pointer to the current Entry of this Array. The one Entry we are working with.
60};
61
62
63/**
64 *  creates a new Array
65*/
66template<class T>
67Array<T>::Array ()
68{
69  PRINTF(5)("crating new Array\n");
70  this->firstEntry = new Entry;
71  this->firstEntry->next =NULL;
72  this->currentEntry = this->firstEntry;
73  this->finalized = false;
74  this->entryCount = 0; //0 means one entry
75}
76
77template<class T>
78    const T Array<T>::getEntry(unsigned int number) const
79{
80  if (this->finalized && number < this->entryCount)
81    return this->array[number];
82}
83
84/**
85 *  deletes an Array.
86   It does this by first deleting all the array-entries, and then delete the array[] itself
87*/
88template<class T>
89Array<T>::~Array()
90{
91  PRINTF(5)("deleting array\n");
92  Entry* walker = this->firstEntry;
93  Entry* previous;
94  while (walker)
95  {
96    previous = walker;
97    walker = walker->next;
98    delete previous;
99  }
100  if (finalized)
101    delete[] this->array;
102}
103
104/**
105 *  finalizes an array.
106   This Function creates the array, and makes it ready to be sent to the application.
107*/
108template<class T>
109void Array<T>::finalizeArray ()
110{
111  PRINTF(5)("Finalizing array. Length: %i\n", entryCount);
112  if (!(this->array = new T [this->entryCount]))
113    PRINTF(1)("could not allocate %i data Blocks\n", this->entryCount);
114  Entry* walker = this->firstEntry;
115  for (int i=0; i<this->entryCount; i++)
116  {
117    this->array[i] = walker->value;
118    walker = walker->next;
119  }
120  walker = this->firstEntry;
121  Entry* previous;
122  while (walker)
123  {
124    previous = walker;
125    walker = walker->next;
126    delete previous;
127  }
128  this->firstEntry = NULL;
129  this->finalized = true;
130}
131
132/**
133 *  adds a new Entry to the Array
134 * @param entry Entry to add.
135*/
136template<class T>
137void Array<T>::addEntry (T entry)
138{
139  if (!this->finalized)
140  {
141    PRINTF(5)("adding new Entry to Array: %f\n", entry);
142
143    this->currentEntry->value = entry;
144    this->currentEntry->next = new Entry;
145    this->currentEntry = currentEntry->next;
146    this->currentEntry->next = NULL;
147    ++this->entryCount;
148  }
149  else
150    PRINTF(2)("adding failed, because array has already been finalized\n");
151}
152
153/**
154 *  Adds 3 entries at once (convenience)
155*/
156template<class T>
157void Array<T>::addEntry (T entry0, T entry1, T entry2)
158{
159  this->addEntry(entry0);
160  this->addEntry(entry1);
161  this->addEntry(entry2);
162}
163
164
165/**
166 *  gets back the index of the entry in the array. value check
167 * @param entry: the entry to look up
168 * @returns the index in the array, -1 if not found
169 */
170template<class T>
171int Array<T>::getIndex(T* entry) const
172{
173  if( unlikely(this->finalized == false))
174    return -1;
175
176  for(int i = 0; i < this->entryCount; ++i)
177  {
178    if( unlikely(*entry == this->array[i]))
179      return i;
180  }
181}
182
183
184/**
185 *  Simple debug info about the Array
186*/
187template<class T>
188void Array<T>::debug () const
189{
190  PRINT(0)("entryCount=%i, address=%p\n", this->entryCount, this->array);
191}
192
193#endif
Note: See TracBrowser for help on using the repository browser.