cluaupp 0.1.4 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +12 -7
  3. package/bin/cluau.js +1 -1
  4. package/bin/cluaupp.js +1 -1
  5. package/docs/README.md +1 -1
  6. package/docs/architecture.md +52 -77
  7. package/docs/cli.md +29 -9
  8. package/docs/comparison.md +3 -3
  9. package/docs/config.md +6 -6
  10. package/docs/cpp-organization.md +2 -2
  11. package/docs/examples/index.md +2 -0
  12. package/docs/getting-started.md +7 -5
  13. package/docs/intellisense.md +49 -31
  14. package/docs/intro.md +2 -2
  15. package/docs/oop/file-tags.md +16 -17
  16. package/docs/oop/index.md +2 -2
  17. package/docs/oop/modules.md +3 -1
  18. package/docs/oop/services.md +7 -14
  19. package/docs/syntax.md +6 -5
  20. package/editors/vscode/extension.js +97 -146
  21. package/editors/vscode/package.json +6 -6
  22. package/examples/README.md +18 -0
  23. package/examples/game/.clangd +25 -0
  24. package/examples/game/.vscode/c_cpp_properties.json +27 -0
  25. package/examples/game/.vscode/extensions.json +5 -0
  26. package/examples/game/.vscode/settings.json +27 -0
  27. package/examples/game/Packages/.gitkeep +0 -0
  28. package/examples/game/cluaupp.config.json +6 -0
  29. package/examples/game/compile_flags.txt +6 -0
  30. package/examples/game/default.project.json +39 -0
  31. package/examples/game/package.json +9 -0
  32. package/examples/game/rokit.toml +5 -0
  33. package/examples/game/src/client/hud.client.cpp +12 -0
  34. package/{src → examples/game/src}/client/init.client.cpp +1 -0
  35. package/examples/game/src/server/combat.server.cpp +23 -0
  36. package/{src → examples/game/src}/server/leaderstats.server.cpp +1 -0
  37. package/examples/game/wally.toml +11 -0
  38. package/generated/api.js +51 -0
  39. package/generated/architecture.js +473 -0
  40. package/generated/ast.js +2 -0
  41. package/generated/cli.js +191 -0
  42. package/generated/compile.js +115 -0
  43. package/generated/editor-install.js +170 -0
  44. package/generated/emit.js +503 -0
  45. package/generated/emitter/luau-codegen.js +167 -0
  46. package/generated/emitter/translators.js +164 -0
  47. package/generated/headers.js +220 -0
  48. package/generated/index.html +49 -0
  49. package/generated/intellisense.js +277 -0
  50. package/generated/layout.js +112 -0
  51. package/generated/lex.js +146 -0
  52. package/generated/libs.js +484 -0
  53. package/generated/lsp.js +55 -0
  54. package/generated/package-info.js +11 -0
  55. package/generated/parse.js +607 -0
  56. package/generated/parser/collector.js +100 -0
  57. package/generated/parser/index.js +30 -0
  58. package/generated/preprocess.js +181 -0
  59. package/generated/system-understander.js +443 -0
  60. package/generated/transpile.js +66 -0
  61. package/generated/types.js +2 -0
  62. package/generated/understand.js +298 -0
  63. package/generated/utils/process-orchestrator.js +63 -0
  64. package/generated/utils/project.js +491 -0
  65. package/generated/utils/rojo-mapper.js +181 -0
  66. package/generated/utils/safe-paths.js +104 -0
  67. package/package.json +25 -8
  68. package/src/api.ts +53 -0
  69. package/src/{architecture.js → architecture.ts} +80 -33
  70. package/src/ast.ts +37 -0
  71. package/src/cli.ts +214 -0
  72. package/src/compile.ts +118 -0
  73. package/src/editor-install.ts +182 -0
  74. package/src/{emit.js → emit.ts} +5 -6
  75. package/src/emitter/luau-codegen.ts +187 -0
  76. package/src/emitter/translators.ts +168 -0
  77. package/src/headers.ts +233 -0
  78. package/src/intellisense.ts +286 -0
  79. package/src/{layout.js → layout.ts} +114 -129
  80. package/src/{lex.js → lex.ts} +4 -6
  81. package/src/{libs.js → libs.ts} +119 -46
  82. package/src/lsp.ts +60 -0
  83. package/src/package-info.ts +7 -0
  84. package/src/{parse.js → parse.ts} +3 -4
  85. package/src/parser/collector.ts +115 -0
  86. package/src/parser/index.ts +27 -0
  87. package/src/{preprocess.js → preprocess.ts} +64 -32
  88. package/src/system-understander.ts +501 -0
  89. package/src/transpile.ts +64 -0
  90. package/src/tree-sitter-cpp.d.ts +4 -0
  91. package/src/types.ts +81 -0
  92. package/src/{understand.js → understand.ts} +24 -213
  93. package/src/utils/process-orchestrator.ts +72 -0
  94. package/src/utils/project.ts +506 -0
  95. package/src/utils/rojo-mapper.ts +190 -0
  96. package/src/utils/safe-paths.ts +98 -0
  97. package/templates/game/.clangd +9 -0
  98. package/templates/game/.vscode/c_cpp_properties.json +1 -1
  99. package/templates/game/.vscode/extensions.json +5 -6
  100. package/templates/game/.vscode/settings.json +7 -6
  101. package/templates/game/cluaupp.config.json +2 -2
  102. package/templates/game/compile_flags.txt +1 -0
  103. package/templates/game/rokit.toml +5 -0
  104. package/templates/game/src/client/init.client.cpp +1 -0
  105. package/templates/game/src/server/leaderstats.server.cpp +1 -0
  106. package/src/api.js +0 -57
  107. package/src/cli.js +0 -481
  108. package/src/compile.js +0 -56
  109. package/src/editor-install.js +0 -218
  110. package/src/intellisense.js +0 -1368
  111. package/src/lsp.js +0 -227
  112. /package/{src → examples/game/src}/shared/config.cpp +0 -0
  113. /package/{src → examples/game/src}/shared/config.h +0 -0
@@ -0,0 +1,23 @@
1
+ #pragma strict
2
+ #include <cluaupp/roblox.hpp>
3
+
4
+ void ApplyDamage(Player* player, int amount) {
5
+ auto* character = player->Character;
6
+ if (character == nullptr) {
7
+ return;
8
+ }
9
+ auto* humanoid = character->FindFirstChildOfClass("Humanoid");
10
+ if (humanoid == nullptr) {
11
+ return;
12
+ }
13
+ humanoid->TakeDamage(amount);
14
+ }
15
+
16
+ void OnPlayer(Player* player) {
17
+ ApplyDamage(player, 0);
18
+ }
19
+
20
+ void init() {
21
+ auto* players = GetService<Players>();
22
+ players->PlayerAdded.Connect(OnPlayer);
23
+ }
@@ -1,3 +1,4 @@
1
+ #pragma strict
1
2
  #include <cluaupp/roblox.hpp>
2
3
 
3
4
  void CreateLeaderstats(Player* player) {
@@ -0,0 +1,11 @@
1
+ [package]
2
+ name = "kartzdev/cluaupp-game"
3
+ version = "0.1.0"
4
+ registry = "https://github.com/UpliftGames/wally-index"
5
+ realm = "shared"
6
+
7
+ # CluauppLibs already ships Janitor, Promise, Fusion, Iris, Cmdr, TopbarPlus,
8
+ # Chrono, DataServiceV2, EzVisualz, StateMachine, Spring, Display, Module3D,
9
+ # FormatNumber. Add Wally entries only for extra packages.
10
+
11
+ [dependencies]
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.DATATYPES = exports.METHODS = exports.SERVICES = exports.INSTANCE_TYPES = void 0;
7
+ exports.isInstanceType = isInstanceType;
8
+ exports.isService = isService;
9
+ exports.isMethod = isMethod;
10
+ exports.isDatatype = isDatatype;
11
+ exports.luauType = luauType;
12
+ const node_module_1 = require("node:module");
13
+ const node_path_1 = __importDefault(require("node:path"));
14
+ const projectRoot = node_path_1.default.resolve(__dirname, "..");
15
+ const requireGenerated = (0, node_module_1.createRequire)(node_path_1.default.join(projectRoot, "src", "api.generated.js"));
16
+ const generated = requireGenerated("./api.generated.js");
17
+ exports.INSTANCE_TYPES = new Set(generated.INSTANCE_TYPES);
18
+ exports.SERVICES = new Set(generated.SERVICES);
19
+ exports.METHODS = new Set(generated.METHODS);
20
+ exports.DATATYPES = new Set(generated.DATATYPES);
21
+ const LUAU_TYPES = {
22
+ void: "()",
23
+ int: "number",
24
+ float: "number",
25
+ double: "number",
26
+ bool: "boolean",
27
+ string: "string",
28
+ auto: null,
29
+ };
30
+ function isInstanceType(name) {
31
+ return exports.INSTANCE_TYPES.has(name);
32
+ }
33
+ function isService(name) {
34
+ return exports.SERVICES.has(name);
35
+ }
36
+ function isMethod(name) {
37
+ return exports.METHODS.has(name);
38
+ }
39
+ function isDatatype(name) {
40
+ return exports.DATATYPES.has(name);
41
+ }
42
+ function luauType(name) {
43
+ if (!name) {
44
+ return null;
45
+ }
46
+ const cleaned = String(name).replace(/\*+$/, "").replace(/^const\s+/, "").replace(/^Enum::/, "Enum.");
47
+ if (cleaned in LUAU_TYPES) {
48
+ return LUAU_TYPES[cleaned];
49
+ }
50
+ return cleaned;
51
+ }
@@ -0,0 +1,473 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.VALUE_CLASSES = exports.toPascalServiceName = exports.analyze = void 0;
7
+ exports.planOutput = planOutput;
8
+ // @ts-nocheck
9
+ const node_path_1 = __importDefault(require("node:path"));
10
+ const emit_js_1 = require("./emit.js");
11
+ const libs_js_1 = require("./libs.js");
12
+ const layout_js_1 = require("./layout.js");
13
+ const understand_js_1 = require("./understand.js");
14
+ Object.defineProperty(exports, "VALUE_CLASSES", { enumerable: true, get: function () { return understand_js_1.VALUE_CLASSES; } });
15
+ Object.defineProperty(exports, "analyze", { enumerable: true, get: function () { return understand_js_1.analyze; } });
16
+ Object.defineProperty(exports, "toPascalServiceName", { enumerable: true, get: function () { return understand_js_1.toPascalServiceName; } });
17
+ const preprocess_js_1 = require("./preprocess.js");
18
+ function header(plan) {
19
+ const lines = [];
20
+ if (plan && plan.strict) {
21
+ lines.push("--!strict");
22
+ }
23
+ lines.push("-- Compiled by Cluaupp — C++ × Luau");
24
+ if (plan && plan.reasoning) {
25
+ for (const line of plan.reasoning) {
26
+ lines.push(`-- ${line}`);
27
+ }
28
+ }
29
+ lines.push("");
30
+ return lines.join("\n");
31
+ }
32
+ function cluauppLib(name) {
33
+ return (0, libs_js_1.requireCluauppLib)(name);
34
+ }
35
+ function emitTypes(plan) {
36
+ const lines = [header(plan).trimEnd(), ""];
37
+ lines.push('const ReplicatedStorage = game:GetService("ReplicatedStorage")');
38
+ lines.push(`const Occlude = ${cluauppLib("Occlude")}`);
39
+ lines.push(`const ArrayIndexer = ${cluauppLib("ArrayIndexer")}`);
40
+ lines.push("");
41
+ if (plan.stats.length > 0) {
42
+ const union = plan.stats.map((stat) => `"${stat.name}"`).join(" | ");
43
+ lines.push(`export type StatName = ${union}`);
44
+ lines.push("");
45
+ lines.push(`export type ${plan.serviceName}Data = {`);
46
+ for (const stat of plan.stats) {
47
+ lines.push(` ${stat.name}: ${stat.luau},`);
48
+ }
49
+ lines.push("}");
50
+ lines.push("");
51
+ }
52
+ if (plan.roles.cache) {
53
+ lines.push("export type PlayerCache = {");
54
+ lines.push(" Folder: Folder,");
55
+ for (const stat of plan.stats) {
56
+ lines.push(` ${stat.name}: ${stat.instance},`);
57
+ }
58
+ lines.push("}");
59
+ lines.push("");
60
+ }
61
+ const manifest = [];
62
+ if (plan.roles.cache) {
63
+ manifest.push(" CacheController: {");
64
+ manifest.push(" Get: (player: Player) -> PlayerCache?,");
65
+ manifest.push(" Ensure: (player: Player) -> PlayerCache,");
66
+ manifest.push(" Clear: (player: Player) -> (),");
67
+ manifest.push(" ClearAll: () -> (),");
68
+ manifest.push(" },");
69
+ }
70
+ if (plan.roles.players) {
71
+ manifest.push(" PlayersManager: {");
72
+ manifest.push(" Start: (onPlayer: (player: Player) -> (), onLeave: ((player: Player) -> ())?) -> (),");
73
+ manifest.push(" Stop: () -> (),");
74
+ manifest.push(" },");
75
+ }
76
+ if (plan.roles.domain) {
77
+ manifest.push(` ${plan.roles.domain}: {`);
78
+ manifest.push(" Start: () -> (),");
79
+ manifest.push(" Stop: () -> (),");
80
+ manifest.push(" },");
81
+ }
82
+ lines.push("export type ServiceManifest = {");
83
+ if (manifest.length === 0) {
84
+ lines.push(" Main: { Start: () -> (), Stop: () -> () },");
85
+ }
86
+ else {
87
+ lines.push(...manifest);
88
+ }
89
+ lines.push("}");
90
+ lines.push("");
91
+ if (plan.roles.cache) {
92
+ lines.push('export type CacheService = ArrayIndexer.Table<ServiceManifest, "CacheController">');
93
+ }
94
+ else if (plan.roles.domain) {
95
+ lines.push(`export type DomainService = ArrayIndexer.Table<ServiceManifest, "${plan.roles.domain}">`);
96
+ }
97
+ else {
98
+ lines.push('export type MainService = ArrayIndexer.Table<ServiceManifest, "Main">');
99
+ }
100
+ if (plan.stats.length > 1) {
101
+ const hide = plan.stats[plan.stats.length - 1].name;
102
+ lines.push(`export type HudData = Occlude.Keys<${plan.serviceName}Data, "${hide}">`);
103
+ }
104
+ lines.push("");
105
+ lines.push("return {}");
106
+ lines.push("");
107
+ return lines.join("\n");
108
+ }
109
+ function emitPlayersManager(plan) {
110
+ return `${header(plan).trimEnd()}
111
+
112
+ const Players = game:GetService("Players")
113
+ const ReplicatedStorage = game:GetService("ReplicatedStorage")
114
+ const Janitor = ${cluauppLib("Janitor")}
115
+
116
+ type Janitor = Janitor.Janitor
117
+ export type PlayerHandler = (player: Player) -> ()
118
+
119
+ local PlayersManager = {}
120
+ local lifetime: Janitor? = nil
121
+ local leaveHandler: PlayerHandler? = nil
122
+
123
+ function PlayersManager.Start(onPlayer: PlayerHandler, onLeave: PlayerHandler?)
124
+ PlayersManager.Stop()
125
+ local janitor = Janitor.new()
126
+ lifetime = janitor
127
+ leaveHandler = onLeave
128
+
129
+ const function accept(player: Player)
130
+ onPlayer(player)
131
+ end
132
+
133
+ for _, player in Players:GetPlayers() do
134
+ accept(player)
135
+ end
136
+
137
+ janitor:Add(Players.PlayerAdded:Connect(accept), "Disconnect", "PlayerAdded")
138
+ if onLeave then
139
+ janitor:Add(Players.PlayerRemoving:Connect(onLeave), "Disconnect", "PlayerRemoving")
140
+ end
141
+ end
142
+
143
+ function PlayersManager.Stop()
144
+ if lifetime == nil then
145
+ return
146
+ end
147
+ local onLeave = leaveHandler
148
+ leaveHandler = nil
149
+ if onLeave then
150
+ for _, player in Players:GetPlayers() do
151
+ onLeave(player)
152
+ end
153
+ end
154
+ lifetime:Cleanup()
155
+ lifetime = nil
156
+ end
157
+
158
+ return PlayersManager
159
+ `;
160
+ }
161
+ function emitCacheController(plan) {
162
+ const types = plan.typesName;
163
+ const folder = plan.folderName || "leaderstats";
164
+ const lines = [header(plan).trimEnd(), ""];
165
+ lines.push(`const Types = require(script.Parent.${types})`);
166
+ lines.push("");
167
+ lines.push(`const FOLDER_NAME = "${folder}"`);
168
+ lines.push("");
169
+ lines.push("local cache: { [Player]: Types.PlayerCache } = {}");
170
+ lines.push("local CacheController = {}");
171
+ lines.push("");
172
+ lines.push("function CacheController.Get(player: Player): Types.PlayerCache?");
173
+ lines.push(" return cache[player]");
174
+ lines.push("end");
175
+ lines.push("");
176
+ lines.push("function CacheController.Ensure(player: Player): Types.PlayerCache");
177
+ lines.push(" local existing = cache[player]");
178
+ lines.push(" if existing then");
179
+ lines.push(" return existing");
180
+ lines.push(" end");
181
+ lines.push("");
182
+ lines.push(" local folderInstance = player:FindFirstChild(FOLDER_NAME)");
183
+ lines.push(" local folder: Folder");
184
+ lines.push(' if folderInstance and folderInstance:IsA("Folder") then');
185
+ lines.push(" folder = folderInstance");
186
+ lines.push(" else");
187
+ lines.push(' folder = Instance.new("Folder")');
188
+ lines.push(" folder.Name = FOLDER_NAME");
189
+ lines.push(" folder.Parent = player");
190
+ lines.push(" end");
191
+ lines.push("");
192
+ for (const stat of plan.stats) {
193
+ const ident = stat.name;
194
+ lines.push(` local existing${ident} = folder:FindFirstChild("${stat.name}")`);
195
+ lines.push(` local ${ident}: ${stat.instance}`);
196
+ lines.push(` if existing${ident} and existing${ident}:IsA("${stat.instance}") then`);
197
+ lines.push(` ${ident} = existing${ident}`);
198
+ lines.push(" else");
199
+ lines.push(` ${ident} = Instance.new("${stat.instance}")`);
200
+ lines.push(` ${ident}.Name = "${stat.name}"`);
201
+ lines.push(` ${ident}.Value = ${stat.defaultValue}`);
202
+ lines.push(` ${ident}.Parent = folder`);
203
+ lines.push(" end");
204
+ lines.push("");
205
+ }
206
+ lines.push(" local record: Types.PlayerCache = {");
207
+ lines.push(" Folder = folder,");
208
+ for (const stat of plan.stats) {
209
+ lines.push(` ${stat.name} = ${stat.name},`);
210
+ }
211
+ lines.push(" }");
212
+ lines.push(" cache[player] = record");
213
+ lines.push(" return record");
214
+ lines.push("end");
215
+ lines.push("");
216
+ lines.push("function CacheController.Clear(player: Player)");
217
+ lines.push(" cache[player] = nil");
218
+ lines.push("end");
219
+ lines.push("");
220
+ lines.push("function CacheController.ClearAll()");
221
+ lines.push(" table.clear(cache)");
222
+ lines.push("end");
223
+ lines.push("");
224
+ lines.push("return CacheController");
225
+ lines.push("");
226
+ return lines.join("\n");
227
+ }
228
+ function emitMain(plan) {
229
+ const lines = [header(plan).trimEnd(), ""];
230
+ if (plan.roles.players) {
231
+ lines.push("const PlayersManager = require(script.Parent.PlayersManager)");
232
+ }
233
+ if (plan.roles.cache) {
234
+ lines.push("const CacheController = require(script.Parent.CacheController)");
235
+ }
236
+ if (plan.roles.domain) {
237
+ lines.push(`const ${plan.roles.domain} = require(script.Parent.${plan.roles.domain})`);
238
+ }
239
+ lines.push("");
240
+ lines.push("local Main = {}");
241
+ lines.push("");
242
+ lines.push("function Main.Start()");
243
+ if (plan.roles.players && plan.roles.cache) {
244
+ lines.push(" PlayersManager.Start(function(player: Player)");
245
+ lines.push(" CacheController.Ensure(player)");
246
+ lines.push(" end, function(player: Player)");
247
+ lines.push(" CacheController.Clear(player)");
248
+ lines.push(" end)");
249
+ }
250
+ else if (plan.roles.players) {
251
+ lines.push(" PlayersManager.Start(function(_player: Player) end)");
252
+ }
253
+ if (plan.roles.domain) {
254
+ lines.push(` ${plan.roles.domain}.Start()`);
255
+ }
256
+ if (!plan.roles.players && !plan.roles.domain) {
257
+ lines.push(" return");
258
+ }
259
+ lines.push("end");
260
+ lines.push("");
261
+ lines.push("function Main.Stop()");
262
+ if (plan.roles.domain) {
263
+ lines.push(` ${plan.roles.domain}.Stop()`);
264
+ }
265
+ if (plan.roles.cache) {
266
+ lines.push(" CacheController.ClearAll()");
267
+ }
268
+ if (plan.roles.players) {
269
+ lines.push(" PlayersManager.Stop()");
270
+ }
271
+ if (!plan.roles.domain && !plan.roles.cache && !plan.roles.players) {
272
+ lines.push(" return");
273
+ }
274
+ lines.push("end");
275
+ lines.push("");
276
+ lines.push("return Main");
277
+ lines.push("");
278
+ return lines.join("\n");
279
+ }
280
+ function emitBootstrap(plan) {
281
+ return `${header(plan)}require(script.Main):Start()
282
+ `;
283
+ }
284
+ function emitConfig(plan, ast, options) {
285
+ const owned = (ast.body || []).some((decl) => decl.owner);
286
+ if (owned) {
287
+ return `${header(plan).trimEnd()}\n\n${(0, emit_js_1.emit)(ast, { ...options, skipHeader: true, skipInit: true }).trimEnd()}\n`;
288
+ }
289
+ const lines = [];
290
+ if (plan.onlyConsts) {
291
+ lines.push(header(plan).trimEnd());
292
+ lines.push("");
293
+ for (const item of plan.consts) {
294
+ lines.push(`const ${item.name}: ${item.luau} = ${item.value}`);
295
+ }
296
+ }
297
+ else {
298
+ lines.push(header(plan).trimEnd());
299
+ lines.push("");
300
+ lines.push((0, emit_js_1.emit)(ast, { ...options, skipHeader: true, skipInit: true }).trimEnd());
301
+ }
302
+ lines.push("");
303
+ lines.push("return {");
304
+ for (const item of plan.consts) {
305
+ lines.push(` ${item.name} = ${item.name},`);
306
+ }
307
+ for (const decl of ast.body || []) {
308
+ if (decl.type === "function" && decl.name !== "init") {
309
+ lines.push(` ${decl.name} = ${decl.name},`);
310
+ }
311
+ }
312
+ if ((ast.body || []).some((decl) => decl.type === "function" && decl.name === "init")) {
313
+ lines.push(" Start = init,");
314
+ lines.push(" Init = init,");
315
+ lines.push(" init = init,");
316
+ }
317
+ lines.push("}");
318
+ lines.push("");
319
+ return lines.join("\n");
320
+ }
321
+ function emitDecls(decls, options) {
322
+ if (!decls || decls.length === 0) {
323
+ return "";
324
+ }
325
+ return (0, emit_js_1.emit)({ type: "program", body: decls }, { ...options, skipHeader: true, skipInit: true }).trimEnd();
326
+ }
327
+ function emitDomainController(plan, ast, options) {
328
+ const keep = (ast.body || []).filter((decl) => {
329
+ return decl.type === "decl" || decl.type === "proto" || decl.type === "function" || decl.type === "expr";
330
+ });
331
+ const groups = (0, layout_js_1.organizeDecls)(keep);
332
+ const name = plan.roles.domain;
333
+ const entry = keep.find((decl) => decl.type === "function" && layout_js_1.ENTRY_FN.test(decl.name || ""));
334
+ const bootExprs = keep.filter((decl) => decl.type === "expr");
335
+ const janitors = (0, layout_js_1.janitorNames)(keep);
336
+ const closer = keep.find((decl) => decl.type === "function" && /^(OnClose|Cleanup|Shutdown)$/i.test(decl.name));
337
+ const stopLines = [];
338
+ if (janitors.length > 0) {
339
+ for (const janitor of janitors) {
340
+ stopLines.push(` ${janitor}:Cleanup()`);
341
+ }
342
+ }
343
+ else if (closer) {
344
+ stopLines.push(` ${closer.name}()`);
345
+ }
346
+ else {
347
+ stopLines.push(" return");
348
+ }
349
+ const boot = entry
350
+ ? ` ${entry.name}()`
351
+ : bootExprs.length
352
+ ? emitDecls(bootExprs, options)
353
+ .split("\n")
354
+ .map((line) => (line ? `\t${line}` : line))
355
+ .join("\n")
356
+ : " return";
357
+ const startFn = `function ${name}.Start()\n ${name}.Stop()\n${boot}\nend`;
358
+ const stopFn = `function ${name}.Stop()\n${stopLines.join("\n")}\nend`;
359
+ const body = `${header(plan).trimEnd()}\n\n${(0, layout_js_1.emitSection)(layout_js_1.SECTION.api, emitDecls(groups.api, options))}${(0, layout_js_1.emitSection)(layout_js_1.SECTION.constants, emitDecls(groups.constants, options))}${(0, layout_js_1.emitSection)(layout_js_1.SECTION.variables, (0, layout_js_1.joinBlocks)([emitDecls(groups.variables, options), `local ${name} = {}`]))}${(0, layout_js_1.emitSection)(layout_js_1.SECTION.support, emitDecls(groups.support, options))}${(0, layout_js_1.emitSection)(layout_js_1.SECTION.principal, (0, layout_js_1.joinBlocks)([emitDecls(groups.principal, options), startFn]))}${(0, layout_js_1.emitSection)(layout_js_1.SECTION.cleanup, (0, layout_js_1.joinBlocks)([emitDecls(groups.cleanup, options), stopFn]))}${(0, layout_js_1.emitSection)(layout_js_1.SECTION.returns, `return ${name}`)}`;
360
+ return body;
361
+ }
362
+ function emitModule(plan, ast, options) {
363
+ return emitConfig(plan, ast, options);
364
+ }
365
+ function emitScriptMeta(runContext) {
366
+ return `${JSON.stringify({
367
+ properties: {
368
+ RunContext: `Enum.RunContext.${runContext}`,
369
+ },
370
+ }, null, "\t")}\n`;
371
+ }
372
+ function serviceBootName(plan) {
373
+ if (plan.isClient) {
374
+ return "init.client.luau";
375
+ }
376
+ return "init.server.luau";
377
+ }
378
+ function serviceFiles(plan, ast, options, dir) {
379
+ const folder = `${dir}/${plan.serviceName}`;
380
+ const boot = serviceBootName(plan);
381
+ const files = [{ name: `${folder}/${boot}`, contents: emitBootstrap(plan) }];
382
+ if (!plan.isClient && plan.runContext) {
383
+ files.push({ name: `${folder}/init.meta.json`, contents: emitScriptMeta(plan.runContext) });
384
+ }
385
+ files.push({ name: `${folder}/Main.luau`, contents: emitMain(plan) });
386
+ if (plan.roles.players) {
387
+ files.push({ name: `${folder}/PlayersManager.luau`, contents: emitPlayersManager(plan) });
388
+ }
389
+ if (plan.roles.cache) {
390
+ files.push({ name: `${folder}/CacheController.luau`, contents: emitCacheController(plan) });
391
+ }
392
+ if (plan.roles.domain) {
393
+ files.push({ name: `${folder}/${plan.roles.domain}.luau`, contents: emitDomainController(plan, ast, options) });
394
+ }
395
+ files.push({ name: `${folder}/${plan.typesName}.luau`, contents: emitTypes(plan) });
396
+ return files;
397
+ }
398
+ function serviceFolderStale(plan, rel) {
399
+ const dir = node_path_1.default.posix.dirname(rel).replace(/^\.$/, "");
400
+ const serviceDir = dir && dir !== "." ? dir : plan.isClient ? "client" : "server";
401
+ const folder = `${serviceDir}/${plan.serviceName}`;
402
+ return [
403
+ folder,
404
+ `${folder}/init.luau`,
405
+ `${folder}/init.server.luau`,
406
+ `${folder}/init.client.luau`,
407
+ `${folder}/init.meta.json`,
408
+ `${folder}/Main.luau`,
409
+ `${folder}/PlayersManager.luau`,
410
+ `${folder}/CacheController.luau`,
411
+ `${folder}/${plan.typesName}.luau`,
412
+ plan.roles && plan.roles.domain ? `${folder}/${plan.roles.domain}.luau` : null,
413
+ ].filter(Boolean);
414
+ }
415
+ function planOutput(ast, fileName, options = {}) {
416
+ const plan = (0, understand_js_1.analyze)(ast, fileName);
417
+ plan.strict = options.strict === true;
418
+ const rel = (options.relativeName || fileName).replace(/\\/g, "/");
419
+ const dir = node_path_1.default.dirname(rel).replace(/^\.$/, "");
420
+ const outDir = dir && dir !== "." ? dir : "";
421
+ const prefix = outDir ? `${outDir}/` : "";
422
+ const stale = serviceFolderStale(plan, rel);
423
+ if (options.siblingHeader) {
424
+ return {
425
+ kind: "module",
426
+ plan,
427
+ files: [{ name: (0, preprocess_js_1.implOutName)(rel), contents: emitModule(plan, ast, { ...options, skipInit: true }) }],
428
+ stale: [],
429
+ };
430
+ }
431
+ if (options.architecture === true) {
432
+ if (plan.kind === "legacy") {
433
+ return { kind: "legacy", plan, files: null, stale: [], outName: (0, understand_js_1.legacyOutName)(rel) };
434
+ }
435
+ if (plan.kind === "service") {
436
+ const serviceDir = outDir || (plan.isClient ? "client" : "server");
437
+ const folder = `${serviceDir}/${plan.serviceName}`;
438
+ const serviceStale = plan.isClient
439
+ ? [`${folder}/init.luau`, `${folder}/init.server.luau`, `${folder}/init.meta.json`]
440
+ : [`${folder}/init.luau`, `${folder}/init.client.luau`];
441
+ return {
442
+ kind: "service",
443
+ plan,
444
+ files: serviceFiles(plan, ast, options, serviceDir),
445
+ stale: serviceStale,
446
+ };
447
+ }
448
+ if (plan.kind === "config" || plan.kind === "module") {
449
+ return {
450
+ kind: plan.kind,
451
+ plan,
452
+ files: [{ name: `${prefix}${plan.serviceName}.luau`, contents: emitModule(plan, ast, options) }],
453
+ stale: [rel.replace(/\.(cpp|cc|cxx|c|h|hpp|hh)$/i, ".luau")],
454
+ };
455
+ }
456
+ return { kind: "flat", plan, files: null, stale: [], outName: (0, understand_js_1.modernScriptOutName)(rel) };
457
+ }
458
+ if (plan.kind === "legacy") {
459
+ return { kind: "legacy", plan, files: null, stale, outName: (0, understand_js_1.legacyOutName)(rel) };
460
+ }
461
+ if (plan.kind === "config" || plan.kind === "module") {
462
+ return {
463
+ kind: plan.kind,
464
+ plan,
465
+ files: [{ name: `${prefix}${plan.serviceName}.luau`, contents: emitModule(plan, ast, options) }],
466
+ stale: [rel.replace(/\.(cpp|cc|cxx|c|h|hpp|hh)$/i, ".luau"), ...stale],
467
+ };
468
+ }
469
+ const outName = (0, understand_js_1.modernScriptOutName)(rel);
470
+ const stripped = rel.replace(/\.(server|client|plugin)\.(cpp|cc|cxx|c|h|hpp|hh)$/i, ".luau");
471
+ const extraStale = stripped !== outName ? [stripped] : [];
472
+ return { kind: "flat", plan, files: null, stale: [...stale, ...extraStale], outName };
473
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });