-
Notifications
You must be signed in to change notification settings - Fork 21
/
build.vbs
97 lines (82 loc) · 3.65 KB
/
build.vbs
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
Set objShell = WScript.CreateObject("WScript.Shell")
Set objFS=CreateObject("Scripting.FileSystemObject")
Build("D2E")
Build("MoM")
Sub Build(gameType)
If objFS.FileExists("../valkyrie-store/" + gameType + "/*.valkyrie") Then
objFS.DeleteFile("../valkyrie-store/" + gameType + "/*.valkyrie")
End If
Set manFile = objFS.GetFile("../valkyrie-store/" + gameType + "/manifest.ini")
Set manData = manFile.OpenAsTextStream(2)
Set dictFile = objFS.GetFile("../valkyrie-store/" + gameType + "/Localization.txt")
Set dictData = dictFile.OpenAsTextStream(2)
dictData.Write ".,English,Spanish,French,German,Italian,Portuguese,Polish,Japanese,Chinese" + vbCrLf
langArray = Array("English","Spanish","French","German","Italian","Portuguese","Polish","Japanese","Chinese")
dim nameArray(8)
For Each d In objFS.GetFolder("source/" + gameType).SubFolders
packageName = d.Name
iniLoc = d.Path & "/quest.ini"
outLoc = "../valkyrie-store/" + gameType + "/" + packageName + ".valkyrie"
Wscript.Echo "Found Dir: " + d.Path
cmd = """C:\Program Files\7-Zip\7z.exe"" a -tzip """ & outLoc & """ """ & d.Path & "\*"" -r"
objShell.Run cmd, 1, true
If objFS.FileExists(iniLoc) Then
Set fileIni = objFS.GetFile(iniLoc)
manData.Write "[" + packageName + "]" + vbCrLf
cmd = "certutil -hashfile " + outLoc + " sha256"
Set aRet = objShell.Exec(cmd)
aRet.StdOut.ReadLine()
manData.Write "version=" + aRet.StdOut.ReadLine() + vbCrLf
Set iniData = fileIni.OpenAsTextStream
inQuest = false
Do Until iniData.AtEndOfStream
strLine = iniData.ReadLine
If StrComp(Left(strLine, 1),"[") = 0 Then
inQuest = false
End If
If inQuest Then
manData.Write strLine & vbCrLf
End If
If StrComp(Left(strLine, 7),"[Quest]") = 0 Then
inQuest = true
End If
Loop
manData.Write vbCrLf
End If
dictLoc = d.Path & "/Localization.txt"
If objFS.FileExists(dictLoc) Then
Set fileDict = objFS.GetFile(dictLoc)
Set qDictData = fileDict.OpenAsTextStream
Do Until qDictData.AtEndOfStream
strLine = qDictData.ReadLine
If StrComp(Left(strLine, 10),"quest.name") = 0 Then
dictData.Write packageName + Right(strLine, Len(strLine) - 5) + vbCrLf
End If
Loop
Else
index = 0
nameArray(index) = ""
For Each lang In langArray
dictLoc = d.Path & "/Localization." & lang & ".txt"
If objFS.FileExists(dictLoc) Then
Set fileDict = objFS.GetFile(dictLoc)
Set qDictData = fileDict.OpenAsTextStream
Do Until qDictData.AtEndOfStream
strLine = qDictData.ReadLine
If StrComp(Left(strLine, 10),"quest.name") = 0 Then
nameArray(index) = Right(strLine, Len(strLine) - 11)
End If
Loop
End If
index = index + 1
Next
dictData.Write packageName + ".name,"
For Each name In nameArray
dictData.Write name + ","
Next
dictData.Write vbCrLf
End If
Next
manData.Close
dictData.Close
End Sub