-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole.py
725 lines (645 loc) · 33.7 KB
/
console.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
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
import os
from time import sleep
import sys
import json
from recurrent_classes import *
import requests
import platform
import shlex
import webbrowser
import tkinter as tk
import shutil
running = True
ini_file = "startup.acpl-ini"
try:
startup_file = open(ini_file, "r+", encoding="utf-8")
except FileNotFoundError:
print("Unable to load startup.acpl-ini !")
sys.exit()
startup = startup_file.readlines()
for lines in startup:
if lines.endswith("\n"):
lines = lines.replace("\n", "")
if lines.startswith("filename: "):
lines = lines.replace("filename: ", "")
if not lines.endswith(".acpl"):
lines += ".acpl"
final_filename = lines
if lines.startswith("version: "):
lines = lines.replace("version: ", "")
final_version = lines
if lines.startswith("current-version: "):
lines = lines.replace("current-version: ", "")
current_version = lines
if lines.startswith("debug-state: "):
lines = lines.replace("debug-state: ", "")
debug_state = lines
if lines.startswith("startup-check-update: "):
lines = lines.replace("startup-check-update: ", "")
check_update = lines
if lines.startswith("optimize-transpiled-file"):
lines = lines.replace("optimize-transpiled-file: ", "", 1).replace("\n", "")
optimize_transpiled_file = lines.lower() != "false"
if lines.startswith("lang: "):
lines = lines.replace("lang: ", "")
lines = lines.replace("\n", "")
language = lines
try:
with open("trad_" + language + ".json", "r", encoding="utf-8") as json_file:
texts = json.load(json_file)
json_file.close()
texts = Text(texts)
except NameError:
raise CriticError(texts.critic_errors["NameError_LanguageFile"])
if lines.startswith("console-reloaded:"):
lines = lines.replace("console-reloaded: ", "")
if lines.startswith("True"):
console_reloaded = True
print(f"{bcolors.OKGREEN}{texts.console['console-correctly-reloaded']}\n{bcolors.ENDC}")
else:
console_reloaded = False
replace_line(ini_file, 5, "console-reloaded: False\n")
if lines.startswith("startup-check-update"):
lines = lines.replace("startup-check-update: ", "", 1)
check_update = lines.lower() != "false"
startup_file.close()
force_reload = False
force_commands = None
print(bcolors.BOLD + texts.console['bootup-message'].format(final_version, current_version) + bcolors.ENDC)
startup_file.close()
if check_update == "True" and console_reloaded is False:
launch_py_file("updater_main")
while running:
output = None
if force_reload is True:
user_input = "reload"
elif force_commands is not None and isinstance(force_commands, list):
user_input = force_commands[0]
if len(force_commands) > 1:
force_commands.pop(0)
elif len(force_commands) == 1:
force_commands = 0
else:
user_input = input("\n>>> ")
debug("in", lineno(), 1, user_input)
if user_input != "redo":
og_user_input = user_input
if user_input == "redo":
user_input = last_user_input
if user_input.lower() == "end":
print(f"{bcolors.OKBLUE}{texts.console['process-ended']}{bcolors.ENDC}")
break
elif user_input.startswith("run"):
if user_input == "run":
user_input = open_file_dialog(extensions="acpl")
if user_input is not None:
replace_line('startup.acpl-ini', 0, 'filename: ' + user_input + "\n")
else:
print(bcolors.FAIL + texts.console["CannotRunFile"] + bcolors.ENDC)
continue
else:
user_input = user_input.replace("run ", "")
replace_line('startup.acpl-ini', 0, 'filename: ' + user_input + "\n")
if not user_input.endswith(".acpl"):
user_input += ".acpl"
print(f"{bcolors.OKBLUE}{texts.console['launch-code-file'].format(user_input)}{bcolors.ENDC}")
sleep(1.7)
try:
launch_py_file("main")
except SystemExit:
continue
elif user_input.startswith("rerun"):
print(bcolors.OKBLUE + texts.console["Rerun"] + bcolors.ENDC)
sleep(1.7)
try:
launch_py_file("main.py")
except SystemExit:
continue
elif user_input.startswith("version"):
output = f"{texts.console['last-stable-release']} : {final_version}\n{texts.console['current-dev-build']} : " + current_version
elif user_input.startswith("eval"):
output = "Feature not working at the moment."
"""user_input = user_input.replace("eval ", "")
old_run_file = final_filename
replace_line('startup.ini', 0, "filename: temp.acpl\n")
temp_file = open("temp.acpl", "w+", encoding="utf-8")
temp_file.write(user_input)
launch_py_file("main")
sleep(3)
replace_line('startup.ini', 0, "filename: "+old_run_file+"\n")
temp_file.close()
#os.remove("temp.acpl")"""
elif user_input.startswith("setting"):
window = tk.Tk()
window.geometry("500x300")
window.title("ACPL Settings")
window.iconbitmap("ACPL_Icon.ico")
def toggle_use_colors():
global use_colors
global grid_elements
global tk, window
use_colors = use_colors == False
grid_elements[2][1]["text"] = str(use_colors)
def toggle_open_compiled_file():
global open_compiled_file
global grid_elements
global tk, window
open_compiled_file = open_compiled_file == False
grid_elements[4][1]["text"] = str(open_compiled_file)
def toggle_leave_comments_at_compiling():
global leave_comments_at_compiling
global grid_elements
global tk, window
leave_comments_at_compiling = leave_comments_at_compiling == False
grid_elements[5][1]["text"] = str(leave_comments_at_compiling)
def toggle_startup_check_update():
global startup_check_update
global grid_elements
global tk, window
startup_check_update = startup_check_update == False
grid_elements[6][1]["text"] = str(startup_check_update)
def toggle_compile_ask_for_replace():
global compile_ask_for_replace
global grid_elements
global tk, window
compile_ask_for_replace = compile_ask_for_replace == False
grid_elements[8][1]["text"] = str(compile_ask_for_replace)
def toggle_optimize_transpiled_file():
global optimize_transpiled_file
global grid_elements
global tk, window
optimize_transpiled_file = optimize_transpiled_file == False
grid_elements[9][1]["text"] = str(optimize_transpiled_file)
def save_settings():
global grid_elements, language, debug_state, process_time_round_numbers, compiling_style
# Saving language
language = grid_elements[0][1].get()
if language not in ("az", "de", "en", "fr", "it", "nl", "tr"):
print(bcolors.FAIL + texts.console["settings"]["UnknownLanguage"] + bcolors.ENDC)
grid_elements[0][1].delete(0, tk.END)
grid_elements[0][1].insert(0, "en")
language = "en"
# Saving debug state
debug_state = grid_elements[1][1].get()
try:
if int(debug_state) < 0:
# Cannot set debug state under 0.
print(bcolors.FAIL + texts.console["settings"]["DebugState_Under0"] + bcolors.ENDC)
debug_state = 0
elif int(debug_state) > 3:
# Cannot set debug state over 3.
print(bcolors.FAIL + texts.console["settings"]["DebugState_Over3"] + bcolors.ENDC)
debug_state = 3
else:
debug_state = int(debug_state)
except ValueError:
# Debug state has to be an integer.
print(bcolors.FAIL + texts.console["settings"]["DebugState_NotInt"] + bcolors.ENDC)
debug_state = 0
grid_elements[1][1].delete(0, tk.END)
grid_elements[1][1].insert(0, str(debug_state))
# Saving process time round numbers
try:
process_time_round_numbers = int(grid_elements[3][1].get())
except ValueError:
# Process time round numbers has to be an integer.
print(bcolors.FAIL + texts.console["settings"]["ProcessTime_NotInt"] + bcolors.ENDC)
process_time_round_numbers = 6
grid_elements[3][1].delete(0, tk.END)
grid_elements[3][1].insert(0, str(process_time_round_numbers))
# Saving compiling style
compiling_style = grid_elements[7][1].get()
# Setting up all the elements for the grid
grid_elements = [[0, 0] for k in range(10)]
grid_elements[0][0] = tk.Label(window, text="Language : ")
grid_elements[0][1] = tk.Entry(window)
grid_elements[0][1].insert(tk.END, language)
grid_elements[1][0] = tk.Label(window, text="Debug state (int between 0 and 3) : ")
grid_elements[1][1] = tk.Entry(window)
grid_elements[1][1].insert(tk.END, str(debug_state))
grid_elements[2][0] = tk.Label(window, text="Use colors : ")
grid_elements[2][1] = tk.Button(window, text=str(use_colors), command=toggle_use_colors)
grid_elements[3][0] = tk.Label(window, text="Numbers after the dot in the process time (integer) : ")
grid_elements[3][1] = tk.Entry(window)
grid_elements[3][1].insert(tk.END, str(process_time_round_numbers))
grid_elements[4][0] = tk.Label(window, text="Open compiled file after compiling : ")
grid_elements[4][1] = tk.Button(window, text=str(open_compiled_file), command=toggle_open_compiled_file)
grid_elements[5][0] = tk.Label(window, text="Leave comments at compiling : ")
grid_elements[5][1] = tk.Button(window, text=str(leave_comments_at_compiling), command=toggle_leave_comments_at_compiling)
grid_elements[6][0] = tk.Label(window, text="Check updates at startup : ")
grid_elements[6][1] = tk.Button(window, text=str(startup_check_update), command=toggle_startup_check_update)
grid_elements[7][0] = tk.Label(window, text="Compiling style : ")
grid_elements[7][1] = tk.Entry(window)
grid_elements[7][1].insert(tk.END, str(compiling_style))
grid_elements[8][0] = tk.Label(window, text="Ask for replace before compiling : ")
grid_elements[8][1] = tk.Button(window, text=str(compile_ask_for_replace), command=toggle_compile_ask_for_replace)
grid_elements[9][0] = tk.Label(window, text="Optimize transpiled files (takes longer but\nruns faster and is clearer) : ")
grid_elements[9][1] = tk.Button(window, text=str(optimize_transpiled_file), command=toggle_optimize_transpiled_file)
grid_elements.append(tk.Button(window, text="SAVE", command=save_settings, bd=4, bg="gray1", fg="orange red"))
for i in range(len(grid_elements)-1):
grid_elements[i][0].grid(row=i, column=0)
grid_elements[i][1].grid(row=i, column=1)
grid_elements[10].grid(row=10, column=0, columnspan=2)
window.mainloop()
# Settings closed and saved.
print(bcolors.FAIL + texts.console["settings"]["ClosedAndSaved"] + bcolors.ENDC)
replace_line("startup.acpl-ini", 1, f"lang: {language}\n")
replace_line("startup.acpl-ini", 4, f"debug-state: {str(debug_state)}\n")
replace_line("startup.acpl-ini", 6, f"use-colors: {str(use_colors)}\n")
replace_line("startup.acpl-ini", 7, f"process-time-round-numbers: {str(process_time_round_numbers)}\n")
replace_line("startup.acpl-ini", 9, f"open-compiled-file: {str(open_compiled_file)}\n")
replace_line("startup.acpl-ini", 10, f"leave-comments-at-compiling: {str(leave_comments_at_compiling)}\n")
replace_line("startup.acpl-ini", 11, f"startup-check-update: {str(startup_check_update)}\n")
replace_line("startup.acpl-ini", 13, f"compile-ask-for-replace: {str(compile_ask_for_replace)}\n")
replace_line("startup.acpl-ini", 15, f"optimize-transpiled-file: {str(optimize_transpiled_file)}\n")
force_reload = True
# OLD modify-ini
"""
user_input = user_input.replace("modify-ini ", "")
user_input = user_input.split(" ")
if user_input[0] == "debug-state":
replace_line(ini_file, 4, "debug-state: " + user_input[1] + "\n")
output = texts.console_modify_ini["debug-state-modified"].format(user_input[1])
elif user_input[0] == "lang":
replace_line(ini_file, 1, "lang: " + user_input[1] + "\n")
output = texts.console_modify_ini["lang-modified"].format(user_input[1])
elif user_input[0] == "use-colors":
replace_line(ini_file, 6, "use-colors: " + user_input[1] + "\n")
output = texts.console_modify_ini["use-colors-modified"].format(user_input[1])
elif user_input[0] == "process-time-round-numbers":
replace_line(ini_file, 7, "process-time-round-numbers: " + user_input[1] + "\n")
output = "process-time-round-numbers modified with value {}.".format(user_input[1])
elif user_input[0] == "open-compiled-file":
replace_line(ini_file, 9, "open-compiled-file: " + str(user_input[1]) + "\n")
output = "open-compiled-file modified with value {}.".format(user_input[1])
elif user_input[0] == "leave-comments-at-compiling":
replace_line(ini_file, 10, "leave-comments-at-compiling: " + str(user_input[1]) + "\n")
output = "leave-comments-at-compiling modified with value {}.".format(user_input[1])
elif user_input[0] == "startup-check-update":
replace_line(ini_file, 11, "startup-check-update: " + str(user_input[1]) + "\n")
output = "startup-check-update modified with value {}.".format(user_input[1])
elif user_input[0] == "compiling-style":
replace_line(ini_file, 12, "compiling-style: " + str(user_input[1]) + "\n")
output = "compiling-style modified with value {}.".format(user_input[1])
elif user_input[0] == "compile-ask-for-replace":
replace_line(ini_file, 13, "compile-ask-for-replace: " + str(user_input[1]) + "\n")
output = "compile-ask-for-replace modified with value {}.".format(user_input[1])
elif user_input[0] == "help":
if user_input[1] == "debug-state":
print(texts.console_modify_ini['debug-state-help'].format(str(debug_state)))
elif user_input[1] == "lang":
print(texts.console_modify_ini['lang-help'].format(str(language)))
elif user_input[1] == "use-colors":
print(texts.console_modify_ini['use-colors-help'].format(str(bcolors.colors_used)))
elif user_input[1] == "process-time-round-numbers":
print(texts.console_modify_ini['process-time-round-numbers'].format(str(bcolors.colors_used)))
elif user_input[1] == "open-compiled-file":
print(texts.console_modify_ini['open-compiled-file'].format(str(bcolors.colors_used)))
elif user_input[1] == "leave-comments-at-compiling":
print(texts.console_modify_ini['leave-comments-at-compiling'].format(str(bcolors.colors_used)))
elif user_input[1] == "startup-check-update":
print(texts.console_modify_ini['startup-check-update'].format(str(bcolors.colors_used)))
elif user_input[1] == "compiling-style":
print("\"expanded\" or \"compacted\"")
else:
print(texts.console_modify_ini["else-help"])
else:
output = texts.console_modify_ini["unable-to-modify-option"]
"""
elif user_input.lower().startswith("doc"):
webbrowser.open("https://github.com/megat69/ACPL/blob/master/README.md")
elif user_input.lower() == "help":
print(texts.console_help["available-commands"] + " :")
print(f"\t- 'end' : {texts.console_help['end']}\n"
f"\t- 'run' : {texts.console_help['run']}\n"
f"\t- 'about' : {texts.console_help['about']}\n"
f"\t- 'version' : {texts.console_help['version']}\n"
f"\t- 'settings' : {texts.console_help['settings']}\n"
f"\t- 'update' : {texts.console_help['update']}\n"
f"\t- 'pyrun' : {texts.console_help['pyrun']}\n"
f"\t- 'compile' : {texts.console_help['compile']}\n"
f"\t- 'ini-content' : {texts.console_help['ini-content']}\n"
f"\t- 'open' : {texts.console_help['open']}\n"
f"\t- 'display' : {texts.console_help['display']}\n"
f"\t- 'change-line'/'modify-line' : {texts.console_help['change-line']}\n"
f"\t- 'redo' : {texts.console_help['redo']}\n"
f"\t- 'lib <install:delete:doc:update> <lib_name>' : {texts.console_help['lib']}\n"
f"\t- 'lib list <available|installed>' : Lists all installed libs or available libs, depending on which one you choose.\n"
f"\t- 'ls'/'dir' [dir_to_map='./'] [*extensions] : Returns a tree of the selected directory.\n")
elif user_input.lower() == "about":
about = open(f"about_{language}.txt", "r", encoding="iso8859_15")
for line in about.readlines():
print(line, end="")
about.close()
elif user_input.lower() == "restart" or user_input.lower() == "reload":
print(texts.console["reloading"])
replace_line(ini_file, 5, "console-reloaded: True\n")
sleep(2)
launch_py_file("console")
break
elif user_input.lower() == "update":
try:
os.system("python updater_main.py")
sys.exit()
except:
"""print(f"{bcolors.FAIL}Your system does not support the invocation of new Python processes.\n"
f"Please run the {bcolors.ITALICS}{bcolors.OKGREEN}updater_main.py{bcolors.ENDC}{bcolors.FAIL} "
f"script manually.{bcolors.ENDC}")"""
print(texts.console["update_ProcessInvocationNotSupported"].format(FAIL=bcolors.FAIL, ITALICS=bcolors.ITALICS, OKGREEN=bcolors.OKGREEN, ENDC=bcolors.ENDC))
sys.exit()
#print(f"{bcolors.FAIL}Update checking has been temporarily disabled.\nThanks for your understanding.{bcolors.ENDC}")
elif user_input.startswith("lib"):
user_input = user_input.replace("lib ", "")
if user_input.startswith("install"):
user_input = user_input.replace("install ", "")
url = "https://raw.githubusercontent.com/megat69/ACPL/master/acpl_libs/fx_" + user_input + ".py"
r = requests.get(url)
existing = r.status_code == 200
if not existing:
# Error : Lib does not exist !
print(texts.console["LibDoesNotExistError"])
continue
with open(f"acpl_libs/fx_{user_input}.py", "wb") as code:
code.write(r.content)
# Library {user_input} installed !
print(texts.console["LibInstalled"].format(user_input=user_input))
elif user_input.startswith("delete"):
user_input = user_input.replace("delete ", "", 1)
try:
os.remove(f"acpl_libs/fx_{user_input}.py")
# Deleted lib {user_input}.
print(texts.console["LibDeleted"].format(user_input=user_input))
except FileNotFoundError:
# Lib not installed, unable to uninstall.
print(texts.console["LibNotInstalled"])
elif user_input.startswith("doc"):
user_input = user_input.replace("documentation", "", 1)
user_input = user_input.replace("doc", "", 1)
user_input = remove_prefix(user_input, user_input.startswith(" "))
if not os.path.exists(f"acpl_libs/doc_{user_input}.md"):
url = "https://raw.githubusercontent.com/megat69/ACPL/master/acpl_libs/doc_" + user_input + ".md"
r = requests.get(url)
existing = r.status_code == 200
if not existing:
# Error : Lib does not exist !
print(texts.console["LibDoesNotExistError"])
continue
with open(f"acpl_libs/doc_{user_input}.md", "wb") as code:
code.write(r.content)
documentation = open(f"acpl_libs/doc_{user_input}.md")
documentation_content = md_format(documentation.readlines())
documentation.close()
print(documentation_content)
del documentation_content
elif user_input.startswith("list"):
user_input = user_input.replace("list ", "", 1)
if user_input.startswith("installed"):
# Getting all files in libs dir
libs = os.listdir("acpl_libs")
# Removing junk from this list (documentation files)
i = 0
index_to_pop = 0
while libs[i].startswith("doc"):
index_to_pop += 1
i += 1
del i
libs = libs[index_to_pop:]
# Removing '__pycache__' from this list
libs.pop(len(libs)-1)
# Removing the 'fx_' and the extension of every elements
for i in range(len(libs)):
libs[i] = libs[i].replace("fx_", "", 1).replace(".py", "")
# Printing the installed libs list
print(bcolors.WARNING + "You have installed : ")
for element in libs:
print(f"- {element}")
print(bcolors.ENDC)
elif user_input.startswith("available"):
print(requests.get("https://raw.githubusercontent.com/megat69/ACPL/master/acpl_libs/lib_list.md").text[:-1])
else:
print(f"{bcolors.FAIL}Last argument should be 'installed' or 'available'.{bcolors.ENDC}")
elif user_input.startswith("update"):
user_input = user_input.replace("update ", "", 1)
if user_input != "END":
print(f"{bcolors.OKBLUE}Starting lib '{user_input}' update...{bcolors.ENDC}")
force_commands = [f"lib delete {user_input}", f"lib install {user_input}", "lib update END"]
else:
print(f"{bcolors.OKGREEN}Lib successfully updated !{bcolors.ENDC}")
else:
output = "Wrong amount of arguments."
elif user_input.startswith("transpile"):
if user_input == "transpile":
user_input = open_file_dialog(extensions="acpl")
if user_input is not None:
user_input = [user_input, user_input]
else:
continue
else:
user_input = user_input.replace("transpile ", "", 1)
user_input = user_input.split(" ")
if len(user_input) == 1:
user_input = [user_input[0], user_input[0]]
if not user_input[0].endswith(".acpl"):
user_input[0] += ".acpl"
if user_input[1].endswith(".acpl"):
user_input[1] = user_input[1].replace(".acpl", "")
if ("." in user_input[0] and not user_input[0].endswith(".acpl")) or (
"." in user_input[1] and not user_input[1].endswith(".acpl")):
# Unable to compile that kind of file (extension '.{user_input[0].split('.')[1]}').
print(bcolors.FAIL + texts.console["UnableToCompile"].format(extension=user_input[0].split('.')[1]) + bcolors.ENDC)
continue
replace_line('startup.acpl-ini', 0, 'filename: ' + user_input[0] + "\n")
replace_line("startup.acpl-ini", 8, "compiled-file-filename: " + user_input[1] + "\n")
try:
launch_py_file("compiler")
except SystemExit:
continue
elif user_input.startswith("pyrun"):
user_input = user_input.replace("pyrun ", "", 1)
user_input = remove_suffix(user_input, condition=user_input.endswith("\n"))
if not user_input.endswith(".py"):
user_input += ".py"
# Launching {user_input}.
print(bcolors.OKBLUE + texts.console["LaunchingPyFile"].format(file=user_input) + bcolors.ENDC)
try:
launch_py_file(user_input)
except SystemExit:
continue
# End of the file.
print(bcolors.OKBLUE + texts.console["EndOfFile"] + bcolors.ENDC)
elif user_input.lower().startswith("ide"):
# Opens IDE
# Opening ACPL IDE...
print(bcolors.OKBLUE + texts.console["OpeningIDE"] + bcolors.ENDC)
try:
launch_py_file("ide")
except SystemExit:
continue
# IDE closed.
print(bcolors.OKBLUE + texts.console["ClosedIDE"] + bcolors.ENDC)
elif user_input.startswith("open"):
user_input = user_input.replace("open ", "", 1)
user_input = remove_suffix(user_input, condition=user_input.endswith("\n"))
# Opening {user_input}.
print(bcolors.OKBLUE + texts.console["OpeningFile"].format(file=user_input) + bcolors.ENDC)
if platform.system() == "Windows":
os.system("start " + user_input)
else:
os.system("open " + shlex.quote(user_input))
# File opened successfully.
print(bcolors.OKGREEN + texts.console["FileSuccessfullyOpened"] + bcolors.ENDC)
elif user_input.startswith("ini-content"):
startup_file = open(ini_file, "r")
data = {}
for line in startup_file.readlines():
data[line.split(": ")[0]] = remove_suffix(line.split(": ")[1], line.split(": ")[1].endswith("\n"))
for element in data:
print(f"{element} : {data[element]}")
startup_file.close()
elif user_input.startswith("display"):
user_input = user_input.replace("display ", "", 1)
user_input = remove_suffix(user_input, condition=user_input.endswith("\n"))
try:
file = open(user_input, "r", encoding="utf-8")
for file_line in file.readlines():
print(file_line, end="")
file.close()
# File content ends here.
print(bcolors.OKBLUE + texts.console["EndOfFile"] + bcolors.ENDC)
except FileNotFoundError:
print(bcolors.FAIL + texts.console["FileNotFound"] + bcolors.ENDC)
elif user_input.startswith("creator"): # Easter egg ?
ascii_art = open("ascii-art.txt", "r")
for ascii_line in ascii_art.readlines():
print(ascii_line, end="")
ascii_art.close()
print("\n\nMerci d'avoir jeté un coup d'oeil au code.")
elif user_input.startswith("change-line") or user_input.startswith("modify-line"): # change-line <file> <line_number> <new_text>
user_input = user_input.replace("change-line ", "", 1)
user_input = user_input.replace("modify-line ", "", 1)
user_input = user_input.split(" ")
for i in range(3, len(user_input)):
user_input[2] += " " + user_input[i]
while len(user_input) > 3:
user_input.pop(3)
replace_line(user_input[0], user_input[1], user_input[2])
# Line {user_input[1]} modified in {user_input[0]} with value :\n{user_input[2]}
print(texts.console["LineModified"].format(filename=user_input[0], line=user_input[1], value=user_input[2]))
elif user_input.startswith("changelog"):
changelog_file = open("changelog.md", "r")
changelog = changelog_file.readlines()
changelog_file.close()
changelog = md_format(changelog)
print(changelog)
elif user_input.startswith("debug"):
user_input = user_input.replace("debug ", "", 1)
if not user_input.endswith(".acpl"):
user_input += ".acpl"
# Beginning to debug {user_input}...
print(bcolors.FAIL + texts.console["StartingDebug"].format(file=user_input) + bcolors.ENDC)
replace_line("startup.acpl-ini", 0, f"filename: {user_input}\n")
replace_line("startup.acpl-ini", 14, "debugger-enabled: True\n")
try:
launch_py_file("main.py")
except SystemExit:
continue
elif user_input.split(" ")[0] in ("ls", "dir"):
user_input = user_input.split(" ")
if len(user_input) > 1:
dir_to_map = user_input[1]
else:
dir_to_map = os.getcwd()
try:
os.chdir(dir_to_map)
except Exception:
print(f"{bcolors.FAIL}This directory is not existing.{bcolors.ENDC}")
continue
if len(user_input) > 2:
for i in range(2):
user_input.pop(0)
else:
user_input = ["*"]
print_dir(user_input)
os.chdir(os.path.dirname(os.path.realpath(__file__)))
elif user_input.startswith("mkdir"):
user_input = user_input.replace("mkdir ", "", 1)
os.mkdir(user_input)
print(f"{bcolors.OKGREEN}Folder '{user_input}' successfully created !{bcolors.ENDC}")
elif user_input.startswith("compile"):
# compile <ACPL file> [Exe file filename=ACPL file filename]
# [--end-message:<bool> = True] [--disable-icon:<bool> = False]
# 'compile' removal
user_input = user_input.replace("compile ", "", 1)
# End message parameter
if "--end-message" in user_input:
end_message = user_input.split("--end-message:")[1]
user_input = user_input.replace(f" --end-message:{end_message}", "", 1)
end_message = end_message.lower() != "false"
else:
end_message = True
# Disable icon parameter
if "--disable-icon" in user_input:
disable_icon = user_input.split("--disable-icon:")[1]
user_input = user_input.replace(f" --disable-icon:{end_message}", "", 1)
disable_icon = disable_icon.lower() == "true"
else:
disable_icon = False
# Split of user input
user_input = user_input.split(" ")
# If only one argument, duplicate it
if len(user_input) == 1:
user_input = [user_input[0], user_input[0]]
# Adding '.acpl' at the end of the input if not already present
if not user_input[0].endswith(".acpl"):
user_input[0] += ".acpl"
# If cannot compile extension, exit system
if ("." in user_input[0] and not user_input[0].endswith(".acpl")) or (
"." in user_input[1] and not user_input[1].endswith(".acpl")):
# Unable to compile that kind of file (extension '.{user_input[0].split('.')[1]}').
print(bcolors.FAIL + texts.console["UnableToCompile"].format(
extension=user_input[0].split('.')[1]) + bcolors.ENDC)
sys.exit()
# Set ini variables
replace_line('startup.acpl-ini', 0, 'filename: ' + user_input[0] + "\n")
replace_line("startup.acpl-ini", 8, "compiled-file-filename: " + user_input[1] + "\n")
with open("startup.acpl-ini", "r") as ini:
open_file = ini.readlines()[9]
ini.close()
replace_line("startup.acpl-ini", 9, "open-compiled-file: False\n")
# Launch transpiling
try:
launch_py_file("compiler")
except SystemExit:
pass
replace_line("startup.acpl-ini", 9, open_file)
del open_file
final_filename = user_input[1].replace('.acpl', '').replace('.py', '')
# If end message is wanted, add an end message at the end of the file
if end_message is True:
file = open(f"{user_input[1].replace('.acpl', '')}.py", "r")
file_contents = file.readlines()
file_contents.append("input(\"Press enter to continue...\")\n")
file.close()
file = open(f"{final_filename}.py", "w")
file.writelines(file_contents)
file.close()
del file_contents
print(f"{bcolors.OKBLUE}Starting compilation...\n{bcolors.WARNING}This may take a while.{bcolors.ENDC}")
# Generate executable
# If Windows or Mac AND not disabled, generate executable with icon.
if platform.system() in ('Windows', 'Darwin') and disable_icon is False:
os.system(f"pyinstaller --onefile --log-level ERROR --icon ACPL_Icon.ico {final_filename}.py")
else:
os.system(f"pyinstaller --onefile --log-level ERROR {final_filename}.py")
# Move exe file to parent folder
shutil.move(f"dist/{final_filename}.exe", f"{final_filename}.exe")
# Delete 'build' and 'dist' folders and '<file>.spec'
shutil.rmtree("build")
shutil.rmtree("dist")
os.remove(f"{final_filename}.spec")
print(f"{bcolors.OKGREEN}File compiled successfully !{bcolors.ENDC}")
else:
output = texts.console["unknown-command"]
last_user_input = og_user_input
if output is not None:
print(f"{bcolors.WARNING}{texts.console['output'].upper()} :{bcolors.ENDC}\n{output}")