Spaces:
Running
Running
File size: 10,487 Bytes
c9175f4 bb13fe7 b9232bd c9175f4 b9232bd bb13fe7 b9232bd c9175f4 b9232bd c9175f4 bb13fe7 b9232bd c9175f4 b9232bd bb13fe7 b9232bd bb13fe7 b9232bd c9175f4 bb13fe7 |
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 |
import gradio as gr
demo = gr.Blocks()
with demo:
gr.HTML("""<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Maze Game Demo</title>
<style>
body {
margin: 0;
overflow: hidden;
}
#container {
position: relative;
}
#debug {
position: absolute;
top: 10px;
left: 10px;
color: white;
background: rgba(0, 0, 0, 0.5);
padding: 10px;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<div id="container"></div>
<div id="debug">
<p>Position: <span id="position"></span></p>
<p>Rotation: <span id="rotation"></span></p>
</div>
<!-- Libraries from CDNs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/examples/js/loaders/GLTFLoader.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/examples/js/controls/OrbitControls.js"></script>
<script>
// Scene Setup
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer();
renderer.setSize(window.innerWidth, window.innerHeight);
document.getElementById('container').appendChild(renderer.domElement);
// Lighting
const hemiLight = new THREE.HemisphereLight(0xffffff, 0x444444);
hemiLight.position.set(0, 20, 0);
scene.add(hemiLight);
const dirLight = new THREE.DirectionalLight(0xffffff);
dirLight.position.set(0, 20, 10);
scene.add(dirLight);
// Floor Texture
function createFloorTexture() {
const canvas = document.createElement('canvas');
canvas.width = 256;
canvas.height = 256;
const context = canvas.getContext('2d');
context.fillStyle = '#8B4513'; // Brown tone
context.fillRect(0, 0, 256, 256);
context.strokeStyle = '#FFFFFF';
context.lineWidth = 2;
for (let i = 0; i <= 16; i++) {
const pos = i * 16;
context.beginPath();
context.moveTo(pos, 0);
context.lineTo(pos, 256);
context.stroke();
context.beginPath();
context.moveTo(0, pos);
context.lineTo(256, pos);
context.stroke();
}
const texture = new THREE.CanvasTexture(canvas);
texture.wrapS = texture.wrapT = THREE.RepeatWrapping;
texture.repeat.set(16, 16);
return texture;
}
// Wall Texture
function createWallTexture() {
const canvas = document.createElement('canvas');
canvas.width = 64;
canvas.height = 64;
const context = canvas.getContext('2d');
context.fillStyle = '#808080'; // Gray base
context.fillRect(0, 0, 64, 64);
context.fillStyle = '#A0A0A0';
for (let i = 0; i < 100; i++) {
const x = Math.random() * 64;
const y = Math.random() * 64;
context.fillRect(x, y, 2, 2);
}
return new THREE.CanvasTexture(canvas);
}
// Floor
const floorTexture = createFloorTexture();
const floorGeometry = new THREE.PlaneGeometry(64, 64);
const floorMaterial = new THREE.MeshBasicMaterial({ map: floorTexture });
const floor = new THREE.Mesh(floorGeometry, floorMaterial);
floor.rotation.x = -Math.PI / 2;
scene.add(floor);
// Maze Generation
const gridSize = 16;
const cellSize = 4;
const maze = [];
for (let i = 0; i < gridSize; i++) {
maze[i] = [];
for (let j = 0; j < gridSize; j++) {
if (i === 0 || i === gridSize - 1 || j === 0 || j === gridSize - 1) {
maze[i][j] = 1; // Walls on boundaries
} else if (i >= 6 && i <= 9 && j >= 6 && j <= 9) {
maze[i][j] = 0; // Central open area
} else {
maze[i][j] = Math.random() < 0.15 ? 1 : 0; // 15% chance of wall
}
}
}
// Walls and Collision Bounds
const wallTexture = createWallTexture();
const wallGeometry = new THREE.BoxGeometry(cellSize, cellSize, cellSize);
const wallMaterial = new THREE.MeshBasicMaterial({ map: wallTexture });
const walls = [];
const wallBounds = [];
for (let i = 0; i < gridSize; i++) {
for (let j = 0; j < gridSize; j++) {
if (maze[i][j] === 1) {
const wall = new THREE.Mesh(wallGeometry, wallMaterial);
const x = (j - 7.5) * cellSize;
const z = (i - 7.5) * cellSize;
wall.position.set(x, cellSize / 2, z);
scene.add(wall);
walls.push(wall);
wallBounds.push({
minX: x - cellSize / 2,
maxX: x + cellSize / 2,
minZ: z - cellSize / 2,
maxZ: z + cellSize / 2
});
}
}
}
// Soldier Setup
const loader = new THREE.GLTFLoader();
let soldier, mixer, idleAction, runAction, activeAction;
loader.load(
'https://threejs.org/examples/models/gltf/Soldier.glb',
(gltf) => {
soldier = gltf.scene;
soldier.scale.set(2, 2, 2);
soldier.position.set(0, 0, 0);
scene.add(soldier);
mixer = new THREE.AnimationMixer(soldier);
const animations = gltf.animations;
idleAction = mixer.clipAction(THREE.AnimationClip.findByName(animations, 'Idle'));
runAction = mixer.clipAction(THREE.AnimationClip.findByName(animations, 'Run'));
activeAction = idleAction;
activeAction.play();
},
undefined,
(error) => console.error('Error loading soldier:', error)
);
// Camera and Controls
camera.position.set(0, 5, 10);
const controls = new THREE.OrbitControls(camera, renderer.domElement);
controls.target.set(0, 0, 0);
controls.update();
// Movement Controls
const keys = new Set();
window.addEventListener('keydown', (e) => keys.add(e.key.toLowerCase()));
window.addEventListener('keyup', (e) => keys.delete(e.key.toLowerCase()));
const moveSpeed = 10; // Units per second
const collisionRadius = 0.5;
function updateSoldier(delta) {
if (!soldier) return;
const forward = new THREE.Vector3();
camera.getWorldDirection(forward);
forward.y = 0;
forward.normalize();
const right = new THREE.Vector3();
right.crossVectors(forward, new THREE.Vector3(0, 1, 0));
const moveDirection = new THREE.Vector3();
if (keys.has('w')) moveDirection.add(forward);
if (keys.has('s')) moveDirection.add(forward.clone().negate());
if (keys.has('a')) moveDirection.add(right.clone().negate());
if (keys.has('d')) moveDirection.add(right);
if (moveDirection.lengthSq() > 0) {
moveDirection.normalize();
const newPosition = soldier.position.clone().add(
moveDirection.multiplyScalar(moveSpeed * delta)
);
// Collision Detection
let colliding = false;
for (const wall of wallBounds) {
if (
newPosition.x > wall.minX - collisionRadius &&
newPosition.x < wall.maxX + collisionRadius &&
newPosition.z > wall.minZ - collisionRadius &&
newPosition.z < wall.maxZ + collisionRadius
) {
colliding = true;
break;
}
}
if (!colliding) {
soldier.position.copy(newPosition);
const angle = Math.atan2(moveDirection.x, moveDirection.z);
soldier.rotation.y = angle + Math.PI; // Orientation fix
}
// Animation Transition to Run
if (activeAction !== runAction) {
activeAction.fadeOut(0.2);
runAction.reset().fadeIn(0.2).play();
activeAction = runAction;
}
} else {
// Animation Transition to Idle
if (activeAction !== idleAction) {
activeAction.fadeOut(0.2);
idleAction.reset().fadeIn(0.2).play();
activeAction = idleAction;
}
}
}
// Animation Loop
const clock = new THREE.Clock();
function animate() {
requestAnimationFrame(animate);
const delta = clock.getDelta();
if (mixer) mixer.update(delta);
updateSoldier(delta);
if (soldier) {
controls.target.copy(soldier.position);
const pos = soldier.position;
document.getElementById('position').textContent =
`(${pos.x.toFixed(2)}, ${pos.y.toFixed(2)}, ${pos.z.toFixed(2)})`;
document.getElementById('rotation').textContent =
soldier.rotation.y.toFixed(2);
}
controls.update();
renderer.render(scene, camera);
}
animate();
// Responsive Design
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
</script>
</body>
</html>""")
demo.launch() |