File size: 27,404 Bytes
80c0c44 0863c0a 80c0c44 d0e61c2 80c0c44 0863c0a 80c0c44 0863c0a 80c0c44 0863c0a 80c0c44 0863c0a 80c0c44 0863c0a 80c0c44 0863c0a 80c0c44 6f84aaa 80c0c44 0863c0a 35e3d6a 0863c0a d0e61c2 0863c0a 3e4ef62 0863c0a d0e61c2 0863c0a | 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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 | // Dashboard Script v1.0.1 - drone-env
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// CONFIG
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const BASE = '';
const DIRECTIONS = ['UP','DOWN','LEFT','RIGHT','WAIT'];
const EMOJI = {
drone: "π",
road: "π£οΈ",
building: "π’",
tree: "π³",
obstacle: "π§",
delivery: "π¦",
done_del: "β
"
};
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// STATE
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
let currentTask = 'graders:grade_easy';
let autoTimer = null;
let logTimer = null;
let obs = null;
let rewardHistory = [];
let stepHistory = []; // For CSV export
let lastLogs = "";
let lastTerminalLogs = "";
let autoActive = false;
let startTime = null;
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// REWARD CHART
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
let rewardChart = null;
function initChart() {
try {
const ctx = document.getElementById('rewardChart').getContext('2d');
rewardChart = new Chart(ctx, {
type: 'line',
data: {
labels: [],
datasets: [{
label: 'Step Reward',
data: [],
borderColor: 'rgba(0,229,255,0.8)',
backgroundColor: 'rgba(0,229,255,0.07)',
borderWidth: 2,
fill: true,
tension: 0.4,
pointRadius: 0,
}]
},
options: {
animation: false,
responsive: true,
maintainAspectRatio: false,
scales: {
x: { display: false },
y: {
grid: { color: 'rgba(255,255,255,0.05)' },
ticks: { color: 'rgba(255,255,255,0.3)', font: { size: 9 } },
grace: '5%' // Add some breathing room for small changes
}
},
plugins: { legend: { display: false } }
}
});
} catch(e) {
console.warn("Chart.js failed to load. Chart will be disabled.", e);
rewardChart = null;
}
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// UI UTILS
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function showLoading() { document.getElementById('processing').style.display = 'flex'; }
function hideLoading() { document.getElementById('processing').style.display = 'none'; }
function updateUI(data) {
obs = data;
renderGrid(obs);
// Telemetry updates
document.getElementById('statStep').textContent = obs.step_count;
document.getElementById('statReward').textContent = obs.reward_last.toFixed(3);
document.getElementById('statDel').textContent = `${obs.deliveries_done}/${obs.deliveries_total}`;
// Performance Score
const scoreEl = document.getElementById('statScore');
if (scoreEl) scoreEl.textContent = obs.score.toFixed(3);
// Delivery Progress Bar
const delBarFill = document.getElementById('delBarFill');
const delBarlabel = document.getElementById('delBarlabel');
if (delBarFill && delBarlabel) {
const progress = obs.deliveries_total > 0 ? (obs.deliveries_done / obs.deliveries_total) * 100 : 0;
delBarFill.style.width = progress + '%';
delBarlabel.textContent = `${obs.deliveries_done} / ${obs.deliveries_total}`;
// Battery Critical Effect
const batEl = document.getElementById('batPct');
if (batEl) {
if (obs.battery < 0.2) {
batEl.classList.add('critical-flash');
} else {
batEl.classList.remove('critical-flash');
}
}
}
// Battery
const batPct = Math.max(0, Math.round(obs.battery * 100));
document.getElementById('batPct').textContent = batPct + '%';
const batFill = document.getElementById('batFill');
batFill.style.width = batPct + '%';
batFill.className = 'battery-fill' + (batPct < 25 ? ' low' : '');
// Chart & History
rewardHistory.push(obs.reward_last);
if(rewardHistory.length > 50) rewardHistory.shift();
if(rewardChart) {
rewardChart.data.labels = rewardHistory.map((_, i) => i);
rewardChart.data.datasets[0].data = rewardHistory;
rewardChart.update('none');
}
// Store for CSV
stepHistory.push({
step: obs.step_count,
x: obs.drone_x,
y: obs.drone_y,
reward: obs.reward_last.toFixed(4),
total_reward: obs.reward_total.toFixed(4),
score: obs.score.toFixed(4),
battery: batPct,
message: obs.message
});
// Message bar
const msgEl = document.getElementById('msgBar');
msgEl.textContent = obs.message;
msgEl.className = 'msg-bar' + (obs.done ? (obs.deliveries_done === obs.deliveries_total ? ' good' : ' bad') : '');
// Log
addLog(obs);
// Auto-stop on battery zero or done
if (obs.done || obs.battery <= 0) {
stopAuto();
showCompletionPopup(obs);
}
// Live JSON Telemetry Stream
updateLiveTelemetry(obs);
}
function updateLiveTelemetry(obs) {
const consoleEl = document.getElementById('memoryConsole');
if (!consoleEl) return;
// Create a clean telemetry slice
const telemetry = {
step: obs.step_count,
pos: `(${obs.drone_x}, ${obs.drone_y})`,
reward: parseFloat(obs.reward_last.toFixed(4)),
total_reward: parseFloat(obs.reward_total.toFixed(4)),
battery: `${Math.round(obs.battery * 100)}%`,
status: obs.message
};
// Append JSON line
const line = document.createElement('div');
line.className = 'console-line';
line.style.color = '#00e5ff'; // Cyan for JSON
line.innerHTML = `> ${JSON.stringify(telemetry)}`;
// If it's the first real log, clear the "Awaiting" message
if (consoleEl.children.length === 1 && consoleEl.innerHTML.includes("Awaiting")) {
consoleEl.innerHTML = "";
}
consoleEl.appendChild(line);
// Keep last 50 lines to prevent lag
if (consoleEl.children.length > 50) {
consoleEl.firstChild.remove();
}
consoleEl.scrollTop = consoleEl.scrollHeight;
}
function addLog(obs) {
const list = document.getElementById('logList');
if (!list) return;
const item = document.createElement('div');
const r = obs.reward_last;
item.className = 'log-item' + (r > 0 ? ' good' : r < -0.1 ? ' bad' : '');
item.innerHTML = `<span class="log-step">#${obs.step_count}</span> <span style="flex:1">${obs.message}</span> <span>${r.toFixed(3)}</span>`;
list.prepend(item);
if(list.children.length > 20) list.lastChild.remove();
}
function renderGrid(obs) {
const wrap = document.getElementById('gridWrap');
if (!wrap) return;
const grid = obs.grid;
const W = obs.grid_width;
const H = obs.grid_height;
// Adjust cell size dynamically based on container width
const parentWidth = wrap.parentElement.clientWidth;
const paddingBuffer = window.innerWidth < 480 ? 20 : 48;
const maxW = parentWidth - paddingBuffer;
const cellPx = Math.max(16, Math.min(36, Math.floor(maxW / W)));
document.documentElement.style.setProperty('--cell', cellPx + 'px');
let html = '';
for (let y = 0; y < grid.length; y++) {
html += '<div class="grid-row">';
const cells = splitEmojis(grid[y]);
for (let x = 0; x < cells.length; x++) {
const ch = cells[x];
html += `<div class="grid-cell" data-x="${x}" data-y="${y}">${ch}</div>`;
}
html += '</div>';
}
wrap.innerHTML = html;
document.getElementById('gridInfo').textContent = `${W}Γ${H}`;
}
function splitEmojis(str) {
if (typeof Intl !== 'undefined' && Intl.Segmenter) {
const seg = new Intl.Segmenter();
return [...seg.segment(str)].map(s => s.segment);
}
return [...str];
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// API ACTIONS
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async function doReset() {
showLoading();
stopAuto();
try {
const r = await fetch(`${BASE}/reset`, {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ task_name: currentTask })
});
const data = await r.json();
rewardHistory = [];
stepHistory = [];
startTime = Date.now();
const logList = document.getElementById('logList');
if(logList) logList.innerHTML = '';
updateUI(data);
} finally {
hideLoading();
}
}
async function doStep(dir) {
if (obs?.done) return;
try {
const r = await fetch(`${BASE}/step`, {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ direction: dir })
});
const data = await r.json();
updateUI(data);
flashBtn(dir);
} catch(e) { console.error(e); }
}
function flashBtn(dir) {
const map = { UP:'btnUp', DOWN:'btnDown', LEFT:'btnLeft', RIGHT:'btnRight', WAIT:'btnWait' };
const id = map[dir];
if (!id) return;
const btn = document.getElementById(id);
if (!btn) return;
btn.style.borderColor = 'var(--blue)';
btn.style.boxShadow = '0 0 15px var(--blue)';
btn.style.transition = 'all 0.1s';
setTimeout(() => {
btn.style.borderColor = '';
btn.style.boxShadow = '';
}, 200);
}
async function doAnalyse() {
showLoading();
try {
const r = await fetch(`${BASE}/analyse/${encodeURIComponent(currentTask)}`);
const data = await r.json();
renderAnalytics(data);
} finally {
hideLoading();
}
}
function renderAnalytics(data) {
const grid = document.getElementById('analyticsGrid');
if (data.error || data.message === 'Click Analyse') {
grid.innerHTML = `<div class="analytics-row"><span class="analytics-key">INFO</span><span class="analytics-val" style="color:var(--dim)">${data.error || data.message || 'No data'}</span></div>`;
return;
}
const rows = [
['Episodes', data.total_episodes, 'cyan'],
['Avg Steps', data.avg_steps, ''],
['Avg Deliveries',data.avg_deliveries, 'green'],
['Avg Reward', data.avg_reward?.toFixed(3), (data.avg_reward || 0) > 0 ? 'green' : 'red'],
];
grid.innerHTML = rows.map(([k,v,c]) =>
`<div class="analytics-row">
<span class="analytics-key">${k}</span>
<span class="analytics-val ${c}">${v ?? 'β'}</span>
</div>`
).join('');
// Action distribution bars
const dist = data.action_distribution || {};
const total = Object.values(dist).reduce((a,b) => a+b, 0) || 1;
['UP','DOWN','LEFT','RIGHT','WAIT'].forEach(a => {
const bar = document.getElementById('ab-' + a);
if (bar) {
const h = Math.round((dist[a] || 0) / total * 36);
bar.style.height = h + 'px';
}
});
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// CSV DOWNLOAD
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function downloadCSV() {
if (stepHistory.length === 0) {
alert("No telemetry data to download yet!");
return;
}
// Sort by step to ensure chronological order
const sortedHistory = [...stepHistory].sort((a,b) => a.step - b.step);
const headers = Object.keys(sortedHistory[0]).join(',');
const rows = sortedHistory.map(row => Object.values(row).join(','));
const csvContent = "data:text/csv;charset=utf-8," + headers + "\n" + rows.join("\n");
const link = document.createElement("a");
link.setAttribute("href", encodeURI(csvContent));
link.setAttribute("download", `drone_mission_${currentTask}_${Date.now()}.csv`);
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
function downloadGraph() {
if (!rewardChart || rewardHistory.length === 0) {
alert("Mission telemetry graph not available! Please start the engine to generate data.");
return;
}
try {
const canvas = document.getElementById('rewardChart');
const url = canvas.toDataURL("image/png");
const link = document.createElement('a');
link.download = `drone_rewards_${currentTask}_${Date.now()}.png`;
link.href = url;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
} catch (e) {
console.error("Graph download failed:", e);
alert("Failed to download graph. See console for details.");
}
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// AUTO-PILOT
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function toggleAuto() {
autoActive = document.getElementById('autoToggle').checked;
if (autoActive) autoLoop();
}
async function autoLoop() {
if (!autoActive || obs?.done) return;
try {
const r = await fetch(`${BASE}/predict`, {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify(obs)
});
const { direction } = await r.json();
if (autoActive) {
await doStep(direction || 'WAIT');
// If the model says WAIT, add a slightly longer pause to avoid spamming
const delay = (direction === 'WAIT' || !direction) ? 1200 : 600;
setTimeout(autoLoop, delay);
}
} catch (e) {
if (autoActive) setTimeout(autoLoop, 2000);
}
}
function startAuto() {
autoActive = true;
const toggle = document.getElementById('autoToggle');
if(toggle) toggle.checked = true;
document.querySelector('.status-dot').classList.add('active');
document.querySelector('.status-indicator span').textContent = 'NEURAL_ENGINE: ACTIVE';
autoLoop();
}
function stopAuto() {
autoActive = false;
const toggle = document.getElementById('autoToggle');
if(toggle) toggle.checked = false;
const dot = document.querySelector('.status-dot');
if(dot) dot.classList.remove('active');
const lbl = document.querySelector('.status-indicator span');
if(lbl) lbl.textContent = 'NEURAL_ENGINE: READY';
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// INIT
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
window.onload = async () => {
initChart();
// Task selector
document.getElementById('taskGroup').onclick = (e) => {
const btn = e.target.closest('.task-btn');
if (btn) {
document.querySelectorAll('.task-btn').forEach(b => b.classList.remove('active'));
btn.classList.add('active');
currentTask = btn.dataset.task;
doReset();
}
};
// Keyboard
document.addEventListener('keydown', e => {
const map = { ArrowUp:'UP', ArrowDown:'DOWN', ArrowLeft:'LEFT', ArrowRight:'RIGHT' };
if (map[e.code]) {
e.preventDefault();
doStep(map[e.code]);
}
});
await doReset();
startLogPolling();
startTerminalLogPolling();
const loading = document.getElementById('loading');
if (loading) {
loading.style.opacity = '0';
setTimeout(() => loading.style.display = 'none', 400);
}
// Dynamic resize listener to keep grid scaling interactive
window.addEventListener('resize', () => {
if (obs) renderGrid(obs);
});
};
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// NEURAL LOG POLLING
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function startLogPolling() {
if(logTimer) clearInterval(logTimer);
logTimer = setInterval(async () => {
try {
const r = await fetch(`${BASE}/logs`);
const { logs } = await r.json();
const consoleEl = document.getElementById('neuralConsole');
if(!consoleEl || !logs || logs.length === 0) return;
const newContent = logs.join("");
if(newContent === lastLogs) return;
lastLogs = newContent;
consoleEl.innerHTML = logs.map(line => {
let cls = "";
if(line.includes("Reward")) cls = "success";
if(line.includes("complete")) cls = "info";
if(line.includes("saved")) cls = "info";
return `<div class="console-line ${cls}">> ${line}</div>`;
}).join("");
consoleEl.scrollTop = consoleEl.scrollHeight;
} catch(e) {}
}, 2000);
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// ANTIGRAVITY TERMINAL POLLING
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function startTerminalLogPolling() {
setInterval(async () => {
try {
const r = await fetch(`${BASE}/terminal_logs`);
const { logs } = await r.json();
const consoleEl = document.getElementById('terminalConsole');
if(!consoleEl || !logs || logs.length === 0) return;
const newContent = logs.join("\n");
if(newContent === lastTerminalLogs && consoleEl.innerHTML !== "") return;
lastTerminalLogs = newContent;
consoleEl.innerHTML = logs.map(line => {
let cls = "";
if(line.includes("POST")) cls = "success";
if(line.includes("GET")) cls = "info";
if(line.includes(" 404 ") || line.includes(" 500 ")) cls = "warn";
return `<div class="console-line ${cls}">> ${line}</div>`;
}).join("");
consoleEl.scrollTop = consoleEl.scrollHeight;
} catch(e) {}
}, 1000); // Poll slightly faster for real-time feel
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// COMPLETION MODAL
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function showCompletionPopup(obs) {
const modal = document.getElementById('completionModal');
if (!modal) return;
const isSuccess = obs.deliveries_done === obs.deliveries_total;
document.getElementById('summaryStatus').textContent = isSuccess ? "MISSION LOG: SUCCESS" : "MISSION LOG: FAILED";
document.getElementById('summaryStatus').style.color = isSuccess ? "var(--green)" : "var(--red)";
document.getElementById('summaryScore').textContent = obs.score.toFixed(3);
document.getElementById('summaryDel').textContent = `${obs.deliveries_done}/${obs.deliveries_total}`;
document.getElementById('summarySteps').textContent = obs.step_count;
document.getElementById('summaryReward').textContent = obs.reward_total.toFixed(3);
const avg = obs.step_count > 0 ? (obs.reward_total / obs.step_count).toFixed(4) : "0.000";
document.getElementById('summaryAvg').textContent = avg;
const delRatio = obs.deliveries_total > 0 ? (obs.deliveries_done / obs.deliveries_total) : 0;
const stepRatio = obs.max_steps > 0 ? (1 - obs.step_count / obs.max_steps) : 0;
const batRatio = obs.battery; // Already 0.0-1.0
// Dynamic Efficiency: 75% Completion, 15% Battery, 10% Speed
const efficiency = (delRatio * 75) + (batRatio * 15) + (stepRatio * 10);
document.getElementById('summaryEfficiency').textContent = efficiency.toFixed(1) + "%";
const elapsed = startTime ? ((Date.now() - startTime) / 1000).toFixed(1) : "0.0";
document.getElementById('summaryTime').textContent = elapsed + "s";
const list = document.getElementById('summaryDeliveryList');
list.innerHTML = "";
// Filter history for significant reward events
const significantSteps = stepHistory.filter(s => parseFloat(s.reward) > 0.05);
if (significantSteps.length > 0) {
significantSteps.forEach((d, i) => {
const item = document.createElement('div');
item.className = 'd-item';
item.innerHTML = `<span>Event #${i+1}: ${d.message.split('!')[0]}</span> <span style="color:var(--green)">+${d.reward}</span>`;
list.appendChild(item);
});
} else {
list.innerHTML = `<div class="d-item" style="color:var(--dim)">No significant reward events recorded.</div>`;
}
modal.style.display = 'flex';
// AUTO-ANALYSE: Trigger deep analysis on completion
autoAnalyse();
}
async function autoAnalyse() {
try {
const res = await fetch(`/analyse/${encodeURIComponent(currentTask)}`);
const data = await res.json();
if (data && data.avg_reward) {
// Update modal with analysis results if elements exist
const avgEl = document.getElementById('summaryAvg');
if (avgEl) {
avgEl.innerHTML = `${data.avg_reward.toFixed(3)}`;
}
console.log("Auto-Analysis Complete:", data);
}
} catch(e) {
console.warn("Auto-analysis failed (maybe no memory yet?):", e);
}
}
function closeCompletionModal() {
const modal = document.getElementById('completionModal');
if (modal) modal.style.display = 'none';
}
function startNextTask() {
closeCompletionModal();
const sequence = {
'graders:grade_easy': 'graders:grade_medium',
'graders:grade_medium': 'graders:grade_hard',
'graders:grade_hard': 'graders:grade_easy'
};
const nextTask = sequence[currentTask] || 'drone_env.graders.easy:grade_easy';
currentTask = nextTask;
// Update active state on buttons
document.querySelectorAll('.task-btn').forEach(b => {
b.classList.remove('active');
if (b.dataset.task === nextTask) b.classList.add('active');
});
doReset();
updateMissionLegend(); // Refresh legend
}
async function updateMissionLegend() {
try {
const res = await fetch('/tasks');
const data = await res.json();
const container = document.getElementById('legendTableContainer');
if (!container || !data.tasks) return;
// Ensure tasks are sorted Easy, Medium, Hard
const order = ['graders:grade_easy', 'graders:grade_medium', 'graders:grade_hard'];
const tasks = data.tasks.sort((a, b) => order.indexOf(a.name) - order.indexOf(b.name));
container.innerHTML = `
<table class="l-table">
<thead>
<tr>
<th style="width: 25%">TECHNICAL METRIC</th>
<th style="width: 25%">EASY REWARD</th>
<th style="width: 25%">MEDIUM REWARD</th>
<th style="width: 25%">HARD REWARD</th>
</tr>
</thead>
<tbody>
<tr>
<td class="l-dim">Grid Resolution</td>
${tasks.map(t => `<td class="l-hl">${t.width} x ${t.height}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Delivery Target</td>
${tasks.map(t => `<td class="l-hl">+${t.r_delivery}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Package Count</td>
${tasks.map(t => `<td class="l-hl">${t.n_deliveries}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Battery Capacity</td>
${tasks.map(t => `<td class="l-hl">${t.battery_max}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Safe Flight Step</td>
${tasks.map(t => `<td>+${t.r_step}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Collision Warning</td>
${tasks.map(t => `<td>+${t.r_obstacle}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Critical Battery Fail</td>
${tasks.map(t => `<td>+${t.r_battery_dead}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Restricted Airspace (Wall)</td>
${tasks.map(t => `<td>+${t.r_wall}</td>`).join('')}
</tr>
<tr>
<td class="l-dim">Environment Density</td>
${tasks.map(t => `<td class="l-dim">${t.n_buildings}B, ${t.n_trees}T, ${t.n_obstacles}O</td>`).join('')}
</tr>
</tbody>
</table>
`;
} catch(e) {
console.warn("Could not update legend:", e);
}
}
// Initial legend load
window.addEventListener('load', updateMissionLegend);
|