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 {
|
|
|
|
|
2008-05-03 23:02:05 +00:00
|
|
|
template<class T>
|
2004-04-09 15:10:23 +00:00
|
|
|
class Array {
|
|
|
|
protected:
|
2008-02-27 13:35:29 +00:00
|
|
|
uint _capacity;
|
|
|
|
uint _size;
|
2008-08-20 11:07:16 +00:00
|
|
|
T *_storage;
|
2004-04-09 15:10:23 +00:00
|
|
|
|
|
|
|
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:
|
2008-08-20 11:07:16 +00:00
|
|
|
Array() : _capacity(0), _size(0), _storage(0) {}
|
|
|
|
Array(const Array<T> &array) : _capacity(0), _size(0), _storage(0) {
|
2004-04-09 15:10:23 +00:00
|
|
|
_size = array._size;
|
|
|
|
_capacity = _size + 32;
|
2008-08-20 11:07:16 +00:00
|
|
|
_storage = new T[_capacity];
|
|
|
|
copy(array._storage, array._storage + _size, _storage);
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2006-10-13 20:18:27 +00:00
|
|
|
~Array() {
|
2008-08-20 11:07:16 +00:00
|
|
|
delete[] _storage;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2008-05-03 23:02:05 +00:00
|
|
|
void push_back(const T &element) {
|
2004-04-09 15:10:23 +00:00
|
|
|
ensureCapacity(_size + 1);
|
2008-08-20 11:07:16 +00:00
|
|
|
_storage[_size++] = element;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2008-05-03 23:02:05 +00:00
|
|
|
void push_back(const Array<T> &array) {
|
2004-04-09 15:10:23 +00:00
|
|
|
ensureCapacity(_size + array._size);
|
2008-08-20 11:07:16 +00:00
|
|
|
copy(array._storage, array._storage + array._size, _storage + _size);
|
2007-05-23 12:02:31 +00:00
|
|
|
_size += array._size;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2008-05-03 23:02:05 +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);
|
2008-08-20 11:07:16 +00:00
|
|
|
copy_backward(_storage + idx, _storage + _size, _storage + _size + 1);
|
|
|
|
_storage[idx] = element;
|
2004-04-09 15:10:23 +00:00
|
|
|
_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);
|
2008-08-20 11:07:16 +00:00
|
|
|
T tmp = _storage[idx];
|
|
|
|
copy(_storage + idx + 1, _storage + _size, _storage + idx);
|
2004-04-09 15:10:23 +00:00
|
|
|
_size--;
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: insert, remove, ...
|
|
|
|
|
2008-05-03 23:02:05 +00:00
|
|
|
T& operator[](int idx) {
|
2008-02-27 13:35:29 +00:00
|
|
|
assert(idx >= 0 && (uint)idx < _size);
|
2008-08-20 11:07:16 +00:00
|
|
|
return _storage[idx];
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2008-05-03 23:02:05 +00:00
|
|
|
const T& operator[](int idx) const {
|
2008-02-27 13:35:29 +00:00
|
|
|
assert(idx >= 0 && (uint)idx < _size);
|
2008-08-20 11:07:16 +00:00
|
|
|
return _storage[idx];
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2008-05-03 23:02:05 +00:00
|
|
|
Array<T>& operator=(const Array<T> &array) {
|
2007-03-12 22:34:29 +00:00
|
|
|
if (this == &array)
|
|
|
|
return *this;
|
|
|
|
|
2008-08-20 11:07:16 +00:00
|
|
|
delete[] _storage;
|
2004-04-09 15:10:23 +00:00
|
|
|
_size = array._size;
|
|
|
|
_capacity = _size + 32;
|
2008-08-20 11:07:16 +00:00
|
|
|
_storage = new T[_capacity];
|
|
|
|
copy(array._storage, array._storage + _size, _storage);
|
2004-04-09 15:10:23 +00:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint size() const {
|
|
|
|
return _size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear() {
|
2008-08-20 11:07:16 +00:00
|
|
|
delete[] _storage;
|
|
|
|
_storage = 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() {
|
2008-08-20 11:07:16 +00:00
|
|
|
return _storage;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
iterator end() {
|
2008-08-20 11:07:16 +00:00
|
|
|
return _storage + _size;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const_iterator begin() const {
|
2008-08-20 11:07:16 +00:00
|
|
|
return _storage;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const_iterator end() const {
|
2008-08-20 11:07:16 +00:00
|
|
|
return _storage + _size;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
|
2008-02-27 13:35:29 +00:00
|
|
|
void reserve(uint newCapacity) {
|
|
|
|
if (newCapacity <= _capacity)
|
2004-04-09 15:10:23 +00:00
|
|
|
return;
|
|
|
|
|
2008-08-20 11:07:16 +00:00
|
|
|
T *old_storage = _storage;
|
2008-02-27 13:35:29 +00:00
|
|
|
_capacity = newCapacity;
|
2008-08-20 11:07:16 +00:00
|
|
|
_storage = new T[newCapacity];
|
2004-04-09 15:10:23 +00:00
|
|
|
|
2008-08-20 11:07:16 +00:00
|
|
|
if (old_storage) {
|
2004-04-09 15:10:23 +00:00
|
|
|
// Copy old data
|
2008-08-20 11:07:16 +00:00
|
|
|
copy(old_storage, old_storage + _size, _storage);
|
|
|
|
delete[] old_storage;
|
2004-04-09 15:10:23 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-27 13:35:29 +00:00
|
|
|
|
2008-02-27 14:06:06 +00:00
|
|
|
void resize(uint newSize) {
|
|
|
|
if (newSize == _size)
|
|
|
|
return;
|
|
|
|
|
2008-08-20 11:07:16 +00:00
|
|
|
T *old_storage = _storage;
|
2008-02-27 14:06:06 +00:00
|
|
|
_capacity = newSize;
|
2008-08-20 11:07:16 +00:00
|
|
|
_storage = new T[newSize];
|
|
|
|
if (old_storage) {
|
2008-02-27 14:06:06 +00:00
|
|
|
// Copy old data
|
|
|
|
int cnt = (_size < newSize ? _size : newSize);
|
2008-08-20 11:07:16 +00:00
|
|
|
copy(old_storage, old_storage + cnt, _storage);
|
|
|
|
delete[] old_storage;
|
2008-02-27 14:06:06 +00:00
|
|
|
}
|
|
|
|
_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
|