Difference between revisions of "Code style guidelines"

From Minetest Developer Wiki
Jump to navigation Jump to search
(→‎Spaces: Define indentation when breaking conditionals)
(Use source blocks)
Line 6: Line 6:
 
In case your function parameters don't fit within the defined line length use following style.
 
In case your function parameters don't fit within the defined line length use following style.
 
Indention for follow up lines is EXACTLY two tabs.
 
Indention for follow up lines is EXACTLY two tabs.
void some_function_name(type1 param1, type2 param2, type3 param3
+
<source lang="c">
        type4 param4, type5 param5, type6 param6, type7 param7,
+
void some_function_name(type1 param1, type2 param2, type3 param3
        type8 param8)
+
type4 param4, type5 param5, type6 param6, type7 param7,
{
+
type8 param8)
...
+
{
}
+
...
 +
}
 +
</source>
  
 
=== Spaces ===
 
=== Spaces ===
Line 18: Line 20:
 
* Try to stay under 6 levels of indentation.
 
* Try to stay under 6 levels of indentation.
 
* Do add spaces between operators so they line up when appropriate (don't go overboard). For example:
 
* Do add spaces between operators so they line up when appropriate (don't go overboard). For example:
np_terrain_base  = settings->getNoiseParams("mgv6_np_terrain_base");
+
<source lang="c">
np_terrain_higher = settings->getNoiseParams("mgv6_np_terrain_higher");
+
np_terrain_base  = settings->getNoiseParams("mgv6_np_terrain_base");
np_steepness      = settings->getNoiseParams("mgv6_np_steepness");
+
np_terrain_higher = settings->getNoiseParams("mgv6_np_terrain_higher");
np_height_select  = settings->getNoiseParams("mgv6_np_height_select");
+
np_steepness      = settings->getNoiseParams("mgv6_np_steepness");
...
+
np_height_select  = settings->getNoiseParams("mgv6_np_height_select");
bool success =
+
...
np_terrain_base  && np_terrain_higher && np_steepness &&
+
bool success =
np_height_select && np_trees          && np_mud      &&
+
np_terrain_base  && np_terrain_higher && np_steepness &&
np_beach        && np_biome          && np_cave;
+
np_height_select && np_trees          && np_mud      &&
 +
np_beach        && np_biome          && np_cave;
 +
</source>
 
The above code looks really nice.
 
The above code looks really nice.
 
* Separate different parts of functions with newlines for readability.
 
* Separate different parts of functions with newlines for readability.
Line 32: Line 36:
 
* Use a space after <code>if</code>, <code>else</code>, <code>for</code>, <code>do</code>, <code>while</code>, <code>switch</code>, <code>case</code>, <code>try</code>, <code>catch</code>, etc.
 
* Use a space after <code>if</code>, <code>else</code>, <code>for</code>, <code>do</code>, <code>while</code>, <code>switch</code>, <code>case</code>, <code>try</code>, <code>catch</code>, etc.
 
* When breaking conditionals indent following lines of the conditional with two tabs and the statement body with one tab.  For example:
 
* When breaking conditionals indent following lines of the conditional with two tabs and the statement body with one tab.  For example:
for (std::vector<std::string>::iterator it = strings.begin();
+
<source lang="c">
                it != strings.end();
+
for (std::vector<std::string>::iterator it = strings.begin();
                ++it) {
+
it != strings.end();
        *it = it->substr(1, 1);
+
++it) {
}
+
*it = it->substr(1, 1);
 +
}
 +
</source>
  
 
=== Do not be too C++y ===
 
=== Do not be too C++y ===
Line 56: Line 62:
 
* Doxygen comments are acceptable, but PLEASE put them in the header file.
 
* Doxygen comments are acceptable, but PLEASE put them in the header file.
 
* Don't make uninformative comments like this:
 
* Don't make uninformative comments like this:
// Draw "Loading" screen
+
<source lang="c">
draw_load_screen(L"Loading...", driver, font);
+
// Draw "Loading" screen
 +
draw_load_screen(L"Loading...", driver, font);
 +
</source>
 
* Add comments to explain a non-trivial but important detail about the code, or explain behavior that is not obvious.
 
* Add comments to explain a non-trivial but important detail about the code, or explain behavior that is not obvious.
  

Revision as of 21:45, 23 July 2014


The coding style is based on the Linux Kernel code style. Much of the existing code doesn't follow the current code style guidelines, do not try to replicate that. Use your best judgement for C++-specific syntax.

Function declarations

In case your function parameters don't fit within the defined line length use following style. Indention for follow up lines is EXACTLY two tabs.

void some_function_name(type1 param1, type2 param2, type3 param3
	type4 param4, type5 param5, type6 param6, type7 param7,
	type8 param8)
{
	...
}

Spaces

  • Do not use spaces to indent.
  • Do not use spaces to indent.
  • Try to stay under 6 levels of indentation.
  • Do add spaces between operators so they line up when appropriate (don't go overboard). For example:
np_terrain_base   = settings->getNoiseParams("mgv6_np_terrain_base");
np_terrain_higher = settings->getNoiseParams("mgv6_np_terrain_higher");
np_steepness      = settings->getNoiseParams("mgv6_np_steepness");
np_height_select  = settings->getNoiseParams("mgv6_np_height_select");
...
bool success =
	np_terrain_base  && np_terrain_higher && np_steepness &&
	np_height_select && np_trees          && np_mud       &&
	np_beach         && np_biome          && np_cave;

The above code looks really nice.

  • Separate different parts of functions with newlines for readability.
  • Separate functions by two newlines (not necessary, but encouraged).
  • Use a space after if, else, for, do, while, switch, case, try, catch, etc.
  • When breaking conditionals indent following lines of the conditional with two tabs and the statement body with one tab. For example:
for (std::vector<std::string>::iterator it = strings.begin();
		it != strings.end();
		++it) {
	*it = it->substr(1, 1);
}

Do not be too C++y

  • Don't use references when they're not necessary. They are rather inflexible and can be misleading.
  • Don't use initializer lists unless absolutely necessary (initializing an object inside a class, or initializing a reference).
  • Avoid operator overloading like the plague.
  • Don't use iterators when unnecessary.
  • Avoid templates unless they are very convenient.
  • Usage of macros is not discouraged, just don't overdo it like X.org.

Classes

  • Don't put actual code in header files, unless it's a 3-liner or an inline function.
  • Class definitions should go in header files.
  • Substantial (over 4 lines) methods are defined outside of the class definition.
  • Class names are PascalCase, method names are camelCase.
  • Functions not part of any class should use lowercase_underscore_style().

Comments

  • Doxygen comments are acceptable, but PLEASE put them in the header file.
  • Don't make uninformative comments like this:
// Draw "Loading" screen
draw_load_screen(L"Loading...", driver, font);
  • Add comments to explain a non-trivial but important detail about the code, or explain behavior that is not obvious.

Use STL, avoid Irrlicht containers, and no, Boost will not even be considered, so forget it

Don't let things get too large

  • Try to keep lines under 80 characters. It's okay if it goes over by a few, but 90 character lines or larger are definitely unacceptable.
  • Functions should not have over 200 lines of code - if you are concerned with having to pass too many parameters to child functions, make whatever it is into a class.
  • Don't let files get too large (over 1500 lines of code).
  • Currently existing huge files (game.cpp, server.cpp, etc.) are in the slow process of being cleaned up.

Miscellaneous

  • Do not use "or", use "||". Code that uses "or" instead of "||" will face immediate rejection.
  • Set pointer values to NULL, not 0. Contrary to what some people may believe, NULL is a part of the official C++ standard.
  • Use of Hungarian notation is very limited, to g_ for globals (rare in the first place) and m_ for members. The latter is discouraged for newer code (since one can simply notice there is no variable by that name declared in that method's scope), but needed when adding a member to older code for consistency.
  • Don't use distracting and unnecessary amounts of object orientated abstraction. See Terasology and a certain enterprisey Java coder's conception of perlin noise as examples of what *not* to do.