Spaces:
Running
Running
File size: 7,322 Bytes
bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd db9635c bc7e9cd |
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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
import { writable, derived, get } from "svelte/store";
import { virtualFileSystem } from "./virtual-fs";
import { websocketService } from "./websocket";
export interface ContentState {
content: string;
language: string;
theme: string;
lastModified: Date;
version: number;
isUISynced: boolean;
isAgentSynced: boolean;
lastSource: "ui" | "agent" | "init";
isConflicted: boolean;
}
export interface ContentChange {
content: string;
source: "ui" | "agent" | "init";
timestamp: Date;
version: number;
}
/**
* ContentManager: Single source of truth for editor content
* Manages bidirectional sync between UI and agent with conflict resolution
*/
class ContentManager {
private static instance: ContentManager | null = null;
private readonly DEFAULT_CONTENT = `<world canvas="#game-canvas" sky="#87ceeb">
<!-- Ground -->
<static-part pos="0 -0.5 0" shape="box" size="20 1 20" color="#90ee90"></static-part>
<!-- Ball -->
<dynamic-part pos="-2 4 -3" shape="sphere" size="1" color="#ff4500"></dynamic-part>
</world>
<script>
console.log("Game script loaded!");
</script>`;
private readonly contentStore = writable<ContentState>({
content: this.DEFAULT_CONTENT,
language: "html",
theme: "vs-dark",
lastModified: new Date(),
version: 1,
isUISynced: true,
isAgentSynced: true,
lastSource: "init",
isConflicted: false,
});
private syncTimeout: number | null = null;
private readonly DEBOUNCE_MS = 300;
private isUpdating = false;
private agentEditInProgress = false;
private lastAgentVersion = 0;
private constructor() {
this.setupSyncSubscription();
}
static getInstance(): ContentManager {
if (!ContentManager.instance) {
ContentManager.instance = new ContentManager();
}
return ContentManager.instance;
}
/**
* Public reactive store for UI components
*/
readonly content = derived(this.contentStore, ($state) => ({
content: $state.content,
language: $state.language,
theme: $state.theme,
lastModified: $state.lastModified,
version: $state.version,
}));
/**
* Public store subscription method
*/
subscribe = this.content.subscribe;
/**
* Update content from UI (Monaco editor)
* Debounced for smooth typing experience
*/
updateFromUI(content: string): void {
if (this.isUpdating || this.agentEditInProgress) {
// Agent is editing, mark as conflicted
if (this.agentEditInProgress) {
this.contentStore.update((state) => ({
...state,
isConflicted: true,
}));
}
return;
}
this.updateContent(content, "ui");
this.debouncedAgentSync();
}
/**
* Update content from agent (MCP tools)
* Now handles version conflicts more gracefully
*/
updateFromAgent(content: string): void {
if (this.isUpdating) return;
this.isUpdating = true;
this.agentEditInProgress = true;
const currentState = get(this.contentStore);
// Check for version conflict
if (
currentState.version > this.lastAgentVersion &&
currentState.lastSource === "ui"
) {
// UI has made changes since agent started editing
console.warn("Agent edit conflicted with UI changes - agent wins");
this.contentStore.update((state) => ({
...state,
isConflicted: true,
}));
}
this.updateContent(content, "agent");
this.lastAgentVersion = get(this.contentStore).version;
this.clearSyncTimeout();
// Allow UI to resume editing after a short delay
setTimeout(() => {
this.agentEditInProgress = false;
this.contentStore.update((state) => ({
...state,
isConflicted: false,
}));
}, 500);
this.isUpdating = false;
}
/**
* Initialize content (on app start)
*/
initialize(content?: string): void {
const initialContent = content || this.DEFAULT_CONTENT;
this.updateContent(initialContent, "init");
// Sync to VFS immediately but not to WebSocket yet (may not be connected)
virtualFileSystem.updateGameContent(initialContent);
this.contentStore.update((state) => ({
...state,
isAgentSynced: true,
isConflicted: false,
}));
// Initialize version tracking
this.lastAgentVersion = 1;
}
/**
* Get current content (synchronous)
*/
getCurrentContent(): string {
return get(this.contentStore).content;
}
/**
* Get current state (synchronous)
*/
getCurrentState(): ContentState {
return get(this.contentStore);
}
/**
* Check if agent is currently editing
*/
isAgentEditing(): boolean {
return this.agentEditInProgress;
}
/**
* Force full sync (for reconnection scenarios)
*/
forceFullSync(): void {
this.immediateFullSync();
}
/**
* Update language setting
*/
setLanguage(language: string): void {
this.contentStore.update((state) => ({
...state,
language,
lastModified: new Date(),
}));
}
/**
* Update theme setting
*/
setTheme(theme: string): void {
this.contentStore.update((state) => ({
...state,
theme,
lastModified: new Date(),
}));
}
/**
* Reset to default content
*/
reset(): void {
this.updateContent(this.DEFAULT_CONTENT, "init");
this.immediateFullSync();
}
private updateContent(
content: string,
source: ContentChange["source"],
): void {
this.contentStore.update((state) => {
// Prevent unnecessary updates
if (state.content === content) return state;
return {
...state,
content,
lastModified: new Date(),
version: state.version + 1,
isUISynced: source === "ui" || source === "init",
isAgentSynced: source === "agent" || source === "init",
lastSource: source,
isConflicted: false,
};
});
}
private setupSyncSubscription(): void {
this.contentStore.subscribe((state) => {
// Only sync if content actually changed and we're not in an update cycle
if (!this.isUpdating) {
if (!state.isAgentSynced) {
this.syncToAgent(state.content);
}
}
});
}
private debouncedAgentSync(): void {
this.clearSyncTimeout();
this.syncTimeout = window.setTimeout(() => {
const state = get(this.contentStore);
if (!state.isAgentSynced) {
this.syncToAgent(state.content);
}
}, this.DEBOUNCE_MS);
}
private immediateFullSync(): void {
this.clearSyncTimeout();
const content = get(this.contentStore).content;
this.syncToAgent(content);
}
private syncToAgent(content: string): void {
// Update virtual file system
virtualFileSystem.updateGameContent(content);
// Send to WebSocket if connected
if (websocketService.isConnected()) {
websocketService.send({
type: "editor_sync",
payload: { content },
timestamp: Date.now(),
});
}
// Mark as synced
this.contentStore.update((state) => ({
...state,
isAgentSynced: true,
}));
}
private clearSyncTimeout(): void {
if (this.syncTimeout !== null) {
clearTimeout(this.syncTimeout);
this.syncTimeout = null;
}
}
}
export const contentManager = ContentManager.getInstance();
|