Skip to content

Commit

Permalink
Fix various variables passed by copy instead of const ref (#5610)
Browse files Browse the repository at this point in the history
Pointed by cppcheck
  • Loading branch information
nerzhul committed Apr 18, 2017
1 parent 5f2af7c commit cf37a55
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 29 deletions.
2 changes: 1 addition & 1 deletion src/activeobject.h
Expand Up @@ -43,7 +43,7 @@ enum ActiveObjectType {

struct ActiveObjectMessage
{
ActiveObjectMessage(u16 id_, bool reliable_=true, std::string data_=""):
ActiveObjectMessage(u16 id_, bool reliable_=true, const std::string &data_ = "") :
id(id_),
reliable(reliable_),
datastring(data_)
Expand Down
2 changes: 1 addition & 1 deletion src/client.cpp
Expand Up @@ -57,7 +57,7 @@ extern gui::IGUIEnvironment* guienv;
Client::Client(
IrrlichtDevice *device,
const char *playername,
std::string password,
const std::string &password,
MapDrawControl &control,
IWritableTextureSource *tsrc,
IWritableShaderSource *shsrc,
Expand Down
2 changes: 1 addition & 1 deletion src/client.h
Expand Up @@ -245,7 +245,7 @@ class Client : public con::PeerHandler, public InventoryManager, public IGameDef
Client(
IrrlichtDevice *device,
const char *playername,
std::string password,
const std::string &password,
MapDrawControl &control,
IWritableTextureSource *tsrc,
IWritableShaderSource *shsrc,
Expand Down
2 changes: 1 addition & 1 deletion src/content_cao.cpp
Expand Up @@ -1313,7 +1313,7 @@ void GenericCAO::updateTexturePos()
}
}

void GenericCAO::updateTextures(const std::string mod)
void GenericCAO::updateTextures(const std::string &mod)
{
ITextureSource *tsrc = m_client->tsrc();

Expand Down
2 changes: 1 addition & 1 deletion src/content_cao.h
Expand Up @@ -200,7 +200,7 @@ class GenericCAO : public ClientActiveObject

void updateTexturePos();

void updateTextures(const std::string mod);
void updateTextures(const std::string &mod);

void updateAnimation();

Expand Down
2 changes: 1 addition & 1 deletion src/filecache.h
Expand Up @@ -30,7 +30,7 @@ class FileCache
/*
'dir' is the file cache directory to use.
*/
FileCache(std::string dir) : m_dir(dir) {}
FileCache(const std::string &dir) : m_dir(dir) {}

bool update(const std::string &name, const std::string &data);
bool load(const std::string &name, std::ostream &os);
Expand Down
18 changes: 10 additions & 8 deletions src/game.cpp
Expand Up @@ -79,14 +79,15 @@ extern Profiler *g_profiler;
Text input system
*/

struct TextDestNodeMetadata : public TextDest {
struct TextDestNodeMetadata : public TextDest
{
TextDestNodeMetadata(v3s16 p, Client *client)
{
m_p = p;
m_client = client;
}
// This is deprecated I guess? -celeron55
void gotText(std::wstring text)
void gotText(const std::wstring &text)
{
std::string ntext = wide_to_utf8(text);
infostream << "Submitting 'text' field of node at (" << m_p.X << ","
Expand All @@ -104,13 +105,14 @@ struct TextDestNodeMetadata : public TextDest {
Client *m_client;
};

struct TextDestPlayerInventory : public TextDest {
struct TextDestPlayerInventory : public TextDest
{
TextDestPlayerInventory(Client *client)
{
m_client = client;
m_formname = "";
}
TextDestPlayerInventory(Client *client, std::string formname)
TextDestPlayerInventory(Client *client, const std::string &formname)
{
m_client = client;
m_formname = formname;
Expand All @@ -131,13 +133,13 @@ struct LocalFormspecHandler : public TextDest
m_formname = formname;
}

LocalFormspecHandler(std::string formname, Client *client):
LocalFormspecHandler(const std::string &formname, Client *client):
m_client(client)
{
m_formname = formname;
}

void gotText(std::wstring message)
void gotText(const std::wstring &message)
{
errorstream << "LocalFormspecHandler::gotText old style message received" << std::endl;
}
Expand Down Expand Up @@ -1190,7 +1192,7 @@ class Game {
u16 port,
const SubgameSpec &gamespec);
bool initSound();
bool createSingleplayerServer(const std::string map_dir,
bool createSingleplayerServer(const std::string &map_dir,
const SubgameSpec &gamespec, u16 port, std::string *address);

// Client creation
Expand Down Expand Up @@ -1780,7 +1782,7 @@ bool Game::initSound()
return true;
}

bool Game::createSingleplayerServer(const std::string map_dir,
bool Game::createSingleplayerServer(const std::string &map_dir,
const SubgameSpec &gamespec, u16 port, std::string *address)
{
showOverlayMessage(wgettext("Creating server..."), 0, 5);
Expand Down
7 changes: 4 additions & 3 deletions src/map.cpp
Expand Up @@ -1226,7 +1226,8 @@ bool Map::isBlockOccluded(MapBlock *block, v3s16 cam_pos_nodes) {
/*
ServerMap
*/
ServerMap::ServerMap(std::string savedir, IGameDef *gamedef, EmergeManager *emerge):
ServerMap::ServerMap(const std::string &savedir, IGameDef *gamedef,
EmergeManager *emerge):
Map(dout_server, gamedef),
settings_mgr(g_settings, savedir + DIR_DELIM + "map_meta.txt"),
m_emerge(emerge),
Expand Down Expand Up @@ -1936,7 +1937,7 @@ std::string ServerMap::getSectorDir(v2s16 pos, int layout)
}
}

v2s16 ServerMap::getSectorPos(std::string dirname)
v2s16 ServerMap::getSectorPos(const std::string &dirname)
{
unsigned int x = 0, y = 0;
int r;
Expand Down Expand Up @@ -1966,7 +1967,7 @@ v2s16 ServerMap::getSectorPos(std::string dirname)
return pos;
}

v3s16 ServerMap::getBlockPos(std::string sectordir, std::string blockfile)
v3s16 ServerMap::getBlockPos(const std::string &sectordir, const std::string &blockfile)
{
v2s16 p2d = getSectorPos(sectordir);

Expand Down
8 changes: 3 additions & 5 deletions src/map.h
Expand Up @@ -360,7 +360,7 @@ class ServerMap : public Map
/*
savedir: directory to which map data should be saved
*/
ServerMap(std::string savedir, IGameDef *gamedef, EmergeManager *emerge);
ServerMap(const std::string &savedir, IGameDef *gamedef, EmergeManager *emerge);
~ServerMap();

s32 mapType() const
Expand Down Expand Up @@ -422,16 +422,14 @@ class ServerMap : public Map
// returns something like "map/sectors/xxxxxxxx"
std::string getSectorDir(v2s16 pos, int layout = 2);
// dirname: final directory name
v2s16 getSectorPos(std::string dirname);
v3s16 getBlockPos(std::string sectordir, std::string blockfile);
v2s16 getSectorPos(const std::string &dirname);
v3s16 getBlockPos(const std::string &sectordir, const std::string &blockfile);
static std::string getBlockFilename(v3s16 p);

/*
Database functions
*/
static Database *createDatabase(const std::string &name, const std::string &savedir, Settings &conf);
// Verify we can read/write to the database
void verifyDatabase();

// Returns true if the database file does not exist
bool loadFromFolders();
Expand Down
2 changes: 1 addition & 1 deletion src/mods.cpp
Expand Up @@ -347,7 +347,7 @@ ClientModConfiguration::ClientModConfiguration(const std::string &path):
#endif

#if USE_CURL
Json::Value getModstoreUrl(std::string url)
Json::Value getModstoreUrl(const std::string &url)
{
std::vector<std::string> extra_headers;

Expand Down
5 changes: 3 additions & 2 deletions src/mods.h
Expand Up @@ -146,9 +146,10 @@ class ClientModConfiguration: public ModConfiguration
#endif

#if USE_CURL
Json::Value getModstoreUrl(std::string url);
Json::Value getModstoreUrl(const std::string &url);
#else
inline Json::Value getModstoreUrl(std::string url) {
inline Json::Value getModstoreUrl(const std::string &url)
{
return Json::Value();
}
#endif
Expand Down
4 changes: 2 additions & 2 deletions src/shader.cpp
Expand Up @@ -340,7 +340,7 @@ IWritableShaderSource* createShaderSource(IrrlichtDevice *device)
/*
Generate shader given the shader name.
*/
ShaderInfo generate_shader(std::string name,
ShaderInfo generate_shader(const std::string &name,
u8 material_type, u8 drawtype,
IrrlichtDevice *device, std::vector<ShaderCallback *> &callbacks,
const std::vector<IShaderConstantSetterFactory*> &setter_factories,
Expand Down Expand Up @@ -525,7 +525,7 @@ void ShaderSource::rebuildShaders()
}


ShaderInfo generate_shader(std::string name, u8 material_type, u8 drawtype,
ShaderInfo generate_shader(const std::string &name, u8 material_type, u8 drawtype,
IrrlichtDevice *device, std::vector<ShaderCallback *> &callbacks,
const std::vector<IShaderConstantSetterFactory*> &setter_factories,
SourceShaderCache *sourcecache)
Expand Down
2 changes: 1 addition & 1 deletion src/treegen.cpp
Expand Up @@ -113,7 +113,7 @@ void make_tree(MMVManip &vmanip, v3s16 p0,

// L-System tree LUA spawner
treegen::error spawn_ltree(ServerEnvironment *env, v3s16 p0,
INodeDefManager *ndef, TreeDef tree_definition)
INodeDefManager *ndef, const TreeDef &tree_definition)
{
ServerMap *map = &env->getServerMap();
std::map<v3s16, MapBlock*> modified_blocks;
Expand Down
2 changes: 1 addition & 1 deletion src/treegen.h
Expand Up @@ -73,7 +73,7 @@ namespace treegen {
TreeDef tree_definition);
// Spawn L-systems tree from LUA
treegen::error spawn_ltree (ServerEnvironment *env, v3s16 p0, INodeDefManager *ndef,
TreeDef tree_definition);
const TreeDef &tree_definition);

// L-System tree gen helper functions
void tree_node_placement(MMVManip &vmanip, v3f p0,
Expand Down

0 comments on commit cf37a55

Please sign in to comment.