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 = {
|
2015-11-30 16:19:56 -05:00
|
|
|
'online-mode': true
|
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)
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
server.on('login', function (client) {
|
|
|
|
const addr = client.socket.remoteAddress
|
|
|
|
console.log('Incoming connection', '(' + addr + ')')
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
client.on('end', function () {
|
|
|
|
console.log('Connection closed', '(' + addr + ')')
|
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
client.on('error', function (error) {
|
|
|
|
console.log('Error:', error)
|
|
|
|
})
|
2015-10-02 20:14:01 -04:00
|
|
|
|
2013-01-03 22:01:17 -05:00
|
|
|
// send init data so client will start rendering world
|
2014-03-16 13:06:57 -04:00
|
|
|
client.write('login', {
|
2013-01-04 20:22:19 -05:00
|
|
|
entityId: client.id,
|
2013-01-04 01:45:57 -05:00
|
|
|
levelType: 'default',
|
|
|
|
gameMode: 0,
|
|
|
|
dimension: 0,
|
|
|
|
difficulty: 2,
|
2015-01-01 17:20:47 -05:00
|
|
|
maxPlayers: server.maxPlayers,
|
|
|
|
reducedDebugInfo: false
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2015-01-01 17:20:47 -05:00
|
|
|
|
2014-03-16 13:06:57 -04:00
|
|
|
client.write('position', {
|
2013-01-03 22:01:17 -05:00
|
|
|
x: 0,
|
|
|
|
y: 1.62,
|
|
|
|
z: 0,
|
|
|
|
yaw: 0,
|
|
|
|
pitch: 0,
|
2015-01-01 17:20:47 -05:00
|
|
|
flags: 0x00
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2017-07-13 08:03:52 -04:00
|
|
|
const msg = {
|
2013-07-09 02:11:09 -04:00
|
|
|
translate: 'chat.type.announcement',
|
2018-05-13 16:50:16 -04:00
|
|
|
'with': [
|
2013-07-09 02:11:09 -04:00
|
|
|
'Server',
|
|
|
|
'Hello, world!'
|
|
|
|
]
|
2018-05-13 16:50:16 -04:00
|
|
|
}
|
|
|
|
client.write('chat', {message: JSON.stringify(msg), position: 0})
|
|
|
|
})
|
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)
|
|
|
|
})
|