diff --git a/index.js b/index.js index 14edf4a..ad2a7d8 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,14 @@ const UUID = Java.type('java.util.UUID'); const Location = Java.type('org.bukkit.Location'); const Runnable = Java.extend(Java.type('java.lang.Runnable')); const ArrayList = Java.type('java.util.ArrayList'); +const NBTTagInt = nms.NBTTagInt; +const NBTTagByte = nms.NBTTagByte; const NBTTagList = nms.NBTTagList; +const NBTTagLong = nms.NBTTagLong; +const NBTTagFloat = nms.NBTTagFloat; +const NBTTagShort = nms.NBTTagShort; +const NBTTagDouble = nms.NBTTagDouble; +const NBTTagString = nms.NBTTagString; const SecureRandom = Java.type('java.security.SecureRandom'); const NBTTagCompound = nms.NBTTagCompound; const NBTTagIntArray = nms.NBTTagIntArray; @@ -14,7 +21,7 @@ const NBTTagByteArray = nms.NBTTagByteArray; const tasks = []; const crypto = new SecureRandom(); -export const _ = { +const _ = { array: (object, provider) => { if (typeof object === 'number') { const output = []; @@ -129,6 +136,8 @@ export const _ = { return output; }, dist: (source, target, flat) => { + typeof source.getLocation === 'function' && (source = source.getLocation()); + typeof target.getLocation === 'function' && (target = target.getLocation()); if (source instanceof Location && target instanceof Location && source.getWorld() !== target.getWorld()) { return Infinity; } @@ -137,18 +146,30 @@ export const _ = { var deltaZ = source.getZ() - target.getZ(); return Math.sqrt(deltaX * deltaX + deltaY * deltaY + deltaZ * deltaZ); }, + drop: (source, item, option) => { + typeof source.getLocation === 'function' && (source = source.getLocation()); + const method = `dropItem${option ? 'Naturally' : ''}`; + return source.getWorld()[method](source, item); + }, entries: (object) => { return _.keys(object).map((key) => { return { key: key, value: object[key] }; }); }, extend: (object, ...objects) => { - return Object.assign(object, ...objects); - }, - flat: (array) => { - return array.filter((entry) => { - return entry; - }); + return Object.assign( + object, + ...objects.map((object) => { + return _.object(Object.getOwnPropertyNames(object), (property) => ({ [property]: object[property] })); + }) + ); + }, + flat: (array, consumer) => { + consumer || + (consumer = (entry) => { + return _.def(entry); + }); + return array.filter(consumer); }, interval: (script, period) => { const state = { iteration: null }; @@ -206,7 +227,7 @@ export const _ = { }, mirror: (options) => { options || (options = {}); - const mirror = _.extend(options.array || [], { + const mirror = Object.assign(options.array || [], { add: (...args) => (options.add(...args), _.mirror(options).get()), remove: (...args) => (options.remove(...args), _.mirror(options).get()), clear: (...args) => (options.clear(...args), _.mirror(options).get()), @@ -228,31 +249,37 @@ export const _ = { (consumer = (entry, index) => { return { [entry.key || index]: entry.value || entry }; }); - return _.extend({}, ..._.flat(array.map(consumer))); + return Object.assign({}, ..._.flat(array.map(consumer))); }, parse: (data) => { - console.log(core.output(data.value)); try { switch (data.type) { case 'None': return data.value; case 'Int': + return NBTTagInt.a(data.value); case 'Float': + return NBTTagFloat.a(data.value); case 'Double': + return NBTTagDouble.a(data.value); case 'Long': + return NBTTagLong.a(data.value); case 'Short': + return NBTTagShort.a(data.value); case 'Byte': + return NBTTagByte.a(data.value); case 'String': - const temp = new NBTTagCompound(); - temp[`set${data.type}`]('x', data.value); - return temp.get('x'); + return NBTTagString.a(data.value); case 'End': return null; case 'List': const list = new NBTTagList(); data.value.forEach((entry) => list.add(_.parse(entry))); + return list; case 'ByteArray': const bytes = new NBTTagByteArray(_.collect()); + global.test = bytes; + global.test2 = data.value; data.value.forEach((entry) => bytes.add(_.parse(entry))); return bytes; case 'IntArray': @@ -264,9 +291,9 @@ export const _ = { _.entries(data.value).forEach((entry) => compound.set(entry.key, _.parse(entry.value))); return compound; } - } catch (error) { - global.test = data; - console.log(error.stack); + } catch (err0) { + console.error(err0); + throw err0; } }, pascal: (string, separator) => { @@ -322,7 +349,7 @@ export const _ = { }); }, polyfill: () => { - _.extend(global, { + Object.assign(global, { atob: (string) => { return _.base.decode(string); }, @@ -381,13 +408,25 @@ export const _ = { const type = data.getClass().getCanonicalName().split('NBTTag')[1]; switch (type) { case 'Int': + value = data.asInt(); + break; case 'Float': + value = data.asFloat(); + break; case 'Double': + value = data.asDouble(); + break; case 'Long': + value = data.asLong(); + break; case 'Short': + value = data.asShort(); + break; case 'Byte': + value = data.asByte(); + break; case 'String': - value = data[`as${type}`](); + value = data.asString(); break; case 'End': value = null; @@ -441,7 +480,7 @@ export const _ = { strain: (object, consumer) => { consumer || (consumer = (entry) => { - return entry.value; + return _.def(entry.value); }); return _.object(_.entries(object).filter(consumer)); }, @@ -484,3 +523,5 @@ core.event('org.bukkit.event.player.PlayerJoinEvent', (event) => { core.event('org.bukkit.event.server.PluginDisableEvent', (event) => { event.getPlugin() === core.plugin && tasks.forEach((task) => task.cancel()); }); + +core.export(_); diff --git a/index.min.js b/index.min.js index 59b4312..f4a3099 100644 --- a/index.min.js +++ b/index.min.js @@ -1 +1 @@ -const nms=eval(`Packages.net.minecraft.server.${server.getClass().getCanonicalName().split(".")[3]}`),UUID=Java.type("java.util.UUID"),Location=Java.type("org.bukkit.Location"),Runnable=Java.extend(Java.type("java.lang.Runnable")),ArrayList=Java.type("java.util.ArrayList"),NBTTagList=nms.NBTTagList,SecureRandom=Java.type("java.security.SecureRandom"),NBTTagCompound=nms.NBTTagCompound,NBTTagIntArray=nms.NBTTagIntArray,NBTTagByteArray=nms.NBTTagByteArray,tasks=[],crypto=new SecureRandom;export const _={array:(object,provider)=>{if("number"==typeof object){const output=[];let index=0;for(;indexoutput.push(entry));else if("function"==typeof object.forEachRemaining)object.forEachRemaining(entry=>output.push(entry));else if("number"==typeof object.length){let index=0;for(;index{let index=0,result="";for(;index>6&3,e=63&c;b?c||(e=64):d=e=64,result+=_.base.characters.charAt(a>>2&63),result+=_.base.characters.charAt((3&a)<<4|b>>4&15),result+=_.base.characters.charAt(d),result+=_.base.characters.charAt(e)}return result},decode:string=>{let index=0,result="";for(;index>2&15,f=(3&c)<<6|63&_.base.characters.indexOf(string.charAt(index++));result+=String.fromCharCode((63&a)<<2|b>>4&3),result+=e?String.fromCharCode(e):"",result+=f?String.fromCharCode(f):""}return result}},camel:(string,separator)=>{const pascal=_.pascal(string,separator);return _.lower(pascal[0])+pascal.slice(1)},clamp:(number,min,max)=>numbermax?max:number,collect:(...array)=>{const output=new ArrayList;return array.forEach(entry=>{output.add(entry)}),output},color:string=>string.replace(/(&)/g,"§").replace(/(§§)/g,"&"),def:object=>![void 0,null].includes(object)&&("number"!=typeof object||object==object),define:(object,consumer)=>{consumer||(consumer=entry=>({get:()=>entry.value,set:value=>{entry.value=value}}));const output={};return _.entries(object).forEach(entry=>{const info=consumer(entry);info&&Object.defineProperty(output,entry.key,{get(){if(info.get)return info.get()},set(value){info.set&&info.set(value)}})}),output},dist:(source,target,flat)=>{if(source instanceof Location&&target instanceof Location&&source.getWorld()!==target.getWorld())return 1/0;var deltaX=source.getX()-target.getX(),deltaY=flat?0:source.getY()-target.getY(),deltaZ=source.getZ()-target.getZ();return Math.sqrt(deltaX*deltaX+deltaY*deltaY+deltaZ*deltaZ)},entries:object=>_.keys(object).map(key=>({key:key,value:object[key]})),extend:(object,...objects)=>Object.assign(object,...objects),flat:array=>array.filter(entry=>entry),interval:(script,period)=>{const state={iteration:null},loop=()=>{try{script()}catch(error){console.error(error)}state.iteration=_.timeout(loop,period)};state.iteration=_.timeout(loop,period);const output={cancel:()=>state.iteration.cancel()};return tasks.push(output),output},iterable:object=>!!object&&("function"==typeof object[Symbol.iterator]&&"string"!=typeof object),key:(object,value)=>_.keys(object)[_.values(object).indexOf(value)],keys:object=>Object.keys(object),lower:string=>string.toLowerCase(),match:(object,filter)=>{switch(typeof filter){case"undefined":return!0;case"function":return filter(object);case"object":switch(_.type(filter)){case"Array":return filter.map(entry=>_.match(object,entry)).includes(!0);case"Object":return!_.keys(filter).map(key=>_.match(object[key],filter[key])).includes(!1);default:return object===filter}default:return object===filter}},mirror:options=>{options||(options={});const mirror=_.extend(options.array||[],{add:(...args)=>(options.add(...args),_.mirror(options).get()),remove:(...args)=>(options.remove(...args),_.mirror(options).get()),clear:(...args)=>(options.clear(...args),_.mirror(options).get()),get:(...args)=>options.get&&options.get(mirror,...args)});return{get:()=>mirror,set:value=>{mirror.clear(),value.forEach(mirror.add)}}},nms:nms,object:(array,consumer)=>(consumer||(consumer=(entry,index)=>({[entry.key||index]:entry.value||entry})),_.extend({},..._.flat(array.map(consumer)))),parse:data=>{console.log(core.output(data.value));try{switch(data.type){case"None":return data.value;case"Int":case"Float":case"Double":case"Long":case"Short":case"Byte":case"String":const temp=new NBTTagCompound;return temp[`set${data.type}`]("x",data.value),temp.get("x");case"End":return null;case"List":const list=new NBTTagList;data.value.forEach(entry=>list.add(_.parse(entry)));case"ByteArray":const bytes=new NBTTagByteArray(_.collect());return data.value.forEach(entry=>bytes.add(_.parse(entry))),bytes;case"IntArray":const ints=new NBTTagIntArray(_.collect());return data.value.forEach(entry=>ints.add(_.parse(entry))),ints;case"Compound":const compound=new NBTTagCompound;return _.entries(data.value).forEach(entry=>compound.set(entry.key,_.parse(entry.value))),compound}}catch(error){global.test=data,console.log(error.stack)}},pascal:(string,separator)=>separator?string.split(separator).map(chunk=>_.pascal(chunk)).join(""):_.upper(string[0])+string.slice(1),player:target=>{let uuid=void 0;const players=Object.assign({},core.data("grakkit/players"));if(target instanceof UUID)uuid=target;else if("string"==typeof target){const online=server.getPlayer(target);if(players[target])uuid=_.uuid(players[target].uuid);else if(online)uuid=online.getUniqueId();else if(_.array(server.getOfflinePlayers()).forEach(offline=>{const stored=offline.getUniqueId();void 0===uuid&&[stored.toString(),offline.getName()].includes(target)&&(uuid=stored)}),void 0===uuid)try{uuid=_.uuid(target)}catch(error){uuid=server.getOfflinePlayer(target).getUniqueId()}}else if("string"==typeof target.uuid)uuid=_.uuid(target.uuid);else if("function"==typeof target.uuid)uuid=_.uuid(target.uuid());else{if("function"!=typeof target.getUniqueId){if(target.constructor===Array)return target.map(_.player);throw`FrameworkError: Cannot convert ${core.output(target)} to standardized player notation!`}uuid=target.getUniqueId()}return Object.assign(players[uuid.toString()]||{uuid:uuid.toString()},{online:server.getPlayer(uuid),offline:server.getOfflinePlayer(uuid)})},polyfill:()=>{_.extend(global,{atob:string=>_.base.decode(string),btoa:string=>_.base.encode(string),clearImmediate:index=>{tasks[index].cancel()},clearInterval:index=>{tasks[index].cancel()},clearTimeout:index=>{tasks[index].cancel()},setImmediate:script=>(_.timeout(script,0),tasks.length-1),setInterval:(script,period)=>(_.interval(script,period||1),tasks.length-1),setTimeout:(script,period)=>(_.timeout(script,period||1),tasks.length-1)})},rand:{base:()=>(crypto.nextInt()+2147483648)/4294967296,range:(min,max)=>Math.floor(_.rand.base()*(max-min+1))+min,threshold:max=>_.rand.base()_.iterable(object)||"string"==typeof object?object[_.rand.range(0,_.array(object).length-1)]:_.rand.entry(_.keys(object))},raw:string=>string.replace(/(&)/g,"&&").replace(/(§)/g,"&"),serialize:data=>{if([null,void 0].includes(data))return{type:"None",value:data};{let value=void 0;const type=data.getClass().getCanonicalName().split("NBTTag")[1];switch(type){case"Int":case"Float":case"Double":case"Long":case"Short":case"Byte":case"String":value=data[`as${type}`]();break;case"End":value=null;break;case"List":case"ByteArray":case"IntArray":value=_.array(data).map(_.serialize);break;case"Compound":value=_.object(_.array(data.map.entrySet()),entry=>({[entry.getKey()]:_.serialize(entry.getValue())}))}return{type:type,value:value}}},simplify:(...context)=>{let output=null;const object=context[0];switch(_.type(object)){case"Array":output=[];for(let entry of object)context.includes(entry)||output.push(_.simplify(entry,...context));output=_.flat(output),output.length||(output=null);break;case"Object":output={};for(let key of _.keys(object))context.includes(object[key])||(output[key]=_.simplify(object[key],...context));output=_.strain(output),_.keys(output).length||(output=null);break;default:output=object}return output},splice:(string,separator,...index)=>string.split(separator).slice(...index).join(separator),strain:(object,consumer)=>(consumer||(consumer=entry=>entry.value),_.object(_.entries(object).filter(consumer))),timeout:(script,period)=>{const state={cancel:!1},runnable=new Runnable({run:()=>state.cancel||script()});server.getScheduler().runTaskLater(core.plugin,runnable,Math.ceil(period/50));const output={cancel:()=>state.cancel=!0};return tasks.push(output),output},type:object=>{const type=toString.apply(object).split(" ")[1].slice(0,-1);return"Object"===type?object.constructor.name:type},upper:string=>string.toUpperCase(),uuid:string=>string instanceof UUID?string:_.def(string)?UUID.fromString(string):UUID.randomUUID(),values:object=>Object.values(object)};core.event("org.bukkit.event.player.PlayerJoinEvent",event=>{const player=event.getPlayer(),address=player.getAddress().getAddress().getHostAddress(),name=player.getName(),uuid=player.getUniqueId().toString(),info={address:address,name:name,uuid:uuid};Object.assign(core.data("grakkit/players"),{[address]:info,[name]:info,[uuid]:info})}),core.event("org.bukkit.event.server.PluginDisableEvent",event=>{event.getPlugin()===core.plugin&&tasks.forEach(task=>task.cancel())}); \ No newline at end of file +const nms=eval(`Packages.net.minecraft.server.${server.getClass().getCanonicalName().split(".")[3]}`),UUID=Java.type("java.util.UUID"),Location=Java.type("org.bukkit.Location"),Runnable=Java.extend(Java.type("java.lang.Runnable")),ArrayList=Java.type("java.util.ArrayList"),NBTTagInt=nms.NBTTagInt,NBTTagByte=nms.NBTTagByte,NBTTagList=nms.NBTTagList,NBTTagLong=nms.NBTTagLong,NBTTagFloat=nms.NBTTagFloat,NBTTagShort=nms.NBTTagShort,NBTTagDouble=nms.NBTTagDouble,NBTTagString=nms.NBTTagString,SecureRandom=Java.type("java.security.SecureRandom"),NBTTagCompound=nms.NBTTagCompound,NBTTagIntArray=nms.NBTTagIntArray,NBTTagByteArray=nms.NBTTagByteArray,tasks=[],crypto=new SecureRandom,_={array:(object,provider)=>{if("number"==typeof object){const output=[];let index=0;for(;indexoutput.push(entry));else if("function"==typeof object.forEachRemaining)object.forEachRemaining(entry=>output.push(entry));else if("number"==typeof object.length){let index=0;for(;index{let index=0,result="";for(;index>6&3,e=63&c;b?c||(e=64):d=e=64,result+=_.base.characters.charAt(a>>2&63),result+=_.base.characters.charAt((3&a)<<4|b>>4&15),result+=_.base.characters.charAt(d),result+=_.base.characters.charAt(e)}return result},decode:string=>{let index=0,result="";for(;index>2&15,f=(3&c)<<6|63&_.base.characters.indexOf(string.charAt(index++));result+=String.fromCharCode((63&a)<<2|b>>4&3),result+=e?String.fromCharCode(e):"",result+=f?String.fromCharCode(f):""}return result}},camel:(string,separator)=>{const pascal=_.pascal(string,separator);return _.lower(pascal[0])+pascal.slice(1)},clamp:(number,min,max)=>numbermax?max:number,collect:(...array)=>{const output=new ArrayList;return array.forEach(entry=>{output.add(entry)}),output},color:string=>string.replace(/(&)/g,"§").replace(/(§§)/g,"&"),def:object=>![void 0,null].includes(object)&&("number"!=typeof object||object==object),define:(object,consumer)=>{consumer||(consumer=entry=>({get:()=>entry.value,set:value=>{entry.value=value}}));const output={};return _.entries(object).forEach(entry=>{const info=consumer(entry);info&&Object.defineProperty(output,entry.key,{get(){if(info.get)return info.get()},set(value){info.set&&info.set(value)}})}),output},dist:(source,target,flat)=>{if("function"==typeof source.getLocation&&(source=source.getLocation()),"function"==typeof target.getLocation&&(target=target.getLocation()),source instanceof Location&&target instanceof Location&&source.getWorld()!==target.getWorld())return 1/0;var deltaX=source.getX()-target.getX(),deltaY=flat?0:source.getY()-target.getY(),deltaZ=source.getZ()-target.getZ();return Math.sqrt(deltaX*deltaX+deltaY*deltaY+deltaZ*deltaZ)},drop:(source,item,option)=>{"function"==typeof source.getLocation&&(source=source.getLocation());const method=`dropItem${option?"Naturally":""}`;return source.getWorld()[method](source,item)},entries:object=>_.keys(object).map(key=>({key:key,value:object[key]})),extend:(object,...objects)=>Object.assign(object,...objects.map(object=>_.object(Object.getOwnPropertyNames(object),property=>({[property]:object[property]})))),flat:(array,consumer)=>(consumer||(consumer=entry=>_.def(entry)),array.filter(consumer)),interval:(script,period)=>{const state={iteration:null},loop=()=>{try{script()}catch(error){console.error(error)}state.iteration=_.timeout(loop,period)};state.iteration=_.timeout(loop,period);const output={cancel:()=>state.iteration.cancel()};return tasks.push(output),output},iterable:object=>!!object&&("function"==typeof object[Symbol.iterator]&&"string"!=typeof object),key:(object,value)=>_.keys(object)[_.values(object).indexOf(value)],keys:object=>Object.keys(object),lower:string=>string.toLowerCase(),match:(object,filter)=>{switch(typeof filter){case"undefined":return!0;case"function":return filter(object);case"object":switch(_.type(filter)){case"Array":return filter.map(entry=>_.match(object,entry)).includes(!0);case"Object":return!_.keys(filter).map(key=>_.match(object[key],filter[key])).includes(!1);default:return object===filter}default:return object===filter}},mirror:options=>{options||(options={});const mirror=Object.assign(options.array||[],{add:(...args)=>(options.add(...args),_.mirror(options).get()),remove:(...args)=>(options.remove(...args),_.mirror(options).get()),clear:(...args)=>(options.clear(...args),_.mirror(options).get()),get:(...args)=>options.get&&options.get(mirror,...args)});return{get:()=>mirror,set:value=>{mirror.clear(),value.forEach(mirror.add)}}},nms:nms,object:(array,consumer)=>(consumer||(consumer=(entry,index)=>({[entry.key||index]:entry.value||entry})),Object.assign({},..._.flat(array.map(consumer)))),parse:data=>{try{switch(data.type){case"None":return data.value;case"Int":return NBTTagInt.a(data.value);case"Float":return NBTTagFloat.a(data.value);case"Double":return NBTTagDouble.a(data.value);case"Long":return NBTTagLong.a(data.value);case"Short":return NBTTagShort.a(data.value);case"Byte":return NBTTagByte.a(data.value);case"String":return NBTTagString.a(data.value);case"End":return null;case"List":const list=new NBTTagList;return data.value.forEach(entry=>list.add(_.parse(entry))),list;case"ByteArray":const bytes=new NBTTagByteArray(_.collect());return global.test=bytes,global.test2=data.value,data.value.forEach(entry=>bytes.add(_.parse(entry))),bytes;case"IntArray":const ints=new NBTTagIntArray(_.collect());return data.value.forEach(entry=>ints.add(_.parse(entry))),ints;case"Compound":const compound=new NBTTagCompound;return _.entries(data.value).forEach(entry=>compound.set(entry.key,_.parse(entry.value))),compound}}catch(err0){throw console.error(err0),err0}},pascal:(string,separator)=>separator?string.split(separator).map(chunk=>_.pascal(chunk)).join(""):_.upper(string[0])+string.slice(1),player:target=>{let uuid=void 0;const players=Object.assign({},core.data("grakkit/players"));if(target instanceof UUID)uuid=target;else if("string"==typeof target){const online=server.getPlayer(target);if(players[target])uuid=_.uuid(players[target].uuid);else if(online)uuid=online.getUniqueId();else if(_.array(server.getOfflinePlayers()).forEach(offline=>{const stored=offline.getUniqueId();void 0===uuid&&[stored.toString(),offline.getName()].includes(target)&&(uuid=stored)}),void 0===uuid)try{uuid=_.uuid(target)}catch(error){uuid=server.getOfflinePlayer(target).getUniqueId()}}else if("string"==typeof target.uuid)uuid=_.uuid(target.uuid);else if("function"==typeof target.uuid)uuid=_.uuid(target.uuid());else{if("function"!=typeof target.getUniqueId){if(target.constructor===Array)return target.map(_.player);throw`FrameworkError: Cannot convert ${core.output(target)} to standardized player notation!`}uuid=target.getUniqueId()}return Object.assign(players[uuid.toString()]||{uuid:uuid.toString()},{online:server.getPlayer(uuid),offline:server.getOfflinePlayer(uuid)})},polyfill:()=>{Object.assign(global,{atob:string=>_.base.decode(string),btoa:string=>_.base.encode(string),clearImmediate:index=>{tasks[index].cancel()},clearInterval:index=>{tasks[index].cancel()},clearTimeout:index=>{tasks[index].cancel()},setImmediate:script=>(_.timeout(script,0),tasks.length-1),setInterval:(script,period)=>(_.interval(script,period||1),tasks.length-1),setTimeout:(script,period)=>(_.timeout(script,period||1),tasks.length-1)})},rand:{base:()=>(crypto.nextInt()+2147483648)/4294967296,range:(min,max)=>Math.floor(_.rand.base()*(max-min+1))+min,threshold:max=>_.rand.base()_.iterable(object)||"string"==typeof object?object[_.rand.range(0,_.array(object).length-1)]:_.rand.entry(_.keys(object))},raw:string=>string.replace(/(&)/g,"&&").replace(/(§)/g,"&"),serialize:data=>{if([null,void 0].includes(data))return{type:"None",value:data};{let value=void 0;const type=data.getClass().getCanonicalName().split("NBTTag")[1];switch(type){case"Int":value=data.asInt();break;case"Float":value=data.asFloat();break;case"Double":value=data.asDouble();break;case"Long":value=data.asLong();break;case"Short":value=data.asShort();break;case"Byte":value=data.asByte();break;case"String":value=data.asString();break;case"End":value=null;break;case"List":case"ByteArray":case"IntArray":value=_.array(data).map(_.serialize);break;case"Compound":value=_.object(_.array(data.map.entrySet()),entry=>({[entry.getKey()]:_.serialize(entry.getValue())}))}return{type:type,value:value}}},simplify:(...context)=>{let output=null;const object=context[0];switch(_.type(object)){case"Array":output=[];for(let entry of object)context.includes(entry)||output.push(_.simplify(entry,...context));output=_.flat(output),output.length||(output=null);break;case"Object":output={};for(let key of _.keys(object))context.includes(object[key])||(output[key]=_.simplify(object[key],...context));output=_.strain(output),_.keys(output).length||(output=null);break;default:output=object}return output},splice:(string,separator,...index)=>string.split(separator).slice(...index).join(separator),strain:(object,consumer)=>(consumer||(consumer=entry=>_.def(entry.value)),_.object(_.entries(object).filter(consumer))),timeout:(script,period)=>{const state={cancel:!1},runnable=new Runnable({run:()=>state.cancel||script()});server.getScheduler().runTaskLater(core.plugin,runnable,Math.ceil(period/50));const output={cancel:()=>state.cancel=!0};return tasks.push(output),output},type:object=>{const type=toString.apply(object).split(" ")[1].slice(0,-1);return"Object"===type?object.constructor.name:type},upper:string=>string.toUpperCase(),uuid:string=>string instanceof UUID?string:_.def(string)?UUID.fromString(string):UUID.randomUUID(),values:object=>Object.values(object)};core.event("org.bukkit.event.player.PlayerJoinEvent",event=>{const player=event.getPlayer(),address=player.getAddress().getAddress().getHostAddress(),name=player.getName(),uuid=player.getUniqueId().toString(),info={address:address,name:name,uuid:uuid};Object.assign(core.data("grakkit/players"),{[address]:info,[name]:info,[uuid]:info})}),core.event("org.bukkit.event.server.PluginDisableEvent",event=>{event.getPlugin()===core.plugin&&tasks.forEach(task=>task.cancel())}),core.export(_); \ No newline at end of file