diff options
Diffstat (limited to 'features')
-rw-r--r-- | features/cosmetics/index.js | 5 | ||||
-rw-r--r-- | features/networthGUI/index.js | 138 | ||||
-rw-r--r-- | features/networthGUI/metadata.json | 8 | ||||
-rw-r--r-- | features/stat_next_to_name/index.js | 12 |
4 files changed, 158 insertions, 5 deletions
diff --git a/features/cosmetics/index.js b/features/cosmetics/index.js index 55e16fc..1eb6ff8 100644 --- a/features/cosmetics/index.js +++ b/features/cosmetics/index.js @@ -50,7 +50,7 @@ class Cosmetics extends Feature { this.registerStep(false, 60*10, ()=>{ new Thread(()=>{this.loadCosmeticsData.call(this)}).start() }) - this.registerEvent("renderEntity", this.renderEntity) + // this.registerEvent("renderEntity", this.renderEntity) this.loadedRenderEntity = false if(global.soopyV2Server.userCosmeticPermissions){ @@ -89,7 +89,7 @@ class Cosmetics extends Feature { this.cosmeticsData = data this.playerHasACosmeticA = !!data[Player.getUUID().toString().replace(/-/g,"")] if(this.playerHasACosmeticA && !this.loadedRenderEntity){ - // this.registerEvent("renderEntity", this.renderEntity) + this.registerEvent("renderEntity", this.renderEntity) this.loadedRenderEntity = true } @@ -123,6 +123,7 @@ class Cosmetics extends Feature { step(){ this.scanForNewCosmetics() + console.log(this.loadedCosmetics.length) } scanForNewCosmetics(){ this.loadCosmeticsForPlayer(Player) diff --git a/features/networthGUI/index.js b/features/networthGUI/index.js new file mode 100644 index 0000000..c027393 --- /dev/null +++ b/features/networthGUI/index.js @@ -0,0 +1,138 @@ +/// <reference types="../../../CTAutocomplete" /> +/// <reference lib="es2015" /> +import SoopyTextElement from "../../../guimanager/GuiElement/SoopyTextElement"; +import Feature from "../../featureClass/class"; +import GuiPage from "../soopyGui/GuiPage"; +import BoxWithLoading from "../../../guimanager/GuiElement/BoxWithLoading"; +import BoxWithTextAndDescription from "../../../guimanager/GuiElement/BoxWithTextAndDescription"; +import SoopyGuiElement from "../../../guimanager/GuiElement/SoopyGuiElement"; +import TextBox from "../../../guimanager/GuiElement/TextBox"; +import SoopyKeyPressEvent from "../../../guimanager/EventListener/SoopyKeyPressEvent"; +import { numberWithCommas } from "../../utils/numberUtils"; +import { firstLetterWordCapital } from "../../utils/stringUtils"; +import SoopyBoxElement from "../../../guimanager/GuiElement/SoopyBoxElement"; +import SoopyMarkdownElement from "../../../guimanager/GuiElement/SoopyMarkdownElement"; + +class NetworthGui extends Feature { + constructor() { + super() + } + + onEnable(){ + this.initVariables() + + this.GuiPage = new NetworthPage() + + } + + initVariables(){ + this.GuiPage = undefined + } + + onDisable(){ + this.initVariables() + } +} + + +class NetworthPage extends GuiPage { + constructor(){ + super(7) + + this.name = "Networth" + + this.pages = [this.newPage()] + + this.pages[0].addChild(new SoopyTextElement().setText("§0Networth").setMaxTextScale(3).setLocation(0.1, 0.05, 0.8, 0.1)) + this.pages[0].addChild(new SoopyTextElement().setText("§0(This is in beta and may be inaccurate)").setMaxTextScale(3).setLocation(0.1, 0.15, 0.8, 0.075)) + + this.nameInput = new TextBox().setPlaceholder("Click to search").setLocation(0.1, 0.225, 0.8, 0.1) + this.pages[0].addChild(this.nameInput) + + this.nameInput.addEvent(new SoopyKeyPressEvent().setHandler((key, keyId)=>{ + if(keyId === 28){ + new Thread(()=>{ + this.playerLoad = this.nameInput.text.text + this.nameInput.setText("") + this.updateData(this.playerLoad) + }).start() + } + })) + + this.statArea = new SoopyGuiElement().setLocation(0.05, 0.325, 0.9, 0.675).setScrollable(true) + this.pages[0].addChild(this.statArea) + + this.loadingElm = new BoxWithLoading().setLocation(0.35, 0.4, 0.3, 0.2) + this.errorElm = new BoxWithTextAndDescription().setLocation(0.2, 0.3, 0.6, 0.4).setText("Error!").setDesc("An error occured while loading the data!") + this.statArea.addChild(this.loadingElm) + + this.playerLoad = undefined + + this.finaliseLoading() + } + + updateData(player){ + + this.statArea.clearChildren() + this.statArea.addChild(this.loadingElm) + + let playerData = JSON.parse(FileLib.getUrlContent("http://soopymc.my.to/api/v2/player/" + player)) + + if(player !== this.playerLoad) return + + if(!playerData.success){ + this.statArea.clearChildren() + this.statArea.addChild(this.errorElm) + this.errorElm.setText("§0" + playerData.error.name) + this.errorElm.setDesc("§0" + playerData.error.description) + return + } + + let skyblockData = JSON.parse(FileLib.getUrlContent("http://soopymc.my.to/api/v2/player_skyblock/" + playerData.data.uuid + "?items")) + + if(player !== this.playerLoad) return + + this.statArea.clearChildren() + + if(!skyblockData.success){ + this.statArea.addChild(this.errorElm) + this.errorElm.setText("§0" + skyblockData.error.name) + this.errorElm.setDesc("§0" + skyblockData.error.description) + return + } + + let nwData = skyblockData.data.profiles[skyblockData.data.stats.bestProfileId].members[playerData.data.uuid].soopyNetworth + this.statArea.addChild(new SoopyTextElement().setText(playerData.data.stats.nameWithPrefix).setMaxTextScale(2).setLocation(0.1, 0.05, 0.8, 0.1)) + this.statArea.addChild(new SoopyTextElement().setText("§0Networth (Highest weight profile): §2$" + numberWithCommas(Math.round(nwData.networth)).replace(/,/g, "§7,§2")).setMaxTextScale(1.5).setLocation(0.1, 0.15, 0.8, 0.1)) + this.statArea.addChild(new SoopyTextElement().setText("§0Purse: §2$" + numberWithCommas(Math.round(nwData.purse)).replace(/,/g, "§7,§2") + "§0 | Bank: §2$" + numberWithCommas(Math.round(nwData.bank)).replace(/,/g, "§7,§2") + "§0 | Sack: §2$" + numberWithCommas(Math.round(nwData.sack)).replace(/,/g, "§7,§2")).setMaxTextScale(1.5).setLocation(0.1, 0.25, 0.8, 0.1)) + + Object.keys(nwData.categories).sort((a, b)=>nwData.categories[b].total-nwData.categories[a].total).forEach((name, i)=>{ + let renderName = firstLetterWordCapital(name.replace(/_/g, " ")) + + let data = nwData.categories[name] + + let box = new SoopyBoxElement().setLocation(i%2===0?0:0.525, 0.45 + Math.floor(i/2)*0.35, 0.475, 0.25) + + box.addChild(new SoopyMarkdownElement().setLocation(0,0,1,1).setText(data.items.filter(i=>i.name).splice(0,5).map(a=>{ + let name = (a.name.startsWith("§f") || a.name.startsWith("[Lvl "))?a.name.replace("§f","§7"):a.name + return "§0" + name + ": §2$" + numberWithCommas(Math.round(a.p)).replace(/,/g, "§7,§2") + }).join("\n"))) + + let boxName = new SoopyTextElement().setLocation(i%2===0?0:0.525, 0.4+Math.floor(i/2)*0.35, 0.475, 0.05).setText("§0" + renderName + "§0: §2$" + numberWithCommas(Math.round(data.total)).replace(/,/g, "§7,§2")) + + this.statArea.addChild(box) + this.statArea.addChild(boxName) + }) + } + + onOpen(){ + new Thread(()=>{ + this.playerLoad = Player.getName() + this.updateData(Player.getName()) + }).start() + } +} + +module.exports = { + class: new NetworthGui() +}
\ No newline at end of file diff --git a/features/networthGUI/metadata.json b/features/networthGUI/metadata.json new file mode 100644 index 0000000..3123559 --- /dev/null +++ b/features/networthGUI/metadata.json @@ -0,0 +1,8 @@ +{ + "name": "Streams gui", + "description": "Gui for skyblock streams", + "isHidden": true, + "isTogglable": false, + "defaultEnabled": true, + "sortA": 0 +}
\ No newline at end of file diff --git a/features/stat_next_to_name/index.js b/features/stat_next_to_name/index.js index 1c1b2ab..a182515 100644 --- a/features/stat_next_to_name/index.js +++ b/features/stat_next_to_name/index.js @@ -17,14 +17,16 @@ class StatNextToName extends Feature { "weight": "Weight", "catacombsLevel": "Catacombs Level", "skillAvg": "Skill Average", - "totalSlayer": "Total Slayer Exp" + "totalSlayer": "Total Slayer Exp", + "networth": "Networth" }) this.decimals = { "weight": 0, "catacombsLevel": 2, "skillAvg": 2, - "totalSlayer": 0 + "totalSlayer": 0, + "networth": "small" } this.userStats = {} @@ -78,7 +80,11 @@ class StatNextToName extends Feature { nameTagString += " &2[" if(stats.usingSoopyv2) nameTagString += "&d⚝&2" if(stats.exists && stats[this.statToShow.getValue()]){ - nameTagString += numberUtils.numberWithCommas(stats[this.statToShow.getValue()].toFixed(this.decimals[this.statToShow.getValue()])) + if(this.decimals[this.statToShow.getValue()] === "small"){ + nameTagString += numberUtils.addNotation("oneLetters",Math.round(stats[this.statToShow.getValue()])) + }else{ + nameTagString += numberUtils.numberWithCommas(stats[this.statToShow.getValue()].toFixed(this.decimals[this.statToShow.getValue()])) + } }else{ nameTagString += "?" } |