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
|
|
|
|
2018-05-13 16:50:16 -04: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
|
|
|
|
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', {
|
2013-01-04 20:22:19 -05:00
|
|
|
entityId: client.id,
|
2020-10-06 16:46:53 -04:00
|
|
|
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,
|
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
|
|
|
|
2018-05-13 16:50:16 -04: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
|
|
|
|
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
|
|
|
|
2018-05-13 16:50:16 -04: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'
|
2018-05-13 16:50:16 -04:00
|
|
|
username = username || 'Server'
|
|
|
|
for (const clientId in server.clients) {
|
2019-08-03 19:29:14 -04:00
|
|
|
if (server.clients[clientId] === undefined) continue
|
2013-11-19 18:06:57 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
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
|
|
|
]
|
2018-05-13 16:50:16 -04:00
|
|
|
}
|
2015-09-20 16:10:20 -04:00
|
|
|
client.write('chat', {
|
|
|
|
message: JSON.stringify(msg),
|
2020-06-23 10:52:18 -04:00
|
|
|
position: 0,
|
|
|
|
sender: '0'
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2013-07-09 02:11:09 -04:00
|
|
|
}
|
2013-01-04 20:22:19 -05:00
|
|
|
}
|
2013-01-03 22:01:17 -05:00
|
|
|
}
|