blob: 21903a78a6f932a0f3ca847e14f77c02229c3a02 (
plain)
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
|
.PHONY: FORCE
# STEPS FOR BIG CLEANUP
#
# 1. Change TODO to your name (in capitals) for each file in the list below
# that is yours (or you are going to fix)
# 2. Update the name between parentheses below this list (see comment) to your
# name
# 3. Create a git commit at this point (ensure `git status` reports "working
# tree clean")
# 4. Run `make format` in the REPOSITORY ROOT DIRECTORY (NOT HERE), and start
# fixing reported errors or miscorrections manually until everything works
# again.
# 5. Once everything is working again, create another git commit, and create a
# pull request. Make sure to ask someone to review the code standards for
# each ENTIRE FILE in this pull request.
LOEK += crepe/Asset.cpp
LOEK += crepe/Asset.h
TODO += crepe/Collider.cpp
TODO += crepe/Collider.h
MAX += crepe/Component.cpp
MAX += crepe/Component.h
MAX += crepe/ComponentManager.cpp
MAX += crepe/ComponentManager.h
MAX += crepe/ComponentManager.hpp
MAX += crepe/api/Metadata.cpp
MAX += crepe/api/Metadata.h
JARO += crepe/Particle.cpp
JARO += crepe/Particle.h
NIELS += crepe/Position.h
NIELS += crepe/api/AssetManager.cpp
NIELS += crepe/api/AssetManager.h
NIELS += crepe/api/AssetManager.hpp
LOEK += crepe/api/AudioSource.cpp
LOEK += crepe/api/AudioSource.h
LOEK += crepe/api/BehaviorScript.cpp
LOEK += crepe/api/BehaviorScript.h
LOEK += crepe/api/BehaviorScript.hpp
TODO += crepe/api/CircleCollider.h
NIELS += crepe/api/Color.cpp
NIELS += crepe/api/Color.h
LOEK += crepe/api/Config.h
MAX += crepe/api/GameObject.cpp
MAX += crepe/api/GameObject.h
MAX += crepe/api/GameObject.hpp
JARO += crepe/api/ParticleEmitter.cpp
JARO += crepe/api/ParticleEmitter.h
TODO += crepe/api/Vector2.h
TODO += crepe/api/Vector2.cpp
JARO += crepe/api/Rigidbody.cpp
JARO += crepe/api/Rigidbody.h
LOEK += crepe/api/Script.cpp
LOEK += crepe/api/Script.h
LOEK += crepe/api/Script.hpp
NIELS += crepe/api/Sprite.cpp
NIELS += crepe/api/Sprite.h
NIELS += crepe/api/Texture.cpp
NIELS += crepe/api/Texture.h
MAX += crepe/api/Transform.cpp
MAX += crepe/api/Transform.h
NIELS += crepe/facade/SDLContext.cpp
NIELS += crepe/facade/SDLContext.h
LOEK += crepe/facade/Sound.cpp
LOEK += crepe/facade/Sound.h
LOEK += crepe/facade/SoundContext.cpp
LOEK += crepe/facade/SoundContext.h
TODO += crepe/system/CollisionSystem.cpp
TODO += crepe/system/CollisionSystem.h
JARO += crepe/system/ParticleSystem.cpp
JARO += crepe/system/ParticleSystem.h
JARO += crepe/system/PhysicsSystem.cpp
JARO += crepe/system/PhysicsSystem.h
NIELS += crepe/system/RenderSystem.cpp
NIELS += crepe/system/RenderSystem.h
LOEK += crepe/system/ScriptSystem.cpp
LOEK += crepe/system/ScriptSystem.h
LOEK += crepe/system/System.h
LOEK += crepe/util/LogColor.cpp
LOEK += crepe/util/LogColor.h
LOEK += crepe/util/fmt.cpp
LOEK += crepe/util/fmt.h
LOEK += crepe/util/log.cpp
LOEK += crepe/util/log.h
NIELS += example/asset_manager.cpp
LOEK += example/audio_internal.cpp
TODO += example/components_internal.cpp
MAX += example/ecs.cpp
LOEK += example/log.cpp
JARO += example/particles.cpp
JARO += example/physics.cpp
NIELS += example/rendering.cpp
LOEK += example/script.cpp
LOEK += test/audio.cpp
LOEK += test/dummy.cpp
JARO += test/PhysicsTest.cpp
JARO += test/ParticleTest.cpp
FMT := $(NIELS) #<<< CHANGE THIS TO YOUR NAME FOR STEP 2
format: FORCE
clang-tidy -p build/compile_commands.json --fix-errors $(FMT)
# FMT += $(shell git ls-files '*.c' '*.cpp' '*.h' '*.hpp')
# TODO: re-enable linter after all corrections
|