Changed: Methods constification

This commit is contained in:
kervala 2012-12-08 11:27:18 +01:00
parent 2747936aa1
commit 6263d112d4
2 changed files with 16 additions and 16 deletions

View file

@ -117,7 +117,7 @@ CEntity::~CEntity(void)
} }
} }
void CEntity::loadAnimation(std::string &fileName) void CEntity::loadAnimation(const std::string &fileName)
{ {
uint id = _AnimationSet->addAnimation(fileName.c_str(),CFile::getFilenameWithoutExtension(fileName).c_str()); uint id = _AnimationSet->addAnimation(fileName.c_str(),CFile::getFilenameWithoutExtension(fileName).c_str());
_AnimationList.push_back(_AnimationSet->getAnimationName(id)); _AnimationList.push_back(_AnimationSet->getAnimationName(id));
@ -128,13 +128,13 @@ void CEntity::loadAnimation(std::string &fileName)
_PlayList->registerTransform(_Instance); _PlayList->registerTransform(_Instance);
} }
void CEntity::loadSWT(std::string &fileName) void CEntity::loadSWT(const std::string &fileName)
{ {
uint id = _AnimationSet->addSkeletonWeight(fileName.c_str(),CFile::getFilenameWithoutExtension(fileName).c_str()); uint id = _AnimationSet->addSkeletonWeight(fileName.c_str(),CFile::getFilenameWithoutExtension(fileName).c_str());
_SWTList.push_back(_AnimationSet->getSkeletonWeightName(id)); _SWTList.push_back(_AnimationSet->getSkeletonWeightName(id));
} }
void CEntity::addAnimToPlayList(std::string &name) void CEntity::addAnimToPlayList(const std::string &name)
{ {
_PlayListAnimation.push_back(name); _PlayListAnimation.push_back(name);
@ -176,7 +176,7 @@ void CEntity::reset()
_PlayList->resetAllChannels(); _PlayList->resetAllChannels();
} }
float CEntity::getPlayListLength() float CEntity::getPlayListLength() const
{ {
// Accumul all the time // Accumul all the time
float time = 0; float time = 0;
@ -185,7 +185,7 @@ float CEntity::getPlayListLength()
return time; return time;
} }
float CEntity::getAnimLength(std::string name) float CEntity::getAnimLength(const std::string &name) const
{ {
uint id = _AnimationSet->getAnimationIdByName(name.c_str()); uint id = _AnimationSet->getAnimationIdByName(name.c_str());
NL3D::UAnimation *anim = _AnimationSet->getAnimation(id); NL3D::UAnimation *anim = _AnimationSet->getAnimation(id);

View file

@ -109,14 +109,14 @@ public:
/// Loads a file animations /// Loads a file animations
/// @param fileName - name animation file /// @param fileName - name animation file
void loadAnimation(std::string &fileName); void loadAnimation(const std::string &fileName);
/// Loads a file skeleton weight /// Loads a file skeleton weight
void loadSWT(std::string &fileName); void loadSWT(const std::string &fileName);
/// Adds an animation to a playlist /// Adds an animation to a playlist
/// @param name - name loaded animations /// @param name - name loaded animations
void addAnimToPlayList(std::string &name); void addAnimToPlayList(const std::string &name);
/// Removes the animation from a playlist /// Removes the animation from a playlist
/// @param row - number of animations in the playlist /// @param row - number of animations in the playlist
@ -135,10 +135,10 @@ public:
/// Get the total time of animation playlist /// Get the total time of animation playlist
/// @return total time of animation /// @return total time of animation
float getPlayListLength(); float getPlayListLength() const;
/// get time length single animation /// get time length single animation
float getAnimLength(std::string name); float getAnimLength(const std::string &name) const;
/// Get slot infomation /// Get slot infomation
void setSlotInfo(uint num, CSlotInfo &slotInfo) void setSlotInfo(uint num, CSlotInfo &slotInfo)
@ -159,7 +159,7 @@ public:
} }
/// Get in place mode /// Get in place mode
bool getInPlace() bool getInPlace() const
{ {
return _inPlace; return _inPlace;
} }
@ -171,35 +171,35 @@ public:
} }
/// Get inc position /// Get inc position
bool getIncPos() bool getIncPos() const
{ {
return _incPos; return _incPos;
} }
/// Get information about the current status of playing a playlist /// Get information about the current status of playing a playlist
/// @return struct containing current information playback /// @return struct containing current information playback
SAnimationStatus getStatus() SAnimationStatus getStatus() const
{ {
return _AnimationStatus; return _AnimationStatus;
} }
/// Get name entity /// Get name entity
/// @return name entity /// @return name entity
std::string getName() std::string getName() const
{ {
return _Name; return _Name;
} }
/// Get file name shape /// Get file name shape
/// @return file name shape /// @return file name shape
std::string getFileNameShape() std::string getFileNameShape() const
{ {
return _FileNameShape; return _FileNameShape;
} }
/// Get file name skeleton /// Get file name skeleton
/// @return file name skeleton /// @return file name skeleton
std::string getFileNameSkeleton() std::string getFileNameSkeleton() const
{ {
return _FileNameSkeleton; return _FileNameSkeleton;
} }