File size: 13,382 Bytes
f62d19e 04e2228 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Sling Humans β Prototype</title>
<style>
html,body{height:100%;margin:0;background:linear-gradient(#bfe9ff,#eaf7ff);font-family:Inter,system-ui,Segoe UI,Arial}
#game {width:100%;height:100vh;overflow:hidden}
.ui {position:absolute;left:14px;top:14px;background:rgba(255,255,255,0.9);padding:10px;border-radius:10px;box-shadow:0 6px 18px rgba(13,38,76,0.08);z-index:10}
.ui button{background:#1976d2;color:white;border:none;padding:8px 12px;border-radius:8px;cursor:pointer}
.ui .small{font-size:13px;color:#0b2540;margin-top:6px}
.credits{position:absolute;right:14px;top:14px;background:rgba(255,255,255,0.9);padding:8px 10px;border-radius:8px;font-size:13px;z-index:10}
</style>
</head>
<body>
<div id="game"></div>
<div class="ui">
<div style="font-weight:700">Sling Humans β Prototype</div>
<div style="margin-top:8px;display:flex;gap:8px">
<button id="restart">Restart</button>
<button id="next">Next Level</button>
<button id="powerup">Mega Launch</button>
</div>
<div class="small">Score: <span id="score">0</span> β’ Ammo: <span id="ammo">5</span> β’ Stars: <span id="stars">0</span></div>
<div style="margin-top:8px;font-size:13px;color:#444">Human: <select id="hType">
<option value="regular">Regular</option>
<option value="heavy">Heavyweight</option>
<option value="jumper">Jumper</option>
<option value="boomer">Boomer</option>
</select></div>
</div>
<div class="credits">Cartoon style β non graphic</div>
<!-- Phaser 3 CDN -->
<script src="https://cdn.jsdelivr.net/npm/phaser@3.55.2/dist/phaser.min.js"></script>
<script>
/*
Sling Humans β Prototype
- Single-file Phaser 3 game
- Uses emoji + basic shapes
- Extendable: add assets, audio, more levels
*/
const WIDTH = Math.min(window.innerWidth, 1200);
const HEIGHT = Math.min(window.innerHeight, 800);
const config = {
type: Phaser.AUTO,
parent: 'game',
width: WIDTH,
height: HEIGHT,
backgroundColor: 0xe8f7ff,
physics: { default: 'matter', matter: { gravity: { y: 1.0 }, debug: false } },
scene: { preload, create, update }
};
const game = new Phaser.Game(config);
let slingPos = { x: 160, y: HEIGHT - 180 };
let currentHuman = null, isDragging=false;
let dottedLines = [];
let score = 0, ammo = 5, level = 0, stars = 0;
let blocksGroup = [], targetsGroup = [];
let megaLaunchActive = false;
function preload() {
// no external assets; can load sprites/sounds here later
}
function create() {
const scene = this;
// ground
const ground = scene.matter.add.rectangle(WIDTH/2, HEIGHT-24, WIDTH, 48, { isStatic: true, label: 'ground' });
// catapult base visuals
scene.add.circle(slingPos.x, slingPos.y, 20, 0x6d4c41).setDepth(2);
scene.add.rectangle(slingPos.x+28, slingPos.y+12, 10, 40, 0x4e342e).setOrigin(0.5).setDepth(2);
// UI hooks
document.getElementById('restart').onclick = () => resetLevel(scene);
document.getElementById('next').onclick = () => nextLevel(scene);
document.getElementById('powerup').onclick = () => { megaLaunchActive = true; document.getElementById('powerup').innerText='Mega! (On)'; setTimeout(()=>{megaLaunchActive=false; document.getElementById('powerup').innerText='Mega Launch';}, 8000); };
// level build
buildLevel(scene, level);
// spawn human
spawnHuman(scene);
// input handlers
scene.input.on('pointerdown', (pointer) => {
if (!currentHuman) return;
const bodies = Phaser.Physics.Matter.Matter.Query.point([currentHuman.body], pointer);
if (bodies.length) {
isDragging = true;
scene.matter.body.setStatic(currentHuman.body, true); // hold it while dragging
}
});
scene.input.on('pointermove', (pointer) => {
if (!isDragging || !currentHuman) return;
// clamp drag radius
const maxDrag = 250;
const dx = pointer.x - slingPos.x;
const dy = pointer.y - slingPos.y;
const dist = Math.min(Math.hypot(dx,dy), maxDrag);
const angle = Math.atan2(dy,dx);
const px = slingPos.x + Math.cos(angle)*dist;
const py = slingPos.y + Math.sin(angle)*dist;
currentHuman.setPosition(px, py);
drawTrajectory(scene, currentHuman.x, currentHuman.y, slingPos.x - px, slingPos.y - py);
});
scene.input.on('pointerup', (pointer) => {
if (!isDragging || !currentHuman) return;
isDragging = false;
clearTrajectory();
// compute launch velocity
const dx = slingPos.x - currentHuman.x;
const dy = slingPos.y - currentHuman.y;
let power = Math.sqrt(dx*dx + dy*dy);
const angle = Math.atan2(dy, dx);
let velocityFactor = 0.08 * (megaLaunchActive ? 2.2 : 1.0); // mega launch stronger
const vx = Math.cos(angle) * power * velocityFactor;
const vy = Math.sin(angle) * power * velocityFactor;
scene.matter.body.setStatic(currentHuman.body, false);
scene.matter.body.setVelocity(currentHuman.body, { x: vx, y: vy });
// small spin
scene.matter.body.setAngularVelocity(currentHuman.body, (Math.random()*6-3));
// track with camera
scene.cameras.main.startFollow(currentHuman, true, 0.06, 0.06);
// reduce ammo and update UI
ammo = Math.max(0, ammo-1);
updateUi();
// after a delay spawn next if ammo left
scene.time.delayedCall(800, ()=>{ if (ammo>0) spawnHuman(scene); });
});
// collision detection with blocks/targets
scene.matter.world.on('collisionstart', (event) => {
event.pairs.forEach(pair => {
const { bodyA, bodyB } = pair;
[bodyA, bodyB].forEach(b => {
if (!b.gameObject) return;
const go = b.gameObject;
// if boomer explosion type and collision strong, explode
if (go.humanType === 'boomer') {
const speed = pair.collision.penetration && Math.hypot(pair.collision.penetration.x, pair.collision.penetration.y) || 0;
if (speed > 1.2 && !go.exploded) {
go.exploded = true;
explodeAt(scene, go.x, go.y);
scene.matter.world.remove(go.body);
go.destroy();
}
}
});
// scoring: check if block knocked far or high force
const bodies = [bodyA.gameObject, bodyB.gameObject];
bodies.forEach(obj => {
if (obj && obj.isBlock && !obj.scored) {
// if block speed large or rotated a lot -> scored
const speed = obj.body.speed || 0;
const angle = Math.abs(obj.rotation || 0);
if (speed > 3 || angle > 0.6) {
obj.scored = true;
score += (obj.blockType==='glass' ? 30 : obj.blockType==='wood' ? 15 : 8);
updateUi();
// small tint animation
scene.tweens.add({ targets: obj, alpha: 0.3, duration: 200, yoyo: true });
}
}
});
});
});
// camera bounds
scene.cameras.main.setBounds(0,0, WIDTH*1.5, HEIGHT);
scene.cameras.main.setZoom(1.0);
}
function update() {
// nothing heavy here; could check win/lose
const scene = this;
// check win: all targets destroyed
if (targetsGroup.every(t=>t.destroyed)) {
// level clear
if (!this._cleared) {
this._cleared = true;
scene.cameras.main.fadeOut(600, 255,255,255);
scene.time.delayedCall(700, ()=> {
// award stars
const blocksLeft = blocksGroup.filter(b=>!b.scored).length;
stars = Math.min(3, Math.max(1, Math.floor(score/100)+1));
document.getElementById('stars').innerText = stars;
alert('Level Cleared! Score: '+score+' Stars: '+stars);
nextLevel(scene);
});
}
}
// if out of ammo and no current human, show message
if (ammo<=0 && !currentHuman) {
// optional: show a small hint
}
}
/* ---------- Helpers ---------- */
function spawnHuman(scene) {
const type = document.getElementById('hType').value;
const emoji = 'π§';
const container = scene.add.container(slingPos.x, slingPos.y);
const circle = scene.add.circle(0,0,22, 0xffcc80).setStrokeStyle(2,0xdb8b3b);
const txt = scene.add.text(-10,-16, emoji, { fontSize: '28px' });
container.add([circle, txt]);
scene.matter.add.gameObject(container, { shape: { type: 'circle', radius: 22 }, label: 'human' });
container.setDepth(3);
container.isHuman = true;
container.humanType = type;
// set physics params by type
const body = container.body;
body.friction = 0.8;
body.restitution = (type==='jumper' ? 0.8 : 0.2);
body.density = (type==='heavy' ? 0.009 : type==='boomer' ? 0.002 : 0.004);
// special behaviours
if (type==='jumper') {
container.onGroundBounce = true;
}
if (type==='boomer') {
// boomer will explode on high impact (handled in collision)
}
// mark human as current
currentHuman = container;
// small bobbing animation
scene.tweens.add({ targets: container, y: container.y-6, duration: 600, yoyo:true, repeat:-1 });
// ensure it collides with world and blocks
scene.matter.world.setCollisionCategory(0);
// collisions with blocks
blocksGroup.forEach(b => scene.matter.add.collider(container, b));
// collisions with targets
targetsGroup.forEach(t => scene.matter.add.collider(container, t));
// update UI
updateUi();
}
function buildLevel(scene, lvl) {
// clear old
blocksGroup.forEach(b=>{ try{ b.destroy(); }catch(e){} });
targetsGroup.forEach(t=>{ try{ t.destroy(); }catch(e){} });
blocksGroup = []; targetsGroup = [];
// create a simple structure of blocks depending on level
const baseX = WIDTH - 300;
const baseY = HEIGHT - 120;
const pattern = 2 + (lvl % 3); // complexity
for (let s=0; s<pattern; s++) {
const cols = 2 + s;
const rows = 2 + Math.floor(s/1);
const startX = baseX + s*70;
for (let i=0;i<cols;i++){
for (let j=0;j<rows;j++){
const x = startX + i*48;
const y = baseY - j*42;
const type = (Math.random()<0.15 ? 'metal' : Math.random()<0.4 ? 'glass' : 'wood');
const color = type==='metal' ? 0x90a4ae : type==='glass' ? 0x81d4fa : 0xffcc80;
const rect = scene.add.rectangle(x,y,44,38,color).setStrokeStyle(2,0x333333);
scene.matter.add.gameObject(rect, { shape: { type:'rectangle', width:44, height:38 }});
rect.isBlock = true; rect.blockType = type; rect.scored = false;
blocksGroup.push(rect);
}
}
}
// add a couple of "targets" (robots)
for (let k=0;k<Math.min(3, 1+lvl); k++) {
const tx = baseX + 40 + k*70;
const ty = baseY - (2+k%2)*42 - 20;
const container = scene.add.container(tx, ty);
const body = scene.add.circle(0,0,18,0xa5d6a7).setStrokeStyle(2,0x2e7d32);
const smile = scene.add.text(-9,-12, 'π€', {fontSize:'26px'});
container.add([body, smile]);
scene.matter.add.gameObject(container, { shape: { type: 'circle', radius: 18 }});
container.isTarget = true; container.destroyed = false;
targetsGroup.push(container);
// collision behavior: if high impact -> destroyed
scene.matter.world.on('collisionactive', (ev) => {
ev.pairs.forEach(pair => {
if ((pair.bodyA === container.body || pair.bodyB === container.body)) {
// check relative speed
const speed = pair.collision.penetration && Math.hypot(pair.collision.penetration.x, pair.collision.penetration.y) || 0;
if (speed > 1.1 && !container.destroyed) {
container.destroyed = true;
// small explosion
explodeAt(scene, container.x, container.y);
try { scene.matter.world.remove(container.body); } catch(e){}
container.destroy();
score += 80;
updateUi();
}
}
});
});
}
// camera reset
scene.cameras.main.setScroll(0,0);
scene.cameras.main.stopFollow();
}
function drawTrajectory(scene, x0, y0, vx, vy) {
// clear old
clearTrajectory();
// simulate points using simple physics approx (not matter sim)
const g = 1.0 * 60; // pixel/s^2 scale approx
const steps = 25;
const dt = 1/12;
for (let i=0;i<steps;i++){
const t = i*dt;
const px = x0 + vx * 60 * t; // 60 to scale to pixels
const py = y0 + vy * 60 * t + 0.5 * g * t * t;
const dot = scene.add.circle(px, py, 3, 0x0d47a1).setAlpha(0.6).setDepth(1);
dottedLines.push(dot);
}
}
function clearTrajectory() {
dottedLines.forEach(d=>d.destroy());
dottedLines = [];
}
function explodeAt(scene, x, y) {
// particle-ish effect using small circles
for (let i=0;i<18;i++){
const p = scene.add.circle(x, y, 4, 0xff8a80);
scene.tweens.add({ targets: p, x: x + Phaser.Math.Between(-120,120), y: y + Phaser.Math.Between(-120,120), alpha: 0, duration: 500 + Math.random()*400, onComplete: ()=>p.destroy() });
}
}
function updateUi() {
document.getElementById('score').innerText = score;
document.getElementById('ammo').innerText = ammo;
document.getElementById('stars').innerText = stars;
}
function resetLevel(scene) {
score = 0; ammo = 5; stars = 0;
currentHuman = null; isDragging=false; megaLaunchActive=false;
updateUi();
// remove all matter children and rebuild scene - easiest: reload page
window.location.reload();
}
function nextLevel(scene) {
level += 1; ammo = 5 + Math.min(level, 3);
score = score + 50; // small bonus
currentHuman = null;
buildLevel(scene, level);
spawnHuman(scene);
updateUi();
}
</script>
</body>
</html> |