Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Modernize various files (src/k*, src/l*)
* range-based for loops
* code style
* C++ headers instead of C headers
* Default operators
  • Loading branch information
nerzhul committed Aug 18, 2017
1 parent 1d086ae commit 951f120
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 32 deletions.
24 changes: 13 additions & 11 deletions src/keycode.cpp
Expand Up @@ -246,19 +246,19 @@ static const struct table_key table[] = {

struct table_key lookup_keyname(const char *name)
{
for (u16 i = 0; i < ARRLEN(table); i++) {
if (strcmp(table[i].Name, name) == 0)
return table[i];
for (const auto &table_key : table) {
if (strcmp(table_key.Name, name) == 0)
return table_key;
}

throw UnknownKeycode(name);
}

struct table_key lookup_keykey(irr::EKEY_CODE key)
{
for (u16 i = 0; i < ARRLEN(table); i++) {
if (table[i].Key == key)
return table[i];
for (const auto &table_key : table) {
if (table_key.Key == key)
return table_key;
}

std::ostringstream os;
Expand All @@ -268,9 +268,9 @@ struct table_key lookup_keykey(irr::EKEY_CODE key)

struct table_key lookup_keychar(wchar_t Char)
{
for (u16 i = 0; i < ARRLEN(table); i++) {
if (table[i].Char == Char)
return table[i];
for (const auto &table_key : table) {
if (table_key.Char == Char)
return table_key;
}

std::ostringstream os;
Expand All @@ -285,7 +285,9 @@ KeyPress::KeyPress(const char *name)
Char = L'\0';
m_name = "";
return;
} else if (strlen(name) <= 4) {
}

if (strlen(name) <= 4) {
// Lookup by resulting character
int chars_read = mbtowc(&Char, name, 1);
FATAL_ERROR_IF(chars_read != 1, "Unexpected multibyte character");
Expand Down Expand Up @@ -339,7 +341,7 @@ const char *KeyPress::sym() const

const char *KeyPress::name() const
{
if (m_name == "")
if (m_name.empty())
return "";
const char *ret;
if (valid_kcode(Key))
Expand Down
3 changes: 2 additions & 1 deletion src/keycode.h
Expand Up @@ -30,7 +30,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
class KeyPress
{
public:
KeyPress() {}
KeyPress() = default;

KeyPress(const char *name);

KeyPress(const irr::SEvent::SKeyInput &in, bool prefer_character = false);
Expand Down
2 changes: 1 addition & 1 deletion src/light.cpp
Expand Up @@ -18,7 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
*/

#include "light.h"
#include <math.h>
#include <cmath>
#include "util/numeric.h"
#include "settings.h"

Expand Down
24 changes: 8 additions & 16 deletions src/localplayer.cpp
Expand Up @@ -38,13 +38,9 @@ LocalPlayer::LocalPlayer(Client *client, const char *name):
{
}

LocalPlayer::~LocalPlayer()
{
}

static aabb3f getNodeBoundingBox(const std::vector<aabb3f> &nodeboxes)
{
if (nodeboxes.size() == 0)
if (nodeboxes.empty())
return aabb3f(0, 0, 0, 0, 0, 0);

aabb3f b_max;
Expand Down Expand Up @@ -103,8 +99,8 @@ bool LocalPlayer::updateSneakNode(Map *map, const v3f &position,
m_sneak_ladder_detected = false;
f32 min_distance_f = 100000.0 * BS;

for (s16 d = 0; d < 9; d++) {
const v3s16 p = current_node + dir9_center[d];
for (const auto &d : dir9_center) {
const v3s16 p = current_node + d;
const v3f pf = intToFloat(p, BS);
const v2f diff(position.X - pf.X, position.Z - pf.Z);
f32 distance_f = diff.getLength();
Expand Down Expand Up @@ -389,9 +385,8 @@ void LocalPlayer::move(f32 dtime, Environment *env, f32 pos_max_d,

// Dont report if flying
if(collision_info && !(g_settings->getBool("free_move") && fly_allowed)) {
for(size_t i=0; i<result.collisions.size(); i++) {
const CollisionInfo &info = result.collisions[i];
collision_info->push_back(info);
for (const auto &colinfo : result.collisions) {
collision_info->push_back(colinfo);
}
}

Expand Down Expand Up @@ -938,7 +933,7 @@ void LocalPlayer::old_move(f32 dtime, Environment *env, f32 pos_max_d,

// The node to be sneaked on has to be walkable
node = map->getNodeNoEx(p, &is_valid_position);
if (!is_valid_position || nodemgr->get(node).walkable == false)
if (!is_valid_position || !nodemgr->get(node).walkable)
continue;
// And the node above it has to be nonwalkable
node = map->getNodeNoEx(p + v3s16(0, 1, 0), &is_valid_position);
Expand All @@ -965,9 +960,7 @@ void LocalPlayer::old_move(f32 dtime, Environment *env, f32 pos_max_d,
MapNode n = map->getNodeNoEx(m_sneak_node);
std::vector<aabb3f> nodeboxes;
n.getCollisionBoxes(nodemgr, &nodeboxes);
for (std::vector<aabb3f>::iterator it = nodeboxes.begin();
it != nodeboxes.end(); ++it) {
aabb3f box = *it;
for (const auto &box : nodeboxes) {
if (box.MaxEdge.Y > cb_max)
cb_max = box.MaxEdge.Y;
}
Expand All @@ -994,8 +987,7 @@ void LocalPlayer::old_move(f32 dtime, Environment *env, f32 pos_max_d,
*/
// Dont report if flying
if (collision_info && !(g_settings->getBool("free_move") && fly_allowed)) {
for (size_t i = 0; i < result.collisions.size(); i++) {
const CollisionInfo &info = result.collisions[i];
for (const auto &info : result.collisions) {
collision_info->push_back(info);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/localplayer.h
Expand Up @@ -43,7 +43,7 @@ class LocalPlayer : public Player
{
public:
LocalPlayer(Client *client, const char *name);
virtual ~LocalPlayer();
virtual ~LocalPlayer() = default;

ClientActiveObject *parent = nullptr;

Expand Down
2 changes: 0 additions & 2 deletions src/log.h
Expand Up @@ -205,9 +205,7 @@ extern std::ostream dstream;
#define dout_con (*dout_con_ptr)
#define derr_con (*derr_con_ptr)
#define dout_server (*dout_server_ptr)
#define derr_server (*derr_server_ptr)

#ifndef SERVER
#define dout_client (*dout_client_ptr)
#define derr_client (*derr_client_ptr)
#endif

0 comments on commit 951f120

Please sign in to comment.