aseprite/docs/CODING_STYLE.md

154 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

2018-06-13 13:22:46 -07:00
# Code Style Guidelines
## Basics
Basic statements:
```c++
2021-05-04 14:32:38 -07:00
void global_function(int arg1,
const int arg2, // You can use "const" preferably
const int arg3, ...)
{
int value;
const int constValue = 0;
2021-05-04 14:32:38 -07:00
// We prefer to use "var = (condition ? ...: ...)" instead of
// "var = condition ? ...: ...;" to make clear about the
// ternary operator limits.
int conditionalValue1 = (condition ? 1: 2);
int conditionalValue2 = (condition ? longVarName:
otherLongVarName);
// If a condition will return, we prefer the "return"
// statement in its own line to avoid missing the "return"
// keyword when we read code.
if (condition)
return;
// You can use braces {} if the condition has multiple lines
// or the if-body has multiple lines.
if (condition1 ||
condition2) {
return;
}
if (condition) {
...
2021-05-04 14:32:38 -07:00
...
...
}
2021-05-04 14:32:38 -07:00
// We prefer to avoid whitespaces between "var=initial_value"
// or "var<limit" to see better the "; " separation. Anyway it
// can depend on the specific condition/case, etc.
for (int i=0; i<10; ++i) {
...
2021-05-04 14:32:38 -07:00
// Same case as in if-return.
if (condition)
break;
...
}
while (condition) {
...
}
do {
...
2021-01-14 07:45:32 -08:00
} while (condition);
switch (condition) {
case 1:
...
break;
case 2: {
int varInsideCase;
...
break;
}
default:
break;
}
}
```
## Namespaces
Define namespaces with lower case:
```c++
namespace app {
...
} // namespace app
```
## Classes
Define classes with `CapitalCase` and member functions with `camelCase`:
```c++
class ClassName {
public:
2021-05-04 14:32:38 -07:00
ClassName()
: m_memberVarA(1),
m_memberVarB(2),
m_memberVarC(3) {
...
}
virtual ~ClassName();
2021-05-04 14:32:38 -07:00
// We can return in the same line for getter-like functions
int memberVar() const { return m_memberVar; }
void setMemberVar();
protected:
2021-05-04 14:32:38 -07:00
virtual void onEvent1() { } // Do nothing functions can be defined as "{ }"
virtual void onEvent2() = 0;
private:
2021-05-04 14:32:38 -07:00
int m_memberVarA;
int m_memberVarB;
int m_memberVarC;
int m_memberVarD = 4; // We can initialize variables here too
};
class Special : public ClassName {
public:
Special();
protected:
void onEvent2() override {
...
}
};
```
## Const
* [NL.26: Use conventional const notation](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#nl26-use-conventional-const-notation)
## C++17
We are using C++17 standard. You can safely use:
* Use `nullptr` instead of `NULL` macro
* Use `auto` for complex types, iterators, or when the variable type
is obvious (e.g. `auto s = new Sprite;`)
* Use range-based for loops (`for (const auto& item : values) { ... }`)
* Use template alias (`template<typename T> alias = orig<T>;`)
* Use non-generic lambda functions
* Use `std::shared_ptr`, `std::unique_ptr`, or `base::Ref`
* Use `std::clamp`
* Use `std::optional`
* Use `std::optional::operator*` (because `std::optional::value` isn't
available on macOS 10.9, only since 10.13)
2020-04-24 08:07:52 -07:00
* Use `static constexpr T v = ...;`
* You can use `<atomic>`, `<thread>`, `<mutex>`, and `<condition_variable>`
* Prefer `using T = ...;` instead of `typedef ... T`
2022-06-29 16:14:03 -07:00
* Use `[[fallthrough]]` if needed
2020-04-24 08:07:52 -07:00
* We use gcc 9.2 or clang 9.0 on Linux, so check the features available in
https://en.cppreference.com/w/cpp/compiler_support