Citra is a brand new project, so we have a great opportunity to keep things clean and well organized early on. As such, coding style is very important when making commits. They aren't very strict rules since we want to be flexible and we understand that under certain circumstances some of them can be counterproductive. Just try to follow as many of them as possible:
### General Rules
* A lot of code was taken from other projects (e.g. Dolphin, PPSSPP, Gekko, SkyEye). In general, when editing other people's code, follow the style of the module you're in (or better yet, fix the style if it drastically differs from our guide).
* Line width is typically 100 characters, but this isn't strictly enforced. Please do not use 80-characters.
* Don't ever introduce new external dependencies into Core
* Don't use any platform specific code in Core
* Use namespaces often
### Naming Rules
* Functions
* CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore)
* Variables
* lower_case_underscored
* Prefix "g_" if global
* Prefix "_" if internal
* Prefix "__" if ultra internal
* Classes
* CamelCase, "_" may also be used for clarity (e.g. OGL_VideoInterface)
* Files/Folders
* lower_case_underscored
* Namespaces
* CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore)
### Indentation/Whitespace Style
Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead.
```cpp
namespaceExample{
// Namespace contents are not indented
// Declare globals at the top
intg_foo=0;
char*g_some_pointer;// Notice the position of the *
enumSomeEnum{
COLOR_RED,
COLOR_GREEN,
COLOR_BLUE
};
structPosition{
intx,y;
};
// Use "typename" rather than "class" here, just to be consistent
template
voidFooBar(){
intsome_array[]={
5,
25,
7,
42
};
if(note==the_space_after_the_if){
CallAfunction();
}else{
// Use a space after the // when commenting
}
// Comment directly above code when possible
if(some_condition)single_statement();
// Place a single space after the for loop semicolons
@@ -8,7 +8,7 @@ For development discussion, please join us @ #citra on [freenode](http://webchat
### Development
If you want to contribute please take a took at the [Coding Style](https://github.com/citra-emu/citra/wiki/Coding-Style), [Roadmap](https://github.com/citra-emu/citra/wiki/Roadmap) and [Developer Information](https://github.com/citra-emu/citra/wiki/Developer-Information) pages. You should as well contact any of the developers in the forum in order to know about the current state of the emulator.
If you want to contribute please take a took at the [Contributor's Guide](CONTRIBUTING.md), [Roadmap](https://github.com/citra-emu/citra/wiki/Roadmap) and [Developer Information](https://github.com/citra-emu/citra/wiki/Developer-Information) pages. You should as well contact any of the developers in the forum in order to know about the current state of the emulator.