summaryrefslogtreecommitdiff
path: root/src/statuseffect.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-07-28 20:06:51 +0300
committerAndrei Karas <akaras@inbox.ru>2014-07-28 20:06:51 +0300
commit3b8a3b84346700abffa52745245310bf3eae6b18 (patch)
treedfe8c94d73da7fc3a350017f1905f3e25b5ec5e0 /src/statuseffect.h
parent1c1860cf83ba5d504b69c0ebd737139c8ab1bd46 (diff)
downloadplus-3b8a3b84346700abffa52745245310bf3eae6b18.tar.gz
plus-3b8a3b84346700abffa52745245310bf3eae6b18.tar.bz2
plus-3b8a3b84346700abffa52745245310bf3eae6b18.tar.xz
plus-3b8a3b84346700abffa52745245310bf3eae6b18.zip
Fix formating in other files.
Diffstat (limited to 'src/statuseffect.h')
-rw-r--r--src/statuseffect.h177
1 files changed, 90 insertions, 87 deletions
diff --git a/src/statuseffect.h b/src/statuseffect.h
index e30d9d1bd..e867a9efa 100644
--- a/src/statuseffect.h
+++ b/src/statuseffect.h
@@ -32,95 +32,98 @@ class Particle;
class StatusEffect final
{
-public:
- StatusEffect();
-
- A_DELETE_COPY(StatusEffect)
-
- ~StatusEffect();
-
- /**
- * Plays the sound effect associated with this status effect, if possible.
- */
- void playSFX() const;
-
- /**
- * Delivers the chat message associated with this status effect, if
- * possible.
- */
- void deliverMessage() const;
-
- /**
- * Creates the particle effect associated with this status effect, if
- * possible.
- */
- Particle *getParticle() const A_WARN_UNUSED;
-
- /**
- * Retrieves the status icon for this effect, if applicable
- */
- AnimatedSprite *getIcon() const A_WARN_UNUSED;
-
- /**
- * Retrieves an action to perform, or SpriteAction::INVALID
- */
- std::string getAction() const A_WARN_UNUSED;
-
- /**
- * Determines whether the particle effect should be restarted when the
- * being changes maps
- */
- bool particleEffectIsPersistent() const A_WARN_UNUSED
- { return mPersistentParticleEffect; }
-
- bool isPoison() const A_WARN_UNUSED
- { return mIsPoison; }
-
- /**
- * Retrieves a status effect.
- *
- * \param index Index of the status effect.
- * \param enabling Whether to retrieve the activating effect (true) or
- * the deactivating effect (false).
- */
- static StatusEffect *getStatusEffect(const int index,
- const bool enabling) A_WARN_UNUSED;
-
- /**
- * Retrieves a stun effect.
- *
- * \param index Index of the stun effect.
- * \param enabling Whether to retrieve the activating effect (true) or
- * the deactivating effect (false).
- */
- static StatusEffect *getStunEffect(const int index,
- const bool enabling) A_WARN_UNUSED;
-
- /**
- * Maps a block effect index to its corresponding effect index. Block
- * effect indices are used for opt2/opt3/status.option blocks; their
- * mapping to regular effect indices is handled in the config file.
- *
- * Returns -1 on failure.
- */
- static int blockEffectIndexToEffectIndex(const int blocKIndex)
+ public:
+ StatusEffect();
+
+ A_DELETE_COPY(StatusEffect)
+
+ ~StatusEffect();
+
+ /**
+ * Plays the sound effect associated with this status effect, if
+ * possible.
+ */
+ void playSFX() const;
+
+ /**
+ * Delivers the chat message associated with this status effect, if
+ * possible.
+ */
+ void deliverMessage() const;
+
+ /**
+ * Creates the particle effect associated with this status effect, if
+ * possible.
+ */
+ Particle *getParticle() const A_WARN_UNUSED;
+
+ /**
+ * Retrieves the status icon for this effect, if applicable
+ */
+ AnimatedSprite *getIcon() const A_WARN_UNUSED;
+
+ /**
+ * Retrieves an action to perform, or SpriteAction::INVALID
+ */
+ std::string getAction() const A_WARN_UNUSED;
+
+ /**
+ * Determines whether the particle effect should be restarted when the
+ * being changes maps
+ */
+ bool particleEffectIsPersistent() const A_WARN_UNUSED
+ { return mPersistentParticleEffect; }
+
+ bool isPoison() const A_WARN_UNUSED
+ { return mIsPoison; }
+
+ /**
+ * Retrieves a status effect.
+ *
+ * \param index Index of the status effect.
+ * \param enabling Whether to retrieve the activating effect (true) or
+ * the deactivating effect (false).
+ */
+ static StatusEffect *getStatusEffect(const int index,
+ const bool enabling)
A_WARN_UNUSED;
- static void load();
-
- static void loadXmlFile(const std::string &fileName);
-
- static void unload();
-private:
- static bool mLoaded;
-
- std::string mMessage;
- std::string mSFXEffect;
- std::string mParticleEffect;
- std::string mIcon;
- std::string mAction;
- bool mPersistentParticleEffect;
- bool mIsPoison;
+ /**
+ * Retrieves a stun effect.
+ *
+ * \param index Index of the stun effect.
+ * \param enabling Whether to retrieve the activating effect (true) or
+ * the deactivating effect (false).
+ */
+ static StatusEffect *getStunEffect(const int index,
+ const bool enabling) A_WARN_UNUSED;
+
+ /**
+ * Maps a block effect index to its corresponding effect index. Block
+ * effect indices are used for opt2/opt3/status.option blocks; their
+ * mapping to regular effect indices is handled in the config file.
+ *
+ * Returns -1 on failure.
+ */
+ static int blockEffectIndexToEffectIndex(const int blocKIndex)
+ A_WARN_UNUSED;
+
+ static void load();
+
+ static void loadXmlFile(const std::string &fileName);
+
+ static void unload();
+
+ private:
+ static bool mLoaded;
+
+ std::string mMessage;
+ std::string mSFXEffect;
+ std::string mParticleEffect;
+ std::string mIcon;
+ std::string mAction;
+ bool mPersistentParticleEffect;
+ bool mIsPoison;
};
#endif // STATUSEFFECT_H