-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathluahelp-functions.ts
More file actions
150 lines (129 loc) · 3.47 KB
/
Copy pathluahelp-functions.ts
File metadata and controls
150 lines (129 loc) · 3.47 KB
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
import {
LuaHelpFunction,
LuaHelpFunctionParameter,
LuaHelpFunctionReturn,
} from "@cassolette/luahelpparser";
import {
IDocFunc,
IDocFuncParam,
IDocFuncType,
luaHelpTypeToExportable,
} from "./common.util";
import {
ExportableType,
LiteralExportable,
nullExportable,
} from "./export-types";
import { overrides } from "./luahelp-functions.overrides";
/**
* Describes a generic type which has a documented description.
*/
export class DocFunctionType implements IDocFuncType {
constructor(
public type: ExportableType,
public description: string = "",
public defaultValue?: ExportableType,
public additionalDescription: string[] = []
) {}
static fromAstReturn(ast: LuaHelpFunctionReturn) {
const type = luaHelpTypeToExportable[ast.type];
if (!type) throw new Error("no known type " + ast.type);
return new DocFunctionType(type, ast.description);
}
get isOptional() {
return this.defaultValue != null;
}
setDescription(description: string) {
this.description = description;
}
addDescription(desc: string) {
this.additionalDescription.push(desc);
}
setType(type: ExportableType) {
this.type = type;
}
}
/**
* Describes a parameter which has a documented description.
*/
export class DocFunctionParam extends DocFunctionType implements IDocFuncParam {
/**
* The overriden name to export instead of `name`
*/
public overrideName?: string;
constructor(
public name: string,
type: ExportableType,
description?: string,
defaultValue?: ExportableType,
additionalDescription?: string[]
) {
super(type, description, defaultValue, additionalDescription);
}
static fromAst(ast: LuaHelpFunctionParameter) {
const type = luaHelpTypeToExportable[ast.type];
if (!type) throw new Error("no known type " + ast.type);
return new DocFunctionParam(
ast.name,
type,
ast.description,
ast.default
? ast.default === "nil"
? nullExportable
: new LiteralExportable(ast.default)
: null,
Array.from(ast.additionalDescriptions)
);
}
get displayName() {
return this.overrideName || this.name;
}
setOverrideName(name: string) {
this.overrideName = name;
}
}
/**
* Describes a doc function that can be altered.
*/
export class DocFunction implements IDocFunc {
public params: Map<string, DocFunctionParam>;
constructor(
public name: string,
public description: string[] = [],
public returnType?: DocFunctionType
) {
this.params = new Map<string, DocFunctionParam>();
}
static fromAstArray(ast: LuaHelpFunction[]) {
const ret = [] as DocFunction[];
for (const astf of ast) {
const lhf = new DocFunction(
astf.name,
Array.from(astf.description),
astf.return ? DocFunctionType.fromAstReturn(astf.return) : null
);
for (const p of astf.parameters) {
lhf.addParam(DocFunctionParam.fromAst(p));
}
ret.push(lhf);
}
return ret;
}
addParam(param: DocFunctionParam) {
this.params.set(param.name, param);
return this;
}
setDescription(description: string | string[]) {
this.description =
typeof description === "string" ? [description] : description;
}
pushDescription(description: string) {
this.description.push("");
this.description.push(description);
return this;
}
setReturnType(type: DocFunctionType) {
this.returnType = type;
}
}
export { overrides as functionsOverrides };