-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserver.ts
692 lines (589 loc) · 24.4 KB
/
server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
import { serve } from 'bun';
import { join } from 'path';
import { readFileSync } from 'fs';
import type { ServerWebSocket } from "bun";
import { WorldGenerator } from './src/world/WorldGenerator';
import { BlockType } from './src/world/Block';
// Game state types
interface Player {
id: string;
position: { x: number, y: number, z: number };
rotation: { x: number, y: number };
selectedBlockType: number;
username: string;
connectionTime?: number; // Add connection timestamp
health?: number; // Player health
isDead?: boolean; // Whether the player is dead
}
interface GameState {
players: Map<string, Player>;
worldUpdates: Array<{
position: { x: number, y: number, z: number };
blockType: number;
timestamp: number;
}>;
currentWorldState: Map<string, {
blockType: number;
timestamp: number;
}>;
}
// Initialize game state
const gameState: GameState = {
players: new Map<string, Player>(),
worldUpdates: [],
currentWorldState: new Map<string, {
blockType: number;
timestamp: number;
}>()
};
// Map to track rate limiting for world state requests
const worldStateRequestTimes = new Map<string, number>();
// Helper functions for position conversions
function positionToKey(position: { x: number, y: number, z: number }): string {
return `${position.x},${position.y},${position.z}`;
}
function keyToPosition(key: string): { x: number, y: number, z: number } {
const [x, y, z] = key.split(',').map(Number);
return { x, y, z };
}
// Add constants for distance-based updates
const MAX_BLOCK_UPDATE_DISTANCE = 500; // Increased from 200 to 500 for larger view distance
// Define a constant spawn point for all players
const SPAWN_POINT = {
x: 0,
y: 50, // Start high enough to avoid spawning inside terrain
z: 0
};
// Define content types
const contentTypes: Record<string, string> = {
'.html': 'text/html',
'.js': 'text/javascript',
'.css': 'text/css',
'.png': 'image/png',
'.jpg': 'image/jpeg',
'.gif': 'image/gif',
'.svg': 'image/svg+xml',
'.json': 'application/json',
'.woff': 'font/woff',
'.woff2': 'font/woff2'
};
// Message types
enum MessageType {
JOIN = 'join',
LEAVE = 'leave',
PLAYER_UPDATE = 'player_update',
BLOCK_UPDATE = 'block_update',
INITIAL_STATE = 'initial_state',
WORLD_STATE = 'world_state',
CHAT = 'chat',
// Combat-related message types
PLAYER_ATTACK = 'player_attack',
PLAYER_DAMAGE = 'player_damage',
PROJECTILE_SPAWN = 'projectile_spawn',
PROJECTILE_HIT = 'projectile_hit'
}
interface Message {
type: MessageType;
data: any;
}
// WebSocket connections
const connections = new Map<string, ServerWebSocket<{ id: string }>>();
// Generate initial world state
console.log('Generating initial world state...');
const worldGenerator = new WorldGenerator();
const initialWorldBlocks = worldGenerator.generateInitialWorld();
// Convert the generated world to the format used by the game state
for (const [posKey, blockType] of initialWorldBlocks.entries()) {
gameState.currentWorldState.set(posKey, {
blockType,
timestamp: Date.now()
});
}
console.log(`Generated ${gameState.currentWorldState.size} initial blocks`);
// Create server
const server: ReturnType<typeof serve> = serve({
port: 3000,
fetch(req): Response | undefined {
const startTime = Date.now();
const url = new URL(req.url);
let path = url.pathname;
const clientIP = req.headers.get('x-forwarded-for') || 'unknown';
console.log(`[${new Date().toISOString()}] Request: ${req.method} ${path} from ${clientIP}`);
// Handle WebSocket upgrade
if (path === '/ws') {
const success: boolean = server.upgrade(req, {
data: { id: crypto.randomUUID() }
});
return success ? undefined : new Response("WebSocket upgrade failed", { status: 400 });
}
// Add CORS headers to allow requests from all domains
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type, Authorization",
"Access-Control-Max-Age": "86400"
};
// Handle preflight OPTIONS requests
if (req.method === "OPTIONS") {
return new Response(null, {
status: 204,
headers: corsHeaders
});
}
try {
// Handle API requests for world state
if (path === '/api/world-state') {
try {
// Simple rate limiting - check if this IP has requested recently
const now = Date.now();
// Convert currentWorldState map to an array of objects for JSON serialization
const blocks = Array.from(gameState.currentWorldState.entries()).map(([posKey, blockData]) => {
return {
position: keyToPosition(posKey),
blockType: blockData.blockType,
timestamp: blockData.timestamp
};
});
// Get all players
const players = Array.from(gameState.players.values());
// Create response object with optimized format for blocks
const responseData = {
// Use a more compact format for blocks to reduce data size
blocks: blocks.map(block => [
block.position.x,
block.position.y,
block.position.z,
block.blockType
]),
players,
chatMessages: [], // Add chat history if you have it
timestamp: now
};
console.log(`[${new Date().toISOString()}] Sending world state via HTTP with ${blocks.length} blocks and ${players.length} players to ${clientIP}`);
const compressed = Bun.gzipSync(JSON.stringify(responseData));
// Return uncompressed JSON response
const response = new Response(compressed, {
headers: {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*',
'Cache-Control': 'no-store',
'Content-Encoding': 'gzip'
}
});
const duration = Date.now() - startTime;
console.log(`[${new Date().toISOString()}] Response: 200 OK for ${path} (${duration}ms)`);
return response;
} catch (error) {
console.error(`[${new Date().toISOString()}] Error serving world state via HTTP:`, error);
const response = new Response(JSON.stringify({ error: 'Internal server error' }), {
status: 500,
headers: {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*'
}
});
const duration = Date.now() - startTime;
console.log(`[${new Date().toISOString()}] Response: 500 Error for ${path} (${duration}ms)`);
return response;
}
}
// Default to index.html for root path
if (path === '/') {
path = '/index.html';
console.log(`[${new Date().toISOString()}] Redirecting / to /index.html`);
}
try {
// Determine file path
let filePath: string;
if (path.startsWith('/dist/')) {
// Serve from dist directory
filePath = join(process.cwd(), path);
} else if (path === '/index.html') {
// Serve index.html from root
filePath = join(process.cwd(), 'index.html');
} else if (path.startsWith('/textures/')) {
// Serve textures from public directory
filePath = join(process.cwd(), 'public', path);
} else {
// Serve other static files from public directory
filePath = join(process.cwd(), 'public', path);
}
console.log(`[${new Date().toISOString()}] Serving file: ${filePath}`);
// Read file
const file = readFileSync(filePath);
// Determine content type
const ext = path.substring(path.lastIndexOf('.'));
const contentType = contentTypes[ext] || 'application/octet-stream';
// Return response
const response = new Response(file, {
headers: {
'Content-Type': contentType
}
});
const duration = Date.now() - startTime;
console.log(`[${new Date().toISOString()}] Response: 200 OK for ${path} (${duration}ms, ${file.byteLength} bytes, ${contentType})`);
return response;
} catch (error) {
// Return 404 for file not found
const response = new Response('Not Found', {
status: 404
});
const duration = Date.now() - startTime;
console.log(`[${new Date().toISOString()}] Response: 404 Not Found for ${path} (${duration}ms)`);
return response;
}
} catch (error) {
console.error(`[${new Date().toISOString()}] Error serving file:`, error);
const response = new Response('Internal Server Error', { status: 500 });
const duration = Date.now() - startTime;
console.log(`[${new Date().toISOString()}] Response: 500 Error for ${path} (${duration}ms)`);
return response;
}
},
// WebSocket event handlers
websocket: {
open(ws: ServerWebSocket<{ id: string }>) {
try {
const playerId = ws.data.id;
console.log(`[${new Date().toISOString()}] WebSocket: Player ${playerId} connected`);
// Store connection
connections.set(playerId, ws);
// Initialize player in game state with fixed spawn point and connection time
gameState.players.set(playerId, {
id: playerId,
position: { ...SPAWN_POINT }, // Use the fixed spawn point
rotation: { x: 0, y: 0 },
selectedBlockType: 0,
username: `Player-${playerId.substring(0, 4)}`,
connectionTime: Date.now() // Track when the player connected
});
console.log(`[${new Date().toISOString()}] Player ${playerId} initialized at spawn point ${JSON.stringify(SPAWN_POINT)}`);
// Send initial state to new player
sendInitialState(ws, playerId);
// Broadcast join event to all other players
broadcastPlayerJoin(playerId);
console.log(`[${new Date().toISOString()}] Total connected players: ${connections.size}`);
} catch (error) {
console.error(`[${new Date().toISOString()}] Error handling WebSocket connection:`, error);
ws.close();
}
},
message(ws, message) {
try {
const parsedMessage = JSON.parse(message as string) as Message;
const playerId = ws.data.id;
if (parsedMessage.type !== MessageType.PLAYER_UPDATE) {
// Don't log player updates as they're too frequent
console.log(`[${new Date().toISOString()}] WebSocket message from ${playerId}: ${parsedMessage.type}`);
}
switch (parsedMessage.type) {
case MessageType.PLAYER_UPDATE:
handlePlayerUpdate(playerId, parsedMessage.data);
break;
case MessageType.BLOCK_UPDATE:
console.log(`[${new Date().toISOString()}] Block update from ${playerId}: ${JSON.stringify(parsedMessage.data)}`);
handleBlockUpdate(playerId, parsedMessage.data);
break;
case MessageType.CHAT:
console.log(`[${new Date().toISOString()}] Chat message from ${playerId}: ${parsedMessage.data.message}`);
broadcastChatMessage(playerId, parsedMessage.data);
break;
case MessageType.PLAYER_ATTACK:
console.log(`[${new Date().toISOString()}] Player attack from ${playerId}`);
broadcastPlayerAttack(playerId, parsedMessage.data);
break;
case MessageType.PLAYER_DAMAGE:
console.log('player damage')
console.log(`[${new Date().toISOString()}] Player damage from ${playerId}`);
broadcastPlayerDamage(playerId, parsedMessage.data);
break;
case MessageType.PROJECTILE_SPAWN:
console.log('projectile spawn')
console.log(`[${new Date().toISOString()}] Projectile spawn from ${playerId}`);
broadcastProjectileSpawn(playerId, parsedMessage.data);
break;
case MessageType.PROJECTILE_HIT:
console.log('projectile hit')
console.log(`[${new Date().toISOString()}] Projectile hit from ${playerId}`);
broadcastProjectileHit(playerId, parsedMessage.data);
break;
}
} catch (error) {
console.error(`[${new Date().toISOString()}] Error processing message:`, error);
}
},
close(ws) {
try {
const playerId = ws.data.id;
console.log(`[${new Date().toISOString()}] WebSocket: Player ${playerId} disconnected`);
// Remove player from game state
gameState.players.delete(playerId);
// Remove connection
connections.delete(playerId);
// Broadcast leave event
broadcastPlayerLeave(playerId);
console.log(`[${new Date().toISOString()}] Total connected players: ${connections.size}`);
} catch (error) {
console.error(`[${new Date().toISOString()}] Error handling WebSocket close:`, error);
}
}
}
});
console.log(`[${new Date().toISOString()}] Server started on port 3000`);
// Send initial state to new player
async function sendInitialState(ws: ServerWebSocket<{ id: string }>, playerId: string) {
// Only send player data, not world state (which is now loaded via HTTP)
const initialPlayers = Array.from(gameState.players.entries())
.filter(([id]) => id !== playerId)
.map(([_, player]) => player);
console.log(`Sending player data to new player ${playerId} (${initialPlayers.length} other players)`);
// Send only player data
ws.send(JSON.stringify({
type: MessageType.INITIAL_STATE,
data: {
players: initialPlayers,
// No world state metadata or chunks - client will load via HTTP
worldStateMetadata: {
totalBlocks: 0,
totalChunks: 0,
chunkSize: 0
},
timestamp: Date.now()
}
}));
}
// Broadcast player join to all other players
function broadcastPlayerJoin(newPlayerId: string) {
const player = gameState.players.get(newPlayerId);
if (!player) return;
const timestamp = Date.now();
console.log(`[${new Date(timestamp).toISOString()}] Broadcasting player join: ${player.username} (${newPlayerId})`);
for (const [playerId, ws] of connections.entries()) {
if (playerId !== newPlayerId) {
ws.send(JSON.stringify({
type: MessageType.JOIN,
data: {
...player,
timestamp
}
}));
}
}
}
// Broadcast player leave to all other players
function broadcastPlayerLeave(playerId: string) {
const timestamp = Date.now();
console.log(`[${new Date(timestamp).toISOString()}] Broadcasting player leave: ${playerId}`);
for (const [id, ws] of connections.entries()) {
if (id !== playerId) {
ws.send(JSON.stringify({
type: MessageType.LEAVE,
data: {
id: playerId,
timestamp
}
}));
}
}
}
// Handle player update
function handlePlayerUpdate(playerId: string, data: any) {
const player = gameState.players.get(playerId);
if (!player) return;
// Update player state
player.position = data.position;
player.rotation = data.rotation;
player.selectedBlockType = data.selectedBlockType;
// Broadcast update to all other players
const timestamp = Date.now();
for (const [id, ws] of connections.entries()) {
if (id !== playerId) {
ws.send(JSON.stringify({
type: MessageType.PLAYER_UPDATE,
data: {
id: playerId,
position: player.position,
rotation: player.rotation,
selectedBlockType: player.selectedBlockType,
timestamp
}
}));
}
}
}
// Handle block update
function handleBlockUpdate(playerId: string, data: any) {
const player = gameState.players.get(playerId);
if (!player) return;
const { position, blockType } = data;
// Validate that the block is within a reasonable distance from the player
const dx = player.position.x - position.x;
const dy = player.position.y - position.y;
const dz = player.position.z - position.z;
const distanceSquared = dx * dx + dy * dy + dz * dz;
// Define maximum distance a player can modify blocks (slightly larger than client-side reach)
const MAX_BLOCK_MODIFICATION_DISTANCE = 10;
if (distanceSquared > MAX_BLOCK_MODIFICATION_DISTANCE * MAX_BLOCK_MODIFICATION_DISTANCE) {
console.warn(`Player ${playerId} tried to modify a block too far away: distance=${Math.sqrt(distanceSquared).toFixed(2)}`);
return;
}
const posKey = positionToKey(position);
const timestamp = Date.now();
// Check if this block was recently updated to prevent rapid changes
const existingBlock = gameState.currentWorldState.get(posKey);
if (existingBlock && (timestamp - existingBlock.timestamp < 100)) {
// Skip if the block was updated less than 100ms ago
return;
}
// Update world state
gameState.currentWorldState.set(posKey, {
blockType,
timestamp
});
// Add to updates list
gameState.worldUpdates.push({
position,
blockType,
timestamp
});
// Limit the size of the updates list
if (gameState.worldUpdates.length > 1000) {
gameState.worldUpdates.shift();
}
// Broadcast update to all players except the one who made the change
for (const [id, ws] of connections.entries()) {
// Don't send the update back to the player who made it
if (id === playerId) continue;
// Only send updates to players within range
const otherPlayer = gameState.players.get(id);
if (!otherPlayer) continue;
// Skip sending block updates that occurred before the player connected
if (otherPlayer.connectionTime && timestamp <= otherPlayer.connectionTime) {
continue;
}
const dx = otherPlayer.position.x - position.x;
const dy = otherPlayer.position.y - position.y;
const dz = otherPlayer.position.z - position.z;
const distanceSquared = dx * dx + dy * dy + dz * dz;
if (distanceSquared <= MAX_BLOCK_UPDATE_DISTANCE * MAX_BLOCK_UPDATE_DISTANCE) {
ws.send(JSON.stringify({
type: MessageType.BLOCK_UPDATE,
data: {
position,
blockType,
timestamp,
playerId
}
}));
}
}
}
// Broadcast chat message
function broadcastChatMessage(playerId: string, data: any) {
const player = gameState.players.get(playerId);
if (!player) return;
const timestamp = Date.now();
const chatMessage = {
message: data.message,
player: {
id: playerId,
username: player.username
},
timestamp
};
console.log(`[${new Date(timestamp).toISOString()}] Chat from ${player.username}: ${data.message}`);
// Broadcast to all players
for (const [_, ws] of connections.entries()) {
ws.send(JSON.stringify({
type: MessageType.CHAT,
data: chatMessage
}));
}
}
// Combat-related broadcast functions
function broadcastPlayerAttack(playerId: string, data: any) {
const player = gameState.players.get(playerId);
if (!player) return;
const timestamp = Date.now();
const attackData = {
...data,
playerId,
timestamp
};
// Broadcast to all other players
for (const [id, ws] of connections.entries()) {
if (id !== playerId) {
ws.send(JSON.stringify({
type: MessageType.PLAYER_ATTACK,
data: attackData
}));
}
}
}
function broadcastPlayerDamage(playerId: string, data: any) {
const player = gameState.players.get(playerId);
if (!player) return;
// Update player health in game state
const targetId = data.targetId;
const targetPlayer = gameState.players.get(targetId);
if (targetPlayer) {
console.log(`[${new Date().toISOString()}] Player ${targetId} health before: ${targetPlayer.health || 100}`);
// Update target player's health
targetPlayer.health = data.newHealth;
// Update isDead status if applicable
if (data.isDead !== undefined) {
targetPlayer.isDead = data.isDead;
}
console.log(`[${new Date().toISOString()}] Player ${targetId} took ${data.damage} damage from ${playerId}, new health: ${targetPlayer.health}, isDead: ${targetPlayer.isDead}`);
}
const timestamp = Date.now();
const damageData = {
...data,
attackerId: playerId,
timestamp
};
// Broadcast to all players
for (const [id, ws] of connections.entries()) {
ws.send(JSON.stringify({
type: MessageType.PLAYER_DAMAGE,
data: damageData
}));
}
}
function broadcastProjectileSpawn(playerId: string, data: any) {
const player = gameState.players.get(playerId);
if (!player) return;
const timestamp = Date.now();
const projectileData = {
...data,
ownerId: playerId,
timestamp
};
// Broadcast to all other players
for (const [id, ws] of connections.entries()) {
if (id !== playerId) {
ws.send(JSON.stringify({
type: MessageType.PROJECTILE_SPAWN,
data: projectileData
}));
}
}
}
function broadcastProjectileHit(playerId: string, data: any) {
const player = gameState.players.get(playerId);
if (!player) return;
const timestamp = Date.now();
const hitData = {
...data,
ownerId: playerId,
timestamp
};
// Broadcast to all players
for (const [id, ws] of connections.entries()) {
ws.send(JSON.stringify({
type: MessageType.PROJECTILE_HIT,
data: hitData
}));
}
}
console.log(`Server running at http://localhost:3000`);