2015-03-26 11:26:21 -04:00
|
|
|
var mc = require('../../');
|
2015-05-22 21:31:47 -04:00
|
|
|
var states = mc.states;
|
2013-01-03 22:01:17 -05:00
|
|
|
|
|
|
|
var options = {
|
|
|
|
motd: 'Vox Industries',
|
2013-01-04 01:45:57 -05:00
|
|
|
'max-players': 127,
|
|
|
|
port: 25565,
|
2013-02-10 17:51:47 -05:00
|
|
|
'online-mode': false,
|
2013-01-03 22:01:17 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
var server = mc.createServer(options);
|
|
|
|
|
2013-01-04 01:45:57 -05:00
|
|
|
server.on('login', function(client) {
|
2015-05-14 16:08:49 -04:00
|
|
|
broadcast(client.username + ' joined the game.');
|
2013-01-04 01:45:57 -05:00
|
|
|
var addr = client.socket.remoteAddress + ':' + client.socket.remotePort;
|
2015-05-14 16:08:49 -04:00
|
|
|
console.log(client.username + ' connected', '(' + addr + ')');
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2013-01-04 01:45:57 -05:00
|
|
|
client.on('end', function() {
|
2015-05-14 16:08:49 -04:00
|
|
|
broadcast(client.username + ' left the game.', client);
|
|
|
|
console.log(client.username + ' disconnected', '(' + addr + ')');
|
2013-01-04 01:45:57 -05:00
|
|
|
});
|
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,
|
2013-01-04 01:45:57 -05:00
|
|
|
levelType: 'default',
|
|
|
|
gameMode: 1,
|
|
|
|
dimension: 0,
|
|
|
|
difficulty: 2,
|
2015-09-20 16:10:20 -04:00
|
|
|
maxPlayers: server.maxPlayers,
|
|
|
|
reducedDebugInfo:false
|
2013-01-04 01:45:57 -05: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
|
2013-01-04 01:45:57 -05:00
|
|
|
});
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2014-03-16 13:06:57 -04:00
|
|
|
client.on('chat', function(data) {
|
2015-05-14 16:08:49 -04:00
|
|
|
var message = '<' + client.username + '>' + ' ' + data.message;
|
2013-07-09 02:11:09 -04:00
|
|
|
broadcast(message, client, client.username);
|
2013-01-04 01:45:57 -05:00
|
|
|
console.log(message);
|
|
|
|
});
|
|
|
|
});
|
2013-01-03 22:01:17 -05:00
|
|
|
|
|
|
|
server.on('error', function(error) {
|
2013-07-09 02:11:09 -04:00
|
|
|
console.log('Error:', error);
|
2013-01-03 22:01:17 -05:00
|
|
|
});
|
|
|
|
|
2013-01-04 01:45:57 -05:00
|
|
|
server.on('listening', function() {
|
2013-07-09 02:11:09 -04:00
|
|
|
console.log('Server listening on port', server.socketServer.address().port);
|
2013-01-03 22:01:17 -05:00
|
|
|
});
|
|
|
|
|
2013-07-09 02:11:09 -04:00
|
|
|
function broadcast(message, exclude, username) {
|
2013-11-19 18:06:57 -05:00
|
|
|
var client, translate;
|
2013-07-09 02:11:09 -04:00
|
|
|
translate = username ? 'chat.type.announcement' : 'chat.type.text';
|
|
|
|
username = username || 'Server';
|
2015-05-14 16:08:49 -04:00
|
|
|
for(var clientId in server.clients) {
|
|
|
|
if(!server.clients.hasOwnProperty(clientId)) continue;
|
2013-11-19 18:06:57 -05:00
|
|
|
|
2013-01-04 20:22:19 -05:00
|
|
|
client = server.clients[clientId];
|
2015-05-14 16:08:49 -04:00
|
|
|
if(client !== exclude) {
|
2013-07-09 02:11:09 -04:00
|
|
|
var msg = {
|
|
|
|
translate: translate,
|
2013-12-30 10:05:22 -05: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
|
|
|
|
});
|
2013-07-09 02:11:09 -04:00
|
|
|
}
|
2013-01-04 20:22:19 -05:00
|
|
|
}
|
2013-01-03 22:01:17 -05:00
|
|
|
}
|