Some CBot code optimizations

1008-fix
krzys-h 2018-04-06 15:02:06 +02:00
parent 0391aaf773
commit 477dc0cae7
8 changed files with 27 additions and 16 deletions

View File

@ -192,7 +192,7 @@ bool CBotClass::AddItem(CBotVar* pVar)
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
std::string CBotClass::GetName() const std::string& CBotClass::GetName()
{ {
return m_name; return m_name;
} }

View File

@ -173,7 +173,7 @@ public:
* \brief GetName Gives the name of the class. * \brief GetName Gives the name of the class.
* \return * \return
*/ */
std::string GetName(); const std::string& GetName();
/*! /*!
* \brief GetParent Gives the parent class (or nullptr). * \brief GetParent Gives the parent class (or nullptr).

View File

@ -996,7 +996,7 @@ bool CBotFunction::CheckParam(CBotDefParam* pParam)
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
std::string CBotFunction::GetName() const std::string& CBotFunction::GetName()
{ {
return m_token.GetString(); return m_token.GetString();
} }

View File

@ -207,7 +207,7 @@ public:
* \brief GetName * \brief GetName
* \return * \return
*/ */
std::string GetName(); const std::string& GetName();
/*! /*!
* \brief GetParams * \brief GetParams

View File

@ -21,13 +21,22 @@
#include <cstdarg> #include <cstdarg>
#include <cassert> #include <cassert>
#include <boost/bimap.hpp>
namespace CBot namespace CBot
{ {
namespace {
template <typename L, typename R>
boost::bimap<L, R> makeBimap(std::initializer_list<typename boost::bimap<L, R>::value_type> list)
{
return boost::bimap<L, R>(list.begin(), list.end());
}
}
//! \brief Keeps the string corresponding to keyword ID //! \brief Keeps the string corresponding to keyword ID
//! Map is filled with id-string pars that are needed for CBot language parsing //! Map is filled with id-string pars that are needed for CBot language parsing
static const std::map<TokenId, const std::string> KEYWORDS = { static const boost::bimap<TokenId, std::string> KEYWORDS = makeBimap<TokenId, std::string>({
{ID_IF, "if"}, {ID_IF, "if"},
{ID_ELSE, "else"}, {ID_ELSE, "else"},
{ID_WHILE, "while"}, {ID_WHILE, "while"},
@ -115,7 +124,7 @@ static const std::map<TokenId, const std::string> KEYWORDS = {
{ID_ASSMODULO, "%="}, {ID_ASSMODULO, "%="},
{TX_UNDEF, "undefined"}, {TX_UNDEF, "undefined"},
{TX_NAN, "not a number"} {TX_NAN, "not a number"}
}; });
namespace namespace
{ {
@ -123,9 +132,10 @@ static const std::string emptyString = "";
} }
const std::string& LoadString(TokenId id) const std::string& LoadString(TokenId id)
{ {
if (KEYWORDS.find(id) != KEYWORDS.end()) auto it = KEYWORDS.left.find(id);
if (it != KEYWORDS.left.end())
{ {
return KEYWORDS.at(id); return it->second;
} }
else else
{ {
@ -210,7 +220,7 @@ long CBotToken::GetKeywordId()
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
std::string CBotToken::GetString() const std::string& CBotToken::GetString()
{ {
return m_text; return m_text;
} }
@ -242,6 +252,7 @@ void CBotToken::SetPos(int start, int end)
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// TODO: CharInList could probably be optimized to conditions like (*c >= '0' && *c <= '9') to gain some performance
static char sep1[] = " \r\n\t,:()[]{}-+*/=;><!~^|&%.\"\'?"; static char sep1[] = " \r\n\t,:()[]{}-+*/=;><!~^|&%.\"\'?";
static char sep2[] = " \r\n\t"; // only separators static char sep2[] = " \r\n\t"; // only separators
static char sep3[] = ",:()[]{}-+*/=;<>!~^|&%.?"; // operational separators static char sep3[] = ",:()[]{}-+*/=;<>!~^|&%.?"; // operational separators
@ -438,10 +449,10 @@ std::unique_ptr<CBotToken> CBotToken::CompileTokens(const std::string& program)
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
int CBotToken::GetKeyWord(const std::string& w) int CBotToken::GetKeyWord(const std::string& w)
{ {
for (const auto& it : KEYWORDS) auto it = KEYWORDS.right.find(w);
{ if (it != KEYWORDS.right.end()) {
if (it.second == w) return it.first; return it->second;
} }
return -1; return -1;
} }

View File

@ -120,7 +120,7 @@ public:
* \brief Return the token string * \brief Return the token string
* \return The string associated with this token * \return The string associated with this token
*/ */
std::string GetString(); const std::string& GetString();
/** /**
* \brief Set the token string * \brief Set the token string

View File

@ -378,7 +378,7 @@ void CBotVar::SetInit(CBotVar::InitType initType)
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
std::string CBotVar::GetName() const std::string& CBotVar::GetName()
{ {
return m_token->GetString(); return m_token->GetString();
} }

View File

@ -170,7 +170,7 @@ public:
* \brief Returns the name of the variable * \brief Returns the name of the variable
* \return The name of the variable, empty string if unknown * \return The name of the variable, empty string if unknown
*/ */
std::string GetName(); const std::string& GetName();
/** /**
* \brief SetName Changes the name of the variable * \brief SetName Changes the name of the variable