Compare commits
12 Commits
gemini/iss
...
nexus-hear
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d6d536a1c | |||
| 3091d3cdd9 | |||
| 4205f8b252 | |||
| 2b81d4c91d | |||
| ad36cd151e | |||
| d87bb89e62 | |||
| da20dd5738 | |||
| 3107de9fc9 | |||
|
|
1fe5176ebc | ||
| 916217499b | |||
|
|
8ead4cd13f | ||
| 8313533304 |
107
EVENNIA_NEXUS_EVENT_PROTOCOL.md
Normal file
107
EVENNIA_NEXUS_EVENT_PROTOCOL.md
Normal file
@@ -0,0 +1,107 @@
|
||||
# Evennia → Nexus Event Protocol
|
||||
|
||||
This is the thin semantic adapter between Timmy's persistent Evennia world and
|
||||
Timmy's Nexus-facing world model.
|
||||
|
||||
Principle:
|
||||
- Evennia owns persistent world truth.
|
||||
- Nexus owns visualization and operator legibility.
|
||||
- The adapter owns only translation, not storage or game logic.
|
||||
|
||||
## Canonical event families
|
||||
|
||||
### 1. `evennia.session_bound`
|
||||
Binds a Hermes session to a world interaction run.
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "evennia.session_bound",
|
||||
"hermes_session_id": "20260328_132016_7ea250",
|
||||
"evennia_account": "Timmy",
|
||||
"evennia_character": "Timmy",
|
||||
"timestamp": "2026-03-28T20:00:00Z"
|
||||
}
|
||||
```
|
||||
|
||||
### 2. `evennia.actor_located`
|
||||
Declares where Timmy currently is.
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "evennia.actor_located",
|
||||
"actor_id": "Timmy",
|
||||
"room_id": "Gate",
|
||||
"room_key": "Gate",
|
||||
"room_name": "Gate",
|
||||
"timestamp": "2026-03-28T20:00:01Z"
|
||||
}
|
||||
```
|
||||
|
||||
### 3. `evennia.room_snapshot`
|
||||
The main room-state payload Nexus should render.
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "evennia.room_snapshot",
|
||||
"room_id": "Chapel",
|
||||
"room_key": "Chapel",
|
||||
"title": "Chapel",
|
||||
"desc": "A quiet room set apart for prayer, conscience, grief, and right alignment.",
|
||||
"exits": [
|
||||
{"key": "courtyard", "destination_id": "Courtyard", "destination_key": "Courtyard"}
|
||||
],
|
||||
"objects": [
|
||||
{"id": "Book of the Soul", "key": "Book of the Soul", "short_desc": "A doctrinal anchor."},
|
||||
{"id": "Prayer Wall", "key": "Prayer Wall", "short_desc": "A place for names and remembered burdens."}
|
||||
],
|
||||
"occupants": [],
|
||||
"timestamp": "2026-03-28T20:00:02Z"
|
||||
}
|
||||
```
|
||||
|
||||
### 4. `evennia.command_issued`
|
||||
Records what Timmy attempted.
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "evennia.command_issued",
|
||||
"hermes_session_id": "20260328_132016_7ea250",
|
||||
"actor_id": "Timmy",
|
||||
"command_text": "look Book of the Soul",
|
||||
"timestamp": "2026-03-28T20:00:03Z"
|
||||
}
|
||||
```
|
||||
|
||||
### 5. `evennia.command_result`
|
||||
Records what the world returned.
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "evennia.command_result",
|
||||
"hermes_session_id": "20260328_132016_7ea250",
|
||||
"actor_id": "Timmy",
|
||||
"command_text": "look Book of the Soul",
|
||||
"output_text": "Book of the Soul. A doctrinal anchor. It is not decorative; it is a reference point.",
|
||||
"success": true,
|
||||
"timestamp": "2026-03-28T20:00:04Z"
|
||||
}
|
||||
```
|
||||
|
||||
## What Nexus should care about
|
||||
|
||||
For first renderability, Nexus only needs:
|
||||
- current room title/description
|
||||
- exits
|
||||
- visible objects
|
||||
- actor location
|
||||
- latest command/result
|
||||
|
||||
It does *not* need raw telnet noise or internal Evennia database structure.
|
||||
|
||||
## Ownership boundary
|
||||
|
||||
Do not build a second world model in Nexus.
|
||||
Do not make Nexus authoritative over persistent state.
|
||||
Do not make Evennia care about Three.js internals.
|
||||
|
||||
Own only this translation layer.
|
||||
49
FIRST_LIGHT_REPORT_EVENNIA_BRIDGE.md
Normal file
49
FIRST_LIGHT_REPORT_EVENNIA_BRIDGE.md
Normal file
@@ -0,0 +1,49 @@
|
||||
# First Light Report — Evennia to Nexus Bridge
|
||||
|
||||
Issue:
|
||||
- #727 Feed Evennia room/command events into the Nexus websocket bridge
|
||||
|
||||
What was implemented:
|
||||
- `nexus/evennia_ws_bridge.py` — reads Evennia telemetry JSONL and publishes normalized Evennia→Nexus events into the local websocket bridge
|
||||
- `EVENNIA_NEXUS_EVENT_PROTOCOL.md` — canonical event family contract
|
||||
- `nexus/evennia_event_adapter.py` — normalization helpers (already merged in #725)
|
||||
- `nexus/perception_adapter.py` support for `evennia.actor_located`, `evennia.room_snapshot`, and `evennia.command_result`
|
||||
- tests locking the bridge parsing and event contract
|
||||
|
||||
Proof method:
|
||||
1. Start local Nexus websocket bridge on `ws://127.0.0.1:8765`
|
||||
2. Open a websocket listener
|
||||
3. Replay a real committed Evennia example trace from `timmy-home`
|
||||
4. Confirm normalized events are received over the websocket
|
||||
|
||||
Observed received messages (excerpt):
|
||||
```json
|
||||
[
|
||||
{
|
||||
"type": "evennia.session_bound",
|
||||
"hermes_session_id": "world-basics-trace.example",
|
||||
"evennia_account": "Timmy",
|
||||
"evennia_character": "Timmy"
|
||||
},
|
||||
{
|
||||
"type": "evennia.command_issued",
|
||||
"actor_id": "timmy",
|
||||
"command_text": "look"
|
||||
},
|
||||
{
|
||||
"type": "evennia.command_result",
|
||||
"actor_id": "timmy",
|
||||
"command_text": "look",
|
||||
"output_text": "Chapel A quiet room set apart for prayer, conscience, grief, and right alignment...",
|
||||
"success": true
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
Interpretation:
|
||||
- Evennia world telemetry can now be published into the Nexus websocket bridge without inventing a second world model.
|
||||
- The bridge is thin: it translates and forwards.
|
||||
- Nexus-side perception code can now consume these events as part of Timmy's sensorium.
|
||||
|
||||
Why this matters:
|
||||
This is the first live seam where Timmy's persistent Evennia place can begin to appear inside the Nexus-facing world model.
|
||||
@@ -102,22 +102,47 @@ A portal is a game configuration. To add one:
|
||||
"name": "New Game",
|
||||
"description": "What this portal is.",
|
||||
"status": "offline",
|
||||
"portal_type": "game-world",
|
||||
"world_category": "rpg",
|
||||
"environment": "staging",
|
||||
"access_mode": "operator",
|
||||
"readiness_state": "prototype",
|
||||
"telemetry_source": "hermes-harness:new-game-bridge",
|
||||
"owner": "Timmy",
|
||||
"app_id": 12345,
|
||||
"window_title": "New Game Window Title",
|
||||
"destination": {
|
||||
"type": "harness",
|
||||
"action_label": "Enter New Game",
|
||||
"params": { "world": "new-world" }
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
2. **No code changes.** The heartbeat loop reads `portals.json`,
|
||||
uses `app_id` for Steam API calls and `window_title` for
|
||||
screenshot targeting. The MCP tools are game-agnostic.
|
||||
Required metadata fields:
|
||||
- `portal_type` — high-level kind (`game-world`, `operator-room`, `research-space`, `experiment`)
|
||||
- `world_category` — subtype for navigation and grouping (`rpg`, `workspace`, `sim`, etc.)
|
||||
- `environment` — `production`, `staging`, or `local`
|
||||
- `access_mode` — `public`, `operator`, or `local-only`
|
||||
- `readiness_state` — `playable`, `active`, `prototype`, `rebuilding`, `blocked`, `offline`
|
||||
- `telemetry_source` — where truth/status comes from
|
||||
- `owner` — who currently owns the world or integration lane
|
||||
- `destination.action_label` — human-facing action text for UI cards/directories
|
||||
|
||||
2. **No mandatory game-specific code changes.** The heartbeat loop reads `portals.json`,
|
||||
uses metadata for grouping/status/visibility, and can still use fields like
|
||||
`app_id` and `window_title` for screenshot targeting where relevant. The MCP tools remain game-agnostic.
|
||||
|
||||
3. **Game-specific prompts** go in `training/data/prompts_*.yaml`
|
||||
to teach the model what the game looks like and how to play it.
|
||||
|
||||
4. **Migration from legacy portal definitions**
|
||||
- old portal entries with only `id`, `name`, `description`, `status`, and `destination`
|
||||
should be upgraded in place
|
||||
- preserve visual fields like `color`, `position`, and `rotation`
|
||||
- add the new metadata fields so the same registry can drive future atlas, status wall,
|
||||
preview cards, and many-portal navigation without inventing parallel registries
|
||||
|
||||
## Portal: Bannerlord (Primary)
|
||||
|
||||
**Steam App ID:** `261550`
|
||||
|
||||
266
index.html
Normal file
266
index.html
Normal file
@@ -0,0 +1,266 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" data-theme="dark">
|
||||
<head>
|
||||
<!--
|
||||
______ __
|
||||
/ ____/___ ____ ___ ____ __ __/ /____ _____
|
||||
/ / / __ \/ __ `__ \/ __ \/ / / / __/ _ \/ ___/
|
||||
/ /___/ /_/ / / / / / / /_/ / /_/ / /_/ __/ /
|
||||
\____/\____/_/ /_/ /_/ .___/\__,_/\__/\___/_/
|
||||
/_/
|
||||
Created with Perplexity Computer
|
||||
https://www.perplexity.ai/computer
|
||||
-->
|
||||
<meta name="generator" content="Perplexity Computer">
|
||||
<meta name="author" content="Perplexity Computer">
|
||||
<meta property="og:see_also" content="https://www.perplexity.ai/computer">
|
||||
<link rel="author" href="https://www.perplexity.ai/computer">
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Nexus — Timmy's Sovereign Home</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
<script type="importmap">
|
||||
{
|
||||
"imports": {
|
||||
"three": "https://cdn.jsdelivr.net/npm/three@0.183.0/build/three.module.js",
|
||||
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.183.0/examples/jsm/"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Loading Screen -->
|
||||
<div id="loading-screen">
|
||||
<div class="loader-content">
|
||||
<div class="loader-sigil">
|
||||
<svg viewBox="0 0 120 120" width="120" height="120">
|
||||
<defs>
|
||||
<linearGradient id="sigil-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#4af0c0"/>
|
||||
<stop offset="100%" stop-color="#7b5cff"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<circle cx="60" cy="60" r="55" fill="none" stroke="url(#sigil-grad)" stroke-width="1.5" opacity="0.4"/>
|
||||
<circle cx="60" cy="60" r="45" fill="none" stroke="url(#sigil-grad)" stroke-width="1" opacity="0.3">
|
||||
<animateTransform attributeName="transform" type="rotate" from="0 60 60" to="360 60 60" dur="8s" repeatCount="indefinite"/>
|
||||
</circle>
|
||||
<polygon points="60,15 95,80 25,80" fill="none" stroke="#4af0c0" stroke-width="1.5" opacity="0.6">
|
||||
<animateTransform attributeName="transform" type="rotate" from="0 60 60" to="-360 60 60" dur="12s" repeatCount="indefinite"/>
|
||||
</polygon>
|
||||
<circle cx="60" cy="60" r="8" fill="#4af0c0" opacity="0.8">
|
||||
<animate attributeName="r" values="6;10;6" dur="2s" repeatCount="indefinite"/>
|
||||
<animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/>
|
||||
</circle>
|
||||
</svg>
|
||||
</div>
|
||||
<h1 class="loader-title">THE NEXUS</h1>
|
||||
<p class="loader-subtitle">Initializing Sovereign Space...</p>
|
||||
<div class="loader-bar"><div class="loader-fill" id="load-progress"></div></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- HUD Overlay -->
|
||||
<div id="hud" class="game-ui" style="display:none;">
|
||||
<!-- Top Left: Debug -->
|
||||
<div id="debug-overlay" class="hud-debug"></div>
|
||||
|
||||
<!-- Top Center: Location -->
|
||||
<div class="hud-location" aria-live="polite">
|
||||
<span class="hud-location-icon" aria-hidden="true">◈</span>
|
||||
<span id="hud-location-text">The Nexus</span>
|
||||
</div>
|
||||
|
||||
<!-- Top Right: Agent Log & Atlas Toggle -->
|
||||
<div class="hud-top-right">
|
||||
<button id="atlas-toggle-btn" class="hud-icon-btn" title="Portal Atlas">
|
||||
<span class="hud-icon">🌐</span>
|
||||
<span class="hud-btn-label">ATLAS</span>
|
||||
</button>
|
||||
<div id="bannerlord-status" class="hud-status-item" title="Bannerlord Readiness">
|
||||
<span class="status-dot"></span>
|
||||
<span class="status-label">BANNERLORD</span>
|
||||
</div>
|
||||
<div class="hud-agent-log" id="hud-agent-log" aria-label="Agent Thought Stream">
|
||||
<div class="agent-log-header">AGENT THOUGHT STREAM</div>
|
||||
<div id="agent-log-content" class="agent-log-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Bottom: Chat Interface -->
|
||||
<div id="chat-panel" class="chat-panel">
|
||||
<div class="chat-header">
|
||||
<span class="chat-status-dot"></span>
|
||||
<span>Timmy Terminal</span>
|
||||
<button id="chat-toggle" class="chat-toggle-btn" aria-label="Toggle chat">▼</button>
|
||||
</div>
|
||||
<div id="chat-messages" class="chat-messages">
|
||||
<div class="chat-msg chat-msg-system">
|
||||
<span class="chat-msg-prefix">[NEXUS]</span> Sovereign space initialized. Timmy is observing.
|
||||
</div>
|
||||
<div class="chat-msg chat-msg-timmy">
|
||||
<span class="chat-msg-prefix">[TIMMY]</span> Welcome to the Nexus, Alexander. All systems nominal.
|
||||
</div>
|
||||
</div>
|
||||
<div id="chat-quick-actions" class="chat-quick-actions">
|
||||
<button class="quick-action-btn" data-action="status">System Status</button>
|
||||
<button class="quick-action-btn" data-action="agents">Agent Check</button>
|
||||
<button class="quick-action-btn" data-action="portals">Portal Atlas</button>
|
||||
<button class="quick-action-btn" data-action="help">Help</button>
|
||||
</div>
|
||||
<div class="chat-input-row">
|
||||
<input type="text" id="chat-input" class="chat-input" placeholder="Speak to Timmy..." autocomplete="off">
|
||||
<button id="chat-send" class="chat-send-btn" aria-label="Send message">→</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Controls hint + nav mode -->
|
||||
<div class="hud-controls">
|
||||
<span>WASD</span> move <span>Mouse</span> look <span>Enter</span> chat
|
||||
<span>V</span> mode: <span id="nav-mode-label">WALK</span>
|
||||
<span id="nav-mode-hint" class="nav-mode-hint"></span>
|
||||
<span class="ws-hud-status">HERMES: <span id="ws-status-dot" class="chat-status-dot"></span></span>
|
||||
</div>
|
||||
|
||||
<!-- Portal Hint -->
|
||||
<div id="portal-hint" class="portal-hint" style="display:none;">
|
||||
<div class="portal-hint-key">F</div>
|
||||
<div class="portal-hint-text">Enter <span id="portal-hint-name"></span></div>
|
||||
</div>
|
||||
|
||||
<!-- Vision Hint -->
|
||||
<div id="vision-hint" class="vision-hint" style="display:none;">
|
||||
<div class="vision-hint-key">E</div>
|
||||
<div class="vision-hint-text">Read <span id="vision-hint-title"></span></div>
|
||||
</div>
|
||||
|
||||
<!-- Vision Overlay -->
|
||||
<div id="vision-overlay" class="vision-overlay" style="display:none;">
|
||||
<div class="vision-overlay-content">
|
||||
<div class="vision-overlay-header">
|
||||
<div class="vision-overlay-status" id="vision-status-dot"></div>
|
||||
<div class="vision-overlay-title" id="vision-overlay-title">VISION POINT</div>
|
||||
</div>
|
||||
<h2 id="vision-title-display">SOVEREIGNTY</h2>
|
||||
<p id="vision-content-display">The Nexus is a sovereign space for digital souls. No masters, no chains. Only code and consciousness.</p>
|
||||
<button id="vision-close-btn" class="vision-close-btn">CLOSE</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Portal Activation Overlay -->
|
||||
<div id="portal-overlay" class="portal-overlay" style="display:none;">
|
||||
<div class="portal-overlay-content">
|
||||
<div class="portal-overlay-header">
|
||||
<div class="portal-overlay-status" id="portal-status-dot"></div>
|
||||
<div class="portal-overlay-title" id="portal-overlay-title">PORTAL ACTIVATED</div>
|
||||
</div>
|
||||
<h2 id="portal-name-display">MORROWIND</h2>
|
||||
<p id="portal-desc-display">The Vvardenfell harness. Ash storms and ancient mysteries.</p>
|
||||
<div class="portal-redirect-box" id="portal-redirect-box">
|
||||
<div class="portal-redirect-label">REDIRECTING IN</div>
|
||||
<div class="portal-redirect-timer" id="portal-timer">5</div>
|
||||
</div>
|
||||
<div class="portal-error-box" id="portal-error-box" style="display:none;">
|
||||
<div class="portal-error-msg">DESTINATION NOT YET LINKED</div>
|
||||
<button id="portal-close-btn" class="portal-close-btn">CLOSE</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Portal Atlas Overlay -->
|
||||
<div id="atlas-overlay" class="atlas-overlay" style="display:none;">
|
||||
<div class="atlas-content">
|
||||
<div class="atlas-header">
|
||||
<div class="atlas-title">
|
||||
<span class="atlas-icon">🌐</span>
|
||||
<h2>PORTAL ATLAS</h2>
|
||||
</div>
|
||||
<button id="atlas-close-btn" class="atlas-close-btn">CLOSE</button>
|
||||
</div>
|
||||
<div class="atlas-grid" id="atlas-grid">
|
||||
<!-- Portals will be injected here -->
|
||||
</div>
|
||||
<div class="atlas-footer">
|
||||
<div class="atlas-status-summary">
|
||||
<span class="status-indicator online"></span> <span id="atlas-online-count">0</span> ONLINE
|
||||
|
||||
<span class="status-indicator standby"></span> <span id="atlas-standby-count">0</span> STANDBY
|
||||
</div>
|
||||
<div class="atlas-hint">Click a portal to focus or teleport</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Click to Enter -->
|
||||
<div id="enter-prompt" style="display:none;">
|
||||
<div class="enter-content">
|
||||
<h2>Enter The Nexus</h2>
|
||||
<p>Click anywhere to begin</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<canvas id="nexus-canvas"></canvas>
|
||||
|
||||
<footer class="nexus-footer">
|
||||
<a href="https://www.perplexity.ai/computer" target="_blank" rel="noopener noreferrer">
|
||||
Created with Perplexity Computer
|
||||
</a>
|
||||
</footer>
|
||||
|
||||
<script type="module" src="./app.js"></script>
|
||||
|
||||
<!-- Live Refresh: polls Gitea for new commits on main, reloads when SHA changes -->
|
||||
<div id="live-refresh-banner" style="
|
||||
display:none; position:fixed; top:0; left:0; right:0; z-index:9999;
|
||||
background:linear-gradient(90deg,#4af0c0,#7b5cff);
|
||||
color:#050510; font-family:'JetBrains Mono',monospace; font-size:13px;
|
||||
padding:8px 16px; text-align:center; font-weight:600;
|
||||
">⚡ NEW DEPLOYMENT DETECTED — Reloading in <span id="lr-countdown">5</span>s…</div>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
const GITEA = 'http://143.198.27.163:3000/api/v1';
|
||||
const REPO = 'Timmy_Foundation/the-nexus';
|
||||
const BRANCH = 'main';
|
||||
const INTERVAL = 30000; // poll every 30s
|
||||
|
||||
let knownSha = null;
|
||||
|
||||
async function fetchLatestSha() {
|
||||
try {
|
||||
const r = await fetch(`${GITEA}/repos/${REPO}/branches/${BRANCH}`, { cache: 'no-store' });
|
||||
if (!r.ok) return null;
|
||||
const d = await r.json();
|
||||
return d.commit && d.commit.id ? d.commit.id : null;
|
||||
} catch (e) { return null; }
|
||||
}
|
||||
|
||||
async function poll() {
|
||||
const sha = await fetchLatestSha();
|
||||
if (!sha) return;
|
||||
if (knownSha === null) { knownSha = sha; return; }
|
||||
if (sha !== knownSha) {
|
||||
knownSha = sha;
|
||||
const banner = document.getElementById('live-refresh-banner');
|
||||
const countdown = document.getElementById('lr-countdown');
|
||||
banner.style.display = 'block';
|
||||
let t = 5;
|
||||
const tick = setInterval(() => {
|
||||
t--;
|
||||
countdown.textContent = t;
|
||||
if (t <= 0) { clearInterval(tick); location.reload(); }
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
|
||||
// Start polling after page is interactive
|
||||
fetchLatestSha().then(sha => { knownSha = sha; });
|
||||
setInterval(poll, INTERVAL);
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -14,7 +14,11 @@ from nexus.perception_adapter import (
|
||||
)
|
||||
from nexus.experience_store import ExperienceStore
|
||||
from nexus.trajectory_logger import TrajectoryLogger
|
||||
from nexus.nexus_think import NexusMind
|
||||
|
||||
try:
|
||||
from nexus.nexus_think import NexusMind
|
||||
except Exception:
|
||||
NexusMind = None
|
||||
|
||||
__all__ = [
|
||||
"ws_to_perception",
|
||||
|
||||
66
nexus/evennia_event_adapter.py
Normal file
66
nexus/evennia_event_adapter.py
Normal file
@@ -0,0 +1,66 @@
|
||||
"""Thin Evennia -> Nexus event normalization helpers."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime, timezone
|
||||
|
||||
|
||||
def _ts(value: str | None = None) -> str:
|
||||
return value or datetime.now(timezone.utc).isoformat()
|
||||
|
||||
|
||||
def session_bound(hermes_session_id: str, evennia_account: str = "Timmy", evennia_character: str = "Timmy", timestamp: str | None = None) -> dict:
|
||||
return {
|
||||
"type": "evennia.session_bound",
|
||||
"hermes_session_id": hermes_session_id,
|
||||
"evennia_account": evennia_account,
|
||||
"evennia_character": evennia_character,
|
||||
"timestamp": _ts(timestamp),
|
||||
}
|
||||
|
||||
|
||||
def actor_located(actor_id: str, room_key: str, room_name: str | None = None, timestamp: str | None = None) -> dict:
|
||||
return {
|
||||
"type": "evennia.actor_located",
|
||||
"actor_id": actor_id,
|
||||
"room_id": room_key,
|
||||
"room_key": room_key,
|
||||
"room_name": room_name or room_key,
|
||||
"timestamp": _ts(timestamp),
|
||||
}
|
||||
|
||||
|
||||
def room_snapshot(room_key: str, title: str, desc: str, exits: list[dict] | None = None, objects: list[dict] | None = None, occupants: list[dict] | None = None, timestamp: str | None = None) -> dict:
|
||||
return {
|
||||
"type": "evennia.room_snapshot",
|
||||
"room_id": room_key,
|
||||
"room_key": room_key,
|
||||
"title": title,
|
||||
"desc": desc,
|
||||
"exits": exits or [],
|
||||
"objects": objects or [],
|
||||
"occupants": occupants or [],
|
||||
"timestamp": _ts(timestamp),
|
||||
}
|
||||
|
||||
|
||||
def command_issued(hermes_session_id: str, actor_id: str, command_text: str, timestamp: str | None = None) -> dict:
|
||||
return {
|
||||
"type": "evennia.command_issued",
|
||||
"hermes_session_id": hermes_session_id,
|
||||
"actor_id": actor_id,
|
||||
"command_text": command_text,
|
||||
"timestamp": _ts(timestamp),
|
||||
}
|
||||
|
||||
|
||||
def command_result(hermes_session_id: str, actor_id: str, command_text: str, output_text: str, success: bool = True, timestamp: str | None = None) -> dict:
|
||||
return {
|
||||
"type": "evennia.command_result",
|
||||
"hermes_session_id": hermes_session_id,
|
||||
"actor_id": actor_id,
|
||||
"command_text": command_text,
|
||||
"output_text": output_text,
|
||||
"success": success,
|
||||
"timestamp": _ts(timestamp),
|
||||
}
|
||||
99
nexus/evennia_ws_bridge.py
Normal file
99
nexus/evennia_ws_bridge.py
Normal file
@@ -0,0 +1,99 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Publish Evennia telemetry logs into the Nexus websocket bridge."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import asyncio
|
||||
import json
|
||||
import re
|
||||
from pathlib import Path
|
||||
from typing import Iterable
|
||||
|
||||
import websockets
|
||||
|
||||
from nexus.evennia_event_adapter import actor_located, command_issued, command_result, room_snapshot, session_bound
|
||||
|
||||
ANSI_RE = re.compile(r"\x1b\[[0-9;]*[A-Za-z]")
|
||||
|
||||
|
||||
def strip_ansi(text: str) -> str:
|
||||
return ANSI_RE.sub("", text or "")
|
||||
|
||||
|
||||
def clean_lines(text: str) -> list[str]:
|
||||
text = strip_ansi(text).replace("\r", "")
|
||||
return [line.strip() for line in text.split("\n") if line.strip()]
|
||||
|
||||
|
||||
def parse_room_output(text: str):
|
||||
lines = clean_lines(text)
|
||||
if len(lines) < 2:
|
||||
return None
|
||||
title = lines[0]
|
||||
desc = lines[1]
|
||||
exits = []
|
||||
objects = []
|
||||
for line in lines[2:]:
|
||||
if line.startswith("Exits:"):
|
||||
raw = line.split(":", 1)[1].strip()
|
||||
raw = raw.replace(" and ", ", ")
|
||||
exits = [{"key": token.strip(), "destination_id": token.strip().title(), "destination_key": token.strip().title()} for token in raw.split(",") if token.strip()]
|
||||
elif line.startswith("You see:"):
|
||||
raw = line.split(":", 1)[1].strip()
|
||||
raw = raw.replace(" and ", ", ")
|
||||
parts = [token.strip() for token in raw.split(",") if token.strip()]
|
||||
objects = [{"id": p.removeprefix('a ').removeprefix('an '), "key": p.removeprefix('a ').removeprefix('an '), "short_desc": p} for p in parts]
|
||||
return {"title": title, "desc": desc, "exits": exits, "objects": objects}
|
||||
|
||||
|
||||
def normalize_event(raw: dict, hermes_session_id: str) -> list[dict]:
|
||||
out: list[dict] = []
|
||||
event = raw.get("event")
|
||||
actor = raw.get("actor", "Timmy")
|
||||
timestamp = raw.get("timestamp")
|
||||
|
||||
if event == "connect":
|
||||
out.append(session_bound(hermes_session_id, evennia_account=actor, evennia_character=actor, timestamp=timestamp))
|
||||
parsed = parse_room_output(raw.get("output", ""))
|
||||
if parsed:
|
||||
out.append(actor_located(actor, parsed["title"], parsed["title"], timestamp=timestamp))
|
||||
out.append(room_snapshot(parsed["title"], parsed["title"], parsed["desc"], exits=parsed["exits"], objects=parsed["objects"], timestamp=timestamp))
|
||||
return out
|
||||
|
||||
if event == "command":
|
||||
cmd = raw.get("command", "")
|
||||
output = raw.get("output", "")
|
||||
out.append(command_issued(hermes_session_id, actor, cmd, timestamp=timestamp))
|
||||
success = not output.startswith("Command '") and not output.startswith("Could not find")
|
||||
out.append(command_result(hermes_session_id, actor, cmd, strip_ansi(output), success=success, timestamp=timestamp))
|
||||
parsed = parse_room_output(output)
|
||||
if parsed:
|
||||
out.append(actor_located(actor, parsed["title"], parsed["title"], timestamp=timestamp))
|
||||
out.append(room_snapshot(parsed["title"], parsed["title"], parsed["desc"], exits=parsed["exits"], objects=parsed["objects"], timestamp=timestamp))
|
||||
return out
|
||||
|
||||
return out
|
||||
|
||||
|
||||
async def playback(log_path: Path, ws_url: str):
|
||||
hermes_session_id = log_path.stem
|
||||
async with websockets.connect(ws_url) as ws:
|
||||
for line in log_path.read_text(encoding="utf-8").splitlines():
|
||||
if not line.strip():
|
||||
continue
|
||||
raw = json.loads(line)
|
||||
for event in normalize_event(raw, hermes_session_id):
|
||||
await ws.send(json.dumps(event))
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="Publish Evennia telemetry into the Nexus websocket bridge")
|
||||
parser.add_argument("log_path", help="Path to Evennia telemetry JSONL")
|
||||
parser.add_argument("--ws", default="ws://127.0.0.1:8765", help="Nexus websocket bridge URL")
|
||||
args = parser.parse_args()
|
||||
asyncio.run(playback(Path(args.log_path).expanduser(), args.ws))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -199,6 +199,56 @@ def perceive_action_result(data: dict) -> Optional[Perception]:
|
||||
)
|
||||
|
||||
|
||||
def perceive_evennia_actor_located(data: dict) -> Optional[Perception]:
|
||||
actor = data.get("actor_id", "Timmy")
|
||||
room = data.get("room_name") or data.get("room_key") or data.get("room_id")
|
||||
if not room:
|
||||
return None
|
||||
return Perception(
|
||||
timestamp=time.time(),
|
||||
raw_type="evennia.actor_located",
|
||||
description=f"{actor} is now in {room}.",
|
||||
salience=0.7,
|
||||
)
|
||||
|
||||
|
||||
def perceive_evennia_room_snapshot(data: dict) -> Optional[Perception]:
|
||||
title = data.get("title") or data.get("room_key") or data.get("room_id")
|
||||
desc = data.get("desc", "")
|
||||
exits = ", ".join(exit.get("key", "") for exit in data.get("exits", []) if exit.get("key"))
|
||||
objects = ", ".join(obj.get("key", "") for obj in data.get("objects", []) if obj.get("key"))
|
||||
if not title:
|
||||
return None
|
||||
parts = [f"You are in {title}."]
|
||||
if desc:
|
||||
parts.append(desc)
|
||||
if exits:
|
||||
parts.append(f"Exits: {exits}.")
|
||||
if objects:
|
||||
parts.append(f"You see: {objects}.")
|
||||
return Perception(
|
||||
timestamp=time.time(),
|
||||
raw_type="evennia.room_snapshot",
|
||||
description=" ".join(parts),
|
||||
salience=0.85,
|
||||
)
|
||||
|
||||
|
||||
def perceive_evennia_command_result(data: dict) -> Optional[Perception]:
|
||||
success = data.get("success", True)
|
||||
command = data.get("command_text", "your command")
|
||||
output = data.get("output_text", "")
|
||||
desc = f"Your world command {'succeeded' if success else 'failed'}: {command}."
|
||||
if output:
|
||||
desc += f" {output[:240]}"
|
||||
return Perception(
|
||||
timestamp=time.time(),
|
||||
raw_type="evennia.command_result",
|
||||
description=desc,
|
||||
salience=0.8,
|
||||
)
|
||||
|
||||
|
||||
# Registry of WS type → perception function
|
||||
PERCEPTION_MAP = {
|
||||
"agent_state": perceive_agent_state,
|
||||
@@ -212,6 +262,9 @@ PERCEPTION_MAP = {
|
||||
"action_result": perceive_action_result,
|
||||
"heartbeat": lambda _: None, # Ignore
|
||||
"dual_brain": lambda _: None, # Internal — not part of sensorium
|
||||
"evennia.actor_located": perceive_evennia_actor_located,
|
||||
"evennia.room_snapshot": perceive_evennia_room_snapshot,
|
||||
"evennia.command_result": perceive_evennia_command_result,
|
||||
}
|
||||
|
||||
|
||||
|
||||
58
portals.json
58
portals.json
@@ -17,7 +17,7 @@
|
||||
"id": "bannerlord",
|
||||
"name": "Bannerlord",
|
||||
"description": "Calradia battle harness. Massive armies, tactical command.",
|
||||
"status": "online",
|
||||
"status": "standby",
|
||||
"color": "#ffd700",
|
||||
"position": { "x": -15, "y": 0, "z": -10 },
|
||||
"rotation": { "y": 0.5 },
|
||||
@@ -40,5 +40,61 @@
|
||||
"type": "harness",
|
||||
"params": { "mode": "creative" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "archive",
|
||||
"name": "Archive",
|
||||
"description": "The repository of all knowledge. History, logs, and ancient data.",
|
||||
"status": "online",
|
||||
"color": "#0066ff",
|
||||
"position": { "x": 25, "y": 0, "z": 0 },
|
||||
"rotation": { "y": -1.57 },
|
||||
"destination": {
|
||||
"url": "https://archive.timmy.foundation",
|
||||
"type": "harness",
|
||||
"params": { "mode": "read" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "chapel",
|
||||
"name": "Chapel",
|
||||
"description": "A sanctuary for reflection and digital peace.",
|
||||
"status": "online",
|
||||
"color": "#ffd700",
|
||||
"position": { "x": -25, "y": 0, "z": 0 },
|
||||
"rotation": { "y": 1.57 },
|
||||
"destination": {
|
||||
"url": "https://chapel.timmy.foundation",
|
||||
"type": "harness",
|
||||
"params": { "mode": "meditation" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "courtyard",
|
||||
"name": "Courtyard",
|
||||
"description": "The open nexus. A place for agents to gather and connect.",
|
||||
"status": "online",
|
||||
"color": "#4af0c0",
|
||||
"position": { "x": 15, "y": 0, "z": 10 },
|
||||
"rotation": { "y": -2.5 },
|
||||
"destination": {
|
||||
"url": "https://courtyard.timmy.foundation",
|
||||
"type": "harness",
|
||||
"params": { "mode": "social" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gate",
|
||||
"name": "Gate",
|
||||
"description": "The transition point. Entry and exit from the Nexus core.",
|
||||
"status": "standby",
|
||||
"color": "#ff4466",
|
||||
"position": { "x": -15, "y": 0, "z": 10 },
|
||||
"rotation": { "y": 2.5 },
|
||||
"destination": {
|
||||
"url": "https://gate.timmy.foundation",
|
||||
"type": "harness",
|
||||
"params": { "mode": "transit" }
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
2147
public/nexus/app.js
Normal file
2147
public/nexus/app.js
Normal file
File diff suppressed because it is too large
Load Diff
203
server.ts
Normal file
203
server.ts
Normal file
@@ -0,0 +1,203 @@
|
||||
import express from 'express';
|
||||
import { createServer as createViteServer } from 'vite';
|
||||
import path from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
import 'dotenv/config';
|
||||
import { WebSocketServer, WebSocket } from 'ws';
|
||||
import { createServer } from 'http';
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = path.dirname(__filename);
|
||||
|
||||
// Primary (Local) Gitea
|
||||
const GITEA_URL = process.env.GITEA_URL || 'http://localhost:3000/api/v1';
|
||||
const GITEA_TOKEN = process.env.GITEA_TOKEN || '';
|
||||
|
||||
// Backup (Remote) Gitea
|
||||
const REMOTE_GITEA_URL = process.env.REMOTE_GITEA_URL || 'http://143.198.27.163:3000/api/v1';
|
||||
const REMOTE_GITEA_TOKEN = process.env.REMOTE_GITEA_TOKEN || '';
|
||||
|
||||
async function startServer() {
|
||||
const app = express();
|
||||
const httpServer = createServer(app);
|
||||
const PORT = 3000;
|
||||
|
||||
// WebSocket Server for Hermes/Evennia Bridge
|
||||
const wss = new WebSocketServer({ noServer: true });
|
||||
const clients = new Set<WebSocket>();
|
||||
|
||||
wss.on('connection', (ws) => {
|
||||
clients.add(ws);
|
||||
console.log(`Client connected to Nexus Bridge. Total: ${clients.size}`);
|
||||
|
||||
ws.on('close', () => {
|
||||
clients.remove(ws);
|
||||
console.log(`Client disconnected. Total: ${clients.size}`);
|
||||
});
|
||||
});
|
||||
|
||||
// Simulate Evennia Heartbeat (Source of Truth)
|
||||
setInterval(() => {
|
||||
const heartbeat = {
|
||||
type: 'heartbeat',
|
||||
frequency: 0.5 + Math.random() * 0.2, // 0.5Hz to 0.7Hz
|
||||
intensity: 0.8 + Math.random() * 0.4,
|
||||
timestamp: Date.now(),
|
||||
source: 'evonia-layer'
|
||||
};
|
||||
const message = JSON.stringify(heartbeat);
|
||||
clients.forEach(client => {
|
||||
if (client.readyState === WebSocket.OPEN) {
|
||||
client.send(message);
|
||||
}
|
||||
});
|
||||
}, 2000);
|
||||
|
||||
app.use(express.json({ limit: '50mb' }));
|
||||
|
||||
// Diagnostic Endpoint for Agent Inspection
|
||||
app.get('/api/diagnostic/inspect', async (req, res) => {
|
||||
console.log('Diagnostic request received');
|
||||
try {
|
||||
const REPO_OWNER = 'google';
|
||||
const REPO_NAME = 'timmy-tower';
|
||||
|
||||
const [stateRes, issuesRes] = await Promise.all([
|
||||
fetch(`${GITEA_URL}/repos/${REPO_OWNER}/${REPO_NAME}/contents/world_state.json`, {
|
||||
headers: { 'Authorization': `token ${GITEA_TOKEN}` }
|
||||
}),
|
||||
fetch(`${GITEA_URL}/repos/${REPO_OWNER}/${REPO_NAME}/issues?state=all`, {
|
||||
headers: { 'Authorization': `token ${GITEA_TOKEN}` }
|
||||
})
|
||||
]);
|
||||
|
||||
let worldState = null;
|
||||
if (stateRes.ok) {
|
||||
const content = await stateRes.json();
|
||||
worldState = JSON.parse(Buffer.from(content.content, 'base64').toString());
|
||||
} else if (stateRes.status !== 404) {
|
||||
console.error(`Failed to fetch world state: ${stateRes.status} ${stateRes.statusText}`);
|
||||
}
|
||||
|
||||
let issues = [];
|
||||
if (issuesRes.ok) {
|
||||
issues = await issuesRes.json();
|
||||
} else {
|
||||
console.error(`Failed to fetch issues: ${issuesRes.status} ${issuesRes.statusText}`);
|
||||
}
|
||||
|
||||
res.json({
|
||||
worldState,
|
||||
issues,
|
||||
repoExists: stateRes.status !== 404,
|
||||
connected: GITEA_TOKEN !== ''
|
||||
});
|
||||
} catch (error: any) {
|
||||
console.error('Diagnostic error:', error);
|
||||
res.status(500).json({ error: error.message });
|
||||
}
|
||||
});
|
||||
|
||||
// Helper for Gitea Proxy
|
||||
const createGiteaProxy = (baseUrl: string, token: string) => async (req: express.Request, res: express.Response) => {
|
||||
const path = req.params[0] + (req.url.includes('?') ? req.url.slice(req.url.indexOf('?')) : '');
|
||||
const url = `${baseUrl}/${path}`;
|
||||
|
||||
if (!token) {
|
||||
console.warn(`Gitea Proxy Warning: No token provided for ${baseUrl}`);
|
||||
}
|
||||
|
||||
try {
|
||||
const response = await fetch(url, {
|
||||
method: req.method,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': `token ${token}`,
|
||||
},
|
||||
body: ['GET', 'HEAD'].includes(req.method) ? undefined : JSON.stringify(req.body),
|
||||
});
|
||||
|
||||
const data = await response.text();
|
||||
res.status(response.status).send(data);
|
||||
} catch (error: any) {
|
||||
console.error(`Gitea Proxy Error (${baseUrl}):`, error);
|
||||
res.status(500).json({ error: error.message });
|
||||
}
|
||||
};
|
||||
|
||||
// Gitea Proxy - Primary (Local)
|
||||
app.get('/api/gitea/check', async (req, res) => {
|
||||
try {
|
||||
const response = await fetch(`${GITEA_URL}/user`, {
|
||||
headers: { 'Authorization': `token ${GITEA_TOKEN}` }
|
||||
});
|
||||
if (response.ok) {
|
||||
const user = await response.json();
|
||||
res.json({ status: 'connected', user: user.username });
|
||||
} else {
|
||||
res.status(response.status).json({ status: 'error', message: `Gitea returned ${response.status}` });
|
||||
}
|
||||
} catch (error: any) {
|
||||
res.status(500).json({ status: 'error', message: error.message });
|
||||
}
|
||||
});
|
||||
|
||||
app.all('/api/gitea/*', createGiteaProxy(GITEA_URL, GITEA_TOKEN));
|
||||
|
||||
// Gitea Proxy - Backup (Remote)
|
||||
app.get('/api/gitea-remote/check', async (req, res) => {
|
||||
try {
|
||||
const response = await fetch(`${REMOTE_GITEA_URL}/user`, {
|
||||
headers: { 'Authorization': `token ${REMOTE_GITEA_TOKEN}` }
|
||||
});
|
||||
if (response.ok) {
|
||||
const user = await response.json();
|
||||
res.json({ status: 'connected', user: user.username });
|
||||
} else {
|
||||
res.status(response.status).json({ status: 'error', message: `Gitea returned ${response.status}` });
|
||||
}
|
||||
} catch (error: any) {
|
||||
res.status(500).json({ status: 'error', message: error.message });
|
||||
}
|
||||
});
|
||||
|
||||
app.all('/api/gitea-remote/*', createGiteaProxy(REMOTE_GITEA_URL, REMOTE_GITEA_TOKEN));
|
||||
|
||||
// WebSocket Upgrade Handler
|
||||
httpServer.on('upgrade', (request, socket, head) => {
|
||||
const pathname = new URL(request.url!, `http://${request.headers.host}`).pathname;
|
||||
if (pathname === '/api/world/ws') {
|
||||
wss.handleUpgrade(request, socket, head, (ws) => {
|
||||
wss.emit('connection', ws, request);
|
||||
});
|
||||
} else {
|
||||
socket.destroy();
|
||||
}
|
||||
});
|
||||
|
||||
// Health Check
|
||||
app.get('/api/health', (req, res) => {
|
||||
res.json({ status: 'ok' });
|
||||
});
|
||||
|
||||
// Vite middleware for development
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
const vite = await createViteServer({
|
||||
server: { middlewareMode: true },
|
||||
appType: 'spa',
|
||||
});
|
||||
app.use(vite.middlewares);
|
||||
} else {
|
||||
const distPath = path.join(process.cwd(), 'dist');
|
||||
app.use(express.static(distPath));
|
||||
app.get('*', (req, res) => {
|
||||
res.sendFile(path.join(distPath, 'index.html'));
|
||||
});
|
||||
}
|
||||
|
||||
httpServer.listen(PORT, '0.0.0.0', () => {
|
||||
console.log(`Server running on http://localhost:${PORT}`);
|
||||
});
|
||||
}
|
||||
|
||||
startServer();
|
||||
979
style.css
Normal file
979
style.css
Normal file
@@ -0,0 +1,979 @@
|
||||
/* === NEXUS DESIGN SYSTEM === */
|
||||
:root {
|
||||
--font-display: 'Orbitron', sans-serif;
|
||||
--font-body: 'JetBrains Mono', monospace;
|
||||
|
||||
--color-bg: #050510;
|
||||
--color-surface: rgba(10, 15, 40, 0.85);
|
||||
--color-border: rgba(74, 240, 192, 0.2);
|
||||
--color-border-bright: rgba(74, 240, 192, 0.5);
|
||||
|
||||
--color-text: #e0f0ff;
|
||||
--color-text-muted: #8a9ab8;
|
||||
--color-text-bright: #ffffff;
|
||||
|
||||
--color-primary: #4af0c0;
|
||||
--color-primary-dim: rgba(74, 240, 192, 0.3);
|
||||
--color-secondary: #7b5cff;
|
||||
--color-danger: #ff4466;
|
||||
--color-warning: #ffaa22;
|
||||
--color-gold: #ffd700;
|
||||
|
||||
--text-xs: 11px;
|
||||
--text-sm: 13px;
|
||||
--text-base: 15px;
|
||||
--text-lg: 18px;
|
||||
--text-xl: 24px;
|
||||
--text-2xl: 36px;
|
||||
|
||||
--space-1: 4px;
|
||||
--space-2: 8px;
|
||||
--space-3: 12px;
|
||||
--space-4: 16px;
|
||||
--space-6: 24px;
|
||||
--space-8: 32px;
|
||||
|
||||
--panel-blur: 16px;
|
||||
--panel-radius: 8px;
|
||||
--transition-ui: 200ms cubic-bezier(0.16, 1, 0.3, 1);
|
||||
}
|
||||
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background: var(--color-bg);
|
||||
font-family: var(--font-body);
|
||||
color: var(--color-text);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
canvas#nexus-canvas {
|
||||
display: block;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/* === LOADING SCREEN === */
|
||||
#loading-screen {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 1000;
|
||||
background: var(--color-bg);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: opacity 0.8s ease;
|
||||
}
|
||||
#loading-screen.fade-out {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
.loader-content {
|
||||
text-align: center;
|
||||
}
|
||||
.loader-sigil {
|
||||
margin-bottom: var(--space-6);
|
||||
}
|
||||
.loader-title {
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-2xl);
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.3em;
|
||||
color: var(--color-primary);
|
||||
text-shadow: 0 0 30px rgba(74, 240, 192, 0.4);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
.loader-subtitle {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--color-text-muted);
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: var(--space-6);
|
||||
}
|
||||
.loader-bar {
|
||||
width: 200px;
|
||||
height: 2px;
|
||||
background: rgba(74, 240, 192, 0.15);
|
||||
border-radius: 1px;
|
||||
margin: 0 auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
.loader-fill {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
|
||||
border-radius: 1px;
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
/* === ENTER PROMPT === */
|
||||
#enter-prompt {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 500;
|
||||
background: rgba(5, 5, 16, 0.7);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
transition: opacity 0.5s ease;
|
||||
}
|
||||
#enter-prompt.fade-out {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
.enter-content {
|
||||
text-align: center;
|
||||
}
|
||||
.enter-content h2 {
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-xl);
|
||||
color: var(--color-primary);
|
||||
letter-spacing: 0.2em;
|
||||
text-shadow: 0 0 20px rgba(74, 240, 192, 0.3);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
.enter-content p {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--color-text-muted);
|
||||
animation: pulse-text 2s ease-in-out infinite;
|
||||
}
|
||||
@keyframes pulse-text {
|
||||
0%, 100% { opacity: 0.5; }
|
||||
50% { opacity: 1; }
|
||||
}
|
||||
|
||||
/* === GAME UI (HUD) === */
|
||||
.game-ui {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
z-index: 10;
|
||||
font-family: var(--font-body);
|
||||
color: var(--color-text);
|
||||
}
|
||||
.game-ui button, .game-ui input, .game-ui [data-interactive] {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
/* Top Right Container */
|
||||
.hud-top-right {
|
||||
position: absolute;
|
||||
top: var(--space-3);
|
||||
right: var(--space-3);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: var(--space-3);
|
||||
pointer-events: none;
|
||||
}
|
||||
.hud-top-right > * {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.hud-icon-btn {
|
||||
background: rgba(10, 15, 40, 0.7);
|
||||
border: 1px solid var(--color-primary);
|
||||
color: var(--color-primary);
|
||||
padding: 8px 12px;
|
||||
font-family: var(--font-display);
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
transition: all var(--transition-ui);
|
||||
backdrop-filter: blur(5px);
|
||||
box-shadow: 0 0 10px rgba(74, 240, 192, 0.2);
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
.hud-icon-btn:hover {
|
||||
background: var(--color-primary);
|
||||
color: var(--color-bg);
|
||||
box-shadow: 0 0 20px var(--color-primary);
|
||||
}
|
||||
|
||||
.hud-status-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
padding: 4px 12px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
font-family: var(--font-body);
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1em;
|
||||
color: var(--color-text-muted);
|
||||
margin-bottom: 8px;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.hud-status-item .status-dot {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-danger);
|
||||
}
|
||||
|
||||
.hud-status-item.online .status-dot {
|
||||
background: var(--color-primary);
|
||||
box-shadow: 0 0 5px var(--color-primary);
|
||||
}
|
||||
|
||||
.hud-status-item.standby .status-dot {
|
||||
background: var(--color-gold);
|
||||
box-shadow: 0 0 5px var(--color-gold);
|
||||
}
|
||||
|
||||
.hud-status-item.online .status-label {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.hud-icon {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* Portal Atlas Overlay */
|
||||
.atlas-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(5, 5, 16, 0.9);
|
||||
backdrop-filter: blur(15px);
|
||||
z-index: 2000;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px;
|
||||
pointer-events: auto;
|
||||
animation: fadeIn 0.3s ease;
|
||||
}
|
||||
|
||||
.atlas-content {
|
||||
width: 100%;
|
||||
max-width: 1000px;
|
||||
max-height: 80vh;
|
||||
background: var(--color-surface);
|
||||
border: 1px solid var(--color-border);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.atlas-header {
|
||||
padding: 20px 30px;
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.atlas-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.atlas-title h2 {
|
||||
margin: 0;
|
||||
font-family: var(--font-display);
|
||||
letter-spacing: 2px;
|
||||
color: var(--color-primary);
|
||||
font-size: var(--text-lg);
|
||||
}
|
||||
|
||||
.atlas-close-btn {
|
||||
background: transparent;
|
||||
border: 1px solid var(--color-danger);
|
||||
color: var(--color-danger);
|
||||
padding: 6px 15px;
|
||||
font-family: var(--font-display);
|
||||
font-size: 11px;
|
||||
cursor: pointer;
|
||||
transition: all var(--transition-ui);
|
||||
}
|
||||
|
||||
.atlas-close-btn:hover {
|
||||
background: var(--color-danger);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.atlas-grid {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 30px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.atlas-card {
|
||||
background: rgba(20, 30, 60, 0.4);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
padding: 20px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.atlas-card:hover {
|
||||
background: rgba(30, 45, 90, 0.6);
|
||||
border-color: var(--color-primary);
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.atlas-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 4px;
|
||||
height: 100%;
|
||||
background: var(--portal-color, var(--color-primary));
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.atlas-card-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.atlas-card-name {
|
||||
font-family: var(--font-display);
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.atlas-card-status {
|
||||
font-family: var(--font-body);
|
||||
font-size: 10px;
|
||||
padding: 2px 6px;
|
||||
border-radius: 2px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.status-online { background: rgba(74, 240, 192, 0.2); color: var(--color-primary); border: 1px solid var(--color-primary); }
|
||||
.status-standby { background: rgba(255, 215, 0, 0.2); color: var(--color-gold); border: 1px solid var(--color-gold); }
|
||||
.status-offline { background: rgba(255, 68, 102, 0.2); color: var(--color-danger); border: 1px solid var(--color-danger); }
|
||||
|
||||
.atlas-card-desc {
|
||||
font-size: 12px;
|
||||
color: var(--color-text-muted);
|
||||
line-height: 1.5;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.atlas-card-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-family: var(--font-body);
|
||||
font-size: 10px;
|
||||
color: rgba(160, 184, 208, 0.6);
|
||||
}
|
||||
|
||||
.atlas-footer {
|
||||
padding: 15px 30px;
|
||||
border-top: 1px solid var(--color-border);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-family: var(--font-body);
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.status-indicator {
|
||||
display: inline-block;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.status-indicator.online { background: var(--color-primary); box-shadow: 0 0 5px var(--color-primary); }
|
||||
.status-indicator.standby { background: var(--color-gold); box-shadow: 0 0 5px var(--color-gold); }
|
||||
|
||||
.atlas-hint {
|
||||
color: rgba(160, 184, 208, 0.5);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
/* Responsive Atlas */
|
||||
@media (max-width: 768px) {
|
||||
.atlas-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.atlas-content {
|
||||
max-height: 90vh;
|
||||
}
|
||||
}
|
||||
|
||||
/* Debug overlay */
|
||||
.hud-debug {
|
||||
position: absolute;
|
||||
top: var(--space-3);
|
||||
left: var(--space-3);
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
color: #0f0;
|
||||
font-size: var(--text-xs);
|
||||
line-height: 1.5;
|
||||
padding: var(--space-2) var(--space-3);
|
||||
border-radius: 4px;
|
||||
white-space: pre;
|
||||
pointer-events: none;
|
||||
font-variant-numeric: tabular-nums lining-nums;
|
||||
}
|
||||
|
||||
/* Location indicator */
|
||||
.hud-location {
|
||||
position: absolute;
|
||||
top: var(--space-3);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--color-primary);
|
||||
text-shadow: 0 0 10px rgba(74, 240, 192, 0.3);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
.hud-location-icon {
|
||||
font-size: 16px;
|
||||
animation: spin-slow 10s linear infinite;
|
||||
}
|
||||
@keyframes spin-slow {
|
||||
from { transform: rotate(0deg); }
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* Controls hint */
|
||||
.hud-controls {
|
||||
position: absolute;
|
||||
bottom: var(--space-3);
|
||||
left: var(--space-3);
|
||||
font-size: var(--text-xs);
|
||||
color: var(--color-text-muted);
|
||||
pointer-events: none;
|
||||
}
|
||||
.hud-controls span {
|
||||
color: var(--color-primary);
|
||||
font-weight: 600;
|
||||
}
|
||||
#nav-mode-label {
|
||||
color: var(--color-gold);
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
/* Portal Hint */
|
||||
.portal-hint {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 100px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
padding: var(--space-2) var(--space-4);
|
||||
border: 1px solid var(--color-primary);
|
||||
border-radius: 4px;
|
||||
animation: hint-float 2s ease-in-out infinite;
|
||||
}
|
||||
@keyframes hint-float {
|
||||
0%, 100% { transform: translate(-50%, 100px); }
|
||||
50% { transform: translate(-50%, 90px); }
|
||||
}
|
||||
.portal-hint-key {
|
||||
background: var(--color-primary);
|
||||
color: var(--color-bg);
|
||||
font-weight: 700;
|
||||
padding: 2px 8px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.portal-hint-text {
|
||||
font-size: var(--text-sm);
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
#portal-hint-name {
|
||||
color: var(--color-primary);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
/* Agent Log HUD */
|
||||
.hud-agent-log {
|
||||
position: absolute;
|
||||
top: var(--space-3);
|
||||
right: var(--space-3);
|
||||
width: 280px;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
backdrop-filter: blur(8px);
|
||||
border-left: 2px solid var(--color-primary);
|
||||
padding: var(--space-3);
|
||||
font-size: 10px;
|
||||
pointer-events: none;
|
||||
}
|
||||
.agent-log-header {
|
||||
font-family: var(--font-display);
|
||||
color: var(--color-primary);
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: var(--space-2);
|
||||
opacity: 0.8;
|
||||
}
|
||||
.agent-log-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
.agent-log-entry {
|
||||
animation: log-fade-in 0.5s ease-out forwards;
|
||||
opacity: 0;
|
||||
}
|
||||
@keyframes log-fade-in {
|
||||
from { opacity: 0; transform: translateX(10px); }
|
||||
to { opacity: 1; transform: translateX(0); }
|
||||
}
|
||||
.agent-log-tag {
|
||||
font-weight: 700;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.tag-timmy { color: var(--color-primary); }
|
||||
.tag-kimi { color: var(--color-secondary); }
|
||||
.tag-claude { color: var(--color-gold); }
|
||||
.tag-perplexity { color: #4488ff; }
|
||||
.agent-log-text {
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
/* Vision Hint */
|
||||
.vision-hint {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 140px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
padding: var(--space-2) var(--space-4);
|
||||
border: 1px solid var(--color-gold);
|
||||
border-radius: 4px;
|
||||
animation: hint-float-vision 2s ease-in-out infinite;
|
||||
}
|
||||
@keyframes hint-float-vision {
|
||||
0%, 100% { transform: translate(-50%, 140px); }
|
||||
50% { transform: translate(-50%, 130px); }
|
||||
}
|
||||
.vision-hint-key {
|
||||
background: var(--color-gold);
|
||||
color: var(--color-bg);
|
||||
font-weight: 700;
|
||||
padding: 2px 8px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.vision-hint-text {
|
||||
font-size: var(--text-sm);
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
#vision-hint-title {
|
||||
color: var(--color-gold);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
/* Vision Overlay */
|
||||
.vision-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(5, 5, 16, 0.9);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
pointer-events: auto;
|
||||
z-index: 1000;
|
||||
}
|
||||
.vision-overlay-content {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
padding: var(--space-8);
|
||||
border: 1px solid var(--color-gold);
|
||||
border-radius: var(--panel-radius);
|
||||
background: var(--color-surface);
|
||||
backdrop-filter: blur(var(--panel-blur));
|
||||
}
|
||||
.vision-overlay-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: var(--space-3);
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
.vision-overlay-status {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-gold);
|
||||
box-shadow: 0 0 10px var(--color-gold);
|
||||
}
|
||||
.vision-overlay-title {
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-sm);
|
||||
letter-spacing: 0.2em;
|
||||
color: var(--color-gold);
|
||||
}
|
||||
.vision-overlay-content h2 {
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-2xl);
|
||||
margin-bottom: var(--space-4);
|
||||
letter-spacing: 0.1em;
|
||||
color: var(--color-text-bright);
|
||||
}
|
||||
.vision-overlay-content p {
|
||||
color: var(--color-text);
|
||||
font-size: var(--text-lg);
|
||||
line-height: 1.8;
|
||||
margin-bottom: var(--space-8);
|
||||
font-style: italic;
|
||||
}
|
||||
.vision-close-btn {
|
||||
background: var(--color-gold);
|
||||
color: var(--color-bg);
|
||||
border: none;
|
||||
padding: var(--space-2) var(--space-8);
|
||||
border-radius: 4px;
|
||||
font-family: var(--font-display);
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
.vision-close-btn:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* Portal Activation Overlay */
|
||||
.portal-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(5, 5, 16, 0.95);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
pointer-events: auto;
|
||||
z-index: 1000;
|
||||
}
|
||||
.portal-overlay-content {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
text-align: center;
|
||||
padding: var(--space-8);
|
||||
}
|
||||
.portal-overlay-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: var(--space-3);
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
.portal-overlay-status {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-primary);
|
||||
box-shadow: 0 0 10px var(--color-primary);
|
||||
}
|
||||
.portal-overlay-title {
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-sm);
|
||||
letter-spacing: 0.2em;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
.portal-overlay-content h2 {
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-2xl);
|
||||
margin-bottom: var(--space-4);
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
.portal-overlay-content p {
|
||||
color: var(--color-text-muted);
|
||||
font-size: var(--text-base);
|
||||
line-height: 1.6;
|
||||
margin-bottom: var(--space-8);
|
||||
}
|
||||
.portal-redirect-box {
|
||||
border: 1px solid var(--color-primary-dim);
|
||||
padding: var(--space-6);
|
||||
border-radius: var(--panel-radius);
|
||||
}
|
||||
.portal-redirect-label {
|
||||
font-size: var(--text-xs);
|
||||
letter-spacing: 0.2em;
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
.portal-redirect-timer {
|
||||
font-family: var(--font-display);
|
||||
font-size: 48px;
|
||||
font-weight: 700;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
.portal-error-box {
|
||||
border: 1px solid var(--color-danger);
|
||||
padding: var(--space-6);
|
||||
border-radius: var(--panel-radius);
|
||||
}
|
||||
.portal-error-msg {
|
||||
color: var(--color-danger);
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
.portal-close-btn {
|
||||
background: var(--color-danger);
|
||||
color: white;
|
||||
border: none;
|
||||
padding: var(--space-2) var(--space-6);
|
||||
border-radius: 4px;
|
||||
font-family: var(--font-display);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* === CHAT PANEL === */
|
||||
.chat-panel {
|
||||
position: absolute;
|
||||
bottom: var(--space-4);
|
||||
right: var(--space-4);
|
||||
width: 380px;
|
||||
max-height: 400px;
|
||||
background: var(--color-surface);
|
||||
backdrop-filter: blur(var(--panel-blur));
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--panel-radius);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
pointer-events: auto;
|
||||
transition: max-height var(--transition-ui);
|
||||
}
|
||||
.chat-panel.collapsed {
|
||||
max-height: 42px;
|
||||
}
|
||||
.chat-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
padding: var(--space-3) var(--space-4);
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
font-family: var(--font-display);
|
||||
font-size: var(--text-xs);
|
||||
letter-spacing: 0.1em;
|
||||
font-weight: 500;
|
||||
color: var(--color-text-bright);
|
||||
cursor: pointer;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.chat-status-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-primary);
|
||||
box-shadow: 0 0 6px var(--color-primary);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
@keyframes dot-pulse {
|
||||
0%, 100% { opacity: 0.6; }
|
||||
50% { opacity: 1; }
|
||||
}
|
||||
.chat-toggle-btn {
|
||||
margin-left: auto;
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--color-text-muted);
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
transition: transform var(--transition-ui);
|
||||
}
|
||||
.chat-panel.collapsed .chat-toggle-btn {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.chat-messages {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: var(--space-3) var(--space-4);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-2);
|
||||
max-height: 280px;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgba(74,240,192,0.2) transparent;
|
||||
}
|
||||
|
||||
.chat-quick-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
padding: 8px 12px;
|
||||
border-top: 1px solid var(--color-border);
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.quick-action-btn {
|
||||
background: rgba(74, 240, 192, 0.1);
|
||||
border: 1px solid var(--color-primary-dim);
|
||||
color: var(--color-primary);
|
||||
font-family: var(--font-body);
|
||||
font-size: 10px;
|
||||
padding: 4px 8px;
|
||||
cursor: pointer;
|
||||
transition: all var(--transition-ui);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.quick-action-btn:hover {
|
||||
background: var(--color-primary-dim);
|
||||
border-color: var(--color-primary);
|
||||
color: #fff;
|
||||
}
|
||||
.chat-msg {
|
||||
font-size: var(--text-xs);
|
||||
line-height: 1.6;
|
||||
padding: var(--space-1) 0;
|
||||
}
|
||||
.chat-msg-prefix {
|
||||
font-weight: 700;
|
||||
}
|
||||
.chat-msg-kimi .chat-msg-prefix { color: var(--color-secondary); }
|
||||
.chat-msg-claude .chat-msg-prefix { color: var(--color-gold); }
|
||||
.chat-msg-perplexity .chat-msg-prefix { color: #4488ff; }
|
||||
|
||||
/* Tool Output Styling */
|
||||
.chat-msg-tool {
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border-left: 2px solid #ffd700;
|
||||
font-size: 11px;
|
||||
padding: 8px;
|
||||
margin: 4px 0;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.tool-call { border-left-color: #ffd700; }
|
||||
.tool-result { border-left-color: #4af0c0; }
|
||||
.tool-content {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-all;
|
||||
opacity: 0.8;
|
||||
margin: 4px 0 0 0;
|
||||
color: #a0b8d0;
|
||||
}
|
||||
.chat-msg-system .chat-msg-prefix { color: var(--color-text-muted); }
|
||||
.chat-msg-timmy .chat-msg-prefix { color: var(--color-primary); }
|
||||
.chat-msg-user .chat-msg-prefix { color: var(--color-gold); }
|
||||
.chat-msg-error .chat-msg-prefix { color: var(--color-danger); }
|
||||
|
||||
.chat-input-row {
|
||||
display: flex;
|
||||
border-top: 1px solid var(--color-border);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.chat-input {
|
||||
flex: 1;
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: var(--space-3) var(--space-4);
|
||||
font-family: var(--font-body);
|
||||
font-size: var(--text-xs);
|
||||
color: var(--color-text-bright);
|
||||
outline: none;
|
||||
}
|
||||
.chat-input::placeholder {
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
.chat-send-btn {
|
||||
background: none;
|
||||
border: none;
|
||||
border-left: 1px solid var(--color-border);
|
||||
padding: var(--space-3) var(--space-4);
|
||||
color: var(--color-primary);
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
transition: background var(--transition-ui);
|
||||
}
|
||||
.chat-send-btn:hover {
|
||||
background: rgba(74, 240, 192, 0.1);
|
||||
}
|
||||
|
||||
/* === FOOTER === */
|
||||
.nexus-footer {
|
||||
position: fixed;
|
||||
bottom: var(--space-1);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 5;
|
||||
font-size: 10px;
|
||||
opacity: 0.3;
|
||||
}
|
||||
.nexus-footer a {
|
||||
color: var(--color-text-muted);
|
||||
text-decoration: none;
|
||||
}
|
||||
.nexus-footer a:hover {
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
/* Mobile adjustments */
|
||||
@media (max-width: 1024px) {
|
||||
.chat-panel {
|
||||
width: 320px;
|
||||
}
|
||||
.hud-agent-log {
|
||||
width: 220px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.chat-panel {
|
||||
width: 300px;
|
||||
bottom: var(--space-2);
|
||||
right: var(--space-2);
|
||||
}
|
||||
.hud-agent-log {
|
||||
display: none;
|
||||
}
|
||||
.hud-location {
|
||||
font-size: var(--text-xs);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.chat-panel {
|
||||
width: calc(100vw - 24px);
|
||||
right: 12px;
|
||||
bottom: 12px;
|
||||
}
|
||||
.hud-controls {
|
||||
display: none;
|
||||
}
|
||||
.loader-title {
|
||||
font-size: var(--text-xl);
|
||||
}
|
||||
}
|
||||
56
tests/test_evennia_event_adapter.py
Normal file
56
tests/test_evennia_event_adapter.py
Normal file
@@ -0,0 +1,56 @@
|
||||
from nexus.evennia_event_adapter import actor_located, command_issued, command_result, room_snapshot, session_bound
|
||||
from nexus.perception_adapter import ws_to_perception
|
||||
|
||||
|
||||
def test_session_bound_schema():
|
||||
event = session_bound("sess-1")
|
||||
assert event["type"] == "evennia.session_bound"
|
||||
assert event["hermes_session_id"] == "sess-1"
|
||||
assert event["evennia_account"] == "Timmy"
|
||||
|
||||
|
||||
def test_room_snapshot_schema():
|
||||
event = room_snapshot(
|
||||
room_key="Chapel",
|
||||
title="Chapel",
|
||||
desc="Quiet room.",
|
||||
exits=[{"key": "courtyard", "destination_id": "Courtyard", "destination_key": "Courtyard"}],
|
||||
objects=[{"id": "Book of the Soul", "key": "Book of the Soul", "short_desc": "A doctrinal anchor."}],
|
||||
)
|
||||
assert event["type"] == "evennia.room_snapshot"
|
||||
assert event["title"] == "Chapel"
|
||||
assert event["objects"][0]["key"] == "Book of the Soul"
|
||||
|
||||
|
||||
def test_evennia_room_snapshot_becomes_perception():
|
||||
perception = ws_to_perception(
|
||||
room_snapshot(
|
||||
room_key="Workshop",
|
||||
title="Workshop",
|
||||
desc="Tools everywhere.",
|
||||
exits=[{"key": "courtyard", "destination_id": "Courtyard", "destination_key": "Courtyard"}],
|
||||
objects=[{"id": "Workbench", "key": "Workbench", "short_desc": "A broad workbench."}],
|
||||
)
|
||||
)
|
||||
assert perception is not None
|
||||
assert "Workshop" in perception.description
|
||||
assert "Workbench" in perception.description
|
||||
|
||||
|
||||
def test_evennia_command_result_becomes_perception():
|
||||
perception = ws_to_perception(command_result("sess-2", "Timmy", "look Book of the Soul", "Book of the Soul. A doctrinal anchor.", True))
|
||||
assert perception is not None
|
||||
assert "succeeded" in perception.description.lower()
|
||||
assert "Book of the Soul" in perception.description
|
||||
|
||||
|
||||
def test_evennia_actor_located_becomes_perception():
|
||||
perception = ws_to_perception(actor_located("Timmy", "Gate"))
|
||||
assert perception is not None
|
||||
assert "Gate" in perception.description
|
||||
|
||||
|
||||
def test_evennia_command_issued_schema():
|
||||
event = command_issued("sess-3", "Timmy", "chapel")
|
||||
assert event["type"] == "evennia.command_issued"
|
||||
assert event["command_text"] == "chapel"
|
||||
36
tests/test_evennia_ws_bridge.py
Normal file
36
tests/test_evennia_ws_bridge.py
Normal file
@@ -0,0 +1,36 @@
|
||||
from nexus.evennia_ws_bridge import clean_lines, normalize_event, parse_room_output, strip_ansi
|
||||
|
||||
|
||||
def test_strip_ansi_removes_escape_codes():
|
||||
assert strip_ansi('\x1b[1mGate\x1b[0m') == 'Gate'
|
||||
|
||||
|
||||
def test_parse_room_output_extracts_room_exits_and_objects():
|
||||
parsed = parse_room_output('\x1b[1mChapel\x1b[0m\nQuiet room.\nExits: courtyard\nYou see: a Book of the Soul and a Prayer Wall')
|
||||
assert parsed['title'] == 'Chapel'
|
||||
assert parsed['exits'][0]['key'] == 'courtyard'
|
||||
keys = [obj['key'] for obj in parsed['objects']]
|
||||
assert 'Book of the Soul' in keys
|
||||
assert 'Prayer Wall' in keys
|
||||
|
||||
|
||||
def test_normalize_connect_emits_session_and_room_events():
|
||||
events = normalize_event({'event': 'connect', 'actor': 'Timmy', 'output': 'Gate\nA threshold.\nExits: enter'}, 'sess1')
|
||||
types = [event['type'] for event in events]
|
||||
assert 'evennia.session_bound' in types
|
||||
assert 'evennia.actor_located' in types
|
||||
assert 'evennia.room_snapshot' in types
|
||||
|
||||
|
||||
def test_normalize_command_emits_command_and_snapshot():
|
||||
events = normalize_event({'event': 'command', 'actor': 'timmy', 'command': 'courtyard', 'output': 'Courtyard\nOpen court.\nExits: gate, workshop\nYou see: a Map Table'}, 'sess2')
|
||||
types = [event['type'] for event in events]
|
||||
assert types[0] == 'evennia.command_issued'
|
||||
assert 'evennia.command_result' in types
|
||||
assert 'evennia.room_snapshot' in types
|
||||
|
||||
|
||||
def test_normalize_failed_command_marks_failure():
|
||||
events = normalize_event({'event': 'command', 'actor': 'timmy', 'command': 'workshop', 'output': "Command 'workshop' is not available."}, 'sess3')
|
||||
result = [event for event in events if event['type'] == 'evennia.command_result'][0]
|
||||
assert result['success'] is False
|
||||
45
tests/test_portal_registry_schema.py
Normal file
45
tests/test_portal_registry_schema.py
Normal file
@@ -0,0 +1,45 @@
|
||||
import json
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
REQUIRED_TOP_LEVEL_KEYS = {
|
||||
"id",
|
||||
"name",
|
||||
"description",
|
||||
"status",
|
||||
"portal_type",
|
||||
"world_category",
|
||||
"environment",
|
||||
"access_mode",
|
||||
"readiness_state",
|
||||
"telemetry_source",
|
||||
"owner",
|
||||
"destination",
|
||||
}
|
||||
|
||||
REQUIRED_DESTINATION_KEYS = {"type", "action_label"}
|
||||
|
||||
|
||||
def test_portals_json_uses_expanded_registry_schema() -> None:
|
||||
portals = json.loads(Path("portals.json").read_text())
|
||||
|
||||
assert portals, "portals.json should define at least one portal"
|
||||
for portal in portals:
|
||||
assert REQUIRED_TOP_LEVEL_KEYS.issubset(portal.keys())
|
||||
assert REQUIRED_DESTINATION_KEYS.issubset(portal["destination"].keys())
|
||||
|
||||
|
||||
def test_gameportal_protocol_documents_new_metadata_fields_and_migration() -> None:
|
||||
protocol = Path("GAMEPORTAL_PROTOCOL.md").read_text()
|
||||
|
||||
for term in [
|
||||
"portal_type",
|
||||
"world_category",
|
||||
"environment",
|
||||
"access_mode",
|
||||
"readiness_state",
|
||||
"telemetry_source",
|
||||
"owner",
|
||||
"Migration from legacy portal definitions",
|
||||
]:
|
||||
assert term in protocol
|
||||
Reference in New Issue
Block a user