2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2004-04-09 15:10:23 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-04-09 15:10:23 +00:00
|
|
|
*
|
2006-02-11 09:53:53 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2004-04-09 15:10:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMON_ARRAY_H
|
|
|
|
#define COMMON_ARRAY_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
2007-05-23 12:02:31 +00:00
|
|
|
#include "common/algorithm.h"
|
2004-04-09 15:10:23 +00:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class Array {
|
|
|
|
protected:
|
2008-02-27 13:35:29 +00:00
|
|
|
uint _capacity;
|
|
|
|
uint _size;
|
2004-04-09 15:10:23 +00:00
|
|
|
T *_data;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef T *iterator;
|
|
|
|
typedef const T *const_iterator;
|
|
|
|
|
2007-05-23 12:02:31 +00:00
|
|
|
typedef T value_type;
|
|
|
|
|
2004-04-09 15:10:23 +00:00
|
|
|
public:
|
2006-10-13 20:18:27 +00:00
|
|
|
Array() : _capacity(0), _size(0), _data(0) {}
|
|
|
|
Array(const Array<T>& array) : _capacity(0), _size(0), _data(0) {
|
2004-04-09 15:10:23 +00:00
|
|
|
_size = array._size;
|
|
|
|
_capacity = _size + 32;
|
|
|
|
_data = new T[_capacity];
|
2007-05-23 12:02:31 +00:00
|
|
|
copy(array._data, array._data + _size, _data);
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2006-10-13 20:18:27 +00:00
|
|
|
~Array() {
|
2007-11-11 11:39:59 +00:00
|
|
|
delete [] _data;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void push_back(const T& element) {
|
|
|
|
ensureCapacity(_size + 1);
|
|
|
|
_data[_size++] = element;
|
|
|
|
}
|
|
|
|
|
|
|
|
void push_back(const Array<T>& array) {
|
|
|
|
ensureCapacity(_size + array._size);
|
2007-05-23 12:02:31 +00:00
|
|
|
copy(array._data, array._data + array._size, _data + _size);
|
|
|
|
_size += array._size;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void insert_at(int idx, const T& element) {
|
2008-02-27 13:35:29 +00:00
|
|
|
assert(idx >= 0 && (uint)idx <= _size);
|
2004-04-09 15:10:23 +00:00
|
|
|
ensureCapacity(_size + 1);
|
2007-05-23 12:02:31 +00:00
|
|
|
copy_backward(_data + idx, _data + _size, _data + _size + 1);
|
2004-04-09 15:10:23 +00:00
|
|
|
_data[idx] = element;
|
|
|
|
_size++;
|
|
|
|
}
|
|
|
|
|
2004-08-12 21:33:59 +00:00
|
|
|
T remove_at(int idx) {
|
2008-02-27 13:35:29 +00:00
|
|
|
assert(idx >= 0 && (uint)idx < _size);
|
2004-08-12 21:33:59 +00:00
|
|
|
T tmp = _data[idx];
|
2007-05-23 12:02:31 +00:00
|
|
|
copy(_data + idx + 1, _data + _size, _data + idx);
|
2004-04-09 15:10:23 +00:00
|
|
|
_size--;
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: insert, remove, ...
|
|
|
|
|
|
|
|
T& operator [](int idx) {
|
2008-02-27 13:35:29 +00:00
|
|
|
assert(idx >= 0 && (uint)idx < _size);
|
2004-04-09 15:10:23 +00:00
|
|
|
return _data[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
const T& operator [](int idx) const {
|
2008-02-27 13:35:29 +00:00
|
|
|
assert(idx >= 0 && (uint)idx < _size);
|
2004-04-09 15:10:23 +00:00
|
|
|
return _data[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
Array<T>& operator =(const Array<T>& array) {
|
2007-03-12 22:34:29 +00:00
|
|
|
if (this == &array)
|
|
|
|
return *this;
|
|
|
|
|
2007-11-11 11:39:59 +00:00
|
|
|
delete [] _data;
|
2004-04-09 15:10:23 +00:00
|
|
|
_size = array._size;
|
|
|
|
_capacity = _size + 32;
|
|
|
|
_data = new T[_capacity];
|
2007-05-23 12:02:31 +00:00
|
|
|
copy(array._data, array._data + _size, _data);
|
2004-04-09 15:10:23 +00:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint size() const {
|
|
|
|
return _size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear() {
|
2007-11-11 11:39:59 +00:00
|
|
|
delete [] _data;
|
|
|
|
_data = 0;
|
2004-04-09 15:10:23 +00:00
|
|
|
_size = 0;
|
|
|
|
_capacity = 0;
|
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2006-03-28 09:42:54 +00:00
|
|
|
bool empty() const {
|
2004-04-09 15:10:23 +00:00
|
|
|
return (_size == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iterator begin() {
|
|
|
|
return _data;
|
|
|
|
}
|
|
|
|
|
|
|
|
iterator end() {
|
|
|
|
return _data + _size;
|
|
|
|
}
|
|
|
|
|
|
|
|
const_iterator begin() const {
|
|
|
|
return _data;
|
|
|
|
}
|
|
|
|
|
|
|
|
const_iterator end() const {
|
|
|
|
return _data + _size;
|
|
|
|
}
|
|
|
|
|
2008-02-27 13:35:29 +00:00
|
|
|
void reserve(uint newCapacity) {
|
|
|
|
if (newCapacity <= _capacity)
|
2004-04-09 15:10:23 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
T *old_data = _data;
|
2008-02-27 13:35:29 +00:00
|
|
|
_capacity = newCapacity;
|
|
|
|
_data = new T[newCapacity];
|
2004-04-09 15:10:23 +00:00
|
|
|
|
|
|
|
if (old_data) {
|
|
|
|
// Copy old data
|
2007-05-23 12:02:31 +00:00
|
|
|
copy(old_data, old_data + _size, _data);
|
2004-04-09 15:10:23 +00:00
|
|
|
delete [] old_data;
|
|
|
|
}
|
|
|
|
}
|
2008-02-27 13:35:29 +00:00
|
|
|
|
2008-02-27 14:06:06 +00:00
|
|
|
void resize(uint newSize) {
|
|
|
|
if (newSize == _size)
|
|
|
|
return;
|
|
|
|
|
|
|
|
T *old_data = _data;
|
|
|
|
_capacity = newSize;
|
|
|
|
_data = new T[newSize];
|
|
|
|
if (old_data) {
|
|
|
|
// Copy old data
|
|
|
|
int cnt = (_size < newSize ? _size : newSize);
|
|
|
|
copy(old_data, old_data + cnt, _data);
|
|
|
|
delete [] old_data;
|
|
|
|
}
|
|
|
|
_size = newSize;
|
|
|
|
}
|
|
|
|
|
2008-02-27 13:35:29 +00:00
|
|
|
protected:
|
|
|
|
void ensureCapacity(uint len) {
|
|
|
|
if (len >= _capacity)
|
|
|
|
reserve(len + 32);
|
|
|
|
}
|
2004-04-09 15:10:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Common
|
|
|
|
|
|
|
|
#endif
|