-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathluahelp-events.ts
More file actions
138 lines (118 loc) · 3.39 KB
/
Copy pathluahelp-events.ts
File metadata and controls
138 lines (118 loc) · 3.39 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
import {
LuaHelpEvent,
LuaHelpEventParameter,
LuaHelpFunctionReturn,
} from "@cassolette/luahelpparser";
import {
IDocFunc,
IDocFuncParam,
IDocFuncType,
luaHelpTypeToExportable,
} from "./common.util";
import { ExportableType } from "./export-types";
import { overrides } from "./luahelp-events.overrides";
/**
* Describes a generic type which has a documented description.
*/
export class DocEventType implements IDocFuncType {
constructor(
public type: ExportableType,
public description: string = "",
public additionalDescription: string[] = []
) {}
static fromAstReturn(ast: LuaHelpFunctionReturn) {
const type = luaHelpTypeToExportable[ast.type];
if (!type) throw new Error("no known type " + ast.type);
return new DocEventType(type, ast.description);
}
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 DocEventParam extends DocEventType implements IDocFuncParam {
/**
* The overriden name to export instead of `name`
*/
public overrideName?: string;
constructor(
public name: string,
type: ExportableType,
description?: string,
additionalDescription?: string[]
) {
super(type, description, additionalDescription);
}
static fromAst(ast: LuaHelpEventParameter) {
const type = luaHelpTypeToExportable[ast.type];
if (!type) throw new Error("no known type " + ast.type);
return new DocEventParam(
ast.name,
type,
ast.description,
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 DocEvent implements IDocFunc {
public params: Map<string, DocEventParam>;
constructor(public name: string, public description: string[] = []) {
this.params = new Map<string, DocEventParam>();
}
/**
* Gets the event string identifier based on the function name.
*
* The identifier is derived by stripping away the preceding "event" string and then lower-casing the first character.
* For example, the identifier of `eventTextAreaCallback` would be `textAreaCallback`.
*/
get eventStringIdentifier() {
const m = this.name.match(/^(?:event)?(\w)(\w*)$/i);
if (m != null) {
const [_, firstChar, remainingString] = m;
return firstChar.toLowerCase() + remainingString;
}
return null;
}
static fromAstArray(ast: LuaHelpEvent[]) {
const ret = [] as DocEvent[];
for (const astf of ast) {
const lhf = new DocEvent(astf.name, Array.from(astf.description));
for (const p of astf.parameters) {
lhf.addParam(DocEventParam.fromAst(p));
}
ret.push(lhf);
}
return ret;
}
addParam(param: DocEventParam) {
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;
}
}
export { overrides as eventsOverrides };