Some CBot code optimizations
parent
0391aaf773
commit
477dc0cae7
|
@ -192,7 +192,7 @@ bool CBotClass::AddItem(CBotVar* pVar)
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string CBotClass::GetName()
|
||||
const std::string& CBotClass::GetName()
|
||||
{
|
||||
return m_name;
|
||||
}
|
||||
|
|
|
@ -173,7 +173,7 @@ public:
|
|||
* \brief GetName Gives the name of the class.
|
||||
* \return
|
||||
*/
|
||||
std::string GetName();
|
||||
const std::string& GetName();
|
||||
|
||||
/*!
|
||||
* \brief GetParent Gives the parent class (or nullptr).
|
||||
|
|
|
@ -996,7 +996,7 @@ bool CBotFunction::CheckParam(CBotDefParam* pParam)
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string CBotFunction::GetName()
|
||||
const std::string& CBotFunction::GetName()
|
||||
{
|
||||
return m_token.GetString();
|
||||
}
|
||||
|
|
|
@ -207,7 +207,7 @@ public:
|
|||
* \brief GetName
|
||||
* \return
|
||||
*/
|
||||
std::string GetName();
|
||||
const std::string& GetName();
|
||||
|
||||
/*!
|
||||
* \brief GetParams
|
||||
|
|
|
@ -21,13 +21,22 @@
|
|||
|
||||
#include <cstdarg>
|
||||
#include <cassert>
|
||||
#include <boost/bimap.hpp>
|
||||
|
||||
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
|
||||
//! 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_ELSE, "else"},
|
||||
{ID_WHILE, "while"},
|
||||
|
@ -115,7 +124,7 @@ static const std::map<TokenId, const std::string> KEYWORDS = {
|
|||
{ID_ASSMODULO, "%="},
|
||||
{TX_UNDEF, "undefined"},
|
||||
{TX_NAN, "not a number"}
|
||||
};
|
||||
});
|
||||
|
||||
namespace
|
||||
{
|
||||
|
@ -123,9 +132,10 @@ static const std::string emptyString = "";
|
|||
}
|
||||
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
|
||||
{
|
||||
|
@ -210,7 +220,7 @@ long CBotToken::GetKeywordId()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string CBotToken::GetString()
|
||||
const std::string& CBotToken::GetString()
|
||||
{
|
||||
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 sep2[] = " \r\n\t"; // only separators
|
||||
static char sep3[] = ",:()[]{}-+*/=;<>!~^|&%.?"; // operational separators
|
||||
|
@ -438,9 +449,9 @@ std::unique_ptr<CBotToken> CBotToken::CompileTokens(const std::string& program)
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CBotToken::GetKeyWord(const std::string& w)
|
||||
{
|
||||
for (const auto& it : KEYWORDS)
|
||||
{
|
||||
if (it.second == w) return it.first;
|
||||
auto it = KEYWORDS.right.find(w);
|
||||
if (it != KEYWORDS.right.end()) {
|
||||
return it->second;
|
||||
}
|
||||
|
||||
return -1;
|
||||
|
|
|
@ -120,7 +120,7 @@ public:
|
|||
* \brief Return the token string
|
||||
* \return The string associated with this token
|
||||
*/
|
||||
std::string GetString();
|
||||
const std::string& GetString();
|
||||
|
||||
/**
|
||||
* \brief Set the token string
|
||||
|
|
|
@ -378,7 +378,7 @@ void CBotVar::SetInit(CBotVar::InitType initType)
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string CBotVar::GetName()
|
||||
const std::string& CBotVar::GetName()
|
||||
{
|
||||
return m_token->GetString();
|
||||
}
|
||||
|
|
|
@ -170,7 +170,7 @@ public:
|
|||
* \brief Returns the name of the variable
|
||||
* \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
|
||||
|
|
Loading…
Reference in New Issue