node-minecraft-protocol/examples/server/server.js

90 lines
2.2 KiB
JavaScript
Raw Normal View History

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,
'online-mode': false
}
2013-01-03 22:01:17 -05:00
const server = mc.createServer(options)
const mcData = require('minecraft-data')(server.version)
const loginPacket = mcData.loginPacket
2013-01-03 22:01:17 -05:00
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 + ')')
2013-01-03 22:01:17 -05: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
client.write('login', {
entityId: client.id,
isHardcore: false,
gameMode: 0,
previousGameMode: 255,
worldNames: loginPacket.worldNames,
dimensionCodec: loginPacket.dimensionCodec,
dimension: loginPacket.dimension,
worldName: 'minecraft:overworld',
hashedSeed: [0, 0],
2015-09-20 16:10:20 -04:00
maxPlayers: server.maxPlayers,
viewDistance: 10,
reducedDebugInfo: false,
enableRespawnScreen: true,
isDebug: false,
isFlat: false
})
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
})
2013-01-03 22:01:17 -05:00
client.on('chat', function (data) {
const message = '<' + client.username + '>' + ' ' + data.message
broadcast(message, null, client.username)
console.log(message)
})
})
2013-01-03 22:01:17 -05:00
server.on('error', function (error) {
console.log('Error:', error)
})
2013-01-03 22:01:17 -05:00
server.on('listening', function () {
console.log('Server listening on port', server.socketServer.address().port)
})
2013-01-03 22:01:17 -05:00
function broadcast (message, exclude, username) {
2019-08-03 19:29:14 -04:00
let client
const translate = username ? 'chat.type.announcement' : 'chat.type.text'
username = username || 'Server'
for (const clientId in server.clients) {
2019-08-03 19:29:14 -04:00
if (server.clients[clientId] === undefined) continue
client = server.clients[clientId]
if (client !== exclude) {
2017-07-13 08:03:52 -04:00
const msg = {
2013-07-09 02:11:09 -04:00
translate: translate,
2019-08-03 19:29:14 -04:00
with: [
2013-07-09 02:11:09 -04:00
username,
2014-01-14 00:56:56 -05:00
message
2013-07-09 02:11:09 -04:00
]
}
2015-09-20 16:10:20 -04:00
client.write('chat', {
message: JSON.stringify(msg),
position: 0,
sender: '0'
})
2013-07-09 02:11:09 -04:00
}
}
2013-01-03 22:01:17 -05:00
}