-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathinit.py
321 lines (303 loc) · 10.7 KB
/
init.py
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
import sys
import os
from argparse import Namespace
import git
import manim as m
import numpy
import tempfile
import shutil
import stat
import re
from git.exc import GitCommandError, InvalidGitRepositoryError
from git.repo import Repo
from git_sim.git_sim_base_command import GitSimBaseCommand
from git_sim.settings import settings
class Init(GitSimBaseCommand):
def __init__(self):
super().__init__()
self.cmd += f"{type(self).__name__.lower()}"
def init_repo(self):
pass
def construct(self):
if not settings.stdout and not settings.output_only_path and not settings.quiet:
print(f"{settings.INFO_STRING} {self.cmd}")
self.show_intro()
self.add_details()
self.recenter_frame()
self.scale_frame()
self.fadeout()
self.show_outro()
def add_details(self):
self.camera.frame.scale_to_fit_width(18 * 1.1)
project_root = m.Rectangle(
height=9.0,
width=18.0,
color=self.fontColor,
)
cmd_text = m.Text(
self.cmd,
font=self.font,
font_size=36,
color=self.fontColor,
)
cmd_text.align_to(project_root, m.UP).shift(m.UP * 0.25 + cmd_text.height)
project_root_text = m.Text(
os.path.basename(os.getcwd()) + "/",
font=self.font,
font_size=20,
color=self.fontColor,
)
project_root_text.align_to(project_root, m.LEFT).align_to(
project_root, m.UP
).shift(m.RIGHT * 0.25).shift(m.DOWN * 0.25)
dot_git_text = m.Text(
".git/",
font=self.font,
font_size=20,
color=self.fontColor,
)
dot_git_text.align_to(project_root_text, m.UP).shift(m.DOWN).align_to(
project_root_text, m.LEFT
).shift(m.RIGHT * 0.5)
head_text = (
m.Text("HEAD", font=self.font, color=self.fontColor, font_size=20)
.align_to(dot_git_text, m.UP)
.shift(m.DOWN)
.align_to(dot_git_text, m.LEFT)
.shift(m.RIGHT * 0.5)
)
down_shift = m.DOWN
config_text = (
m.Text("config", font=self.font, color=self.fontColor, font_size=20)
.align_to(head_text, m.UP)
.shift(down_shift)
.align_to(dot_git_text, m.LEFT)
.shift(m.RIGHT * 0.5)
)
description_text = (
m.Text("description", font=self.font, color=self.fontColor, font_size=20)
.align_to(config_text, m.UP)
.shift(down_shift)
.align_to(dot_git_text, m.LEFT)
.shift(m.RIGHT * 0.5)
)
hooks_text = (
m.Text("hooks/", font=self.font, color=self.fontColor, font_size=20)
.align_to(description_text, m.UP)
.shift(down_shift)
.align_to(dot_git_text, m.LEFT)
.shift(m.RIGHT * 0.5)
)
info_text = (
m.Text("info/", font=self.font, color=self.fontColor, font_size=20)
.align_to(hooks_text, m.UP)
.shift(down_shift)
.align_to(dot_git_text, m.LEFT)
.shift(m.RIGHT * 0.5)
)
objects_text = (
m.Text("objects/", font=self.font, color=self.fontColor, font_size=20)
.align_to(info_text, m.UP)
.shift(down_shift)
.align_to(dot_git_text, m.LEFT)
.shift(m.RIGHT * 0.5)
)
refs_text = (
m.Text("refs/", font=self.font, color=self.fontColor, font_size=20)
.align_to(objects_text, m.UP)
.shift(down_shift)
.align_to(dot_git_text, m.LEFT)
.shift(m.RIGHT * 0.5)
)
dot_git_text_arrow = m.Arrow(
start=dot_git_text.get_right(),
end=dot_git_text.get_right() + m.RIGHT * 3.5,
color=self.fontColor,
)
head_text_arrow = m.Arrow(
start=head_text.get_right(),
end=(dot_git_text_arrow.end[0], head_text.get_right()[1], 0),
color=self.fontColor,
)
config_text_arrow = m.Arrow(
start=config_text.get_right(),
end=(dot_git_text_arrow.end[0], config_text.get_right()[1], 0),
color=self.fontColor,
)
description_text_arrow = m.Arrow(
start=description_text.get_right(),
end=(dot_git_text_arrow.end[0], description_text.get_right()[1], 0),
color=self.fontColor,
)
hooks_text_arrow = m.Arrow(
start=hooks_text.get_right(),
end=(dot_git_text_arrow.end[0], hooks_text.get_right()[1], 0),
color=self.fontColor,
)
info_text_arrow = m.Arrow(
start=info_text.get_right(),
end=(dot_git_text_arrow.end[0], info_text.get_right()[1], 0),
color=self.fontColor,
)
objects_text_arrow = m.Arrow(
start=objects_text.get_right(),
end=(dot_git_text_arrow.end[0], objects_text.get_right()[1], 0),
color=self.fontColor,
)
refs_text_arrow = m.Arrow(
start=refs_text.get_right(),
end=(dot_git_text_arrow.end[0], refs_text.get_right()[1], 0),
color=self.fontColor,
)
dot_git_desc = m.Text(
"The hidden .git/ folder is created after running the 'git init' command.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(dot_git_text_arrow, m.RIGHT)
head_desc = m.Text(
"A label (ref) that points to the currently checked-out commit.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(head_text_arrow, m.RIGHT)
config_desc = m.Text(
"A file containing Git configuration settings for the local repo.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(config_text_arrow, m.RIGHT)
description_desc = m.Text(
"A file containing an optional description for your Git repo.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(description_text_arrow, m.RIGHT)
hooks_desc = m.Text(
"A folder containing 'hooks' which allow triggering custom\nscripts after running Git actions.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(hooks_text_arrow, m.RIGHT)
info_desc = m.Text(
"A folder containing the 'exclude' file, tells Git to ignore\nspecific file patterns on your system.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(info_text_arrow, m.RIGHT)
objects_desc = m.Text(
"A folder containing Git's object database, which stores the\nobjects representing code files, changes and commits tracked by Git.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(objects_text_arrow, m.RIGHT)
refs_desc = m.Text(
"A folder holding the refs (labels) Git uses to represent branches & tags.",
font=self.font,
font_size=18,
color=self.fontColor,
).next_to(refs_text_arrow, m.RIGHT)
if settings.animate:
if settings.show_command_as_title:
self.play(m.AddTextLetterByLetter(cmd_text))
self.play(m.Create(project_root))
self.play(m.AddTextLetterByLetter(project_root_text))
self.play(
m.AddTextLetterByLetter(dot_git_text),
m.Create(dot_git_text_arrow),
m.AddTextLetterByLetter(dot_git_desc),
)
self.play(
m.AddTextLetterByLetter(head_text),
m.Create(head_text_arrow),
m.AddTextLetterByLetter(head_desc),
)
self.play(
m.AddTextLetterByLetter(config_text),
m.Create(config_text_arrow),
m.AddTextLetterByLetter(config_desc),
)
self.play(
m.AddTextLetterByLetter(description_text),
m.Create(description_text_arrow),
m.AddTextLetterByLetter(description_desc),
)
self.play(
m.AddTextLetterByLetter(hooks_text),
m.Create(hooks_text_arrow),
m.AddTextLetterByLetter(hooks_desc),
)
self.play(
m.AddTextLetterByLetter(info_text),
m.Create(info_text_arrow),
m.AddTextLetterByLetter(info_desc),
)
self.play(
m.AddTextLetterByLetter(objects_text),
m.Create(objects_text_arrow),
m.AddTextLetterByLetter(objects_desc),
)
self.play(
m.AddTextLetterByLetter(refs_text),
m.Create(refs_text_arrow),
m.AddTextLetterByLetter(refs_desc),
)
else:
if settings.show_command_as_title:
self.add(cmd_text)
self.add(project_root)
self.add(project_root_text)
self.add(dot_git_text)
self.add(
head_text,
config_text,
description_text,
hooks_text,
info_text,
objects_text,
refs_text,
)
self.add(
dot_git_text_arrow,
head_text_arrow,
config_text_arrow,
description_text_arrow,
hooks_text_arrow,
info_text_arrow,
objects_text_arrow,
refs_text_arrow,
)
self.add(
dot_git_desc,
head_desc,
config_desc,
description_desc,
hooks_desc,
info_desc,
objects_desc,
refs_desc,
)
if settings.show_command_as_title:
self.toFadeOut.add(cmd_text)
self.toFadeOut.add(project_root)
self.toFadeOut.add(project_root_text)
self.toFadeOut.add(
head_text,
config_text,
description_text,
hooks_text,
info_text,
objects_text,
refs_text,
)
self.toFadeOut.add(
dot_git_text_arrow,
head_text_arrow,
config_text_arrow,
description_text_arrow,
hooks_text_arrow,
info_text_arrow,
objects_text_arrow,
refs_text_arrow,
)
self.toFadeOut.add(dot_git_desc, head_desc)