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

120 lines
2.3 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 = {
'online-mode': true,
2020-06-23 11:10:22 -04:00
version: '1.16'
}
2013-01-03 22:01:17 -05:00
const server = mc.createServer(options)
2013-01-03 22:01:17 -05:00
server.on('login', function (client) {
const addr = client.socket.remoteAddress
console.log('Incoming connection', '(' + addr + ')')
2013-01-03 22:01:17 -05:00
client.on('end', function () {
console.log('Connection closed', '(' + addr + ')')
})
2013-01-03 22:01:17 -05:00
client.on('error', function (error) {
console.log('Error:', error)
})
const w = {
piglin_safe: {
type: 'byte',
value: 0
},
natural: {
type: 'byte',
value: 1
},
ambient_light: {
type: 'float',
value: 0
},
infiniburn: {
type: 'string',
value: 'minecraft:infiniburn_overworld'
},
respawn_anchor_works: {
type: 'byte',
value: 0
},
has_skylight: {
type: 'byte',
value: 1
},
bed_works: {
type: 'byte',
value: 1
},
has_raids: {
type: 'byte',
value: 1
},
name: {
type: 'string',
value: 'minecraft:overworld'
},
logical_height: {
type: 'int',
value: 256
},
shrunk: {
type: 'byte',
value: 0
},
ultrawarm: {
type: 'byte',
value: 0
},
has_ceiling: {
type: 'byte',
value: 0
}
}
2013-01-03 22:01:17 -05:00
// send init data so client will start rendering world
client.write('login', {
entityId: client.id,
2013-01-04 01:45:57 -05:00
levelType: 'default',
gameMode: 0,
previousGameMode: 255,
worldNames: ['minecraft:overworld'],
dimensionCodec: { name: '', type: 'compound', value: { dimension: { type: 'list', value: { type: 'compound', value: [w] } } } },
dimension: 'minecraft:overworld',
worldName: 'minecraft:overworld',
2013-01-04 01:45:57 -05:00
difficulty: 2,
maxPlayers: server.maxPlayers,
reducedDebugInfo: false,
enableRespawnScreen: true,
hashedSeed: [0, 0]
})
client.write('position', {
2013-01-03 22:01:17 -05:00
x: 0,
y: 1.62,
z: 0,
yaw: 0,
pitch: 0,
flags: 0x00
})
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',
2019-08-03 19:29:14 -04:00
with: [
2013-07-09 02:11:09 -04:00
'Server',
'Hello, world!'
]
}
client.write('chat', { message: JSON.stringify(msg), position: 0, sender: '0' })
})
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)
})