This style guide is different from other you may see, because the focus is centered on readability for print and the web. We created this style guide to keep the code in our tutorials consistent. This style guide is based on the Java Style Guide. Being that the two languages have a lot in common, it makes sense to leverage the work being performed by the Android team.
Our overarching goals are conciseness, readability and simplicity. Also, this guide is written to keep Unity in mind.
You should also check out out Java, Swift, and Objective-C style guides too.
This style-guide is somewhat of a mash-up between the existing C# language style guides, and a tutorial-readability focused Swift style-guide. guide). This style guide was created from the Java style guide and then altered from various C# / Unity style guides across the web.
- Nomenclature
- Declarations
- Spacing
- Brace Style
- Switch Statements
- Language
- Copyright Statement
- Smiley Face
- Credit
On the whole, naming should follow C# standards.
Namespaces are all UpperCamelCase, multiple words concatenated together, without hypens or underscores:
BAD:
com.raywenderlich.fpsgame.hud.healthbar
GOOD:
RayWenderlich.FPSGame.HUD.Healthbar
Written in UpperCamelCase. For example RadialSlider
.
Public methods are written in UpperCamelCase. For example DoSomething
.
Private methods are written in lowerCamelCase. For example: doSometing
Written in lowerCamelCase.
Static fields should be written in UpperCamelCase:
public static int TheAnswer = 42;
All non-static fields are written lowerCamelCase. Per Unity convention, this includes public fields as well.
For example:
public class MyClass {
public int publicField;
int packagePrivate;
private int myPrivate;
protected int myProtected;
}
Private non-static fields should start with a lowercase letter.
BAD:
private int _myPrivateVariable
GOOD:
private int myPrivateVariable
Parameters are written in lowerCamelCase.
BAD:
void doSomething(Vector3 Location)
GOOD:
void doSomething(Vector3 location)
Single character values to be avoided except for temporary looping variables.
Delegats are written in UpperCamelCase.
When declaring delegates, DO add the suffix EventHandler to names of delegates that are used in events.
BAD:
public delegate void Click()
GOOD:
public delegate void ClickEventHandler()
DO add the suffix Callback to names of delegates other than those used as event handlers.
BAD:
public delegate void Render()
GOOD:
public delegate void RenderCallback()
Prefix event methods with the prefix On.
BAD:
public static event CloseCallback Close;
GOOD:
public static event CloseCallback OnClose;
In code, acronyms should be treated as words. For example:
BAD:
XMLHTTPRequest
String URL
findPostByID
GOOD:
XmlHttpRequest
String url
findPostById
Access level modifiers should be explicitly defined for classes, methods and member variables.
Prefer single declaration per line.
BAD:
string username, twitterHandle;
GOOD:
string username;
string twitterHandle;
Exactly one class per source file, although inner classes are encouraged where scoping appropriate.
All interfaces should be prefaced with the letter I.
BAD:
RadialSlider
GOOD:
IRadialSlider
Spacing is especially important in raywenderlich.com code, as code needs to be easily readable as part of the tutorial.
Indentation is using spaces - never tabs.
Indentation for blocks uses 2 spaces (not the default 4):
BAD:
for (int i = 0; i < 10; i++) {
Debug.Log("index=" + i);
}
GOOD:
for (int i = 0; i < 10; i++) {
Debug.Log("index=" + i);
}
Indentation for line wraps should use 4 spaces (not the default 8):
BAD:
CoolUiWidget widget =
someIncrediblyLongExpression(that, reallyWouldNotFit, on, aSingle, line);
GOOD:
CoolUiWidget widget =
someIncrediblyLongExpression(that, reallyWouldNotFit, on, aSingle, line);
Lines should be no longer than 100 characters long.
There should be exactly one blank line between methods to aid in visual clarity and organization. Whitespace within methods should separate functionality, but having too many sections in a method often means you should refactor into several methods.
Only trailing closing-braces are awarded their own line. All others appear the same line as preceding code:
BAD:
class MyClass
{
void DoSomething()
{
if (someTest)
{
// ...
}
else
{
// ...
}
}
}
GOOD:
class MyClass {
void DoSomething() {
if (someTest) {
// ...
} else {
// ...
}
}
}
Conditional statements are always required to be enclosed with braces, irrespective of the number of lines required.
BAD:
if (someTest)
doSomething();
if (someTest) doSomethingElse();
GOOD:
if (someTest) {
doSomething();
}
if (someTest) { doSomethingElse(); }
Switch statements fall-through by default, but this can be unintuitive. Do not use fall-through behavior.
Alway include the default
case.
Use US English spelling.
BAD:
string colour = "red";
GOOD:
string color = "red";
The following copyright statement should be included at the top of every source file:
/*
* Copyright (c) 2015 Razeware LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
Smiley faces are a very prominent style feature of the raywenderlich.com site! It is very important to have the correct smile signifying the immense amount of happiness and excitement for the coding topic. The closing square bracket ] is used because it represents the largest smile able to be captured using ASCII art. A closing parenthesis ) creates a half-hearted smile, and thus is not preferred.
Bad:
:)
Good:
:]
This style guide is a collaborative effort from the most stylish raywenderlich.com team members:
- Darryl Bayliss
- Sam Davies
- Mic Pringle
- [Brian Moakley] (https://github.com/VegetarianZombie)
- Ray Wenderlich