2013-11-26 16:58:33 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 ForzeField Studios S.L. http://forzefield.com
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __CCVECTOR_H__
|
|
|
|
#define __CCVECTOR_H__
|
|
|
|
|
2013-12-07 10:46:40 +08:00
|
|
|
#include "ccMacros.h"
|
2013-12-26 21:49:40 +08:00
|
|
|
#include "CCObject.h"
|
2013-11-26 16:58:33 +08:00
|
|
|
#include <vector>
|
2013-12-07 10:46:40 +08:00
|
|
|
#include <functional>
|
2013-12-20 10:12:07 +08:00
|
|
|
#include <algorithm> // for std::find
|
2013-11-26 16:58:33 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
class CC_DLL Vector
|
|
|
|
{
|
|
|
|
public:
|
2013-12-12 14:45:30 +08:00
|
|
|
// ------------------------------------------
|
|
|
|
// Iterators
|
|
|
|
// ------------------------------------------
|
|
|
|
typedef typename std::vector<T>::iterator iterator;
|
|
|
|
typedef typename std::vector<T>::const_iterator const_iterator;
|
|
|
|
|
|
|
|
typedef typename std::vector<T>::reverse_iterator reverse_iterator;
|
|
|
|
typedef typename std::vector<T>::const_reverse_iterator const_reverse_iterator;
|
|
|
|
|
|
|
|
iterator begin() { return _data.begin(); }
|
|
|
|
const_iterator begin() const { return _data.begin(); }
|
|
|
|
|
|
|
|
iterator end() { return _data.end(); }
|
|
|
|
const_iterator end() const { return _data.end(); }
|
|
|
|
|
|
|
|
const_iterator cbegin() const { return _data.cbegin(); }
|
|
|
|
const_iterator cend() const { return _data.cend(); }
|
|
|
|
|
|
|
|
reverse_iterator rbegin() { return _data.rbegin(); }
|
|
|
|
const_reverse_iterator rbegin() const { return _data.rbegin(); }
|
|
|
|
|
|
|
|
reverse_iterator rend() { return _data.rend(); }
|
|
|
|
const_reverse_iterator rend() const { return _data.rend(); }
|
|
|
|
|
|
|
|
const_reverse_iterator crbegin() const { return _data.crbegin(); }
|
|
|
|
const_reverse_iterator crend() const { return _data.crend(); }
|
|
|
|
|
|
|
|
/** Constructor */
|
2013-11-28 17:57:13 +08:00
|
|
|
Vector<T>()
|
|
|
|
: _data()
|
|
|
|
{
|
2013-12-26 21:49:40 +08:00
|
|
|
static_assert(std::is_convertible<T, Object*>::value, "Invalid Type for cocos2d::Vector<T>!");
|
2013-11-28 17:57:13 +08:00
|
|
|
}
|
2013-11-28 16:02:03 +08:00
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Constructor with a capacity */
|
2013-12-12 10:29:07 +08:00
|
|
|
explicit Vector<T>(ssize_t capacity)
|
2013-11-26 16:58:33 +08:00
|
|
|
: _data()
|
|
|
|
{
|
2013-12-26 21:49:40 +08:00
|
|
|
static_assert(std::is_convertible<T, Object*>::value, "Invalid Type for cocos2d::Vector<T>!");
|
2013-12-04 16:37:08 +08:00
|
|
|
CCLOGINFO("In the default constructor with capacity of Vector.");
|
2013-12-05 10:35:10 +08:00
|
|
|
reserve(capacity);
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Destructor */
|
2013-12-10 21:20:52 +08:00
|
|
|
~Vector<T>()
|
2013-11-29 16:33:15 +08:00
|
|
|
{
|
2013-12-04 16:37:08 +08:00
|
|
|
CCLOGINFO("In the destructor of Vector.");
|
2013-12-05 10:35:10 +08:00
|
|
|
clear();
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Copy constructor */
|
2013-11-28 11:04:39 +08:00
|
|
|
Vector<T>(const Vector<T>& other)
|
|
|
|
{
|
2013-12-26 21:49:40 +08:00
|
|
|
static_assert(std::is_convertible<T, Object*>::value, "Invalid Type for cocos2d::Vector<T>!");
|
2013-12-04 16:37:08 +08:00
|
|
|
CCLOGINFO("In the copy constructor!");
|
2013-11-29 16:33:15 +08:00
|
|
|
_data = other._data;
|
|
|
|
addRefForAllObjects();
|
2013-11-28 11:04:39 +08:00
|
|
|
}
|
|
|
|
|
2013-11-28 16:02:03 +08:00
|
|
|
/** Move constructor */
|
|
|
|
Vector<T>(Vector<T>&& other)
|
|
|
|
{
|
2013-12-26 21:49:40 +08:00
|
|
|
static_assert(std::is_convertible<T, Object*>::value, "Invalid Type for cocos2d::Vector<T>!");
|
2013-12-04 16:37:08 +08:00
|
|
|
CCLOGINFO("In the move constructor of Vector!");
|
2013-12-10 15:58:13 +08:00
|
|
|
_data = std::move(other._data);
|
2013-11-28 16:02:03 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Copy assignment operator */
|
2013-11-28 16:02:03 +08:00
|
|
|
Vector<T>& operator=(const Vector<T>& other)
|
2013-11-28 11:04:39 +08:00
|
|
|
{
|
2014-01-02 17:54:52 +08:00
|
|
|
if (this != &other) {
|
|
|
|
CCLOGINFO("In the copy assignment operator!");
|
|
|
|
clear();
|
|
|
|
_data = other._data;
|
|
|
|
addRefForAllObjects();
|
|
|
|
}
|
2013-11-28 11:04:39 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Move assignment operator */
|
2013-11-28 16:02:03 +08:00
|
|
|
Vector<T>& operator=(Vector<T>&& other)
|
|
|
|
{
|
2014-01-02 17:54:52 +08:00
|
|
|
if (this != &other) {
|
|
|
|
CCLOGINFO("In the move assignment operator!");
|
2014-01-03 10:37:26 +08:00
|
|
|
clear();
|
2014-01-02 17:54:52 +08:00
|
|
|
_data = std::move(other._data);
|
|
|
|
}
|
2013-11-28 16:02:03 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-12-05 10:35:10 +08:00
|
|
|
// Don't uses operator since we could not decide whether it needs 'retain'/'release'.
|
2013-12-05 17:38:08 +08:00
|
|
|
// T& operator[](int index)
|
2013-11-29 16:33:15 +08:00
|
|
|
// {
|
|
|
|
// return _data[index];
|
|
|
|
// }
|
|
|
|
//
|
2013-12-05 17:38:08 +08:00
|
|
|
// const T& operator[](int index) const
|
2013-11-29 16:33:15 +08:00
|
|
|
// {
|
|
|
|
// return _data[index];
|
|
|
|
// }
|
2013-11-28 11:04:39 +08:00
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Request a change in capacity
|
|
|
|
* @param capacity Minimum capacity for the vector.
|
|
|
|
* If n is greater than the current vector capacity,
|
|
|
|
* the function causes the container to reallocate its storage increasing its capacity to n (or greater).
|
|
|
|
*/
|
|
|
|
void reserve(ssize_t n)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-12 14:45:30 +08:00
|
|
|
_data.reserve(n);
|
2013-11-28 17:57:13 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Returns the size of the storage space currently allocated for the vector, expressed in terms of elements.
|
|
|
|
* @note This capacity is not necessarily equal to the vector size.
|
|
|
|
* It can be equal or greater, with the extra space allowing to accommodate for growth without the need to reallocate on each insertion.
|
|
|
|
* @return The size of the currently allocated storage capacity in the vector, measured in terms of the number elements it can hold.
|
|
|
|
*/
|
2013-12-12 12:07:20 +08:00
|
|
|
ssize_t capacity() const
|
2013-11-28 17:57:13 +08:00
|
|
|
{
|
|
|
|
return _data.capacity();
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
2013-11-28 11:04:39 +08:00
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Returns the number of elements in the vector.
|
|
|
|
* @note This is the number of actual objects held in the vector, which is not necessarily equal to its storage capacity.
|
|
|
|
* @return The number of elements in the container.
|
|
|
|
*/
|
2013-12-12 12:07:20 +08:00
|
|
|
ssize_t size() const
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-12 12:07:20 +08:00
|
|
|
return _data.size();
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Returns whether the vector is empty (i.e. whether its size is 0).
|
|
|
|
* @note This function does not modify the container in any way. To clear the content of a vector, see Vector<T>::clear.
|
|
|
|
*/
|
2013-11-28 18:23:06 +08:00
|
|
|
bool empty() const
|
|
|
|
{
|
|
|
|
return _data.empty();
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Returns the maximum number of elements that the vector can hold. */
|
|
|
|
ssize_t max_size() const
|
|
|
|
{
|
|
|
|
return _data.max_size();
|
|
|
|
}
|
|
|
|
|
2013-11-26 16:58:33 +08:00
|
|
|
/** Returns index of a certain object, return UINT_MAX if doesn't contain the object */
|
2013-12-12 10:29:07 +08:00
|
|
|
ssize_t getIndex(T object) const
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-12 14:45:30 +08:00
|
|
|
auto iter = std::find(_data.begin(), _data.end(), object);
|
|
|
|
if (iter != _data.end())
|
|
|
|
return iter - _data.begin();
|
|
|
|
|
2013-11-26 16:58:33 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Find the object in the vector.
|
|
|
|
* @return Returns an iterator to the first element in the range [first,last) that compares equal to val.
|
|
|
|
* If no such element is found, the function returns last.
|
|
|
|
*/
|
|
|
|
const_iterator find(T object) const
|
|
|
|
{
|
|
|
|
return std::find(_data.begin(), _data.end(), object);
|
|
|
|
}
|
|
|
|
|
|
|
|
iterator find(T object)
|
|
|
|
{
|
|
|
|
return std::find(_data.begin(), _data.end(), object);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the element at position 'index' in the vector. */
|
2013-12-12 10:29:07 +08:00
|
|
|
T at(ssize_t index) const
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT( index >= 0 && index < size(), "index out of range in getObjectAtIndex()");
|
2013-11-26 16:58:33 +08:00
|
|
|
return _data[index];
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Returns the first element in the vector. */
|
2013-12-05 10:35:10 +08:00
|
|
|
T front() const
|
|
|
|
{
|
|
|
|
return _data.front();
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Returns the last element of the vector. */
|
2013-12-05 10:35:10 +08:00
|
|
|
T back() const
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
|
|
|
return _data.back();
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Returns a random element of the vector. */
|
2013-11-26 16:58:33 +08:00
|
|
|
T getRandomObject() const
|
|
|
|
{
|
2013-11-29 16:33:15 +08:00
|
|
|
if (!_data.empty())
|
|
|
|
{
|
2013-12-12 12:07:20 +08:00
|
|
|
ssize_t randIdx = rand() % _data.size();
|
2013-11-29 16:33:15 +08:00
|
|
|
return *(_data.begin() + randIdx);
|
|
|
|
}
|
|
|
|
return nullptr;
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Returns a Boolean value that indicates whether object is present in vector. */
|
2013-12-05 10:35:10 +08:00
|
|
|
bool contains(T object) const
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
|
|
|
return( std::find(_data.begin(), _data.end(), object) != _data.end() );
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Returns true if the two vectors are equal */
|
2013-12-05 10:35:10 +08:00
|
|
|
bool equals(const Vector<T> &other)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-12 10:29:07 +08:00
|
|
|
ssize_t s = this->size();
|
2013-12-05 10:35:10 +08:00
|
|
|
if (s != other.size())
|
|
|
|
return false;
|
|
|
|
|
2013-12-12 10:29:07 +08:00
|
|
|
for (ssize_t i = 0; i < s; i++)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
if (!this->at(i)->isEqual(other.at(i)))
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
// Adds objects
|
|
|
|
|
|
|
|
/** @brief Adds a new element at the end of the vector, after its current last element.
|
|
|
|
* @note This effectively increases the container size by one,
|
|
|
|
* which causes an automatic reallocation of the allocated storage space
|
|
|
|
* if -and only if- the new vector size surpasses the current vector capacity.
|
|
|
|
*/
|
2014-01-03 10:44:43 +08:00
|
|
|
void pushBack(T object)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(object != nullptr, "The object should not be nullptr");
|
2013-11-26 16:58:33 +08:00
|
|
|
_data.push_back( object );
|
|
|
|
object->retain();
|
|
|
|
}
|
2013-12-05 10:35:10 +08:00
|
|
|
|
2013-12-17 18:09:07 +08:00
|
|
|
/** Push all elements of an existing vector to the end of current vector. */
|
|
|
|
void pushBack(const Vector<T>& other)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-20 05:34:41 +08:00
|
|
|
for(const auto &obj : other) {
|
2013-12-17 18:09:07 +08:00
|
|
|
_data.push_back(obj);
|
|
|
|
obj->retain();
|
2013-12-20 05:34:41 +08:00
|
|
|
}
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Insert a certain object at a certain index
|
|
|
|
* @note The vector is extended by inserting new elements before the element at the specified 'index',
|
|
|
|
* effectively increasing the container size by the number of elements inserted.
|
|
|
|
* This causes an automatic reallocation of the allocated storage space
|
|
|
|
* if -and only if- the new vector size surpasses the current vector capacity.
|
|
|
|
*/
|
2013-12-12 10:29:07 +08:00
|
|
|
void insert(ssize_t index, T object)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(index >= 0 && index <= size(), "Invalid index!");
|
|
|
|
CCASSERT(object != nullptr, "The object should not be nullptr");
|
2013-11-28 16:02:03 +08:00
|
|
|
_data.insert((std::begin(_data) + index), object);
|
2013-11-26 16:58:33 +08:00
|
|
|
object->retain();
|
|
|
|
}
|
2013-12-05 10:35:10 +08:00
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
// Removes Objects
|
2013-11-26 16:58:33 +08:00
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Removes the last element in the vector,
|
|
|
|
* effectively reducing the container size by one, decrease the referece count of the deleted object.
|
|
|
|
*/
|
2013-12-05 10:35:10 +08:00
|
|
|
void popBack()
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(!_data.empty(), "no objects added");
|
2013-11-26 16:58:33 +08:00
|
|
|
auto last = _data.back();
|
|
|
|
_data.pop_back();
|
|
|
|
last->release();
|
|
|
|
}
|
2013-12-12 14:45:30 +08:00
|
|
|
|
|
|
|
/** @brief Remove a certain object.
|
|
|
|
* @param object The object to be removed.
|
|
|
|
* @param toRelease Whether to decrease the referece count of the deleted object.
|
|
|
|
*/
|
2013-12-17 17:54:38 +08:00
|
|
|
void eraseObject(T object, bool toRelease = true)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(object != nullptr, "The object should not be nullptr");
|
|
|
|
auto iter = std::find(_data.begin(), _data.end(), object);
|
|
|
|
if (iter != _data.end())
|
|
|
|
_data.erase(iter);
|
2013-12-07 14:18:42 +08:00
|
|
|
if (toRelease)
|
|
|
|
object->release();
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Removes from the vector with an iterator.
|
|
|
|
* @param position Iterator pointing to a single element to be removed from the vector.
|
|
|
|
* @return An iterator pointing to the new location of the element that followed the last element erased by the function call.
|
|
|
|
* This is the container end if the operation erased the last element in the sequence.
|
|
|
|
*/
|
|
|
|
iterator erase(iterator position)
|
|
|
|
{
|
|
|
|
CCASSERT(position >= _data.begin() && position < _data.end(), "Invalid position!");
|
|
|
|
(*position)->release();
|
|
|
|
return _data.erase(position);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief Removes from the vector with a range of elements ( [first, last) ).
|
|
|
|
* @param first The beginning of the range
|
|
|
|
* @param last The end of the range, the 'last' will not used, it's only for indicating the end of range.
|
|
|
|
* @return An iterator pointing to the new location of the element that followed the last element erased by the function call.
|
|
|
|
* This is the container end if the operation erased the last element in the sequence.
|
|
|
|
*/
|
2014-01-03 20:28:30 +08:00
|
|
|
iterator erase(iterator first, iterator last)
|
2013-12-12 14:45:30 +08:00
|
|
|
{
|
|
|
|
for (auto iter = first; iter != last; ++iter)
|
|
|
|
{
|
|
|
|
(*iter)->release();
|
|
|
|
}
|
|
|
|
|
|
|
|
return _data.erase(first, last);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief Removes from the vector with an index.
|
|
|
|
* @param index The index of the element to be removed from the vector.
|
|
|
|
* @return An iterator pointing to the new location of the element that followed the last element erased by the function call.
|
|
|
|
* This is the container end if the operation erased the last element in the sequence.
|
|
|
|
*/
|
|
|
|
iterator erase(ssize_t index)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(!_data.empty() && index >=0 && index < size(), "Invalid index!");
|
2013-11-26 16:58:33 +08:00
|
|
|
auto it = std::next( begin(), index );
|
|
|
|
(*it)->release();
|
2013-12-12 14:45:30 +08:00
|
|
|
return _data.erase(it);
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** @brief Removes all elements from the vector (which are destroyed), leaving the container with a size of 0.
|
|
|
|
* @note All the elements in the vector will be released (referece count will be decreased).
|
|
|
|
*/
|
2013-12-05 10:35:10 +08:00
|
|
|
void clear()
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
|
|
|
for( auto it = std::begin(_data); it != std::end(_data); ++it ) {
|
|
|
|
(*it)->release();
|
|
|
|
}
|
2013-11-28 11:04:39 +08:00
|
|
|
_data.clear();
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rearranging Content
|
|
|
|
|
|
|
|
/** Swap two elements */
|
2013-12-05 10:35:10 +08:00
|
|
|
void swap(T object1, T object2)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-12 14:45:30 +08:00
|
|
|
ssize_t idx1 = getIndex(object1);
|
|
|
|
ssize_t idx2 = getIndex(object2);
|
2013-11-26 16:58:33 +08:00
|
|
|
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(idx1>=0 && idx2>=0, "invalid object index");
|
2013-11-26 16:58:33 +08:00
|
|
|
|
|
|
|
std::swap( _data[idx1], _data[idx2] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Swap two elements with certain indexes */
|
2013-12-12 10:29:07 +08:00
|
|
|
void swap(ssize_t index1, ssize_t index2)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(index1 >=0 && index1 < size() && index2 >= 0 && index2 < size(), "Invalid indices");
|
2013-11-26 16:58:33 +08:00
|
|
|
|
|
|
|
std::swap( _data[index1], _data[index2] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Replace object at index with another object. */
|
2013-12-12 10:29:07 +08:00
|
|
|
void replace(ssize_t index, T object)
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
2013-12-05 10:35:10 +08:00
|
|
|
CCASSERT(index >= 0 && index < size(), "Invalid index!");
|
|
|
|
CCASSERT(object != nullptr, "The object should not be nullptr");
|
|
|
|
|
|
|
|
_data[index]->release();
|
|
|
|
_data[index] = object;
|
|
|
|
object->retain();
|
2013-11-26 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** reverses the vector */
|
2013-12-05 10:35:10 +08:00
|
|
|
void reverse()
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
|
|
|
std::reverse( std::begin(_data), std::end(_data) );
|
|
|
|
}
|
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Shrinks the vector so the memory footprint corresponds with the number of items */
|
2013-12-05 10:35:10 +08:00
|
|
|
void shrinkToFit()
|
2013-11-26 16:58:33 +08:00
|
|
|
{
|
|
|
|
_data.shrink_to_fit();
|
|
|
|
}
|
2013-11-28 16:02:03 +08:00
|
|
|
|
2013-11-26 16:58:33 +08:00
|
|
|
protected:
|
2013-11-29 16:33:15 +08:00
|
|
|
|
2013-12-12 14:45:30 +08:00
|
|
|
/** Retains all the objects in the vector */
|
2013-11-29 16:33:15 +08:00
|
|
|
void addRefForAllObjects()
|
|
|
|
{
|
2013-12-20 05:34:41 +08:00
|
|
|
for(const auto &obj : _data) {
|
2013-11-29 16:33:15 +08:00
|
|
|
obj->retain();
|
2013-12-20 05:34:41 +08:00
|
|
|
}
|
2013-11-29 16:33:15 +08:00
|
|
|
}
|
|
|
|
|
2013-11-26 16:58:33 +08:00
|
|
|
std::vector<T> _data;
|
|
|
|
};
|
|
|
|
|
|
|
|
// end of data_structure group
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CCVECTOR_H__
|