summaryrefslogtreecommitdiff
path: root/src/being
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-07-14 01:31:22 +0300
committerAndrei Karas <akaras@inbox.ru>2017-07-14 01:31:22 +0300
commit311c175f3184103950c72bc5c775174597430b83 (patch)
treead022dc44a1c4177b3d53bf0d7eaa5a1736c8cf1 /src/being
parent16bcb81b0509725e4546bcb3c390ca3c1bb7e7b1 (diff)
downloadplus-311c175f3184103950c72bc5c775174597430b83.tar.gz
plus-311c175f3184103950c72bc5c775174597430b83.tar.bz2
plus-311c175f3184103950c72bc5c775174597430b83.tar.xz
plus-311c175f3184103950c72bc5c775174597430b83.zip
Replace std::vector into macro STD_VECTOR.
In most case it equal to std::vector except debug modes. Now it can be also mse::mstd::vector, but sadly this class not support all required features.
Diffstat (limited to 'src/being')
-rw-r--r--src/being/being.cpp24
-rw-r--r--src/being/being.h14
-rw-r--r--src/being/compoundsprite.h6
-rw-r--r--src/being/localplayer.h2
-rw-r--r--src/being/playerrelations.cpp4
-rw-r--r--src/being/playerrelations.h4
6 files changed, 27 insertions, 27 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 56f22a1d5..508104d27 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -156,7 +156,7 @@ static const unsigned int SPEECH_MAX_TIME = 800;
for (int f = 0; f < BadgeIndex::BadgeIndexSize; f++)
#define for_each_horses(name) \
- FOR_EACH (std::vector<AnimatedSprite*>::const_iterator, it, name)
+ FOR_EACH (STD_VECTOR<AnimatedSprite*>::const_iterator, it, name)
Being::Being(const BeingId id,
const ActorTypeT type) :
@@ -3265,8 +3265,8 @@ void Being::setSpriteSlot(const unsigned int slot,
void Being::dumpSprites() const restrict2
{
- std::vector<BeingSlot>::const_iterator it1 = mSlots.begin();
- const std::vector<BeingSlot>::const_iterator it1_end = mSlots.end();
+ STD_VECTOR<BeingSlot>::const_iterator it1 = mSlots.begin();
+ const STD_VECTOR<BeingSlot>::const_iterator it1_end = mSlots.end();
logger->log("sprites");
for (; it1 != it1_end;
@@ -4195,10 +4195,10 @@ void Being::recalcSpritesOrder() restrict2
if (sz < 1)
return;
- std::vector<int> slotRemap;
+ STD_VECTOR<int> slotRemap;
IntMap itemSlotRemap;
- std::vector<int>::iterator it;
+ STD_VECTOR<int>::iterator it;
int oldHide[20];
bool updatedSprite[20];
int dir = mSpriteDirection;
@@ -4471,7 +4471,7 @@ void Being::recalcSpritesOrder() restrict2
}
}
-int Being::searchSlotValue(const std::vector<int> &restrict slotRemap,
+int Being::searchSlotValue(const STD_VECTOR<int> &restrict slotRemap,
const int val) const restrict2
{
const size_t sz = mSprites.size();
@@ -4483,14 +4483,14 @@ int Being::searchSlotValue(const std::vector<int> &restrict slotRemap,
return CompoundSprite::getNumberOfLayers() - 1;
}
-void Being::searchSlotValueItr(std::vector<int>::iterator &restrict it,
+void Being::searchSlotValueItr(STD_VECTOR<int>::iterator &restrict it,
int &restrict idx,
- std::vector<int> &restrict slotRemap,
+ STD_VECTOR<int> &restrict slotRemap,
const int val)
{
// logger->log("searching %d", val);
it = slotRemap.begin();
- const std::vector<int>::iterator it_end = slotRemap.end();
+ const STD_VECTOR<int>::iterator it_end = slotRemap.end();
idx = 0;
while (it != it_end)
{
@@ -4974,7 +4974,7 @@ void Being::removeItemParticles(const int id) restrict2
ParticleInfo *restrict const pi = (*it).second;
if (pi != nullptr)
{
- FOR_EACH (std::vector<Particle*>::const_iterator, itp, pi->particles)
+ FOR_EACH (STD_VECTOR<Particle*>::const_iterator, itp, pi->particles)
mChildParticleEffects.removeLocally(*itp);
delete pi;
}
@@ -4988,13 +4988,13 @@ void Being::recreateItemParticles() restrict2
ParticleInfo *restrict const pi = (*it).second;
if ((pi != nullptr) && !pi->files.empty())
{
- FOR_EACH (std::vector<Particle*>::const_iterator,
+ FOR_EACH (STD_VECTOR<Particle*>::const_iterator,
itp, pi->particles)
{
mChildParticleEffects.removeLocally(*itp);
}
- FOR_EACH (std::vector<std::string>::const_iterator, str, pi->files)
+ FOR_EACH (STD_VECTOR<std::string>::const_iterator, str, pi->files)
{
Particle *const p = particleEngine->addEffect(
*str, 0, 0);
diff --git a/src/being/being.h b/src/being/being.h
index 8bba7548d..6f9e753d9 100644
--- a/src/being/being.h
+++ b/src/being/being.h
@@ -1184,7 +1184,7 @@ class Being notfinal : public ActorSprite,
typedef std::map<int, ParticleInfo*> SpriteParticleInfo;
typedef SpriteParticleInfo::iterator SpriteParticleInfoIter;
- std::vector<BeingSlot> mSlots;
+ STD_VECTOR<BeingSlot> mSlots;
SpriteParticleInfo mSpriteParticles;
// Character guild information
@@ -1226,12 +1226,12 @@ class Being notfinal : public ActorSprite,
template<signed char pos, signed char neg>
int getOffset() const restrict2 A_WARN_UNUSED;
- int searchSlotValue(const std::vector<int> &restrict slotRemap,
+ int searchSlotValue(const STD_VECTOR<int> &restrict slotRemap,
const int val) const restrict2 A_WARN_UNUSED;
- static void searchSlotValueItr(std::vector<int>::iterator &restrict it,
+ static void searchSlotValueItr(STD_VECTOR<int>::iterator &restrict it,
int &idx,
- std::vector<int> &restrict slotRemap,
+ STD_VECTOR<int> &restrict slotRemap,
const int val);
void addSpiritBalls(const unsigned int balls,
@@ -1286,9 +1286,9 @@ class Being notfinal : public ActorSprite,
Particle *restrict mSpecialParticle;
ChatObject *restrict mChat;
HorseInfo *restrict mHorseInfo;
- std::vector<AnimatedSprite*> mDownHorseSprites;
- std::vector<AnimatedSprite*> mUpHorseSprites;
- std::vector<Particle*> mSpiritParticles;
+ STD_VECTOR<AnimatedSprite*> mDownHorseSprites;
+ STD_VECTOR<AnimatedSprite*> mUpHorseSprites;
+ STD_VECTOR<Particle*> mSpiritParticles;
int mX; // position in tiles
int mY; // position in tiles
diff --git a/src/being/compoundsprite.h b/src/being/compoundsprite.h
index 92474025a..bf6679963 100644
--- a/src/being/compoundsprite.h
+++ b/src/being/compoundsprite.h
@@ -36,8 +36,8 @@ class Image;
class CompoundSprite notfinal : public Sprite
{
public:
- typedef std::vector<Sprite*>::iterator SpriteIterator;
- typedef std::vector<Sprite*>::const_iterator SpriteConstIterator;
+ typedef STD_VECTOR<Sprite*>::iterator SpriteIterator;
+ typedef STD_VECTOR<Sprite*>::const_iterator SpriteConstIterator;
CompoundSprite();
@@ -107,7 +107,7 @@ class CompoundSprite notfinal : public Sprite
int getStartTime() const noexcept2 A_WARN_UNUSED
{ return mStartTime; }
- std::vector<Sprite*> mSprites;
+ STD_VECTOR<Sprite*> mSprites;
protected:
void redraw() const;
diff --git a/src/being/localplayer.h b/src/being/localplayer.h
index 76a8c913b..fced5be26 100644
--- a/src/being/localplayer.h
+++ b/src/being/localplayer.h
@@ -471,7 +471,7 @@ class LocalPlayer final : public Being,
int mLastAction; // Time stamp of the last action, -1 if none.
- std::vector<int32_t> mStatusEffectIcons;
+ STD_VECTOR<int32_t> mStatusEffectIcons;
typedef std::pair<std::string, UserColorIdT> MessagePair;
/** Queued messages*/
diff --git a/src/being/playerrelations.cpp b/src/being/playerrelations.cpp
index 8911ef3e7..8da47f36b 100644
--- a/src/being/playerrelations.cpp
+++ b/src/being/playerrelations.cpp
@@ -181,7 +181,7 @@ static const char *const DEFAULT_PERMISSIONS = "default-player-permissions";
int PlayerRelationsManager::getPlayerIgnoreStrategyIndex(
const std::string &name)
{
- const std::vector<PlayerIgnoreStrategy *> *const strategies
+ const STD_VECTOR<PlayerIgnoreStrategy *> *const strategies
= getPlayerIgnoreStrategies();
if (strategies == nullptr)
@@ -576,7 +576,7 @@ class PIS_emote final : public PlayerIgnoreStrategy
uint8_t mEmotion;
};
-std::vector<PlayerIgnoreStrategy *> *
+STD_VECTOR<PlayerIgnoreStrategy *> *
PlayerRelationsManager::getPlayerIgnoreStrategies()
{
if (mIgnoreStrategies.empty())
diff --git a/src/being/playerrelations.h b/src/being/playerrelations.h
index c9e5952f2..d1db4a003 100644
--- a/src/being/playerrelations.h
+++ b/src/being/playerrelations.h
@@ -118,7 +118,7 @@ class PlayerRelationsManager final
* The player ignore strategies are allocated statically and must
* not be deleted.
*/
- std::vector<PlayerIgnoreStrategy *> *getPlayerIgnoreStrategies()
+ STD_VECTOR<PlayerIgnoreStrategy *> *getPlayerIgnoreStrategies()
A_WARN_UNUSED;
/**
@@ -202,7 +202,7 @@ class PlayerRelationsManager final
PlayerIgnoreStrategy *mIgnoreStrategy;
std::map<std::string, PlayerRelation *> mRelations;
std::list<PlayerRelationsListener *> mListeners;
- std::vector<PlayerIgnoreStrategy *> mIgnoreStrategies;
+ STD_VECTOR<PlayerIgnoreStrategy *> mIgnoreStrategies;
};