castle-web-cli 0.4.0 → 0.4.2
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.
- package/dist/api.d.ts +53 -5
- package/dist/api.js +42 -15
- package/dist/config.d.ts +2 -0
- package/dist/config.js +25 -11
- package/dist/get-deck.d.ts +3 -0
- package/dist/get-deck.js +64 -0
- package/dist/ide-client.d.ts +1 -0
- package/dist/ide-client.js +537 -0
- package/dist/ide.d.ts +16 -0
- package/dist/ide.js +546 -0
- package/dist/index.js +84 -57
- package/dist/init.d.ts +3 -1
- package/dist/init.js +170 -24
- package/dist/localPaths.d.ts +6 -0
- package/dist/localPaths.js +33 -0
- package/dist/login.js +1 -1
- package/dist/preview.d.ts +4 -1
- package/dist/preview.js +63 -41
- package/dist/save-deck.d.ts +2 -0
- package/dist/{push.js → save-deck.js} +66 -5
- package/dist/serve.d.ts +2 -0
- package/dist/serve.js +293 -22
- package/kits/basic-2d/.prettierrc +8 -0
- package/kits/basic-2d/CLAUDE.md +131 -0
- package/kits/basic-2d/behaviors/Camera.jsx +43 -0
- package/kits/basic-2d/behaviors/Collider.jsx +71 -0
- package/kits/basic-2d/behaviors/Drawing.jsx +139 -0
- package/kits/basic-2d/behaviors/Layout.jsx +16 -0
- package/kits/basic-2d/drawings/floor.drawing +70 -0
- package/kits/basic-2d/editors/App.jsx +152 -0
- package/kits/basic-2d/editors/CodeEditor.jsx +112 -0
- package/kits/basic-2d/editors/DrawingEditor.jsx +222 -0
- package/kits/basic-2d/editors/FileBrowser.jsx +143 -0
- package/kits/basic-2d/editors/PlayOnly.jsx +21 -0
- package/kits/basic-2d/editors/SceneEditor.jsx +1012 -0
- package/kits/basic-2d/editors/behaviorRegistry.js +24 -0
- package/kits/basic-2d/editors/editorHistory.js +52 -0
- package/kits/basic-2d/engine/ScenePlayer.jsx +83 -0
- package/kits/basic-2d/engine/SceneUI.jsx +67 -0
- package/kits/basic-2d/engine/TouchControls.jsx +136 -0
- package/kits/basic-2d/engine/autoInspector.jsx +51 -0
- package/kits/basic-2d/engine/files.js +62 -0
- package/kits/basic-2d/engine/scene.js +420 -0
- package/kits/basic-2d/engine/ui.jsx +344 -0
- package/kits/basic-2d/engine/ui.module.css +928 -0
- package/kits/basic-2d/eslint.config.js +50 -0
- package/kits/basic-2d/index.html +11 -0
- package/kits/basic-2d/main.jsx +10 -0
- package/kits/basic-2d/package-lock.json +2706 -0
- package/kits/basic-2d/package.json +41 -0
- package/kits/basic-2d/scenes/main.scene +108 -0
- package/kits/basic-2d/vite.config.js +1 -0
- package/kits/basic-2d-frozen/.prettierrc +8 -0
- package/kits/basic-2d-frozen/CLAUDE.md +131 -0
- package/kits/basic-2d-frozen/behaviors/Camera.jsx +43 -0
- package/kits/basic-2d-frozen/behaviors/Collider.jsx +71 -0
- package/kits/basic-2d-frozen/behaviors/Drawing.jsx +139 -0
- package/kits/basic-2d-frozen/behaviors/Layout.jsx +16 -0
- package/kits/basic-2d-frozen/drawings/floor.drawing +70 -0
- package/kits/basic-2d-frozen/editors/App.jsx +152 -0
- package/kits/basic-2d-frozen/editors/CodeEditor.jsx +112 -0
- package/kits/basic-2d-frozen/editors/DrawingEditor.jsx +222 -0
- package/kits/basic-2d-frozen/editors/FileBrowser.jsx +143 -0
- package/kits/basic-2d-frozen/editors/PlayOnly.jsx +21 -0
- package/kits/basic-2d-frozen/editors/SceneEditor.jsx +1012 -0
- package/kits/basic-2d-frozen/editors/behaviorRegistry.js +24 -0
- package/kits/basic-2d-frozen/editors/editorHistory.js +52 -0
- package/kits/basic-2d-frozen/engine/ScenePlayer.jsx +83 -0
- package/kits/basic-2d-frozen/engine/SceneUI.jsx +67 -0
- package/kits/basic-2d-frozen/engine/TouchControls.jsx +136 -0
- package/kits/basic-2d-frozen/engine/autoInspector.jsx +51 -0
- package/kits/basic-2d-frozen/engine/files.js +62 -0
- package/kits/basic-2d-frozen/engine/scene.js +420 -0
- package/kits/basic-2d-frozen/engine/ui.jsx +344 -0
- package/kits/basic-2d-frozen/engine/ui.module.css +928 -0
- package/kits/basic-2d-frozen/eslint.config.js +50 -0
- package/kits/basic-2d-frozen/index.html +11 -0
- package/kits/basic-2d-frozen/main.jsx +10 -0
- package/kits/basic-2d-frozen/package-lock.json +2706 -0
- package/kits/basic-2d-frozen/package.json +41 -0
- package/kits/basic-2d-frozen/scenes/main.scene +108 -0
- package/kits/basic-2d-frozen/vite.config.js +1 -0
- package/kits/rpg-2d/.prettierrc +8 -0
- package/kits/rpg-2d/behaviors/Camera.tsx +52 -0
- package/kits/rpg-2d/behaviors/Collider.tsx +98 -0
- package/kits/rpg-2d/behaviors/Dialog.tsx +184 -0
- package/kits/rpg-2d/behaviors/Drawing.tsx +161 -0
- package/kits/rpg-2d/behaviors/Friend.tsx +45 -0
- package/kits/rpg-2d/behaviors/Layout.tsx +29 -0
- package/kits/rpg-2d/behaviors/PlayerController.tsx +255 -0
- package/kits/rpg-2d/behaviors/Portal.tsx +60 -0
- package/kits/rpg-2d/behaviors/QuestLog.tsx +90 -0
- package/kits/rpg-2d/behaviors/SaveMenu.tsx +123 -0
- package/kits/rpg-2d/behaviors/Tilemap.tsx +90 -0
- package/kits/rpg-2d/drawings/bld-home.drawing +8136 -0
- package/kits/rpg-2d/drawings/env-crate.drawing +509 -0
- package/kits/rpg-2d/drawings/env-fence.drawing +536 -0
- package/kits/rpg-2d/drawings/env-flower-bed.drawing +607 -0
- package/kits/rpg-2d/drawings/env-fountain.drawing +2622 -0
- package/kits/rpg-2d/drawings/env-hedge.drawing +601 -0
- package/kits/rpg-2d/drawings/env-house-blue.drawing +1 -0
- package/kits/rpg-2d/drawings/env-house-green.drawing +1 -0
- package/kits/rpg-2d/drawings/env-tree-oak.drawing +1540 -0
- package/kits/rpg-2d/drawings/env-tree-pine.drawing +1315 -0
- package/kits/rpg-2d/drawings/floor.drawing +70 -0
- package/kits/rpg-2d/drawings/fx-sparkle.drawing +926 -0
- package/kits/rpg-2d/drawings/npc-juno-idle-down.drawing +1099 -0
- package/kits/rpg-2d/drawings/npc-juno-walk-down.drawing +4177 -0
- package/kits/rpg-2d/drawings/npc-opal-idle-down.drawing +1099 -0
- package/kits/rpg-2d/drawings/npc-opal-walk-down.drawing +4177 -0
- package/kits/rpg-2d/drawings/player-idle-down.drawing +1070 -0
- package/kits/rpg-2d/drawings/player-idle-left.drawing +1070 -0
- package/kits/rpg-2d/drawings/player-idle-right.drawing +1070 -0
- package/kits/rpg-2d/drawings/player-idle-up.drawing +1070 -0
- package/kits/rpg-2d/drawings/player-walk-down.drawing +4148 -0
- package/kits/rpg-2d/drawings/player-walk-left.drawing +4148 -0
- package/kits/rpg-2d/drawings/player-walk-right.drawing +4148 -0
- package/kits/rpg-2d/drawings/player-walk-up.drawing +4148 -0
- package/kits/rpg-2d/editors/App.tsx +163 -0
- package/kits/rpg-2d/editors/CodeEditor.tsx +120 -0
- package/kits/rpg-2d/editors/DrawingEditor.tsx +278 -0
- package/kits/rpg-2d/editors/FileBrowser.tsx +191 -0
- package/kits/rpg-2d/editors/PlayOnly.tsx +26 -0
- package/kits/rpg-2d/editors/SceneEditor.tsx +1093 -0
- package/kits/rpg-2d/editors/behaviorRegistry.ts +33 -0
- package/kits/rpg-2d/editors/editorHistory.ts +75 -0
- package/kits/rpg-2d/editors/editorProps.ts +10 -0
- package/kits/rpg-2d/engine/ScenePlayer.tsx +130 -0
- package/kits/rpg-2d/engine/SceneUI.tsx +74 -0
- package/kits/rpg-2d/engine/TouchControls.tsx +157 -0
- package/kits/rpg-2d/engine/autoInspector.tsx +111 -0
- package/kits/rpg-2d/engine/drawing.ts +81 -0
- package/kits/rpg-2d/engine/files.ts +215 -0
- package/kits/rpg-2d/engine/scene.ts +484 -0
- package/kits/rpg-2d/engine/ui.module.css +928 -0
- package/kits/rpg-2d/engine/ui.tsx +483 -0
- package/kits/rpg-2d/eslint.config.js +46 -0
- package/kits/rpg-2d/index.html +11 -0
- package/kits/rpg-2d/main.tsx +14 -0
- package/kits/rpg-2d/package-lock.json +3149 -0
- package/kits/rpg-2d/package.json +46 -0
- package/kits/rpg-2d/scenes/main.scene +203 -0
- package/kits/rpg-2d/tsconfig.json +17 -0
- package/kits/rpg-2d/vite-env.d.ts +7 -0
- package/kits/rpg-2d/vite.config.js +1 -0
- package/package.json +27 -5
- package/AGENTS.md +0 -24
- package/dist/push.d.ts +0 -1
- package/src/api.ts +0 -160
- package/src/bundle.ts +0 -28
- package/src/config.ts +0 -36
- package/src/index.ts +0 -110
- package/src/init.ts +0 -71
- package/src/login.ts +0 -24
- package/src/preview.ts +0 -93
- package/src/push.ts +0 -118
- package/src/serve.ts +0 -128
- package/tsconfig.json +0 -13
|
@@ -0,0 +1,483 @@
|
|
|
1
|
+
import React, { useRef, useState } from 'react';
|
|
2
|
+
import type { ButtonHTMLAttributes, PointerEvent, ReactNode } from 'react';
|
|
3
|
+
import {
|
|
4
|
+
faBars,
|
|
5
|
+
faChevronDown,
|
|
6
|
+
faChevronRight,
|
|
7
|
+
faChevronUp,
|
|
8
|
+
faClone,
|
|
9
|
+
faObjectGroup,
|
|
10
|
+
faPalette,
|
|
11
|
+
faPlay,
|
|
12
|
+
faPlus,
|
|
13
|
+
faRedo,
|
|
14
|
+
faStop,
|
|
15
|
+
faTimes,
|
|
16
|
+
faTrash,
|
|
17
|
+
faUndo,
|
|
18
|
+
faVideo,
|
|
19
|
+
} from '@fortawesome/free-solid-svg-icons';
|
|
20
|
+
import type { IconDefinition } from '@fortawesome/free-solid-svg-icons';
|
|
21
|
+
import styles from './ui.module.css';
|
|
22
|
+
|
|
23
|
+
export { styles };
|
|
24
|
+
|
|
25
|
+
export const theme = {
|
|
26
|
+
transparentChecker:
|
|
27
|
+
'repeating-linear-gradient(45deg, #050505, #050505 4px, #252525 4px, #252525 8px)',
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export function cx(...parts: Array<string | false | null | undefined>): string {
|
|
31
|
+
return parts.filter(Boolean).join(' ');
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function AppShell({ children }: { children: ReactNode }) {
|
|
35
|
+
return <div className={styles.appShell}>{children}</div>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function MainEditor({ children }: { children: ReactNode }) {
|
|
39
|
+
return <main className={styles.mainEditor}>{children}</main>;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function EditorHeader({
|
|
43
|
+
title,
|
|
44
|
+
subtitle,
|
|
45
|
+
right,
|
|
46
|
+
onToggleFiles,
|
|
47
|
+
filesOpen,
|
|
48
|
+
}: {
|
|
49
|
+
title: ReactNode;
|
|
50
|
+
subtitle?: ReactNode;
|
|
51
|
+
right?: ReactNode;
|
|
52
|
+
onToggleFiles?: () => void;
|
|
53
|
+
filesOpen?: boolean;
|
|
54
|
+
}) {
|
|
55
|
+
const hasRight = !!right || !!onToggleFiles;
|
|
56
|
+
return (
|
|
57
|
+
<header className={styles.editorHeader}>
|
|
58
|
+
<div className={styles.editorHeaderLeft}>
|
|
59
|
+
<div>
|
|
60
|
+
<div className={styles.editorTitle}>{title}</div>
|
|
61
|
+
{subtitle ? <div className={styles.muted}>{subtitle}</div> : null}
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
{hasRight ? (
|
|
65
|
+
<div className={styles.editorHeaderRight}>
|
|
66
|
+
{right}
|
|
67
|
+
{onToggleFiles ? (
|
|
68
|
+
<button
|
|
69
|
+
type="button"
|
|
70
|
+
className={cx(styles.headerFilesButton, styles.mobileOnly)}
|
|
71
|
+
onClick={onToggleFiles}
|
|
72
|
+
aria-label="Files"
|
|
73
|
+
aria-pressed={filesOpen ? 'true' : 'false'}>
|
|
74
|
+
<Icon name="bars" />
|
|
75
|
+
</button>
|
|
76
|
+
) : null}
|
|
77
|
+
</div>
|
|
78
|
+
) : null}
|
|
79
|
+
</header>
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function EditorBody({ children }: { children: ReactNode }) {
|
|
84
|
+
return <div className={styles.editorBody}>{children}</div>;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
88
|
+
active?: boolean;
|
|
89
|
+
variant?: '' | 'primary' | 'danger';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export function Button({
|
|
93
|
+
children,
|
|
94
|
+
active = false,
|
|
95
|
+
variant = '',
|
|
96
|
+
className = '',
|
|
97
|
+
...props
|
|
98
|
+
}: ButtonProps) {
|
|
99
|
+
return (
|
|
100
|
+
<button
|
|
101
|
+
className={cx(
|
|
102
|
+
styles.button,
|
|
103
|
+
active && styles.buttonActive,
|
|
104
|
+
variant === 'primary' && styles.buttonPrimary,
|
|
105
|
+
variant === 'danger' && styles.buttonDanger,
|
|
106
|
+
className
|
|
107
|
+
)}
|
|
108
|
+
{...props}>
|
|
109
|
+
{children}
|
|
110
|
+
</button>
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export interface IconButtonProps extends Omit<ButtonProps, 'children'> {
|
|
115
|
+
icon: string;
|
|
116
|
+
label: string;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export function IconButton({
|
|
120
|
+
icon,
|
|
121
|
+
label,
|
|
122
|
+
active = false,
|
|
123
|
+
variant = '',
|
|
124
|
+
...props
|
|
125
|
+
}: IconButtonProps) {
|
|
126
|
+
return (
|
|
127
|
+
<Button
|
|
128
|
+
active={active}
|
|
129
|
+
variant={variant}
|
|
130
|
+
className={styles.iconButton}
|
|
131
|
+
aria-label={label}
|
|
132
|
+
title={label}
|
|
133
|
+
{...props}>
|
|
134
|
+
<Icon name={icon} />
|
|
135
|
+
</Button>
|
|
136
|
+
);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const icons: Record<string, IconDefinition> = {
|
|
140
|
+
bars: faBars,
|
|
141
|
+
camera: faVideo,
|
|
142
|
+
'chevron-down': faChevronDown,
|
|
143
|
+
'chevron-right': faChevronRight,
|
|
144
|
+
'chevron-up': faChevronUp,
|
|
145
|
+
clone: faClone,
|
|
146
|
+
'object-group': faObjectGroup,
|
|
147
|
+
palette: faPalette,
|
|
148
|
+
play: faPlay,
|
|
149
|
+
plus: faPlus,
|
|
150
|
+
redo: faRedo,
|
|
151
|
+
stop: faStop,
|
|
152
|
+
times: faTimes,
|
|
153
|
+
trash: faTrash,
|
|
154
|
+
undo: faUndo,
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
export function Icon({ name }: { name: string }) {
|
|
158
|
+
const def = icons[name];
|
|
159
|
+
if (!def) return null;
|
|
160
|
+
const [width, height, , , path] = def.icon;
|
|
161
|
+
const d = Array.isArray(path) ? path.join(' ') : path;
|
|
162
|
+
return (
|
|
163
|
+
<svg
|
|
164
|
+
viewBox={`0 0 ${width} ${height}`}
|
|
165
|
+
aria-hidden="true"
|
|
166
|
+
style={{ width: '1em', height: '1em', display: 'inline-block', fill: 'currentColor' }}>
|
|
167
|
+
<path d={d} />
|
|
168
|
+
</svg>
|
|
169
|
+
);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export function Panel({ title, children }: { title?: ReactNode; children: ReactNode }) {
|
|
173
|
+
return (
|
|
174
|
+
<section className={styles.panel}>
|
|
175
|
+
{title ? <div className={styles.panelHeader}>{title}</div> : null}
|
|
176
|
+
<div className={styles.panelBody}>{children}</div>
|
|
177
|
+
</section>
|
|
178
|
+
);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export function FieldRow({ label, children }: { label: ReactNode; children: ReactNode }) {
|
|
182
|
+
return (
|
|
183
|
+
<label className={styles.fieldRow}>
|
|
184
|
+
<span className={styles.fieldLabel}>{label}</span>
|
|
185
|
+
{children}
|
|
186
|
+
</label>
|
|
187
|
+
);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export function TextField({
|
|
191
|
+
label,
|
|
192
|
+
value,
|
|
193
|
+
onChange,
|
|
194
|
+
}: {
|
|
195
|
+
label: ReactNode;
|
|
196
|
+
value: string | null | undefined;
|
|
197
|
+
onChange: (value: string) => void;
|
|
198
|
+
}) {
|
|
199
|
+
return (
|
|
200
|
+
<FieldRow label={label}>
|
|
201
|
+
<input
|
|
202
|
+
className={styles.input}
|
|
203
|
+
value={value ?? ''}
|
|
204
|
+
onChange={(event) => onChange(event.target.value)}
|
|
205
|
+
/>
|
|
206
|
+
</FieldRow>
|
|
207
|
+
);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export function NumberField({
|
|
211
|
+
label,
|
|
212
|
+
value,
|
|
213
|
+
onChange,
|
|
214
|
+
min,
|
|
215
|
+
max,
|
|
216
|
+
step = 1,
|
|
217
|
+
}: {
|
|
218
|
+
label: ReactNode;
|
|
219
|
+
value: number | null | undefined;
|
|
220
|
+
onChange: (value: number) => void;
|
|
221
|
+
min?: number;
|
|
222
|
+
max?: number;
|
|
223
|
+
step?: number;
|
|
224
|
+
}) {
|
|
225
|
+
const current = Number.isFinite(value) ? (value ?? 0) : 0;
|
|
226
|
+
const [draft, setDraft] = useState(String(current));
|
|
227
|
+
const editingRef = useRef(false);
|
|
228
|
+
const cancelRef = useRef(false);
|
|
229
|
+
|
|
230
|
+
// keep the draft in sync with the committed value while not editing
|
|
231
|
+
if (!editingRef.current && draft !== String(current)) {
|
|
232
|
+
setDraft(String(current));
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function commit(raw: string): void {
|
|
236
|
+
let next = Number(raw);
|
|
237
|
+
if (!Number.isFinite(next)) next = current;
|
|
238
|
+
if (min != null && next < min) next = min;
|
|
239
|
+
if (max != null && next > max) next = max;
|
|
240
|
+
setDraft(String(next));
|
|
241
|
+
onChange(next);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
function stepBy(delta: number): void {
|
|
245
|
+
let next = current + delta;
|
|
246
|
+
if (min != null && next < min) next = min;
|
|
247
|
+
if (max != null && next > max) next = max;
|
|
248
|
+
setDraft(String(next));
|
|
249
|
+
onChange(next);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
return (
|
|
253
|
+
<FieldRow label={label}>
|
|
254
|
+
<div className={styles.numberField}>
|
|
255
|
+
<input
|
|
256
|
+
className={cx(styles.input, styles.numberInput)}
|
|
257
|
+
type="number"
|
|
258
|
+
min={min}
|
|
259
|
+
max={max}
|
|
260
|
+
step={step}
|
|
261
|
+
value={draft}
|
|
262
|
+
onFocus={() => {
|
|
263
|
+
editingRef.current = true;
|
|
264
|
+
}}
|
|
265
|
+
onChange={(event) => setDraft(event.target.value)}
|
|
266
|
+
onBlur={(event) => {
|
|
267
|
+
editingRef.current = false;
|
|
268
|
+
if (cancelRef.current) {
|
|
269
|
+
cancelRef.current = false;
|
|
270
|
+
setDraft(String(current));
|
|
271
|
+
return;
|
|
272
|
+
}
|
|
273
|
+
commit(event.target.value);
|
|
274
|
+
}}
|
|
275
|
+
onKeyDown={(event) => {
|
|
276
|
+
if (event.key === 'Enter') {
|
|
277
|
+
event.preventDefault();
|
|
278
|
+
commit(event.currentTarget.value);
|
|
279
|
+
event.currentTarget.blur();
|
|
280
|
+
} else if (event.key === 'Escape') {
|
|
281
|
+
event.preventDefault();
|
|
282
|
+
cancelRef.current = true;
|
|
283
|
+
setDraft(String(current));
|
|
284
|
+
event.currentTarget.blur();
|
|
285
|
+
}
|
|
286
|
+
}}
|
|
287
|
+
/>
|
|
288
|
+
<div className={styles.numberSteppers}>
|
|
289
|
+
<button
|
|
290
|
+
type="button"
|
|
291
|
+
className={styles.numberStepper}
|
|
292
|
+
tabIndex={-1}
|
|
293
|
+
aria-label="Increment"
|
|
294
|
+
disabled={max != null && current >= max}
|
|
295
|
+
onClick={() => stepBy(step)}>
|
|
296
|
+
<Icon name="chevron-up" />
|
|
297
|
+
</button>
|
|
298
|
+
<button
|
|
299
|
+
type="button"
|
|
300
|
+
className={styles.numberStepper}
|
|
301
|
+
tabIndex={-1}
|
|
302
|
+
aria-label="Decrement"
|
|
303
|
+
disabled={min != null && current <= min}
|
|
304
|
+
onClick={() => stepBy(-step)}>
|
|
305
|
+
<Icon name="chevron-down" />
|
|
306
|
+
</button>
|
|
307
|
+
</div>
|
|
308
|
+
</div>
|
|
309
|
+
</FieldRow>
|
|
310
|
+
);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export function CheckboxField({
|
|
314
|
+
label,
|
|
315
|
+
checked,
|
|
316
|
+
onChange,
|
|
317
|
+
}: {
|
|
318
|
+
label: ReactNode;
|
|
319
|
+
checked: boolean | null | undefined;
|
|
320
|
+
onChange: (checked: boolean) => void;
|
|
321
|
+
}) {
|
|
322
|
+
return (
|
|
323
|
+
<FieldRow label={label}>
|
|
324
|
+
<button
|
|
325
|
+
type="button"
|
|
326
|
+
className={cx(styles.toggle, checked && styles.toggleOn)}
|
|
327
|
+
role="switch"
|
|
328
|
+
aria-checked={!!checked}
|
|
329
|
+
onClick={() => onChange(!checked)}>
|
|
330
|
+
<span className={styles.toggleKnob} />
|
|
331
|
+
</button>
|
|
332
|
+
</FieldRow>
|
|
333
|
+
);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
export function ColorField({
|
|
337
|
+
label,
|
|
338
|
+
value,
|
|
339
|
+
onChange,
|
|
340
|
+
}: {
|
|
341
|
+
label: ReactNode;
|
|
342
|
+
value: string | null | undefined;
|
|
343
|
+
onChange: (value: string) => void;
|
|
344
|
+
}) {
|
|
345
|
+
const hex = normalizeHex(value);
|
|
346
|
+
const alpha = hex.length === 9 ? hex.slice(7) : '';
|
|
347
|
+
const rgb = hex.slice(0, 7);
|
|
348
|
+
return (
|
|
349
|
+
<FieldRow label={label}>
|
|
350
|
+
<input
|
|
351
|
+
className={styles.colorInput}
|
|
352
|
+
type="color"
|
|
353
|
+
value={rgb}
|
|
354
|
+
onChange={(event) => onChange(event.target.value + alpha)}
|
|
355
|
+
/>
|
|
356
|
+
</FieldRow>
|
|
357
|
+
);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
function normalizeHex(value: string | null | undefined): string {
|
|
361
|
+
const raw = (value ?? '').trim();
|
|
362
|
+
if (/^#[0-9a-fA-F]{3}$/.test(raw)) {
|
|
363
|
+
return '#' + raw.slice(1).replace(/./g, (c) => c + c);
|
|
364
|
+
}
|
|
365
|
+
if (/^#[0-9a-fA-F]{6}([0-9a-fA-F]{2})?$/.test(raw)) return raw;
|
|
366
|
+
return '#000000';
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
export function isHexColor(value: unknown): value is string {
|
|
370
|
+
return (
|
|
371
|
+
typeof value === 'string' && /^#[0-9a-fA-F]{3}([0-9a-fA-F]{3}([0-9a-fA-F]{2})?)?$/.test(value)
|
|
372
|
+
);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export type SheetSnap = 'high' | 'low' | 'hidden';
|
|
376
|
+
|
|
377
|
+
export type SheetTransition = 'up' | 'down' | 'tap';
|
|
378
|
+
|
|
379
|
+
export interface MobileSheetController {
|
|
380
|
+
rootProps: { className: string; 'data-sheet-snap': SheetSnap };
|
|
381
|
+
grabProps: {
|
|
382
|
+
className: string;
|
|
383
|
+
onPointerDown: (event: PointerEvent<HTMLDivElement>) => void;
|
|
384
|
+
onPointerMove: (event: PointerEvent<HTMLDivElement>) => void;
|
|
385
|
+
onPointerUp: (event: PointerEvent<HTMLDivElement>) => void;
|
|
386
|
+
onPointerCancel: (event: PointerEvent<HTMLDivElement>) => void;
|
|
387
|
+
};
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
export function useMobileSheet({
|
|
391
|
+
snap,
|
|
392
|
+
baseClassName,
|
|
393
|
+
onTransition,
|
|
394
|
+
}: {
|
|
395
|
+
snap: SheetSnap;
|
|
396
|
+
baseClassName: string;
|
|
397
|
+
onTransition: (direction: SheetTransition) => void;
|
|
398
|
+
}): MobileSheetController {
|
|
399
|
+
const startY = useRef(0);
|
|
400
|
+
const lastDy = useRef(0);
|
|
401
|
+
const dragging = useRef(false);
|
|
402
|
+
|
|
403
|
+
function onPointerDown(event: PointerEvent<HTMLDivElement>): void {
|
|
404
|
+
startY.current = event.clientY;
|
|
405
|
+
lastDy.current = 0;
|
|
406
|
+
dragging.current = true;
|
|
407
|
+
event.currentTarget.setPointerCapture(event.pointerId);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
function onPointerMove(event: PointerEvent<HTMLDivElement>): void {
|
|
411
|
+
if (!dragging.current) return;
|
|
412
|
+
lastDy.current = event.clientY - startY.current;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
function endDrag(): void {
|
|
416
|
+
if (!dragging.current) return;
|
|
417
|
+
dragging.current = false;
|
|
418
|
+
const dy = lastDy.current;
|
|
419
|
+
lastDy.current = 0;
|
|
420
|
+
if (Math.abs(dy) < 6) onTransition('tap');
|
|
421
|
+
else if (dy > 30) onTransition('down');
|
|
422
|
+
else if (dy < -30) onTransition('up');
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
return {
|
|
426
|
+
rootProps: {
|
|
427
|
+
className: baseClassName,
|
|
428
|
+
'data-sheet-snap': snap,
|
|
429
|
+
},
|
|
430
|
+
grabProps: {
|
|
431
|
+
className: cx(styles.sheetGrab, styles.mobileOnly),
|
|
432
|
+
onPointerDown,
|
|
433
|
+
onPointerMove,
|
|
434
|
+
onPointerUp: endDrag,
|
|
435
|
+
onPointerCancel: endDrag,
|
|
436
|
+
},
|
|
437
|
+
};
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
export function SheetGrabHandle({ label, hint }: { label: ReactNode; hint?: ReactNode }) {
|
|
441
|
+
return (
|
|
442
|
+
<>
|
|
443
|
+
<div className={styles.sheetGrabBar} />
|
|
444
|
+
<div className={styles.sheetGrabLabelRow}>
|
|
445
|
+
<span className={styles.sheetGrabLabel}>{label}</span>
|
|
446
|
+
{hint ? <span className={styles.sheetGrabHint}>{hint}</span> : null}
|
|
447
|
+
</div>
|
|
448
|
+
</>
|
|
449
|
+
);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
type SelectOption = string | { value: string; label: string };
|
|
453
|
+
|
|
454
|
+
export function SelectField({
|
|
455
|
+
label,
|
|
456
|
+
value,
|
|
457
|
+
onChange,
|
|
458
|
+
options,
|
|
459
|
+
}: {
|
|
460
|
+
label: ReactNode;
|
|
461
|
+
value: string | null | undefined;
|
|
462
|
+
onChange: (value: string) => void;
|
|
463
|
+
options: SelectOption[];
|
|
464
|
+
}) {
|
|
465
|
+
return (
|
|
466
|
+
<FieldRow label={label}>
|
|
467
|
+
<select
|
|
468
|
+
className={styles.select}
|
|
469
|
+
value={value ?? ''}
|
|
470
|
+
onChange={(event) => onChange(event.target.value)}>
|
|
471
|
+
{options.map((option) => {
|
|
472
|
+
const value = typeof option === 'string' ? option : option.value;
|
|
473
|
+
const label = typeof option === 'string' ? option : option.label;
|
|
474
|
+
return (
|
|
475
|
+
<option key={value} value={value}>
|
|
476
|
+
{label}
|
|
477
|
+
</option>
|
|
478
|
+
);
|
|
479
|
+
})}
|
|
480
|
+
</select>
|
|
481
|
+
</FieldRow>
|
|
482
|
+
);
|
|
483
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import js from '@eslint/js';
|
|
2
|
+
import tseslint from 'typescript-eslint';
|
|
3
|
+
import reactHooks from 'eslint-plugin-react-hooks';
|
|
4
|
+
|
|
5
|
+
export default tseslint.config(
|
|
6
|
+
{
|
|
7
|
+
ignores: ['node_modules/**', 'dist/**', '.castle/**', '*.config.js'],
|
|
8
|
+
},
|
|
9
|
+
js.configs.recommended,
|
|
10
|
+
...tseslint.configs.recommendedTypeChecked,
|
|
11
|
+
{
|
|
12
|
+
files: ['engine/**/*.{ts,tsx}', 'editors/**/*.{ts,tsx}', 'behaviors/**/*.{ts,tsx}', '*.ts', '*.tsx'],
|
|
13
|
+
languageOptions: {
|
|
14
|
+
parserOptions: {
|
|
15
|
+
project: './tsconfig.json',
|
|
16
|
+
tsconfigRootDir: import.meta.dirname,
|
|
17
|
+
ecmaFeatures: { jsx: true },
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
plugins: {
|
|
21
|
+
'react-hooks': reactHooks,
|
|
22
|
+
},
|
|
23
|
+
rules: {
|
|
24
|
+
// disable noisy rules per spec
|
|
25
|
+
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
26
|
+
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
27
|
+
'@typescript-eslint/no-unsafe-call': 'off',
|
|
28
|
+
'@typescript-eslint/no-unsafe-return': 'off',
|
|
29
|
+
'@typescript-eslint/no-unsafe-argument': 'off',
|
|
30
|
+
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
31
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
32
|
+
|
|
33
|
+
// enabled rules per spec
|
|
34
|
+
complexity: ['error', 70],
|
|
35
|
+
'max-lines-per-function': ['error', 200],
|
|
36
|
+
'@typescript-eslint/no-explicit-any': 'error',
|
|
37
|
+
'@typescript-eslint/no-unused-vars': 'error',
|
|
38
|
+
'@typescript-eslint/no-floating-promises': 'error',
|
|
39
|
+
'prefer-const': 'error',
|
|
40
|
+
'no-var': 'error',
|
|
41
|
+
eqeqeq: 'warn',
|
|
42
|
+
'react-hooks/rules-of-hooks': 'error',
|
|
43
|
+
'react-hooks/exhaustive-deps': 'warn',
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
5
|
+
<title>Castle Basic 2D Kit</title>
|
|
6
|
+
</head>
|
|
7
|
+
<body>
|
|
8
|
+
<div id="root"></div>
|
|
9
|
+
<script type="module" src="/main.tsx"></script>
|
|
10
|
+
</body>
|
|
11
|
+
</html>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { createRoot } from 'react-dom/client';
|
|
3
|
+
import { isEdit, setup } from 'castle-web-sdk';
|
|
4
|
+
import { App } from './editors/App';
|
|
5
|
+
import { PlayOnly } from './editors/PlayOnly';
|
|
6
|
+
|
|
7
|
+
document.body.dataset.castleScreenshotTarget = 'viewport';
|
|
8
|
+
|
|
9
|
+
setup();
|
|
10
|
+
|
|
11
|
+
const root = document.getElementById('root');
|
|
12
|
+
if (!root) throw new Error('Missing root element');
|
|
13
|
+
|
|
14
|
+
createRoot(root).render(isEdit() ? <App /> : <PlayOnly />);
|