Spaces:
Running
Running
ok udělej systěm tvoření zýbavny
Browse files- game.html +210 -0
- hexa.html +2 -1
- index.html +1 -0
- quantum.html +1 -0
- visual.html +2 -1
game.html
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>CodeWizard Game Lab</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 11 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
|
| 12 |
+
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
|
| 13 |
+
<style>
|
| 14 |
+
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');
|
| 15 |
+
body {
|
| 16 |
+
font-family: 'Fira Code', monospace;
|
| 17 |
+
}
|
| 18 |
+
.game-card {
|
| 19 |
+
background: rgba(15, 23, 42, 0.8);
|
| 20 |
+
backdrop-filter: blur(16px);
|
| 21 |
+
border: 1px solid rgba(124, 58, 237, 0.3);
|
| 22 |
+
transition: all 0.3s ease;
|
| 23 |
+
}
|
| 24 |
+
.game-card:hover {
|
| 25 |
+
border-color: rgba(124, 58, 237, 0.6);
|
| 26 |
+
transform: translateY(-5px);
|
| 27 |
+
box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.2);
|
| 28 |
+
}
|
| 29 |
+
.pixel-btn {
|
| 30 |
+
font-family: 'Fira Code', monospace;
|
| 31 |
+
background: linear-gradient(135deg, #6e8efb, #a777e3);
|
| 32 |
+
border: 2px solid rgba(255, 255, 255, 0.2);
|
| 33 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
| 34 |
+
}
|
| 35 |
+
.pixel-btn:hover {
|
| 36 |
+
transform: translateY(-2px);
|
| 37 |
+
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
|
| 38 |
+
}
|
| 39 |
+
.game-pulse {
|
| 40 |
+
animation: pulse 2s infinite;
|
| 41 |
+
}
|
| 42 |
+
@keyframes pulse {
|
| 43 |
+
0%, 100% { transform: scale(1); }
|
| 44 |
+
50% { transform: scale(1.05); }
|
| 45 |
+
}
|
| 46 |
+
</style>
|
| 47 |
+
</head>
|
| 48 |
+
<body id="game-bg" class="min-h-screen text-white overflow-x-hidden">
|
| 49 |
+
<!-- Navigation -->
|
| 50 |
+
<nav class="relative z-10 py-6 px-6 md:px-12 flex justify-between items-center">
|
| 51 |
+
<div class="flex items-center space-x-2">
|
| 52 |
+
<i data-feather="cpu" class="text-purple-400"></i>
|
| 53 |
+
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-500">Game Lab</span>
|
| 54 |
+
</div>
|
| 55 |
+
<div class="hidden md:flex space-x-8">
|
| 56 |
+
<a href="index.html" class="hover:text-purple-300 transition">Main</a>
|
| 57 |
+
<a href="quantum.html" class="hover:text-purple-300 transition">Quantum</a>
|
| 58 |
+
<a href="visual.html" class="hover:text-purple-300 transition">Visual</a>
|
| 59 |
+
<a href="hexa.html" class="hover:text-purple-300 transition">HEXA</a>
|
| 60 |
+
</div>
|
| 61 |
+
<button class="md:hidden">
|
| 62 |
+
<i data-feather="menu"></i>
|
| 63 |
+
</button>
|
| 64 |
+
</nav>
|
| 65 |
+
|
| 66 |
+
<!-- Main Content -->
|
| 67 |
+
<main class="relative z-10 container mx-auto px-6 md:px-12 py-16">
|
| 68 |
+
<div class="text-center mb-20">
|
| 69 |
+
<h1 class="text-4xl md:text-6xl font-bold mb-6">
|
| 70 |
+
<span class="bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-500">Game</span> Development Lab
|
| 71 |
+
</h1>
|
| 72 |
+
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
|
| 73 |
+
AI-powered game creation engine with real-time multi-agent collaboration
|
| 74 |
+
</p>
|
| 75 |
+
</div>
|
| 76 |
+
|
| 77 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
|
| 78 |
+
<!-- Game Builder -->
|
| 79 |
+
<div class="game-card rounded-xl p-8 game-pulse">
|
| 80 |
+
<div class="flex justify-center mb-6">
|
| 81 |
+
<div class="w-24 h-24 rounded-lg bg-gradient-to-br from-purple-900 to-blue-900 flex items-center justify-center">
|
| 82 |
+
<i data-feather="box" class="text-purple-400 w-12 h-12"></i>
|
| 83 |
+
</div>
|
| 84 |
+
</div>
|
| 85 |
+
<h3 class="text-2xl font-bold text-center mb-4">Game Builder</h3>
|
| 86 |
+
<p class="text-gray-300 mb-6">Visual interface to design your game world with AI assistance.</p>
|
| 87 |
+
<button class="w-full py-3 rounded-lg bg-gradient-to-r from-purple-500 to-blue-500 hover:from-purple-600 hover:to-blue-600 transition font-medium pixel-btn">
|
| 88 |
+
Create Game
|
| 89 |
+
</button>
|
| 90 |
+
</div>
|
| 91 |
+
|
| 92 |
+
<!-- AI Agents -->
|
| 93 |
+
<div class="game-card rounded-xl p-8">
|
| 94 |
+
<div class="flex justify-center mb-6">
|
| 95 |
+
<div class="w-24 h-24 rounded-lg bg-gradient-to-br from-purple-900 to-blue-900 flex items-center justify-center">
|
| 96 |
+
<i data-feather="users" class="text-blue-400 w-12 h-12"></i>
|
| 97 |
+
</div>
|
| 98 |
+
</div>
|
| 99 |
+
<h3 class="text-2xl font-bold text-center mb-4">AI Agents</h3>
|
| 100 |
+
<p class="text-gray-300 mb-6">Specialized game development agents for every aspect of creation.</p>
|
| 101 |
+
<button class="w-full py-3 rounded-lg bg-gradient-to-r from-purple-500 to-blue-500 hover:from-purple-600 hover:to-blue-600 transition font-medium pixel-btn">
|
| 102 |
+
Manage Agents
|
| 103 |
+
</button>
|
| 104 |
+
</div>
|
| 105 |
+
|
| 106 |
+
<!-- Asset Creator -->
|
| 107 |
+
<div class="game-card rounded-xl p-8">
|
| 108 |
+
<div class="flex justify-center mb-6">
|
| 109 |
+
<div class="w-24 h-24 rounded-lg bg-gradient-to-br from-purple-900 to-blue-900 flex items-center justify-center">
|
| 110 |
+
<i data-feather="image" class="text-pink-400 w-12 h-12"></i>
|
| 111 |
+
</div>
|
| 112 |
+
</div>
|
| 113 |
+
<h3 class="text-2xl font-bold text-center mb-4">Asset Creator</h3>
|
| 114 |
+
<p class="text-gray-300 mb-6">Generate game assets with AI-powered tools and templates.</p>
|
| 115 |
+
<button class="w-full py-3 rounded-lg bg-gradient-to-r from-purple-500 to-blue-500 hover:from-purple-600 hover:to-blue-600 transition font-medium pixel-btn">
|
| 116 |
+
Create Assets
|
| 117 |
+
</button>
|
| 118 |
+
</div>
|
| 119 |
+
</div>
|
| 120 |
+
|
| 121 |
+
<!-- Game Console -->
|
| 122 |
+
<div class="game-card rounded-xl p-8 max-w-4xl mx-auto">
|
| 123 |
+
<div class="flex mb-6">
|
| 124 |
+
<div class="w-3 h-3 rounded-full bg-purple-500 mr-2"></div>
|
| 125 |
+
<div class="w-3 h-3 rounded-full bg-blue-500 mr-2"></div>
|
| 126 |
+
<div class="w-3 h-3 rounded-full bg-pink-500"></div>
|
| 127 |
+
</div>
|
| 128 |
+
<div class="font-mono">
|
| 129 |
+
<div class="flex items-center mb-4">
|
| 130 |
+
<span class="text-purple-400 mr-2">game></span>
|
| 131 |
+
<span class="text-white">init --template=platformer --agents=all</span>
|
| 132 |
+
</div>
|
| 133 |
+
<div class="text-blue-300 mb-2">> Initializing game project: Platform Adventure</div>
|
| 134 |
+
<div class="text-blue-300 mb-2">> Loading 5 specialized agents</div>
|
| 135 |
+
<div class="text-purple-300 mb-2">> Level Designer: Generating world map</div>
|
| 136 |
+
<div class="text-green-300 mb-4">> Asset Generator: Creating sprites and textures</div>
|
| 137 |
+
<div class="flex items-center">
|
| 138 |
+
<span class="text-purple-400 mr-2">game></span>
|
| 139 |
+
<span class="text-white flex-1 border-b border-purple-400">_</span>
|
| 140 |
+
</div>
|
| 141 |
+
</div>
|
| 142 |
+
</div>
|
| 143 |
+
|
| 144 |
+
<!-- Game Preview -->
|
| 145 |
+
<div class="game-card rounded-xl p-8 max-w-4xl mx-auto mt-12">
|
| 146 |
+
<h3 class="text-2xl font-bold mb-6 text-center">Live Game Preview</h3>
|
| 147 |
+
<div class="w-full h-64 bg-gradient-to-br from-purple-900 to-blue-900 rounded-lg flex items-center justify-center">
|
| 148 |
+
<div class="text-center">
|
| 149 |
+
<i data-feather="play" class="w-12 h-12 text-white mx-auto mb-4"></i>
|
| 150 |
+
<p class="text-gray-300">Game preview will appear here</p>
|
| 151 |
+
</div>
|
| 152 |
+
</div>
|
| 153 |
+
<div class="flex justify-center mt-6 space-x-4">
|
| 154 |
+
<button class="px-6 py-2 rounded-lg bg-green-500 hover:bg-green-600 transition">
|
| 155 |
+
Play Test
|
| 156 |
+
</button>
|
| 157 |
+
<button class="px-6 py-2 rounded-lg bg-purple-500 hover:bg-purple-600 transition">
|
| 158 |
+
Export
|
| 159 |
+
</button>
|
| 160 |
+
</div>
|
| 161 |
+
</div>
|
| 162 |
+
</main>
|
| 163 |
+
|
| 164 |
+
<footer class="relative z-10 py-12 px-6 md:px-12 bg-gray-900/50 mt-20">
|
| 165 |
+
<div class="container mx-auto text-center">
|
| 166 |
+
<p class="text-gray-400">© 2023 CodeWizard Game Lab. All agents are creative.</p>
|
| 167 |
+
</div>
|
| 168 |
+
</footer>
|
| 169 |
+
|
| 170 |
+
<script>
|
| 171 |
+
// Initialize Vanta.js background
|
| 172 |
+
VANTA.GLOBE({
|
| 173 |
+
el: "#game-bg",
|
| 174 |
+
mouseControls: true,
|
| 175 |
+
touchControls: true,
|
| 176 |
+
gyroControls: false,
|
| 177 |
+
minHeight: 200.00,
|
| 178 |
+
minWidth: 200.00,
|
| 179 |
+
scale: 1.00,
|
| 180 |
+
scaleMobile: 1.00,
|
| 181 |
+
color: 0x7b5bfb,
|
| 182 |
+
backgroundColor: 0x0,
|
| 183 |
+
size: 0.8
|
| 184 |
+
});
|
| 185 |
+
|
| 186 |
+
// Initialize feather icons
|
| 187 |
+
document.addEventListener('DOMContentLoaded', () => {
|
| 188 |
+
feather.replace();
|
| 189 |
+
});
|
| 190 |
+
|
| 191 |
+
// Rotate game commands
|
| 192 |
+
const gameCommands = [
|
| 193 |
+
"generate assets --type=characters --count=5",
|
| 194 |
+
"build level --theme=forest --difficulty=medium",
|
| 195 |
+
"code mechanics --type=platformer --physics=2d",
|
| 196 |
+
"test --full --report=detailed"
|
| 197 |
+
];
|
| 198 |
+
|
| 199 |
+
let currentGameCmd = 0;
|
| 200 |
+
function rotateGameCommand() {
|
| 201 |
+
const terminal = document.querySelector('.game-card .font-mono div:last-child span:last-child');
|
| 202 |
+
terminal.textContent = gameCommands[currentGameCmd];
|
| 203 |
+
currentGameCmd = (currentGameCmd + 1) % gameCommands.length;
|
| 204 |
+
setTimeout(rotateGameCommand, 3000);
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
setTimeout(rotateGameCommand, 3000);
|
| 208 |
+
</script>
|
| 209 |
+
</body>
|
| 210 |
+
</html>
|
hexa.html
CHANGED
|
@@ -69,7 +69,8 @@
|
|
| 69 |
<a href="index.html" class="hover:text-green-400 transition matrix-text">MAINFRAME</a>
|
| 70 |
<a href="quantum.html" class="hover:text-green-400 transition matrix-text">QUANTUM</a>
|
| 71 |
<a href="visual.html" class="hover:text-green-400 transition matrix-text">VISUAL</a>
|
| 72 |
-
|
|
|
|
| 73 |
</nav>
|
| 74 |
|
| 75 |
<!-- Hero Section -->
|
|
|
|
| 69 |
<a href="index.html" class="hover:text-green-400 transition matrix-text">MAINFRAME</a>
|
| 70 |
<a href="quantum.html" class="hover:text-green-400 transition matrix-text">QUANTUM</a>
|
| 71 |
<a href="visual.html" class="hover:text-green-400 transition matrix-text">VISUAL</a>
|
| 72 |
+
<a href="game.html" class="hover:text-green-400 transition matrix-text">GAME</a>
|
| 73 |
+
</div>
|
| 74 |
</nav>
|
| 75 |
|
| 76 |
<!-- Hero Section -->
|
index.html
CHANGED
|
@@ -54,6 +54,7 @@
|
|
| 54 |
<a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
|
| 55 |
<a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
|
| 56 |
<a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
|
|
|
|
| 57 |
</div>
|
| 58 |
<button class="md:hidden">
|
| 59 |
<i data-feather="menu"></i>
|
|
|
|
| 54 |
<a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
|
| 55 |
<a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
|
| 56 |
<a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
|
| 57 |
+
<a href="game.html" class="hover:text-purple-300 transition">Game Lab</a>
|
| 58 |
</div>
|
| 59 |
<button class="md:hidden">
|
| 60 |
<i data-feather="menu"></i>
|
quantum.html
CHANGED
|
@@ -54,6 +54,7 @@
|
|
| 54 |
<a href="index.html" class="hover:text-purple-300 transition">Back to Main</a>
|
| 55 |
<a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
|
| 56 |
<a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
|
|
|
|
| 57 |
</div>
|
| 58 |
</nav>
|
| 59 |
|
|
|
|
| 54 |
<a href="index.html" class="hover:text-purple-300 transition">Back to Main</a>
|
| 55 |
<a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
|
| 56 |
<a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
|
| 57 |
+
<a href="game.html" class="hover:text-purple-300 transition">Game Lab</a>
|
| 58 |
</div>
|
| 59 |
</nav>
|
| 60 |
|
visual.html
CHANGED
|
@@ -57,7 +57,8 @@
|
|
| 57 |
<a href="index.html" class="hover:text-purple-300 transition">Home</a>
|
| 58 |
<a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
|
| 59 |
<a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
|
| 60 |
-
<a href="
|
|
|
|
| 61 |
</div>
|
| 62 |
<button class="md:hidden">
|
| 63 |
<i data-feather="menu"></i>
|
|
|
|
| 57 |
<a href="index.html" class="hover:text-purple-300 transition">Home</a>
|
| 58 |
<a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
|
| 59 |
<a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
|
| 60 |
+
<a href="game.html" class="hover:text-purple-300 transition">Game Lab</a>
|
| 61 |
+
<a href="#" class="hover:text-purple-300 transition text-purple-300">Visual Orchestrator</a>
|
| 62 |
</div>
|
| 63 |
<button class="md:hidden">
|
| 64 |
<i data-feather="menu"></i>
|