mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-07 04:00:46 +00:00
Modpe support is merged, added flag for enabling modpe, added world edit
This commit is contained in:
parent
343d9e6828
commit
a4cae0c143
6 changed files with 2320 additions and 5 deletions
7
app.js
7
app.js
|
|
@ -6,15 +6,16 @@ var settings = require('./config/settings');
|
||||||
var commands = require('./config/commands');
|
var commands = require('./config/commands');
|
||||||
|
|
||||||
var options = {
|
var options = {
|
||||||
motd: settings.motd,
|
'motd': settings.motd,
|
||||||
'max-players': settings.maxPlayers,
|
'max-players': settings.maxPlayers,
|
||||||
port: settings.port,
|
'port': settings.port,
|
||||||
'online-mode': settings.onlineMode,
|
'online-mode': settings.onlineMode,
|
||||||
gameMode:settings.gameMode,
|
gameMode:settings.gameMode,
|
||||||
commands: commands,
|
commands: commands,
|
||||||
logging:settings.logging,
|
logging:settings.logging,
|
||||||
kickTimeout:10*60*1000,
|
kickTimeout:10*60*1000,
|
||||||
generation:settings.generation
|
generation:settings.generation,
|
||||||
|
'modpe': settings.modpe
|
||||||
};
|
};
|
||||||
|
|
||||||
mcServer.createMCServer(options);
|
mcServer.createMCServer(options);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
1974
lib/modpePlugins/we.js
Normal file
1974
lib/modpePlugins/we.js
Normal file
File diff suppressed because it is too large
Load diff
336
lib/serverPlugins/modpe.js
Normal file
336
lib/serverPlugins/modpe.js
Normal file
|
|
@ -0,0 +1,336 @@
|
||||||
|
var vec3=require("vec3");
|
||||||
|
var dir = require("node-dir");
|
||||||
|
var fs = require("fs");
|
||||||
|
|
||||||
|
module.exports=inject;
|
||||||
|
|
||||||
|
function requireFromString(src, filename) {
|
||||||
|
var Module = module.constructor;
|
||||||
|
var m = new Module();
|
||||||
|
m._compile(src, filename);
|
||||||
|
return m.exports;
|
||||||
|
}
|
||||||
|
|
||||||
|
function log(msg) {
|
||||||
|
console.log("[MODPE-NOINJECT] " + msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
function modpeApi() {
|
||||||
|
function euclideanMod(numerator, denominator) {
|
||||||
|
var result = numerator % denominator;
|
||||||
|
return result < 0 ? result + denominator : result;
|
||||||
|
}
|
||||||
|
|
||||||
|
function Vec3(x, y, z) {
|
||||||
|
this.x = x;
|
||||||
|
this.y = y;
|
||||||
|
this.z = z;
|
||||||
|
}
|
||||||
|
Vec3.prototype.set = function (x, y, z) {
|
||||||
|
this.x = x;
|
||||||
|
this.y = y;
|
||||||
|
this.z = z;
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
Vec3.prototype.update = function (other) {
|
||||||
|
this.x = other.x;
|
||||||
|
this.y = other.y;
|
||||||
|
this.z = other.z;
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
Vec3.prototype.floored = function () {
|
||||||
|
return new Vec3(Math.floor(this.x), Math.floor(this.y), Math.floor(this.z));
|
||||||
|
};
|
||||||
|
|
||||||
|
Vec3.prototype.floor = function () {
|
||||||
|
this.x = Math.floor(this.x);
|
||||||
|
this.y = Math.floor(this.y);
|
||||||
|
this.z = Math.floor(this.z);
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
Vec3.prototype.offset = function (dx, dy, dz) {
|
||||||
|
return new Vec3(this.x + dx, this.y + dy, this.z + dz);
|
||||||
|
};
|
||||||
|
Vec3.prototype.translate = function (dx, dy, dz) {
|
||||||
|
this.x += dx;
|
||||||
|
this.y += dy;
|
||||||
|
this.z += dz;
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
Vec3.prototype.add = function (other) {
|
||||||
|
this.x += other.x;
|
||||||
|
this.y += other.y;
|
||||||
|
this.z += other.z;
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
Vec3.prototype.subtract = function (other) {
|
||||||
|
this.x -= other.x;
|
||||||
|
this.y -= other.y;
|
||||||
|
this.z -= other.z;
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
Vec3.prototype.plus = function (other) {
|
||||||
|
return this.offset(other.x, other.y, other.z);
|
||||||
|
};
|
||||||
|
Vec3.prototype.minus = function (other) {
|
||||||
|
return this.offset(-other.x, -other.y, -other.z);
|
||||||
|
};
|
||||||
|
Vec3.prototype.scaled = function (scalar) {
|
||||||
|
return new Vec3(this.x * scalar, this.y * scalar, this.z * scalar);
|
||||||
|
};
|
||||||
|
Vec3.prototype.abs = function () {
|
||||||
|
return new Vec3(Math.abs(this.x), Math.abs(this.y), Math.abs(this.z));
|
||||||
|
};
|
||||||
|
Vec3.prototype.volume = function () {
|
||||||
|
return this.x * this.y * this.z;
|
||||||
|
};
|
||||||
|
Vec3.prototype.modulus = function (other) {
|
||||||
|
return new Vec3(
|
||||||
|
euclideanMod(this.x, other.x)
|
||||||
|
, euclideanMod(this.y, other.y)
|
||||||
|
, euclideanMod(this.z, other.z));
|
||||||
|
};
|
||||||
|
Vec3.prototype.distanceTo = function (other) {
|
||||||
|
var dx = other.x - this.x;
|
||||||
|
var dy = other.y - this.y;
|
||||||
|
var dz = other.z - this.z;
|
||||||
|
return Math.sqrt(dx * dx + dy * dy + dz * dz);
|
||||||
|
};
|
||||||
|
Vec3.prototype.equals = function (other) {
|
||||||
|
return this.x === other.x && this.y === other.y && this.z === other.z;
|
||||||
|
};
|
||||||
|
Vec3.prototype.toString = function () {
|
||||||
|
return "(" + this.x + ", " + this.y + ", " + this.z + ")";
|
||||||
|
};
|
||||||
|
Vec3.prototype.clone = function () {
|
||||||
|
return this.offset(0, 0, 0);
|
||||||
|
};
|
||||||
|
Vec3.prototype.min = function (other) {
|
||||||
|
return new Vec3(Math.min(this.x, other.x), Math.min(this.y, other.y), Math.min(this.z, other.z));
|
||||||
|
};
|
||||||
|
Vec3.prototype.max = function (other) {
|
||||||
|
return new Vec3(Math.max(this.x, other.x), Math.max(this.y, other.y), Math.max(this.z, other.z));
|
||||||
|
};
|
||||||
|
vec3 = Vec3;
|
||||||
|
|
||||||
|
var server = null;
|
||||||
|
var player = null;
|
||||||
|
|
||||||
|
module.exports.startDestroyBlock = startDestroyBlock;
|
||||||
|
module.exports.destroyBlock = destroyBlock;
|
||||||
|
module.exports.newLevel = newLevel;
|
||||||
|
module.exports.procCmd = procCmd;
|
||||||
|
module.exports.exec = exec;
|
||||||
|
module.exports.modTick = modTick;
|
||||||
|
module.exports.useItem = useItem;
|
||||||
|
module.exports.initSquid = initSquid;
|
||||||
|
function modTick(){}
|
||||||
|
function newLevel(){}
|
||||||
|
|
||||||
|
function useItem(x,y,z,itemId,blockId){}
|
||||||
|
function startDestroyBlock(x,y,z,side){}
|
||||||
|
function destroyBlock(x,y,z,side){}
|
||||||
|
function procCmd(command){}
|
||||||
|
function exec(code){eval(code)}
|
||||||
|
|
||||||
|
function initSquid(pl1, srv) {
|
||||||
|
player = pl1;
|
||||||
|
server = srv;
|
||||||
|
}
|
||||||
|
|
||||||
|
function clientMessage(message) {
|
||||||
|
console.log(message);
|
||||||
|
player.chat(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
function setTile(x, y, z, id, damage) {
|
||||||
|
server.setBlock(new vec3(x, y, z), id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getTile(x, y, z) {
|
||||||
|
server.world.getBlockType(new vec3(x, y, z));
|
||||||
|
}
|
||||||
|
|
||||||
|
function preventDefault() {
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPlayerX() {
|
||||||
|
return player.entity.position.x/32;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPlayerY() {
|
||||||
|
return player.entity.position.y/32;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPlayerZ() {
|
||||||
|
return player.entity.position.z/32;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPlayerEnt() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getCarriedItem() {
|
||||||
|
return player.heldItem.blockId;
|
||||||
|
}
|
||||||
|
|
||||||
|
var Player = {
|
||||||
|
getCarriedItem: function () {
|
||||||
|
return player.heldItem.blockId;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var Entity = {
|
||||||
|
getPitch: function () {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
, getYaw: function () {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var Level = {
|
||||||
|
getGameMode: function () {
|
||||||
|
return player.gameMode;
|
||||||
|
}
|
||||||
|
, getData: function (x, y, z) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function convert(code) {
|
||||||
|
log("Started conversion...");
|
||||||
|
var api = modpeApi.toString()
|
||||||
|
.split("\n");
|
||||||
|
api[0] = "";
|
||||||
|
api[api.length - 1] = "";
|
||||||
|
var finapi = api.join("\n");
|
||||||
|
code = finapi + code;
|
||||||
|
return code;
|
||||||
|
}
|
||||||
|
|
||||||
|
function inject(serv,settings)
|
||||||
|
{
|
||||||
|
function log(msg){
|
||||||
|
serv.log("[MPE]: "+msg);
|
||||||
|
}
|
||||||
|
if(!settings.modpe){
|
||||||
|
log("Modpe support is not enabled, disabling injecting...");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
log("Modpe injection start...");
|
||||||
|
var modPePluginsDir = "./lib/modpePlugins";
|
||||||
|
log("Place your scripts in " + modPePluginsDir);
|
||||||
|
var modCount = 0;
|
||||||
|
var mods = [];
|
||||||
|
dir.readFiles(modPePluginsDir, {
|
||||||
|
match: /.js/
|
||||||
|
, exclude: /^\./
|
||||||
|
}, function (err, content, fname, next) {
|
||||||
|
if (err) throw err;
|
||||||
|
log("Converting " + fname);
|
||||||
|
content = convert(content);
|
||||||
|
var modname = fname.split("/")[fname.split("/")
|
||||||
|
.length - 1].split(".")[0];
|
||||||
|
log("Loading mod " + modname);
|
||||||
|
mods.push(requireFromString(content));
|
||||||
|
modCount++;
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
, function (err, files) {
|
||||||
|
if(err) return;
|
||||||
|
log('Loaded ' + modCount + " mods");
|
||||||
|
});
|
||||||
|
|
||||||
|
serv.on("newPlayer", function (player) {
|
||||||
|
injectPlayer(serv, player);
|
||||||
|
});
|
||||||
|
|
||||||
|
function injectPlayer(serv, player) {
|
||||||
|
log("Injected into player");
|
||||||
|
|
||||||
|
initSquid(player, serv);
|
||||||
|
newLevel();
|
||||||
|
|
||||||
|
player._client.on("block_dig", function (packet) {
|
||||||
|
var pos = new vec3(packet.location);
|
||||||
|
var currentlyDugBlock = serv.world.getBlock(pos);
|
||||||
|
if (packet.status == 0 && player.gameMode != 1)
|
||||||
|
startDestroyBlock(pos.x, pos.y, pos.z, 0);
|
||||||
|
else if (packet.status == 2)
|
||||||
|
destroyBlock(pos.x, pos.y, pos.z, 0);
|
||||||
|
else if (packet.status == 1)
|
||||||
|
console.log("Unused in ModPE");
|
||||||
|
else if (packet.status == 0 && player.gameMode == 1)
|
||||||
|
destroyBlock(pos.x, pos.y, pos.z, 0);
|
||||||
|
});
|
||||||
|
|
||||||
|
player._client.on('position', function (packet) {
|
||||||
|
modTick();
|
||||||
|
});
|
||||||
|
|
||||||
|
player._client.on("block_place", function (packet) {
|
||||||
|
if (packet.location.y < 0) return;
|
||||||
|
useItem(packet.location.x, packet.location.y, packet.location.z, packet.heldItem.blockId, serv.world.getBlockType(new vec3(packet.location.x, packet.location.y, packet.location.z)));
|
||||||
|
});
|
||||||
|
|
||||||
|
player._client.on('chat', function (packet) {
|
||||||
|
if(packet.message[0]=="/") {
|
||||||
|
var command = packet.message.slice(1);
|
||||||
|
procCmd(command);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function newLevel() {
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.newLevel();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function useItem(x, y, z, itemId, blockId) {
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.useItem(x, y, z, itemId, blockId);
|
||||||
|
element.exec("lastUsedItem=" + itemId);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function modTick() {
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.modTick();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function exec(code) {
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.exec(code);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function procCmd(command) {
|
||||||
|
player.chat("§2######### MODPE #########");
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.procCmd(command);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function startDestroyBlock(x, y, z, side) {
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.startDestroyBlock(x, y, z, side);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function destroyBlock(x, y, z, side) {
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.destroyBlock(x, y, z, side);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function initSquid(pl, sr) {
|
||||||
|
mods.forEach(function (element, index, array) {
|
||||||
|
element.initSquid(pl, sr);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -38,7 +38,8 @@
|
||||||
"request-promise": "^0.4.3",
|
"request-promise": "^0.4.3",
|
||||||
"requireindex": "~1.0.0",
|
"requireindex": "~1.0.0",
|
||||||
"vec3": "0.1.3",
|
"vec3": "0.1.3",
|
||||||
"spiralloop": "1.0.2"
|
"spiralloop": "1.0.2",
|
||||||
|
"node-dir": "~0.1.9"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@ module.exports = inject;
|
||||||
function inject(serv, player, options) {
|
function inject(serv, player, options) {
|
||||||
function handleCommand(command) {
|
function handleCommand(command) {
|
||||||
var results;
|
var results;
|
||||||
|
if (options.modpe)
|
||||||
|
player.chat("§1######## VANILLA ########");
|
||||||
if (options.commands[command])
|
if (options.commands[command])
|
||||||
player.chat("" + options.commands[command]);
|
player.chat("" + options.commands[command]);
|
||||||
else if (results = command.match(/^gamemode ([0-3])$/)) {
|
else if (results = command.match(/^gamemode ([0-3])$/)) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue