2006-02-24 05:17:19 +00:00
|
|
|
/*
|
|
|
|
** tarray.h
|
|
|
|
** Templated, automatically resizing array
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
2006-05-29 03:07:57 +00:00
|
|
|
** Copyright 1998-2005 Randy Heit
|
2006-02-24 05:17:19 +00:00
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TARRAY_H__
|
|
|
|
#define __TARRAY_H__
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2006-05-29 03:07:57 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <new>
|
2006-02-24 05:17:19 +00:00
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class TArray
|
|
|
|
{
|
|
|
|
public:
|
2006-05-29 03:07:57 +00:00
|
|
|
////////
|
|
|
|
// This is a dummy constructor that does nothing. The purpose of this
|
|
|
|
// is so you can create a global TArray in the data segment that gets
|
|
|
|
// used by code before startup without worrying about the constructor
|
|
|
|
// resetting it after it's already been used. You MUST NOT use it for
|
|
|
|
// heap- or stack-allocated TArrays.
|
|
|
|
enum ENoInit
|
|
|
|
{
|
|
|
|
NoInit
|
|
|
|
};
|
|
|
|
TArray (ENoInit dummy)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
////////
|
2006-02-24 05:17:19 +00:00
|
|
|
TArray ()
|
|
|
|
{
|
|
|
|
Most = 0;
|
|
|
|
Count = 0;
|
|
|
|
Array = NULL;
|
|
|
|
}
|
|
|
|
TArray (int max)
|
|
|
|
{
|
|
|
|
Most = max;
|
|
|
|
Count = 0;
|
2006-05-29 03:07:57 +00:00
|
|
|
Array = (T *)malloc (sizeof(T)*max);
|
|
|
|
if (Array == NULL)
|
|
|
|
{
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
|
|
|
TArray (const TArray<T> &other)
|
|
|
|
{
|
|
|
|
DoCopy (other);
|
|
|
|
}
|
|
|
|
TArray<T> &operator= (const TArray<T> &other)
|
|
|
|
{
|
|
|
|
if (&other != this)
|
|
|
|
{
|
|
|
|
if (Array != NULL)
|
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
if (Count > 0)
|
|
|
|
{
|
|
|
|
DoDelete (0, Count-1);
|
|
|
|
}
|
|
|
|
free (Array);
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
|
|
|
DoCopy (other);
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
~TArray ()
|
|
|
|
{
|
|
|
|
if (Array)
|
2006-05-29 03:07:57 +00:00
|
|
|
{
|
|
|
|
if (Count > 0)
|
|
|
|
{
|
|
|
|
DoDelete (0, Count-1);
|
|
|
|
}
|
2006-02-24 05:17:19 +00:00
|
|
|
free (Array);
|
2006-05-29 03:07:57 +00:00
|
|
|
Array = NULL;
|
|
|
|
Count = 0;
|
|
|
|
Most = 0;
|
|
|
|
}
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
T &operator[] (unsigned int index) const
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
|
|
|
return Array[index];
|
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
unsigned int Push (const T &item)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
Grow (1);
|
|
|
|
::new((void*)&Array[Count]) T(item);
|
2006-02-24 05:17:19 +00:00
|
|
|
return Count++;
|
|
|
|
}
|
|
|
|
bool Pop (T &item)
|
|
|
|
{
|
|
|
|
if (Count > 0)
|
|
|
|
{
|
|
|
|
item = Array[--Count];
|
2006-05-29 03:07:57 +00:00
|
|
|
Array[Count].~T();
|
2006-02-24 05:17:19 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
void Delete (unsigned int index)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
if (index < Count)
|
|
|
|
{
|
|
|
|
Array[index].~T();
|
|
|
|
memmove (&Array[index], &Array[index+1], sizeof(T)*(Count - index - 1));
|
2006-02-24 05:17:19 +00:00
|
|
|
Count--;
|
2006-05-29 03:07:57 +00:00
|
|
|
}
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
// Inserts an item into the array, shifting elements as needed
|
|
|
|
void Insert (unsigned int index, const T &item)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
if (index >= Count)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
// Inserting somewhere past the end of the array, so we can
|
|
|
|
// just add it without moving things.
|
|
|
|
Resize (index + 1);
|
|
|
|
::new ((void *)&Array[index]) T(item);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Inserting somewhere in the middle of the array,
|
|
|
|
// so make room for it
|
|
|
|
Resize (Count + 1);
|
|
|
|
|
|
|
|
// Now move items from the index and onward out of the way
|
|
|
|
memmove (&Array[index+1], &Array[index], sizeof(T)*(Count - index - 1));
|
|
|
|
|
|
|
|
// And put the new element in
|
|
|
|
::new ((void *)&Array[index]) T(item);
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void ShrinkToFit ()
|
|
|
|
{
|
|
|
|
if (Most > Count)
|
|
|
|
{
|
|
|
|
Most = Count;
|
|
|
|
if (Most == 0)
|
|
|
|
{
|
|
|
|
if (Array != NULL)
|
|
|
|
{
|
|
|
|
free (Array);
|
|
|
|
Array = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
DoResize ();
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Grow Array to be large enough to hold amount more entries without
|
|
|
|
// further growing.
|
2006-05-29 03:07:57 +00:00
|
|
|
void Grow (unsigned int amount)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
|
|
|
if (Count + amount > Most)
|
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
const unsigned int choicea = Count + amount;
|
|
|
|
const unsigned int choiceb = Most = (Most >= 16) ? Most + Most / 2 : 16;
|
2006-02-24 05:17:19 +00:00
|
|
|
Most = (choicea > choiceb ? choicea : choiceb);
|
2006-05-29 03:07:57 +00:00
|
|
|
DoResize ();
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Resize Array so that it has exactly amount entries in use.
|
2006-05-29 03:07:57 +00:00
|
|
|
void Resize (unsigned int amount)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
|
|
|
if (Count < amount)
|
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
// Adding new entries
|
2006-02-24 05:17:19 +00:00
|
|
|
Grow (amount - Count);
|
2006-05-29 03:07:57 +00:00
|
|
|
for (unsigned int i = Count; i < amount; ++i)
|
|
|
|
{
|
|
|
|
::new((void *)&Array[i]) T;
|
|
|
|
}
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
else if (Count != amount)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
// Deleting old entries
|
|
|
|
DoDelete (amount, Count - 1);
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
Count = amount;
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
|
|
|
// Reserves amount entries at the end of the array, but does nothing
|
|
|
|
// with them.
|
2006-05-29 03:07:57 +00:00
|
|
|
unsigned int Reserve (unsigned int amount)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
Grow (amount);
|
|
|
|
unsigned int place = Count;
|
2006-02-24 05:17:19 +00:00
|
|
|
Count += amount;
|
|
|
|
return place;
|
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
unsigned int Size () const
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
|
|
|
return Count;
|
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
unsigned int Max () const
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
|
|
|
return Most;
|
|
|
|
}
|
|
|
|
void Clear ()
|
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
if (Count > 0)
|
|
|
|
{
|
|
|
|
DoDelete (0, Count-1);
|
|
|
|
Count = 0;
|
|
|
|
}
|
2006-02-24 05:17:19 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
T *Array;
|
2006-05-29 03:07:57 +00:00
|
|
|
unsigned int Most;
|
|
|
|
unsigned int Count;
|
2006-02-24 05:17:19 +00:00
|
|
|
|
|
|
|
void DoCopy (const TArray<T> &other)
|
|
|
|
{
|
|
|
|
Most = Count = other.Count;
|
|
|
|
if (Count != 0)
|
|
|
|
{
|
2006-05-29 03:07:57 +00:00
|
|
|
Array = (T *)malloc (sizeof(T)*Most);
|
|
|
|
if (Array == NULL)
|
|
|
|
{
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i < Count; ++i)
|
2006-02-24 05:17:19 +00:00
|
|
|
{
|
|
|
|
Array[i] = other.Array[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Array = NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-05-29 03:07:57 +00:00
|
|
|
|
|
|
|
void DoResize ()
|
|
|
|
{
|
|
|
|
size_t allocsize = sizeof(T)*Most;
|
|
|
|
Array = (T *)realloc (Array, allocsize);
|
|
|
|
if (Array == NULL)
|
|
|
|
{
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoDelete (unsigned int first, unsigned int last)
|
|
|
|
{
|
|
|
|
assert (last != ~0u);
|
|
|
|
for (unsigned int i = first; i <= last; ++i)
|
|
|
|
{
|
|
|
|
Array[i].~T();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// An array with accessors that automatically grow the
|
|
|
|
// array as needed. But can still be used as a normal
|
|
|
|
// TArray if needed. Used by ACS world and global arrays.
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class TAutoGrowArray : public TArray<T>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
T GetVal (unsigned int index)
|
|
|
|
{
|
|
|
|
if (index >= this->Size())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return (*this)[index];
|
|
|
|
}
|
|
|
|
void SetVal (unsigned int index, T val)
|
|
|
|
{
|
|
|
|
if (index >= this->Size())
|
|
|
|
{
|
|
|
|
this->Resize (index + 1);
|
|
|
|
}
|
|
|
|
(*this)[index] = val;
|
|
|
|
}
|
2006-02-24 05:17:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__TARRAY_H__
|