forked from Anaminus/roblox-api-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParseAPI.lua
204 lines (175 loc) · 4.64 KB
/
ParseAPI.lua
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
--[[
# ParseAPI
An API dump file is created when a Roblox executable is run using the
following options:
RobloxPlayer -API api.txt
RobloxPlayerBeta --API api.txt
These dump the API to a file named `api.txt`. Note that Studio does not
currently support this command. However, the ReflectionMetadata.xml file is
required to generate the dump (otherwise a parsing error is reported), but is
currently only distributed with studio and needs to be copied to
RobloxPlayerBeta.exe's folder.
The purpose of this module is to parse the contents of the dump file to a Lua
table, so that it may be manipulated more easily.
## Usage
The ParseAPI function expects a string, which is the contents of the dump
file. It returns a table containing the parsed data. Here's an example:
local ParseAPI = require 'ParseAPI'
local f = io.open('api.txt')
local data = f:read('*a')
f:close()
local database = ParseAPI(data)
## More Info
https://github.com/Anaminus/roblox-api-dump
]]
-- how to match various names
local mC = '[%w_<> ]*[%w_<>]' -- class name
local mM = '[%w_ ]*[%w_]' -- member name
local mT = '[%w_]+' -- value type
local mE = '[%w_ ]*[%w_]' -- enum item name
-- Parses an item's tags (stuff in square brackets)
local function ParseTags(item,tags)
local tagSet = {}
for tag in tags:gmatch("%[(.-)%]") do
tagSet[tag] = true
end
item.tags = tagSet
end
-- Parses comma-separated arguments/parameters
local function ParseArguments(out,data)
if #data > 2 then
for arg in data:sub(2,-2):gmatch("[^,]+") do -- make this better
local type,name,default
= arg:match("^ ?("..mT..") (%w+)(.*)$")
if #default > 0 then
default = default:match("^ = (.*)$")
else
default = nil
end
out[#out+1] = {
Type = type;
Name = name;
Default = default;
}
end
end
end
local ParseItem = {
Class = function(data)
local className,superClass,tags
= data:match("^("..mC..") : ("..mC..")(.*)$")
if not className then
className,tags = data:match("^("..mC..")(.*)$")
end
local item = {
Name = className;
Superclass = superClass;
}
ParseTags(item,tags)
return item
end;
Property = function(data)
local valueType,className,memberName,tags
= data:match("^("..mT..") ("..mC..")%.("..mM..")(.*)$")
local item = {
Class = className;
Name = memberName;
ValueType = valueType;
}
ParseTags(item,tags)
return item
end;
Function = function(data)
local returnType,className,memberName,argumentData,tags
= data:match("^("..mT..") ("..mC..")%:("..mM..")(%b())(.*)$")
local item = {
Class = className;
Name = memberName;
ReturnType = returnType;
Arguments = {};
}
ParseArguments(item.Arguments,argumentData)
ParseTags(item,tags)
return item
end;
Event = function(data)
local className,memberName,paramData,tags
= data:match("^("..mC..")%.("..mM..")(%b())(.*)$")
local item = {
Class = className;
Name = memberName;
Parameters = {};
}
ParseArguments(item.Parameters,paramData)
ParseTags(item,tags)
return item
end;
Callback = function(data)
local returnType,className,memberName,paramData,tags
= data:match("^("..mT..") ("..mC..")%.("..mM..")(%b())(.*)$")
local item = {
Class = className;
Name = memberName;
ReturnType = returnType;
Parameters = {};
}
ParseArguments(item.Parameters,paramData)
ParseTags(item,tags)
return item
end;
YieldFunction = function(data)
local returnType,className,memberName,argumentData,tags
= data:match("^("..mT..") ("..mC..")%:("..mM..")(%b())(.*)$")
local item = {
Class = className;
Name = memberName;
ReturnType = returnType;
Arguments = {};
}
ParseArguments(item.Arguments,argumentData)
ParseTags(item,tags)
return item
end;
Enum = function(data)
local enumName,tags
= data:match("^("..mC..")(.*)$")
local item = {
Name = enumName;
}
ParseTags(item,tags)
return item
end;
EnumItem = function(data)
local enumName,itemName,itemValue,tags
= data:match("^("..mC..")%.("..mE..") : (%d+)(.*)$")
local item = {
Enum = enumName;
Name = itemName;
Value = tonumber(itemValue) or itemValue;
}
ParseTags(item,tags)
return item
end;
}
-- Parse API Dump, line by line
return function(source)
local database = {}
local nLine = 0
for line in source:gmatch("[^\r\n]+") do
nLine = nLine + 1
local type,data = line:match("^\t*(%w+) (.+)$")
local parser = ParseItem[type]
if parser then
local item,err = parser(data)
if item then
item.type = type
database[#database+1] = item
else
print("error parsing line "..nLine..": "..err)
end
else
print("unsupported item type `"..tostring(type).."` on line "..nLine)
end
end
return database
end