Spaces:
Runtime error
Runtime error
File size: 10,498 Bytes
c575e18 19b663b 9b99c78 9766588 9b99c78 19b663b c58a65a 19b663b 9766588 274b099 19b663b c59c4c4 9c4ee1e c59c4c4 dab8c4c b8ac450 dab8c4c c59c4c4 9c4ee1e f831ea6 c59c4c4 9c4ee1e c59c4c4 9c4ee1e b2e55f9 c59c4c4 b2e55f9 c59c4c4 274b099 c59c4c4 9c4ee1e c629f7a 9c51ef8 c629f7a 9c4ee1e ba1597c 9c4ee1e c59c4c4 19b663b f70fe7a 406c8c8 b2e55f9 f70fe7a b2e55f9 f70fe7a b2e55f9 c629f7a b2e55f9 c629f7a b2e55f9 c629f7a b2e55f9 c629f7a f70fe7a 19b663b 3943469 19b663b b8ac450 f70fe7a b2e55f9 19b663b dab8c4c 19b663b b2e55f9 c629f7a b2e55f9 c629f7a b2e55f9 c629f7a 19b663b 9c4ee1e c629f7a 68d39ea c629f7a 9c4ee1e 274b099 9766588 19b663b c575e18 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simulator</title>
<style>
/* Add this style rule to hide the cursor inside the canvas */
#displayCanvas {
cursor: none;
}
/* Add some styling for the controls */
.controls {
margin-top: 10px;
display: flex;
gap: 10px;
align-items: center;
}
.control-button {
padding: 5px 10px;
cursor: pointer;
}
.step-control {
display: flex;
align-items: center;
gap: 5px;
}
#samplingSteps {
width: 60px;
}
</style>
</head>
<body>
<canvas id="displayCanvas" width="512" height="384"></canvas>
<div class="controls">
<button id="resetButton" class="control-button">Reset Simulation</button>
<div class="step-control">
<label for="samplingSteps">Sampling Steps:</label>
<input type="number" id="samplingSteps" min="1" max="100" value="32">
<button id="updateStepsButton" class="control-button">Update</button>
</div>
</div>
<script>
const canvas = document.getElementById('displayCanvas');
const ctx = canvas.getContext('2d');
let socket;
let isConnected = false;
let reconnectAttempts = 0;
const MAX_RECONNECT_DELAY = 30000; // Maximum delay between reconnection attempts (30 seconds)
let isProcessing = false;
// Add flag to control trace visibility, default to false (hidden)
let showTrace = false;
function connect() {
socket = new WebSocket(`wss://${window.location.host}/ws`);
socket.onopen = function(event) {
console.log("WebSocket connection established");
isConnected = true;
reconnectAttempts = 0;
//startHeartbeat();
};
socket.onclose = function(event) {
console.log("WebSocket connection closed. Attempting to reconnect...");
isConnected = false;
clearInterval(heartbeatInterval);
scheduleReconnection();
};
socket.onerror = function(error) {
console.error("WebSocket error:", error);
};
socket.onmessage = function (event) {
const data = JSON.parse(event.data);
if (data.type === "heartbeat_response") {
console.log("Heartbeat response received");
} else if (data.image) {
let img = new Image();
img.onload = function() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.drawImage(img, 0, 0);
//isProcessing = false; // Reset the processing flag when we get a response
};
img.src = 'data:image/png;base64,' + data.image;
} else if (data.type === "reset_confirmed") {
console.log("Simulation reset confirmed by server");
// Optionally update UI to reflect reset state
}
};
}
function scheduleReconnection() {
const delay = Math.min(1000 * Math.pow(2, reconnectAttempts), MAX_RECONNECT_DELAY);
console.log(`Scheduling reconnection in ${delay}ms`);
setTimeout(connect, delay);
reconnectAttempts++;
}
let heartbeatInterval;
function startHeartbeat() {
heartbeatInterval = setInterval(() => {
if (isConnected) {
try {
socket.send(JSON.stringify({ type: "heartbeat" }));
console.error("finished sending heartbeat:", error);
} catch (error) {
console.error("Error sending heartbeat:", error);
}
}
}, 1000); // Send heartbeat every 15 seconds
}
// Initial connection
connect();
let lastSentPosition = null;
let lastSentTime = 0;
const SEND_INTERVAL = 10; // Send updates every 50ms
// Track currently pressed keys
const pressedKeys = new Set();
function sendInputState(x, y, isLeftClick = false, isRightClick = false) {
const currentTime = Date.now();
if (isConnected && (isLeftClick || isRightClick || !lastSentPosition || currentTime - lastSentTime >= SEND_INTERVAL)) {
try {
socket.send(JSON.stringify({
"x": x,
"y": y,
"is_left_click": isLeftClick,
"is_right_click": isRightClick,
"keys_down": Array.from(pressedKeys),
"keys_up": [],
}));
lastSentPosition = { x, y };
lastSentTime = currentTime;
//if (isLeftClick || isRightClick) {
// isProcessing = true; // Block further inputs until response
//}
} catch (error) {
console.error("Error sending input state:", error);
}
}
}
// Capture mouse movements and clicks
canvas.addEventListener("mousemove", function (event) {
if (!isConnected || isProcessing) return;
let rect = canvas.getBoundingClientRect();
let x = event.clientX - rect.left;
let y = event.clientY - rect.top;
// Only draw the trace if showTrace is true
if (showTrace && lastSentPosition) {
ctx.beginPath();
ctx.moveTo(lastSentPosition.x, lastSentPosition.y);
ctx.lineTo(x, y);
ctx.stroke();
}
sendInputState(x, y);
});
canvas.addEventListener("click", function (event) {
if (!isConnected || isProcessing) return;
let rect = canvas.getBoundingClientRect();
let x = event.clientX - rect.left;
let y = event.clientY - rect.top;
sendInputState(x, y, true, false);
});
// Handle right clicks
canvas.addEventListener("contextmenu", function (event) {
event.preventDefault(); // Prevent default context menu
if (!isConnected || isProcessing) return;
let rect = canvas.getBoundingClientRect();
let x = event.clientX - rect.left;
let y = event.clientY - rect.top;
sendInputState(x, y, false, true);
});
// Track keyboard events
document.addEventListener("keydown", function (event) {
if (!isConnected || isProcessing) return;
// Add the key to our set of pressed keys
pressedKeys.add(event.key);
// Get the current mouse position
let rect = canvas.getBoundingClientRect();
let x = lastSentPosition ? lastSentPosition.x : canvas.width / 2;
let y = lastSentPosition ? lastSentPosition.y : canvas.height / 2;
sendInputState(x, y);
});
document.addEventListener("keyup", function (event) {
if (!isConnected) return;
// Remove the key from our set of pressed keys
pressedKeys.delete(event.key);
// Get the current mouse position
let rect = canvas.getBoundingClientRect();
let x = lastSentPosition ? lastSentPosition.x : canvas.width / 2;
let y = lastSentPosition ? lastSentPosition.y : canvas.height / 2;
// For key up events, we send the key in the keys_up array
try {
socket.send(JSON.stringify({
"x": x,
"y": y,
"is_left_click": false,
"is_right_click": false,
"keys_down": Array.from(pressedKeys),
"keys_up": [event.key],
}));
} catch (error) {
console.error("Error sending key up event:", error);
}
});
// Graceful disconnection
window.addEventListener('beforeunload', function (e) {
if (isConnected) {
try {
//socket.send(JSON.stringify({ type: "disconnect" }));
//socket.close();
} catch (error) {
console.error("Error during disconnection:", error);
}
}
});
// Add event listener for the reset button
document.getElementById('resetButton').addEventListener('click', function() {
if (socket && socket.readyState === WebSocket.OPEN) {
console.log("Sending reset command to server");
socket.send(JSON.stringify({
type: "reset"
}));
} else {
console.error("WebSocket not connected, cannot reset");
}
});
// Add event listener for updating sampling steps
document.getElementById('updateStepsButton').addEventListener('click', function() {
const stepsInput = document.getElementById('samplingSteps');
const newSteps = parseInt(stepsInput.value, 10);
if (isNaN(newSteps) || newSteps < 1) {
alert("Please enter a valid number of steps (minimum 1)");
return;
}
if (socket && socket.readyState === WebSocket.OPEN) {
console.log(`Sending update to set sampling steps to ${newSteps}`);
socket.send(JSON.stringify({
type: "update_sampling_steps",
steps: newSteps
}));
} else {
console.error("WebSocket not connected, cannot update steps");
}
});
</script>
</body>
</html> |