mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-12-20 12:32:26 -05:00
78 lines
1.9 KiB
JavaScript
78 lines
1.9 KiB
JavaScript
const mc = require('minecraft-protocol')
|
|
|
|
const options = {
|
|
motd: 'Vox Industries',
|
|
'max-players': 127,
|
|
port: 25565,
|
|
'online-mode': false
|
|
}
|
|
|
|
const server = mc.createServer(options)
|
|
|
|
server.on('login', function (client) {
|
|
broadcast(client.username + ' joined the game.')
|
|
const addr = client.socket.remoteAddress + ':' + client.socket.remotePort
|
|
console.log(client.username + ' connected', '(' + addr + ')')
|
|
|
|
client.on('end', function () {
|
|
broadcast(client.username + ' left the game.', client)
|
|
console.log(client.username + ' disconnected', '(' + addr + ')')
|
|
})
|
|
|
|
// send init data so client will start rendering world
|
|
client.write('login', {
|
|
entityId: client.id,
|
|
levelType: 'default',
|
|
gameMode: 1,
|
|
dimension: 0,
|
|
difficulty: 2,
|
|
maxPlayers: server.maxPlayers,
|
|
reducedDebugInfo: false
|
|
})
|
|
client.write('position', {
|
|
x: 0,
|
|
y: 256,
|
|
z: 0,
|
|
yaw: 0,
|
|
pitch: 0,
|
|
flags: 0x00
|
|
})
|
|
|
|
client.on('chat', function (data) {
|
|
const message = '<' + client.username + '>' + ' ' + data.message
|
|
broadcast(message, null, client.username)
|
|
console.log(message)
|
|
})
|
|
})
|
|
|
|
server.on('error', function (error) {
|
|
console.log('Error:', error)
|
|
})
|
|
|
|
server.on('listening', function () {
|
|
console.log('Server listening on port', server.socketServer.address().port)
|
|
})
|
|
|
|
function broadcast (message, exclude, username) {
|
|
let client, translate
|
|
translate = username ? 'chat.type.announcement' : 'chat.type.text'
|
|
username = username || 'Server'
|
|
for (const clientId in server.clients) {
|
|
if (!server.clients.hasOwnProperty(clientId)) continue
|
|
|
|
client = server.clients[clientId]
|
|
if (client !== exclude) {
|
|
const msg = {
|
|
translate: translate,
|
|
'with': [
|
|
username,
|
|
message
|
|
]
|
|
}
|
|
client.write('chat', {
|
|
message: JSON.stringify(msg),
|
|
position: 0
|
|
})
|
|
}
|
|
}
|
|
}
|