1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
|
This document contains
<details><summary>
examples
</summary>
that you can click on to open them.
</details>
# Git
- Please do the following *before* sending a pull request:
- Merge upstream code (if any) back into your own branch
- Run formatters/linters
- Push as often as possible
- Development is done on separate branches, these follow a pattern of
`name/feature` (i.e. `loek/dll-so-poc` or `jaro/class2`)
- The master branch is considered stable, and should always contain a
working/compiling version of the project
- TODO: tagging / versions
# Code style
- Formatting nitty-gritty is handled by clang-format/clang-tidy (run `make
format` in the root folder of this repository to format all sources files)
- <details><summary>
ASCII only
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
// crepe startup message
std::string message = "Hello, world!";
```
</td><td>
```cpp
// crêpe startup message
std::string message = "こんにちは世界";
```
</td></tr></table></details>
- <details><summary>
Class names are always singular
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {};
```
</td><td>
```cpp
class Cars {};
```
</td></tr></table></details>
- Source files (`.cpp`, `.hpp`) contain the following types of comments:
- What is the code supposed to do (optional)
- Implementation details (if applicable)
- Header files (`.h`) contain the following types of comments:
- [Usage documentation](#documentation) (required)
- Implementation details (if they affect the header)
- Design/data structure decisions (if applicable)
- <details><summary>
Comments are placed *above* the line(s) they are explaining
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
int add(int a, int b) {
// add numbers
int out = a + b;
return out;
}
```
</td><td>
```cpp
int add(int a, int b) {
int out = a + b; // add numbers
return out;
}
```
</td></tr></table></details>
- Header includes (at the top of files) are split into paragraphs separated by
a blank line. The order is:
1. system headers (using `<`brackets`>`)
2. relative headers NOT in the same folder as the current file
3. relative headers in the same folder as the current file
> [!NOTE]
> When using libraries of which the header include order is important, make
> sure to separate the include statements using a blank line (clang-format
> may sort include statements, but does not sort across empty lines).
<details><summary>Example</summary>
<table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
#include <SDL2/SDL.h>
#include <iostream>
#include "api/Sprite.h"
#include "util/log.h"
#include "SDLContext.h"
```
</td><td>
```cpp
#include <SDL2/SDL.h>
#include "SDLContext.h"
#include "util/log.h"
#include <iostream>
#include "api/Sprite.h"
```
</td></tr></table></details>
- <details><summary>
If there is one, the matching template header (<code>.hpp</code>) is included
at the bottom of the regular header (<code>.h</code>)
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
Foo.h:
```cpp
#pragma once
template <typename T>
void foo();
#include "Foo.hpp"
```
Foo.hpp:
```cpp
#pragma once
#include "Foo.h"
template <typename T>
void foo() {
// ...
}
```
</td><td>
Foo.h:
```cpp
#pragma once
template <typename T>
void foo();
```
Foo.hpp:
```cpp
#pragma once
#include "Foo.h"
template <typename T>
void foo() {
// ...
}
```
</td></tr></table></details>
- <details><summary>
<code>using namespace</code> may not be used in header files (.h, .hpp), only
in source files (.cpp).
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
example.h:
```cpp
namespace crepe {
void foo();
}
```
example.cpp:
```cpp
#include "example.h"
using namespace crepe;
void foo() {}
```
</td><td>
example.h:
```cpp
namespace crepe {
template <typename T>
T foo();
}
```
example.hpp:
```cpp
#include "example.h"
using namespace crepe;
template <typename T>
T foo();
```
</td></tr></table></details>
- <details><summary>
Getter and setter functions are appropriately prefixed with <code>get_</code>
and <code>set_</code>.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {
public:
int get_speed() const;
void set_speed(int speed);
private:
int speed;
};
```
</td><td>
```cpp
class Foo {
public:
int speed() const;
void set_speed(int speed);
private:
int speed;
};
```
</td></tr></table></details>
- <details><summary>
A singleton's instance is always accessed using a getter function that
instantiates its own class as a static variable within the getter function
scope, instead of storing the instance as a member variable directly.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {
Foo & get_instance() {
static Foo instance;
return instance;
}
};
```
</td><td>
```cpp
Foo Foo::instance {};
class Foo {
static Foo instance;
Foo & get_instance() { return Foo::instance; }
};
```
</td></tr></table></details>
- <details><summary>
Member variable default values should be directly defined in the class/struct
declaration instead of using the constructor.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {
int speed = 0;
};
```
</td><td>
```cpp
class Foo {
Foo() : speed(0) {}
int speed;
};
```
</td></tr></table></details>
- Use of the `auto` type is *not* allowed, with the following exceptions:
- <details><summary>
When naming the item type in a range-based for loop
</summary>
```cpp
for (auto & item : foo()) {
// ...
}
```
</details>
- <details><summary>
When calling template factory methods that explicitly name the return type
in the function call signature
</summary>
```cpp
auto ptr = make_unique<Foo>();
```
</details>
- <details><summary>
When fetching a singleton instance
</summary>
```cpp
auto & mgr = crepe::api::Config::get_instance();
```
</details>
- <details><summary>
Only use member initializer lists for non-trivial types.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {
public:
Foo() : bar("baz") {}
private:
std::string bar;
};
```
</td><td>
```cpp
class Foo {
public:
Foo() : bar(0) {}
private:
int bar;
};
```
</td></tr></table></details>
- <details><summary>
C++-style structs should define default values for all non-trivial fields.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
struct Foo {
int bar = 0;
std::string baz;
};
```
</td><td>
```cpp
struct Foo {
int bar;
std::string baz;
};
```
</td></tr></table></details>
- <details><summary>
Declare incomplete classes instead of including the relevant header where
possible (i.e. if you only need a reference or raw pointer).
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Bar;
class Foo {
Bar & bar;
};
```
</td><td>
```cpp
#include "Bar.h"
class Foo {
Bar & bar;
};
```
</td></tr></table></details>
- <details><summary>
Template functions are only <i>declared</i> in a <code>.h</code> header, and
<i>defined</i> in a matching <code>.hpp</code> header.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
add.h:
```cpp
template <typename T>
T add(T a, T b);
#include "add.hpp"
```
add.hpp:
```cpp
#include "add.h"
template <typename T>
T add(T a, T b) {
return a + b;
}
```
</td><td>
add.h:
```cpp
template <typename T>
T add(T a, T b) {
return a + b;
}
```
</td></tr></table></details>
- <details><summary>
Where possible, end (initializer) lists with a trailing comma (e.g. with
structs, enums)
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
enum Color {
Red,
Green,
Blue,
};
```
</td><td>
```cpp
enum Color {
Red,
Green,
Blue
};
```
</td></tr></table></details>
- <details><summary>
<code>#pragma</code> should be used instead of include guards
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
#pragma once
// ...
```
</td><td>
```cpp
#ifndef __INCLUDED_H
#define __INCLUDED_H
// ...
#endif
```
</td></tr></table></details>
- <details><summary>
Variables that are being moved always use the fully qualified
<code>std::move</code>
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
using namespace std;
string foo = "bar";
ref_fn(std::move(foo));
```
</td><td>
```cpp
using namespace std;
string foo = "bar";
ref_fn(move(foo));
```
</td></tr></table></details>
- <details><summary>
If possible, classes and structs are passed to functions by (const) reference
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
void foo(const Point & p);
```
</td><td>
```cpp
void foo(Point & p);
void bar(Point p);
```
</td></tr></table></details>
- <details><summary>
Follow the rule of five
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {
public:
Foo();
~Foo();
Foo(Foo &&) noexcept;
Foo & operator = (const Foo &);
Foo & operator = (Foo &&) noexcept;
};
```
</td><td>
```cpp
class Foo {
public:
Foo();
~Foo();
};
```
</td></tr></table></details>
- <details><summary>
Ensure const-correctness
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {
public:
int get_value() const;
void set_value(int new_value);
const std::string & get_name() const;
void set_name(const std::string & new_name);
private:
int value;
std::string name;
};
```
</td><td>
```cpp
class Foo {
public:
int get_value();
void set_value(int new_value);
std::string get_name();
void set_name(std::string new_name);
private:
int value;
std::string name;
};
```
</td></tr></table></details>
- <details><summary>
Files should be named after the class/struct/interface they implement
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
MyClass.h
MyClass.cpp
MyClass.hpp
```
</td><td>
```cpp
my_class.h
myClass.cpp
my-class.hpp
```
</td></tr></table></details>
- <details><summary>
Implementations are not allowed in header files, except if the implementation
- is `= default`
- is `= delete`
- is `{}` (empty)
- only returns a constant literal
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class Foo {
public:
int get_value() const { return 42; }
};
```
</td><td>
```cpp
class Foo {
public:
int calculate_value() const {
int result = 0;
// complex calculation
return result;
}
};
```
</td></tr></table></details>
- <details><summary>
Use angle brackets (<code><></code>) only for including system headers and
double quotes (<code>""</code>) for including other engine files.
> [!NOTE]
> Only files in the examples folder should include engine headers with angle
> brackets
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
#include <iostream>
#include "facade/Sound.h"
```
</td><td>
```cpp
#include <iostream>
#include <crepe/facade/Sound.h>
```
</td></tr></table></details>
- <details><summary>
Ensure exception safety by using RAII classes
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
auto foo = std::make_unique<Foo>();
```
</td><td>
```cpp
Foo* foo = new Foo();
// ...
delete foo;
```
</td></tr></table></details>
- <details><summary>
Do not use C-style memory management APIs (<code>malloc</code>,
<code>calloc</code>, <code>free</code>)
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
Foo * foo = new Foo();
delete foo;
```
</td><td>
```cpp
Foo * foo = (Foo *) malloc(sizeof(Foo));
free(foo);
```
</td></tr></table></details>
- <details><summary>
Prefix all class members with <code>this-></code>
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
void Foo::set_value(int value) {
this->value = value;
}
```
</td><td>
```cpp
void Foo::set_value(int new_value) {
value = new_value;
}
```
</td></tr></table></details>
- <details><summary>
Assigning booleans should be done with the
<code>true</code>/<code>false</code> literals instead of
<code>0</code>/<code>1</code>
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
bool foo = true;
bool bar = false;
```
</td><td>
```cpp
bool foo = 1;
bool bar = 0;
```
</td></tr></table></details>
- <details><summary>
The reason for <code>friend</code> relations are documented
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
//! ComponentManager calls the private constructor of this class
friend class ComponentManager;
```
</td><td>
```cpp
friend class ComponentManager;
```
</td></tr></table></details>
- <details><summary>
Do not <i>pick</i> fixed-width integer types (unless required)
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
unsigned long long foo();
```
</td><td>
```cpp
uint64_t foo();
```
</td></tr></table></details>
- <details><summary>
Utilize standard exceptions where appropriate (those found in <code><stdexcept></code>)
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
#include <stdexcept>
// ...
if (foo == nullptr) {
throw std::runtime_error("What is wrong");
}
```
</td><td>
```cpp
if (foo == nullptr) {
std::cout << "What is wrong" << std::endl;
exit(1);
}
```
</td></tr></table></details>
- <details><summary>
Mention the name of the class when throwing an exception
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
Foo::bar() {
if (...)
throw std::runtime_error("Foo: big error!");
}
```
</td><td>
```cpp
Foo::bar() {
if (...)
throw std::runtime_error("big error!");
}
```
</td></tr></table></details>
- <details><summary>
Constructors of classes derived from <code>Component</code> should be
protected and <code>ComponentManager</code> should be declared as a friend
class.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
class MyComponent : public Component {
protected:
MyComponent(...);
//! Only ComponentManager is allowed to create components
friend class ComponentManager;
};
```
</td><td>
```cpp
class MyComponent : public Component {
public:
MyComponent(...);
};
```
</td></tr></table></details>
- <details><summary>
C++ <code>std::format</code> should be used instead of C-style format specifiers
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
std::string message = std::format("Hello, {}", name);
dbg_logf("Here too: {}", 3);
throw std::runtime_error(std::format("Or here: {}", 5));
```
</td><td>
```cpp
char message[50];
sprintf(message, "Hello, %s", name);
```
</td></tr></table></details>
- <details><summary>
Argument names should be added in <code>.h</code> files (not only in
<code>.cpp</code> and <code>.hpp</code> files)
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
Foo.h:
```cpp
void foo(int bar);
```
Foo.cpp:
```cpp
void foo(int bar) {
// ...
}
```
</td><td>
Foo.h:
```cpp
void foo(int);
```
Foo.cpp:
```cpp
void foo(int bar) {
// ...
}
```
</td></tr></table></details>
## CMakeLists-specific
- Make sure list arguments (e.g. sources, libraries) given to commands (e.g.
`target_sources`, `target_link_libraries`) are on separate lines. This makes
resolving merge conflicts when multiple sources were added by different
people to the same CMakeLists.txt easier.
# Structure
- Files are placed in the appropriate directory:
|Path|Purpose|
|-|-|
|`crepe/`|Auxiliary, managers|
|`crepe/api/`|User-facing APIs|
|`crepe/util/`|Standalone utilities and helper functions|
|`crepe/system/`|(ECS) system classes|
|`crepe/facade/`|Library façades|
- Do not (indirectly) include private *dependency* headers in API header files,
as these are no longer accessible when the engine is installed
- All code is implemented under the `crepe` namespace.
- Header files declare either a single class or symbols within a single
namespace.
# Documentation
- All documentation is written in U.S. English
- <details><summary>
Doxygen commands are used with a backslash instead of an at-sign.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
/**
* \brief do something
*
* \param bar Magic number
*/
void foo(int bar);
```
</td><td>
```cpp
/**
* @brief do something
*
* @param bar Magic number
*/
void foo();
```
</td></tr></table></details>
- <details><summary>
The default constructor and destructor aren't required to have a
<code>\brief</code> description
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
Foo();
virtual ~Foo();
```
</td><td>
```cpp
//! Create instance of Foo
Foo();
//! Destroy instance of Foo
virtual ~Foo();
```
</td></tr></table></details>
- <details><summary>
Parameter direction shouldn't be specified using Doxygen
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
/**
* \param bar Reference to Bar
*/
void foo(const Bar & bar);
```
</td><td>
```cpp
/**
* \param[in] bar Reference to Bar
*/
void foo(const Bar & bar);
```
</td></tr></table></details>
- <details><summary>
Deleted functions shouldn't have Doxygen comments
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
// singleton
Foo(const Foo &) = delete;
Foo(Foo &&) = delete;
Foo & operator=(const Foo &) = delete;
Foo & operator=(Foo &&) = delete;
```
</td><td>
```cpp
//! Deleted copy constructor
Foo(const Foo &) = delete;
//! Deleted move constructor
Foo(Foo &&) = delete;
//! Deleted copy assignment operator
Foo & operator=(const Foo &) = delete;
//! Deleted move assignment operator
Foo & operator=(Foo &&) = delete;
```
</td></tr></table></details>
# Libraries
- External libraries should be included as Git submodules under the `lib/`
subdirectory
- When adding new submodules, please set the `shallow` option to `true` in the
[.gitmodules](./.gitmodules) file
|