#include "fallback.hpp" #include "boost/lexical_cast.hpp" namespace MWWorld { Fallback::Fallback(const std::map& fallback):mFallbackMap(fallback) {} std::string Fallback::getFallbackString(const std::string& fall) const { std::map::const_iterator it; if((it = mFallbackMap.find(fall)) == mFallbackMap.end()) { return ""; } return it->second; } float Fallback::getFallbackFloat(const std::string& fall) const { std::string fallback=getFallbackString(fall); if(fallback.empty()) return 0; else return boost::lexical_cast(fallback); } bool Fallback::getFallbackBool(const std::string& fall) const { std::string fallback=getFallbackString(fall); if(fallback.empty()) return false; else return boost::lexical_cast(fallback); } Ogre::ColourValue Fallback::getFallbackColour(const std::string& fall) const { std::string sum=getFallbackString(fall); if(sum.empty()) return Ogre::ColourValue(0,0,0); else { std::string ret[3]; unsigned int j=0; for(unsigned int i=0;i(ret[0])/255.f,boost::lexical_cast(ret[1])/255.f,boost::lexical_cast(ret[2])/255.f); } } }