2018-05-13 16:50:16 -04:00
|
|
|
const mc = require('minecraft-protocol')
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2017-07-13 08:03:52 -04:00
|
|
|
const options = {
|
2013-01-03 22:01:17 -05:00
|
|
|
motd: 'Vox Industries',
|
2013-01-04 01:45:57 -05:00
|
|
|
'max-players': 127,
|
|
|
|
port: 25565,
|
2015-11-30 16:19:56 -05:00
|
|
|
'online-mode': false
|
2018-05-13 16:50:16 -04:00
|
|
|
}
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
const server = mc.createServer(options)
|
2020-10-06 16:46:53 -04:00
|
|
|
const mcData = require('minecraft-data')(server.version)
|
|
|
|
const loginPacket = mcData.loginPacket
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2023-12-27 18:48:10 -05:00
|
|
|
server.on('playerJoin', function (client) {
|
2018-05-13 16:50:16 -04:00
|
|
|
broadcast(client.username + ' joined the game.')
|
|
|
|
const addr = client.socket.remoteAddress + ':' + client.socket.remotePort
|
|
|
|
console.log(client.username + ' connected', '(' + addr + ')')
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
client.on('end', function () {
|
|
|
|
broadcast(client.username + ' left the game.', client)
|
|
|
|
console.log(client.username + ' disconnected', '(' + addr + ')')
|
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2013-01-04 01:45:57 -05:00
|
|
|
// send init data so client will start rendering world
|
2014-03-16 13:14:55 -04:00
|
|
|
client.write('login', {
|
2023-12-27 18:48:10 -05:00
|
|
|
...loginPacket,
|
2013-01-04 20:22:19 -05:00
|
|
|
entityId: client.id,
|
2020-10-06 16:46:53 -04:00
|
|
|
isHardcore: false,
|
|
|
|
gameMode: 0,
|
2021-09-03 12:52:47 -04:00
|
|
|
previousGameMode: 1,
|
2020-10-06 16:46:53 -04:00
|
|
|
hashedSeed: [0, 0],
|
2015-09-20 16:10:20 -04:00
|
|
|
maxPlayers: server.maxPlayers,
|
2020-10-06 16:46:53 -04:00
|
|
|
viewDistance: 10,
|
2019-12-29 17:27:04 -05:00
|
|
|
reducedDebugInfo: false,
|
|
|
|
enableRespawnScreen: true,
|
2020-10-06 16:46:53 -04:00
|
|
|
isDebug: false,
|
|
|
|
isFlat: false
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2014-03-16 13:14:55 -04:00
|
|
|
client.write('position', {
|
2013-01-04 01:45:57 -05:00
|
|
|
x: 0,
|
|
|
|
y: 256,
|
|
|
|
z: 0,
|
|
|
|
yaw: 0,
|
|
|
|
pitch: 0,
|
2015-09-20 16:10:20 -04:00
|
|
|
flags: 0x00
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2023-12-27 18:48:10 -05:00
|
|
|
function handleChat (data) {
|
2018-05-13 16:50:16 -04:00
|
|
|
const message = '<' + client.username + '>' + ' ' + data.message
|
|
|
|
broadcast(message, null, client.username)
|
|
|
|
console.log(message)
|
2023-12-27 18:48:10 -05:00
|
|
|
}
|
|
|
|
client.on('chat', handleChat) // pre-1.19
|
|
|
|
client.on('chat_message', handleChat) // post 1.19
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
server.on('error', function (error) {
|
|
|
|
console.log('Error:', error)
|
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
server.on('listening', function () {
|
|
|
|
console.log('Server listening on port', server.socketServer.address().port)
|
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2023-12-27 18:48:10 -05:00
|
|
|
function sendBroadcastMessage (server, clients, message, sender) {
|
|
|
|
if (mcData.supportFeature('signedChat')) {
|
|
|
|
server.writeToClients(clients, 'player_chat', {
|
|
|
|
plainMessage: message,
|
|
|
|
signedChatContent: '',
|
|
|
|
unsignedChatContent: JSON.stringify({ text: message }),
|
|
|
|
type: 0,
|
|
|
|
senderUuid: 'd3527a0b-bc03-45d5-a878-2aafdd8c8a43', // random
|
|
|
|
senderName: JSON.stringify({ text: sender }),
|
|
|
|
senderTeam: undefined,
|
|
|
|
timestamp: Date.now(),
|
|
|
|
salt: 0n,
|
|
|
|
signature: mcData.supportFeature('useChatSessions') ? undefined : Buffer.alloc(0),
|
|
|
|
previousMessages: [],
|
|
|
|
filterType: 0,
|
|
|
|
networkName: JSON.stringify({ text: sender })
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
server.writeToClients(clients, 'chat', { message: JSON.stringify({ text: message }), position: 0, sender: sender || '0' })
|
2013-01-04 20:22:19 -05:00
|
|
|
}
|
2013-01-03 22:01:17 -05:00
|
|
|
}
|
2023-12-27 18:48:10 -05:00
|
|
|
|
|
|
|
function broadcast (message, exclude, username) {
|
|
|
|
sendBroadcastMessage(server, Object.values(server.clients).filter(client => client !== exclude), message)
|
|
|
|
}
|