-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathqpc_vpc_converter.py
1797 lines (1412 loc) · 67.5 KB
/
qpc_vpc_converter.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
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
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import os
import qpc_base as base
import qpc_reader as reader
import argparse
import re
from qpc_logging import _print_severity, Severity
# this file is awful, good luck adding to it
# some random notes:
# the configuration blocks are merged into one main config
# depending on the configuration name, it adds a condition for every option in it
# it also adds a condition for every option if the config group has a condition
# base files are read differently, was trying something different
# but then i realized that it's very very dumb
# instead, it modifies the project blocks and writes them
def warning_no_line(*text):
_print_severity(Severity.WARNING, "\n ", *text)
def warning(*text):
warning_no_line(*text[:-1], text[-1] + "\n")
# Conversion stuff
EVENTS = {"pre_link", "pre_build", "post_build"}
MACRO_CONVERT = {
"PROJECTNAME": "PROJECT_NAME",
"PROJNAME": "PROJECT_NAME",
"_DLL_EXT": "EXT_DLL",
"_EXE_EXT": "EXT_APP",
"OUTLIBCOMMONDIR": "LIBCOMMON",
"$QUOTE": "\\\"",
}
IGNORE_CONFIG_GROUPS = {
"$custombuildstep",
"$snccompiler",
"$snclinker",
"$gcccompiler",
"$gcclinker",
"$xbox360imageconversion",
"$consoledeployment",
"$manifesttool",
"$xmldocumentgenerator",
"$browseinformation",
"$resources",
"$excludedfrombuild", # i don't like this
"$debugging", # i could convert this, but nothing is ever setup for it, idc right now
}
IGNORE_CONFIG_KEYS = {
"$entrypoint",
"$version",
"$description",
"$forcedusingfiles",
"$moduledefinitionfile",
"$additionaloutputfiles",
"$gameoutputfile",
"$warninglevel",
"$useofmfc",
"$useofatl",
"$baseaddress",
# posix stuff
"$symbolvisibility",
}
OPTION_NAME_CONVERT_DICT = {
"$targetname": "out_name",
"$outputdirectory": "out_dir",
"$intermediatedirectory": "build_dir",
"$configurationtype": "config_type",
"$additionalincludedirectories": "inc_dirs",
"$additionallibrarydirectories": "lib_dirs",
"$additionalprojectdependencies": "requires",
"$additionaldependencies": "libs",
"$systemframeworks": "libs",
"$systemlibraries": "libs",
"$compileas": "language",
"$platformtoolset": "compile",
"$preprocessordefinitions": "defines",
"$characterset": "defines",
"$commandline": "command_line",
"$excludedfrombuild": "build",
"$create/useprecompiledheader": "pch",
"$create/usepchthroughfile": "pch_file",
"$precompiledheaderfile": "pch_out",
"$precompiledheaderoutputfile": "pch_out",
"$importlibrary": "import_lib",
"$ignoreimportlibrary": "ignore_import_lib",
"$ignorespecificlibrary": "ignore_libs",
"$outputfile": "output_file",
"$generateprogramdatabasefile": "debug_file",
# all just options stuff
"$additionaloptions": "options",
"$disablespecificwarnings": "options",
"$multiprocessorcompilation": "options",
"$imagehassafeexceptionhandlers": "options",
"generatemanifest": "options",
"useunicoderesponsefiles": "options",
"enablebrowseinformation": "options",
"generatexlmdocumentationfiles": "options",
"buffersecuritycheck": "options",
"enablec++exceptions": "options",
"randomizedbaseaddress": "options",
"basicruntimechecks": "options",
"$enableenhancedinstructionset": "options",
"$enablelargeaddresses": "options",
"$fixedbaseaddress": "options",
"$enablec++exceptions": "options",
"$enableruntimetypeinfo": "options",
"$enablecomdatfolding": "options",
"$floatingpointmodel": "options",
# special child
"$forceincludes": "options",
# posix stuff:
"$optimizerlevel": "options", # idk if this will work, need to test
"$gcc_extracompilerflags": "options",
"$gcc_extralinkerflags": "options",
}
OPTION_NAME_CONDITIONS = {
"$systemframeworks": "$MACOS", # i think this is right?
"$systemlibraries": "$MACOS",
}
# TODO: move all these into CONFIG_OPTION_CONVERT_DICT
CMD_CONVERT = {
"Common Language RunTime Support (/clr)": "/clr",
"Pure MSIL Common Language RunTime Support (/clr:pure)": "/clr:pure",
"Safe MSIL Common Language RunTime Support (/clr:safe)": "/clr:safe",
"Common Language RunTime Support, Old Syntax (/clr:oldSyntax)": "/clr:oldSyntax",
"No (/WX-)": "/WX-",
"Yes (/WX)": "/WX", # TODO: check if this is correct
"Yes (/GF)": "/GF",
"Yes (/Gm)": "/Gm",
"Yes (/GR)": "/GR",
"Yes (/Oi)": "/Oi",
"Yes (/MAP)": "/MAP",
"Yes (/Wp64)": "/Wp64",
"Yes (/MP)": "/MP",
"Yes (/Zc:forScope)": "/Zc:forScope",
"Yes (/Zc:wchar_t)": "/Zc:wchar_t",
"Yes (/DEBUG)": "/DEBUG",
"Single-threaded (/ML)": "/ML",
"Single-threaded Debug (/MLd)": "/MLd",
"Include All Browse Information (/FR)": "/FR",
"Disabled (/Od)": "/Od",
"Minimize Size (/O1)": "/O1",
"Maximize Speed (/O2)": "/O2",
"Full Optimization (/Ox)": "/Ox",
"Disabled (/Ob0)": "/Ob0",
"Only __inline (/Ob1)": "/Ob1",
"Any Suitable (/Ob2)": "/Ob2",
"Favor Fast Code (/Ot)": "/Ot",
"Favor Small Code (/Os)": "/Os",
"Yes With SEH Exceptions (/EHa)": "/EHa",
"Yes (/EHsc)": "/EHsc",
"Yes with Extern C functions (/EHs)": "/EHs",
"Yes (/RELEASE)": "/RELEASE",
"Yes (/GS)": "/GS",
"Yes (/MAPINFO:EXPORTS)": "/MAPINFO:EXPORTS",
"Yes (/FC)": "/FC",
"Stack Frames (/RTCs)": "/RTCs",
"Uninitialized Variables (/RTCu)": "/RTCu",
"Both (/RTC1, equiv. to /RTCsu)": "/RTC1",
"Both (/RTC1, equiv. to /RTCsu) (/RTC1)": "/RTC1",
"1 Byte (/Zp1)": "/Zp1",
"2 Bytes (/Zp2)": "/Zp2",
"4 Bytes (/Zp4)": "/Zp4",
"8 Bytes (/Zp8)": "/Zp8",
"16 Bytes (/Zp16)": "/Zp16",
"Assembly-Only Listing (/FA)": "/FA",
"Assembly With Machine Code (/FAc)": "/FAc",
"Assembly With Source Code (/FAs)": "/FAs",
"Assembly, Machine Code and Source (/FAcs)": "/FAcs",
"__cdecl (/Gd)": "/Gd",
"__fastcall (/Gr)": "/Gr",
"__stdcall (/Gz)": "/Gz",
# skipping CompileAs, since language sets that
# skipping show progress
"Enabled (/FORCE)": "/FORCE",
"Multiply Defined Symbol Only (/FORCE:MULTIPLE)": "/FORCE:MULTIPLE",
"Undefined Symbol Only (/FORCE:UNRESOLVED)": "/FORCE:UNRESOLVED",
"Enabled (/FUNCTIONPADMIN)": "/FUNCTIONPADMIN",
"I386 Image Only (/FUNCTIONPADMIN:5)": "/FUNCTIONPADMIN:5",
"AMD64 Image Only (/FUNCTIONPADMIN:6)": "/FUNCTIONPADMIN:6",
"Itanium Image Only (/FUNCTIONPADMIN:16)": "/FUNCTIONPADMIN:16",
"asInvoker (/level='asInvoker')": "/level='asInvoker'",
"highestAvailable (/level='highestAvailable')": "/level='highestAvailable'",
"requireAdministrator (/level='requireAdministrator')": "/level='requireAdministrator'",
"No runtime tracking and enable optimizations (/ASSEMBLYDEBUG:DISABLE)": "/ASSEMBLYDEBUG:DISABLE",
"No (/ASSEMBLYDEBUG:DISABLE)": "/ASSEMBLYDEBUG:DISABLE",
"Runtime tracking and disable optimizations (/ASSEMBLYDEBUG)": "/ASSEMBLYDEBUG",
"Yes (/ASSEMBLYDEBUG)": "/ASSEMBLYDEBUG",
"Driver (/DRIVER)": "/DRIVER",
"Up Only (/DRIVER:UPONLY)": "/DRIVER:UPONLY",
"WDM (/DRIVER:WDM)": "/DRIVER:WDM",
"Use Link Time Code Generation": "/ltcg",
"Use Link Time Code Generation (/ltcg)": "/ltcg",
"Profile Guided Optimization - Instrument (/ltcg:pginstrument)": "/ltcg:pginstrument",
"Profile Guided Optimization - Optimize (/ltcg:pgoptimize)": "/ltcg:pgoptimize",
"Profile Guided Optimization - Update (/ltcg:pgupdate)": "/ltcg:pgupdate",
"Default threading attribute (/CLRTHREADATTRIBUTE:NONE)": "/CLRTHREADATTRIBUTE:NONE",
"MTA threading attribute (/CLRTHREADATTRIBUTE:MTA)": "/CLRTHREADATTRIBUTE:MTA",
"STA threading attribute (/CLRTHREADATTRIBUTE:STA)": "/CLRTHREADATTRIBUTE:STA",
"Force IJW image (/CLRIMAGETYPE:IJW)": "/CLRIMAGETYPE:IJW",
"Force pure IL image (/CLRIMAGETYPE:PURE)": "/CLRIMAGETYPE:PURE",
"Force safe IL image (/CLRIMAGETYPE:SAFE)": "/CLRIMAGETYPE:SAFE",
"Enabled (/CLRSupportLastError)": "/CLRSupportLastError",
"Disabled (/CLRSupportLastError:NO)": "/CLRSupportLastError:NO",
"System Dlls Only (/CLRSupportLastError:SYSTEMDLL)": "/CLRSupportLastError:SYSTEMDLL",
"Call profiler within function calls. (/callcap)": "/callcap",
"Call profiler around function calls. (/fastcap)": "/fastcap",
# truly awful, some of these are in really old vpc scripts, so i might not ever see these again
"Default image type": "",
"No Listing": "",
"No": "",
"Neither": "",
"Default": "",
"No Common Language RunTime Support": "",
"No Whole Program Optimization": "",
}
CONFIG_GROUP_CONVERT_DICT = {
"$compileas": "general",
"$characterset": "compile",
"$outputfile": "link",
}
# Technically, this should be used for all options, but i made all the option values part of one dict, idk why
# if i ever use this converter again, i might just put everything into here
# actually, a lot of these option values could just parsed to get the command line version out of it
# because it just so happens to be part of the option name
CONFIG_OPTION_CONVERT_DICT = {
"$multiprocessorcompilation": {
"true": "/MP",
"Yes (/MP)": "/MP",
"false": "",
},
"$configurationtype": {
"Application (.exe)": "application",
"Dynamic Library (.dll)": "dynamic_library",
"Dynamic Library (.xex)": "dynamic_library",
"Static Library (.lib)": "static_library",
},
"$characterset": {
"Use Multi-Byte Character Set": "MBCS",
"Use Unicode Character Set": "_MBCS",
"Not Set": "",
},
"$create/useprecompiledheader": {
"Not Using Precompiled Headers": "none",
"Automatically Generate (/YX)": "create",
"Create Precompiled Header (/Yc)": "create",
"Create (/Yc)": "create",
"Use Precompiled Header (/Yu)": "use",
"Use (/Yu)": "use",
},
"$warninglevel": {
"Off: Turn Off All Warnings (/W0)": "/W0",
"Level 1 (/W1)": "/W1",
"Level 2 (/W2)": "/W2",
"Level 3 (/W3)": "/W3",
"Level 4 (/W4)": "/W4",
"EnableAllWarnings (/Wall)": "/Wall",
},
"$platformtoolset": {
"v100": "msvc_100",
"v110": "msvc_110",
"v120": "msvc_120",
"v140": "msvc_140",
"v141": "msvc_141",
"v142": "msvc_142",
"v120_xp": "msvc_120_xp",
"v140_xp": "msvc_140_xp",
},
"$debuginformationformat": {
"C7 Compatible (/Z7)": "/Z7",
"Program Database (/Zi)": "/Zi",
"Program Database for Edit & Continue (/ZI)": "/ZI",
},
"$compileas": {
"Compile as C Code (/TC)": "c",
"Compile as C++ Code (/TP)": "cpp",
},
"$ignoreimportlibrary": {
"Yes": "true",
"TRUE": "true", # what the fuck
"No": "false",
},
"$enableenhancedinstructionset": {
"Streaming SIMD Extensions (/arch:SSE)": "/arch:SSE",
"Streaming SIMD Extensions (/arch:SSE) (/arch:SSE)": "/arch:SSE",
"Streaming SIMD Extensions 2 (/arch:SSE2)": "/arch:SSE2",
"Streaming SIMD Extensions 2 (/arch:SSE2) (/arch:SSE2)": "/arch:SSE2",
},
"$references": {
"Do Not Remove Redundant COMDATs (/OPT:NOICF)": "/OPT:NOICF",
"No (/OPT:NOICF)": "/OPT:NOICF",
"Remove Redundant COMDATs (/OPT:ICF)": "/OPT:ICF",
"Yes (/OPT:ICF)": "/OPT:ICF",
"Eliminate Unreferenced Data (/OPT:REF)": "/OPT:REF",
},
"$enablelargeaddresses": {
"Do Not Support Addresses Larger Than 2 Gigabytes (/LARGEADDRESSAWARE:NO)": "/LARGEADDRESSAWARE:NO",
"No (/LARGEADDRESSAWARE:NO)": "/LARGEADDRESSAWARE:NO",
"Support Addresses Larger Than 2 Gigabytes (/LARGEADDRESSAWARE)": "/LARGEADDRESSAWARE",
"Yes (/LARGEADDRESSAWARE)": "/LARGEADDRESSAWARE",
},
"$fixedbaseaddress": {
"Generate a relocation section (/FIXED:NO)": "/FIXED:NO",
"No (/FIXED:NO)": "/FIXED:NO",
"Image must be loaded at a fixed address (/FIXED)": "/FIXED",
"Yes (/FIXED)": "/FIXED",
},
"$subsystem": {
"Console (/SUBSYSTEM:CONSOLE)": "/SUBSYSTEM:CONSOLE",
"Windows (/SUBSYSTEM:WINDOWS)": "/SUBSYSTEM:WINDOWS",
"Native (/SUBSYSTEM:NATIVE)": "/SUBSYSTEM:NATIVE",
"EFI Application (/SUBSYSTEM:EFI_APPLICATION)": "/SUBSYSTEM:EFI_APPLICATION",
"EFI Boot Service Driver (/SUBSYSTEM:EFI_BOOT_SERVICE_DRIVER)": "/SUBSYSTEM:EFI_BOOT_SERVICE_DRIVER",
"EFI ROM (/SUBSYSTEM:EFI_ROM)": "/SUBSYSTEM:EFI_ROM",
"EFI Runtime (/SUBSYSTEM:EFI_RUNTIME_DRIVER)": "/SUBSYSTEM:EFI_RUNTIME_DRIVER",
"WindowsCE (/SUBSYSTEM:WINDOWSCE)": "/SUBSYSTEM:WINDOWSCE",
"POSIX (/SUBSYSTEM:POSIX)": "/SUBSYSTEM:POSIX",
},
"$targetmachine": {
"MachineARM (/MACHINE:ARM)": "/MACHINE:ARM",
"MachineEBC (/MACHINE:EBC)": "/MACHINE:EBC",
"MachineIA64 (/MACHINE:IA64)": "/MACHINE:IA64",
"MachineMIPS (/MACHINE:MIPS)": "/MACHINE:MIPS",
"MachineMIPS16 (/MACHINE:MIPS16)": "/MACHINE:MIPS16",
"MachineMIPSFPU (/MACHINE:MIPSFPU)": "/MACHINE:MIPSFPU",
"MachineMIPSFPU16 (/MACHINE:MIPSFPU16)": "/MACHINE:MIPSFPU16",
"MachineSH4 (/MACHINE:SH4)": "/MACHINE:SH4",
"MachineTHUMB (/MACHINE:THUMB)": "/MACHINE:THUMB",
"MachineX64 (/MACHINE:AMD64)": "/MACHINE:AMD64",
"MachineX86 (/MACHINE:I386)": "/MACHINE:I386",
},
"$runtimelibrary": {
"Multi-threaded (/MT)": "/MT",
"Multi-threaded Debug (/MTd)": "/MTd",
"Multi-threaded DLL (/MD)": "/MD",
"Multi-threaded Debug DLL (/MDd)": "/MDd",
},
"$errorreporting": {
"Do Not Send Report (/errorReport:none)": "/errorReport:none",
"Prompt Immediately (/errorReport:prompt)": "/errorReport:prompt",
"Queue For Next Login (/errorReport:queue)": "/errorReport:queue",
"Send Automatically (/errorReport:send)": "/errorReport:send",
"Do Not Send Report (/ERRORREPORT:NONE)": "/ERRORREPORT:NONE",
"Prompt Immediately (/ERRORREPORT:PROMPT)": "/ERRORREPORT:PROMPT",
"Queue For Next Login (/ERRORREPORT:QUEUE)": "/ERRORREPORT:QUEUE",
"Send Automatically (/ERRORREPORT:SEND)": "/ERRORREPORT:SEND",
},
"$enableincrementallinking": {
"Yes (/INCREMENTAL)": "/INCREMENTAL",
"No (/INCREMENTAL:NO)": "/INCREMENTAL:NO",
},
"$floatingpointmodel": {
"Precise (/fp:precise)": "/fp:precise",
"Strict (/fp:strict)": "/fp:strict",
"Fast (/fp:fast)": "/fp:fast",
},
# basically bool options
"$enablefunctionlevellinking": {"Yes (/Gy)": "/Gy"},
"$enablestringpooling": {"Yes (/GF)": "/GF"},
"$suppressstartupbanner": {"Yes (/NOLOGO)": "/NOLOGO", "Yes (/nologo)": "/nologo"},
"$excludedfrombuild": {"Yes": "True", "No": "False"},
"$imagehassafeexceptionhandlers": {"true": "/SAFESEH", "false": "/SAFESEH:NO"},
}
OPTION_PREFIX_ADD = {
"$forceincludes": "/FI",
}
FILE_KEYS = {"$file", "$dynamicfile", "-$file", "$filepattern"}
MACRO_KEYS = {
"$macro",
"$macroemptystring", # what is this
"$conditional",
}
MACRO_KEYS_COND = {
"$macrorequired",
"$macrorequiredallowempty",
}
# vpc sucks
SPECIAL_FILE_KEYS = {
"$dynamicfile_nopch", "$file_nopch", "$file_createpch", "$shaders",
"$qtfile", "$qtschemafile", "$schemafile", "$schemaincludefile",
"$sharedlib", "-$sharedlib"
}
IGNORE_ROOT_KEYS = {
"$linux",
"$ignoreredundancywarning",
"$loadaddressmacro",
"$loadaddressmacroauto",
"$loadaddressmacroauto_padded",
"$loadaddressmacroalias",
# "$custombuildstep",
# "$custombuildscript",
}
# idfk what to call this function
def prepare_vpc_file(project_script_path):
project_script_path = project_script_path.replace("\\", "/")
project_dir, project_filename = os.path.split(project_script_path)
project_name = os.path.splitext(project_filename)[0]
project_file = reader.read_file(project_script_path, False, False, False)
return project_file, project_dir, project_name
def get_vpc_scripts(root_dir):
vpc_paths = []
vgc_paths = []
for subdir, dirs, files in os.walk(root_dir):
for file in files:
if file.endswith(".vpc"):
vpc_paths.append(os.path.join(subdir, file))
elif file.endswith(".vgc"):
vgc_paths.append(os.path.join(subdir, file))
return vgc_paths, vpc_paths
proj_to_groups = set()
# you could just read it and then replace the keys directly probably,
# would keep all comments that way at least
def convert_vgc(vgc_dir, vgc_filename, vgc_project):
qpc_base_file = []
def add_space(string):
if qpc_base_file:
if (not qpc_base_file[-1].startswith(string) or qpc_base_file[-1] == "}") and qpc_base_file[-1] != "":
qpc_base_file.append("")
for block_index, project_block in enumerate(vgc_project):
key = project_block.key.casefold() # compare with ignoring case
values = project_block.values
if key in ("$macro", "$conditional", "$project", "$group", "$include"):
if key in ("$project", "$group"):
add_space(key[1:])
if key == "$project" and len(project_block.items) > 1:
qpc_base_file.append("group")
proj_to_groups.update(project_block.values)
else:
qpc_base_file.append(key[1:])
if project_block.values:
qpc_base_file[-1] += ' "' + '" "'.join(project_block.values) + '"'
if key == "$project" and len(project_block.items) == 1:
qpc_base_file[-1] += f' "{project_block.items[0].key.replace(".vpc", ".qpc")}"'.replace("\\", "/")
write_condition(project_block.items[0].condition, qpc_base_file)
qpc_base_file.append("")
project_block.items.remove(project_block.items[0])
else:
write_condition(project_block.condition, qpc_base_file)
if project_block.items:
qpc_base_file.append("{")
convert_project_group_recurse(1, project_block.items, qpc_base_file)
qpc_base_file.append("}")
elif key in ("$macro", "$conditional", "$include"):
for index, value in enumerate(values):
# HARDCODING
if not args.no_hardcoding:
values[index] = convert_macro_casing(value.replace("vpc_scripts", "_qpc_scripts"))
values[index] = values[index].replace("projects", "_projects")
values[index] = values[index].replace("groups", "_groups")
if key == "$include":
qpc_base_file.append(
'include "' + project_block.values[0].replace("\\", "/").replace("vgc", "qpc_base") + '"')
else:
qpc_base_file.append('macro "' + project_block.values[0].replace("\\", "/") + '"')
write_condition(project_block.condition, qpc_base_file)
# skip
elif key in {"$games"}:
pass
else:
project_block.warning("Unknown Key:")
# add configs block
# HARDCODING
if vgc_filename == "default":
qpc_base_file.extend(
["",
"configs",
"{",
"\t\"Debug\"",
"\t\"Release\"",
"}"
]
)
for index, line in enumerate(qpc_base_file):
qpc_base_file[index] = convert_macro_syntax(line)
# HARDCODING
if args.no_hardcoding:
write_project(vgc_dir, vgc_filename, qpc_base_file, True)
else:
write_project(vgc_dir, "_" + vgc_filename, qpc_base_file, True)
return
def convert_project_group_recurse(depth, block_items, qpc_base_file):
space = "{0}".format("\t" * depth)
for sub_block in block_items:
if sub_block.key.casefold() == "$folder":
qpc_base_file.append(space + 'folder "' + sub_block.values[0] + '"')
write_condition(sub_block.condition, qpc_base_file)
for item in sub_block.items:
convert_project_group_recurse(depth + 1, item, qpc_base_file)
else:
key = convert_macro_casing('"' + sub_block.key.replace("\\", "/").replace(".vpc", ".qpc") + '"')
if sub_block.key in proj_to_groups:
key = "contains " + key
qpc_base_file.append(space + key)
write_condition(sub_block.condition, qpc_base_file)
return
def create_directory(directory: str):
if not os.path.isdir(directory):
os.makedirs(directory)
if args.verbose:
print("Created Directory: " + directory)
def write_project(directory, filename, project_lines, base_file=False):
out_dir = args.output + directory.split(args.directory)[1].replace("vpc_scripts", "_qpc_scripts")
create_directory(out_dir)
abs_path = os.path.normpath(out_dir + os.sep + filename + ".qpc")
if base_file:
abs_path += "_base"
with open(abs_path, mode="w", encoding="utf-8") as project_file:
write_comment_header(project_file, filename)
project_file.write('\n'.join(project_lines) + "\n")
return
# might just use the class right from the qpc parser, idk
# this is really awful
class Configuration:
def __init__(self):
general = ConfigGroup("general")
general.options = [
ConfigOption("out_name"),
ConfigOption("out_dir"),
ConfigOption("build_dir"),
ConfigOption("config_type", False, False),
ConfigOption("language"),
ConfigOption("compiler"),
ConfigOption("options", True, False),
]
compile_grp = ConfigGroup("compile")
compile_grp.options = [
ConfigOption("defines", True, False),
ConfigOption("inc_dirs", True),
ConfigOption("pch"),
ConfigOption("pch_file"),
ConfigOption("pch_out"),
ConfigOption("options", True, False),
]
link = ConfigGroup("link")
link.options = [
ConfigOption("output_file"),
ConfigOption("debug_file"),
ConfigOption("import_lib"),
ConfigOption("ignore_import_lib"),
ConfigOption("libs", True),
ConfigOption("ignore_libs", True),
ConfigOption("lib_dirs", True),
ConfigOption("options", True, False),
]
self.groups = {
"general": general.to_dict(),
"compile": compile_grp.to_dict(),
"link": link.to_dict(),
}
self.options = {
"pre_build": ConfigOption("pre_build", True, False),
"pre_link": ConfigOption("pre_link", True, False),
"post_build": ConfigOption("post_build", True, False),
}
# we will only have one main config,
# any option or group added to it will have a condition of the config name
# like ($_CONFIG == Debug)
# it checks if the config option/group already exists, and if it does,
# it adds onto the condition, ex: $WINDOWS && ($_CONFIG == Debug)
# if a config condition is already added to it, it will somehow check if
# that config and the current config is Debug AND Release, or just all available configs somehow
# if it all configs, it will get rid of both of those conditions
# or just keep it and handle it in WriteCondition
# since we might have another condition in there
# what about platform conditions? meh, handle those in WriteCondition as well
# maybe only apply the condition to the group if everything in the options has some shared condition?
class ConfigGroup:
def __init__(self, name):
self.name = name
self.options = []
def to_dict(self) -> dict:
option_dict = {}
for option in self.options:
option_dict[option.name] = option
return option_dict
class ConfigOption:
def __init__(self, name: str, is_list: bool = False, replace_path_sep: bool = True, remove_ext: bool = False):
self.name = name
self.condition = None
self.value = []
self.is_list = is_list
self.replace_path_sep = replace_path_sep
self.remove_ext = remove_ext
def set_value(self, values, condition, split_values):
if self.is_list:
if split_values:
for string in split_values:
values = ' '.join(values).split(string)
values = list(filter(None, values)) # remove empty items from the list
# wrap each value in quotes (maybe add an input option here for we should wrap in quotes or not?)
values = list('"' + value + '"' for value in values)
if self.replace_path_sep:
for index, value in enumerate(values):
if value != "\\n":
values[index] = value.replace("\\", "/")
if values[index] != '""' and values[index].endswith('""'):
values[index] = values[index][:-1]
if "/\"" in values[index][1:-1]:
value = value.replace("/\"", "\\\"")
values[index] = value
# might be added already
for added_value in self.value:
if added_value.value in values:
# it is added, so merge the conditions
added_value.condition = merge_config_conditions(condition, added_value.condition)
values.remove(added_value.value)
if split_values:
for value in values:
value = value.replace("$BASE ", "").replace("$BASE", "")
# other values
value = value.replace("%(AdditionalDependencies)", "")
value = value.replace("%(PreprocessorDefinitions)", "")
if value != '""':
condition = normalize_platform_conditions(condition)
self.value.append(ConfigOptionValue(value, condition))
else:
for value in values:
value = value.replace("$BASE", "")
value = value.lstrip().rstrip() # strip trailing whitespace at start and end
if value and value != "\\n":
condition = normalize_platform_conditions(condition)
self.value.append(ConfigOptionValue('"' + value + '"', condition))
else:
value = '"' + ''.join(values) + '"'
if self.replace_path_sep:
value = value.replace("\\", "/")
# get rid of any file extension and add the quote back onto the end if it changed
if self.remove_ext:
# value = os.path.splitext(value)[0] + '"'
new_value = os.path.splitext(value)[0]
if new_value != value:
value = new_value + '"'
# might be added already
for added_value in self.value:
if added_value.value == value:
# it is added, so merge the conditions
added_value.condition = merge_config_conditions(condition, added_value.condition)
added_value.condition = normalize_platform_conditions(added_value.condition)
return
if not condition:
condition = None
condition = normalize_platform_conditions(condition)
self.value.append(ConfigOptionValue(value, condition))
def add_value(self, value, condition):
# might be added already
for added_value_obj in self.value:
if added_value_obj.value == value and added_value_obj.condition == condition:
return
self.value.append(ConfigOptionValue(value, condition))
class ConfigOptionValue:
def __init__(self, value, condition):
self.value = value
self.condition = condition
# TODO: maybe change this to merge_conditions? would have to split by all operators and go through each one
# meh, maybe in the future, though i doubt it
def merge_config_conditions(cond: str, add_cond: str) -> str:
if cond and add_cond:
if "$DEBUG" in cond and "$RELEASE" in add_cond and \
"RELEASEASSERTS" not in cond and "RELEASEASSERTS" not in add_cond:
add_cond = remove_condition(add_cond, "$RELEASE")
elif "$RELEASE" in cond and "$DEBUG" in add_cond and \
"RELEASEASSERTS" not in cond and "RELEASEASSERTS" not in add_cond:
add_cond = remove_condition(add_cond, "$DEBUG")
elif add_cond:
add_cond = add_condition(add_cond, cond, "&&")
# why should i do this?
# if not add_cond:
# add_cond = None
else:
add_cond = cond
return add_cond
def convert_macro_casing(string: str) -> str:
for macro in MACRO_CONVERT:
if macro in string:
string = string.replace(macro, MACRO_CONVERT[macro])
return string
FIND_MACRO = re.compile(r"\$([A-Z_]\w+)")
def convert_macro_syntax(string: str) -> str:
if "$" in string:
found_macros = FIND_MACRO.split(string)
return "$".join(found_macros)
return string
def convert_vpc(vpc_dir, vpc_filename, vpc_project):
qpc_project_list = []
config = Configuration()
libraries = []
files_block_list = []
dependencies = {}
for project_block in vpc_project:
key = project_block.key.casefold() # compare with ignoring case
if key == "$configuration":
parse_configuration(project_block, config, dependencies)
elif key == "$project":
if len(qpc_project_list) > 0 and not qpc_project_list[-1].endswith("\n") and qpc_project_list[-1] != "":
qpc_project_list.append("")
if project_block.values:
qpc_project_list.insert(0, "macro PROJECT_NAME \"" + project_block.values[0] + "\"")
qpc_project_list.insert(1, "")
files_block = ["files"]
write_condition(project_block.condition, files_block)
files_block.append("{")
found_libraries, files_block = write_files_block(project_block, files_block, project_block.condition, "\t")
if found_libraries:
libraries.extend(found_libraries)
if len(files_block) > 2:
# qpc_project_list.extend(files_block)
# qpc_project_list.append("}")
files_block.append("}")
files_block_list.extend(files_block)
elif key in MACRO_KEYS:
write_macro(project_block, qpc_project_list)
elif key in MACRO_KEYS_COND:
project_block.condition = add_condition(project_block.condition, "!$" + project_block.values[0], "&&")
write_macro(project_block, qpc_project_list)
elif key == "$include":
write_include(project_block, qpc_project_list)
elif key in IGNORE_ROOT_KEYS:
pass
else:
warning(project_block.get_file_info(), "Unknown Key: ")
if libraries:
# if not qpc_project_list[-1].endswith("\n") and qpc_project_list[-1] != "":
# qpc_project_list.append("")
# WriteLibraries( libraries, linker_libraries, qpc_project_list, base_macros )
add_libs_to_config(libraries, config)
qpc_project_list = write_configuration(config, "", qpc_project_list)
for library in config.groups["link"]["libs"].value:
if library.value.startswith("- "):
continue
value = library.value[1:-1]
if value.startswith("$LIBPUBLIC/") or value.startswith("$LIBCOMMON/"):
value = value[11:]
if dependencies:
# dependencies = "\n".join([f'\t"{key}"\t\t\t"{value}"' for key, value in LIBS_TO_DEPENDENCIES_LAZY.items()])
# project_file.write(f'\ndependency_paths\n{{\n{dependencies}\n}}\n')
qpc_project_list.append("\nrequires\n{")
for dependency, condition in dependencies.items():
string = f'\t"{dependency}"'
if condition:
string += f"\t[{format_condition(condition)}]"
qpc_project_list.append(string)
qpc_project_list.append("}")
# gap between anything before files and files
if qpc_project_list and qpc_project_list[-1] != "":
qpc_project_list.append("")
qpc_project_list.extend(files_block_list)
# empty vpc script
if not qpc_project_list:
return
for index, line in enumerate(qpc_project_list):
qpc_project_list[index] = convert_macro_syntax(line)
qpc_project_list[index] = convert_macro_casing(qpc_project_list[index])
write_project(vpc_dir, vpc_filename, qpc_project_list)
return
def write_comment_header(qpc_project, filename: str):
qpc_project.write(
f"// ---------------------------------------------------------------\n" +
f"// {filename}.qpc\n" +
f"// ---------------------------------------------------------------\n")
COND_OPERATORS = ("||", "&&", ">", ">=", "==", "!=", "=<", "<")
def _remove_platform_archs(cond: list, platform_name: str, plat32: str, plat64: str) -> list:
if platform_name in cond:
if plat32 in cond and plat64 in cond:
cond = remove_conditions_parsed(cond, plat32, plat64)
elif plat32 in cond or plat64 in cond:
cond = remove_condition_parsed(cond, platform_name)
return cond
def _remove_platform_arch(cond: list, platform_name: str, remove_plat: str) -> list:
if platform_name in cond and remove_plat in cond:
cond = remove_condition_parsed(cond, remove_plat)
return cond
def _replace_name(cond: list, replace_name: str, old_name: str) -> list:
if old_name in cond:
cond[cond.index(old_name)] = replace_name
return cond
def _remove_arch(cond: list, remove_arch: str) -> list:
if remove_arch in cond:
cond = remove_condition_parsed(cond, remove_arch)
return cond
def _replace_archs_with_platform(cond: list, platform_name: str, plat32: str, plat64: str) -> list:
if plat32 in cond and plat64 in cond:
cond[cond.index(plat32)] = platform_name
cond = remove_condition_parsed(cond, plat64)
return cond
def normalize_platform_conditions(cond: str) -> str:
if cond:
cond = cond.replace("$OSXALL", "$OSX")
cond = cond.replace("$LINUXALL", "$LINUX")
parsed_cond = parse_condition(cond, True, False)
parsed_cond = _remove_platform_archs(parsed_cond, "$WINDOWS", "$WIN32", "$WIN64")
# parsed_cond = _remove_platform_archs(parsed_cond, "$LINUX", "$LINUX32", "$LINUX64")
# parsed_cond = _remove_platform_archs(parsed_cond, "$MACOS", "$OSX32", "$OSX64")
parsed_cond = _replace_archs_with_platform(parsed_cond, "$WINDOWS", "$WIN32", "$WIN64")
# parsed_cond = _replace_archs_with_platform(parsed_cond, "$LINUX", "$LINUX32", "$LINUX64")
# parsed_cond = _replace_archs_with_platform(parsed_cond, "$MACOS", "$OSX32", "$OSX64")
# replace OSX64 with MACOS
parsed_cond = _replace_name(parsed_cond, "$MACOS", "$OSX64")
parsed_cond = _replace_name(parsed_cond, "$MACOS", "$OSX")
parsed_cond = _remove_platform_archs(parsed_cond, "$LINUX32", "$POSIX", "$LINUX")
parsed_cond = _remove_platform_archs(parsed_cond, "$LINUX64", "$POSIX", "$LINUX")
# parsed_cond = _remove_platform_arch(parsed_cond, "$LINUX32", "$POSIX")
# parsed_cond = _remove_platform_arch(parsed_cond, "$LINUX64", "$POSIX")
# parsed_cond = _remove_platform_arch(parsed_cond, "$LINUX32", "$LINUX")
# parsed_cond = _remove_platform_arch(parsed_cond, "$LINUX64", "$LINUX")
parsed_cond = _remove_platform_arch(parsed_cond, "$OSX32", "$POSIX")