-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdataScraper.go
161 lines (139 loc) · 4 KB
/
dataScraper.go
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
package main
// using go because python is shit (only because it's syntax) and i couldn't find a better alternative to python than go
// also go is pretty nice language
import (
"encoding/json"
"fmt"
"log"
"os"
)
type Data struct {
Functions map[string]Func `json:"functions"`
Variables map[string]Var `json:"variables"`
Events map[string]Event `json:"events"`
}
type Func struct {
Returns string `json:"returns"`
Args string `json:"args"`
Documentation string `json:"documentation"`
Deprecated string `json:"deprecated,omitempty"` // omitempty will not render empty fields
}
type Var struct {
Returns string `json:"returns"`
Documentation string `json:"documentation"`
Deprecated string `json:"deprecated,omitempty"`
}
type Event struct {
Returns string `json:"returns"`
Args string `json:"args"`
Documentation string `json:"documentation"`
Deprecated string `json:"deprecated,omitempty"`
}
func main() {
jsonData := Data{
Functions: map[string]Func{},
Variables: map[string]Var{},
Events: map[string]Event{},
}
engineJsonData := Data{
Functions: map[string]Func{},
Variables: map[string]Var{},
Events: map[string]Event{},
}
engineData, err := os.ReadFile("data/psych_0.7.json")
if err == nil {
// pointer jumpscare
json.Unmarshal(engineData, &engineJsonData)
}
// i generated this dataInput.txt file using CTRL+SHIFT+F in the psych engines source code and it that window i searched for "Lua_helper.add_callback(lua,"
// there after searching for that query, should be a "Open in editor" button which creates a copyable file, that file is basically dataInput.txt
data, err := os.ReadFile("dataInput.txt")
if err != nil {
log.Fatal(err)
}
word := ""
wordIndex := 0
name := ""
args := ""
insideCallback := false
insideFunctionArgs := false
for _, cha := range data {
char := string(cha)
if (!insideCallback) {
word = word + char
}
if (insideCallback && rune(cha) > 32) { // that was supposed to be used later but fuck it lol
word = word + char
}
if (!insideCallback && rune(cha) <= 32) { //clear the word if loop encounters a blank character
word = ""
continue
}
if (insideCallback) {
if (char == "," && wordIndex == 0) { //if has a comma then jump into args from name
wordIndex = 1
word = ""
continue
}
if (wordIndex == 0 && rune(cha) > 32 && cha != '\'' && cha != '"') { //wait for the name
name = name + char
continue
}
if (wordIndex == 1 && !insideFunctionArgs && char == "(") { // begin arguments
insideFunctionArgs = true
continue
}
if (wordIndex == 1 && insideFunctionArgs && char != ")") { // append to args
args = args + char
continue
}
if (insideFunctionArgs && char == ")") { //stop on ")" in the "function()" and append it to the data
swagFunc := Func{
Returns: "void?",
Args: args,
Documentation: "No documentation yet.",
}
if fun, exists := engineJsonData.Functions[name]; exists {
if (fun.Returns != "") {
swagFunc.Returns = fun.Returns
}
if (fun.Documentation != "") {
swagFunc.Documentation = fun.Documentation
}
}
jsonData.Functions[name] = swagFunc
word = ""
insideCallback = false
wordIndex = 0
name = ""
args = ""
insideFunctionArgs = false
continue
}
}
if (word == "Lua_helper.add_callback(lua,") {
word = ""
insideCallback = true
wordIndex = 0
name = ""
args = ""
insideFunctionArgs = false
continue
}
}
jsonData.Events = engineJsonData.Events
jsonData.Variables = engineJsonData.Variables
for key, fun := range engineJsonData.Functions {
if fun2, exists := jsonData.Functions[key]; !exists && fun2.Deprecated == "" {
fun.Deprecated = "Removed from the API."
jsonData.Functions[key] = fun
}
}
file, _ := json.MarshalIndent(jsonData, "", "\t")
err = os.WriteFile("dataOutput.json", file, 0644)
if err != nil {
log.Fatal("Couldn't save the output data file!")
} else {
fmt.Println("Saved the output data to 'dataOutput.json' file!")
}
}