aboutsummaryrefslogtreecommitdiff
path: root/src/features/senitherGui/index.js
blob: b8265890880cb3c7820c0f24fe33626a7f130a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/// <reference types="../../../../CTAutocomplete" />
/// <reference lib="es2015" />
import { SoopyRenderEvent } from "../../../guimanager";
import ButtonWithArrowAndDescription from "../../../guimanager/GuiElement/ButtonWithArrowAndDescription";
import SoopyGuiElement from "../../../guimanager/GuiElement/SoopyGuiElement";
import SoopyTextElement from "../../../guimanager/GuiElement/SoopyTextElement";
import BoxWithLoading from "../../../guimanager/GuiElement/BoxWithLoading";
import Feature from "../../featureClass/class";
import GuiPage from "../soopyGui/GuiPage";
import { numberWithCommas, timeSince } from "../../utils/numberUtils";
import SoopyBoxElement from "../../../guimanager/GuiElement/SoopyBoxElement";
import SoopyMouseClickEvent from "../../../guimanager/EventListener/SoopyMouseClickEvent";
import TextBox from "../../../guimanager/GuiElement/TextBox";
import SoopyContentChangeEvent from "../../../guimanager/EventListener/SoopyContentChangeEvent";
import SoopyHoverChangeEvent from "../../../guimanager/EventListener/SoopyHoverChangeEvent";
import Dropdown from "../../../guimanager/GuiElement/Dropdown";
import SoopyMarkdownElement from "../../../guimanager/GuiElement/SoopyMarkdownElement"
import ButtonWithArrow from "../../../guimanager/GuiElement/ButtonWithArrow";
import SoopyRenderUpdateEvent from "../../../guimanager/EventListener/SoopyRenderUpdateEvent";

class SenitherGui extends Feature {
    constructor() {
        super()
    }

    onEnable() {
        this.initVariables()

        this.GuiPage = new SettingPage()

        this.registerStep(true, 5, () => {
            this.GuiPage.step.call(this.GuiPage)
        })
    }

    initVariables() {
        this.GuiPage = undefined
    }

    onDisable() {
        this.GuiPage.delete()

        this.initVariables()
    }
}


class SettingPage extends GuiPage {
    constructor() {
        super(7)

        this.name = "Senither Leaderboard"

        this.pages = [this.newPage(), this.newPage()]

        this.pages[0].addEvent(new SoopyRenderUpdateEvent().setHandler(() => { this.lastRender = Date.now() }))

        let senitherTitle = new SoopyTextElement().setText("§0Senither Leaderboard").setMaxTextScale(3).setLocation(0.1, 0.05, 0.8, 0.1)
        this.pages[0].addChild(senitherTitle)

        this.guildButton = new ButtonWithArrowAndDescription().setText("§0Guild Leaderboard").setLocation(0.1, 0.2, 0.35, 0.2)
        this.guildButton.addEvent(new SoopyMouseClickEvent().setHandler(() => {
            this.clickedGuildButton()
        }))
        this.pages[0].addChild(this.guildButton)
        this.playerButton = new ButtonWithArrowAndDescription().setText("§0Player Leaderboard").setLocation(0.55, 0.2, 0.35, 0.2)
        this.playerButton.addEvent(new SoopyMouseClickEvent().setHandler(() => {
            this.clickedPlayerButton()
        }))
        this.pages[0].addChild(this.playerButton)

        this.guildButton.setDesc("§0Guilds tracked: &7Loading...")
        this.playerButton.setDesc("§0Players tracked: &7Loading...")

        let leaveAndJoins = new SoopyTextElement().setText("§0Leave and joins").setMaxTextScale(2).setLocation(0.1, 0.45, 0.8, 0.1)
        this.pages[0].addChild(leaveAndJoins)
        this.leaveAndJoinsBox = new SoopyBoxElement().setLocation(0.1, 0.55, 0.8, 0.4)
        this.pages[0].addChild(this.leaveAndJoinsBox)

        this.leaveAndJoinsBox.addChild(new BoxWithLoading().setLocation(0.2, 0.2, 0.6, 0.6))


        this.playerPage = new SoopyGuiElement().setLocation(0, 0, 1, 1)
        let playerTitle = new SoopyTextElement().setText("§0Player Leaderboard").setMaxTextScale(3).setLocation(0.1, 0.05, 0.8, 0.1)
        this.playerPage.addChild(playerTitle)

        this.playerSearchBox = new TextBox().setPlaceholder("Click to search").setLocation(0.2, 0.15, 0.6, 0.1)
        this.playerPage.addChild(this.playerSearchBox)

        this.playerPage.addChild(new SoopyTextElement().setText("§7Pos").setLocation(0.1, 0.3, 0.075 * 0.8, 0.1))
        this.playerPage.addChild(new SoopyTextElement().setText("§7Name").setLocation(0.1 + 0.1 * 0.8, 0.3, 0.2 * 0.8, 0.1))
        this.playerPage.addChild(new SoopyTextElement().setText("§7Guild").setLocation(0.1 + 0.325 * 0.8, 0.3, 0.2 * 0.8, 0.1))
        let weight = new SoopyTextElement().setText("§0Weight").setLocation(0.1 + 0.55 * 0.8, 0.3, 0.2 * 0.8, 0.1).setLore(["Click to set sorting to weight"])
        this.playerPage.addChild(weight)
        weight.addEvent(new SoopyMouseClickEvent().setHandler(() => {
            this.playerSortThing = "weight"
            this.playerInformationUpdated = false
            this.playersBox.location.scroll.y.set(0, 100)
            this.playersBox._scrollAmount = 0

            dropdown.setColorPrefix("&7")
            weight.setText("§0Weight")
        }))

        let dropdown = new Dropdown().setOptions({
            "average_skill": "Average Skill",
            "average_skill_progress": "Average Skill Progress",
            "catacomb": "Catacomb",
            "catacomb_xp": "Catacomb Xp",
            "secrets_found": "Secrets Found",
            "healer": "Healer Level",
            "healer_xp": "Healer Xp",
            "mage": "Mage Level",
            "mage_xp": "Mage Xp",
            "berserk": "Berserk Level",
            "berserk_xp": "Berserk Xp",
            "archer": "Archer Level",
            "archer_xp": "Archer Xp",
            "tank": "Tank Level",
            "tank_xp": "Tank Xp",
            "total_slayer": "Total Slayer",
            "revenant_xp": "Revenant Xp",
            "tarantula_xp": "Tarantula Xp",
            "sven_xp": "Sven Xp",
            "enderman_xp": "Enderman Xp",
            "mining": "Mining Level",
            "mining_xp": "Mining Xp",
            "foraging": "Foraging Level",
            "foraging_xp": "Foraging Xp",
            "enchanting": "Enchanting Level",
            "enchanting_xp": "Enchanting Xp",
            "farming": "Farming Level",
            "farming_xp": "Farming Xp",
            "combat": "Combat Level",
            "combat_xp": "Combat Xp",
            "fishing": "Fishing Level",
            "fishing_xp": "Fishing Xp",
            "alchemy": "Alchemy Level",
            "alchemy_xp": "Alchemy Xp",
            "taming": "Taming Level",
            "taming_xp": "Taming Xp",
            "carpentry": "Carpentry Level",
            "carpentry_xp": "Carpentry Xp",
            "runecrafting": "Runecrafting Level",
            "runecrafting_xp": "Runecrafting Xp",
        }).setSelectedOption("average_skill_progress").setLocation(0.1 + 0.75 * 0.8, 0.3, 0.25 * 0.8, 0.1).renderBox(false).setColorPrefix("&7")

        this.playerPage.addChild(dropdown)
        dropdown.text.setMaxTextScale(1)

        this.playerSortThing = "weight"

        dropdown.addEvent(new SoopyContentChangeEvent().setHandler(newVal => {
            this.playerSortThing = newVal
            this.selectedPlayerVal = newVal
            this.playerInformationUpdated = false
            this.playersBox.location.scroll.y.set(0, 100)
            this.playersBox._scrollAmount = 0

            dropdown.setColorPrefix("&0")
            weight.setText("§7Weight")
        }))

        // element.addChild(new SoopyTextElement().setText("§0#"+(i+1)).setLocation(0,0,0.075,1))
        // element.addChild(new SoopyTextElement().setText("§0"+p.username).setLocation(0.1,0,0.2,1))
        // element.addChild(new SoopyTextElement().setText("§0"+p.guild_name).setLocation(0.325,0,0.2,1))
        // element.addChild(new SoopyTextElement().setText("§0"+numberWithCommas(p.weight)).setLocation(0.55,0,0.2,1))
        // element.addChild(new SoopyTextElement().setText("§0"+numberWithCommas(p[this.selectedPlayerVal])).setLocation(0.75,0,0.2,1))

        this.playersBox = new SoopyGuiElement().setLocation(0.1, 0.4, 0.8, 0.6).setScrollable(true)
        this.playerPage.addChild(this.playersBox)

        this.playerSearch = ""
        this.playerInformationUpdated = true
        this.playerSearchBox.text.addEvent(new SoopyContentChangeEvent().setHandler((newVal, oldVal, resetFun) => {
            if (newVal.includes("&")) {
                resetFun()
                return;
            }
            this.playerSearch = newVal

            this.playersBox.location.scroll.y.set(0, 100)
            this.playersBox._scrollAmount = 0

            this.playerInformationUpdated = false
        }))
        this.updatingPlayerInfo = false

        this.selectedPlayerVal = "average_skill_progress"

        this.guildData = undefined

        this.guildPage = new SoopyGuiElement().setLocation(0, 0, 1, 1)
        let guildTitle = new SoopyTextElement().setText("§0Guild Leaderboard").setMaxTextScale(3).setLocation(0.1, 0.05, 0.8, 0.1)
        this.guildPage.addChild(guildTitle)

        this.guildSearchBox = new TextBox().setPlaceholder("Click to search").setLocation(0.2, 0.15, 0.6, 0.1)
        this.guildPage.addChild(this.guildSearchBox)
        this.guildSearch = ""
        this.guildSearchBox.text.addEvent(new SoopyContentChangeEvent().setHandler((newVal, oldVal, resetFun) => {
            this.guildSearch = newVal

            this.guildsBox.location.scroll.y.set(0, 100)
            this.guildsBox._scrollAmount = 0

            this.regenGuildElements()
        }))


        this.guildSortThing = "weight.total"

        this.oldSortElm = undefined

        sortify = (sort, name, elm) => {
            elm.addEvent(new SoopyMouseClickEvent().setHandler(() => {
                if (this.oldSortElm) {
                    this.oldSortElm[0].setText("&7" + this.oldSortElm[1])
                }

                this.oldSortElm = [elm, name]
                this.guildSortThing = sort

                elm.setText("&0" + name)
                this.regenGuildElements()
            }))

            elm.setLore(["Click to sort by " + name.toLowerCase()])

            if (sort === this.guildSortThing) {
                this.oldSortElm = [elm, name]
                elm.setText("&0" + name)
            } else {
                elm.setText("&7" + name)
            }

            return elm
        }

        this.guildPage.addChild(new SoopyTextElement().setText("§7Pos").setLocation(0.1, 0.3, 0.075 * 0.8, 0.1))
        this.guildPage.addChild(new SoopyTextElement().setText("§7Name").setLocation(0.1 + 0.1 * 0.8, 0.3, 0.2 * 0.8, 0.1))
        this.guildPage.addChild(sortify("weight.total", "Weight", new SoopyTextElement().setLocation(0.1 + 0.325 * 0.8, 0.3, 0.15 * 0.8, 0.1)))
        this.guildPage.addChild(sortify("members", "Members", new SoopyTextElement().setLocation(0.1 + 0.475 * 0.8, 0.3, (0.1 + 0.05 / 4) * 0.8, 0.1)))
        this.guildPage.addChild(sortify("average_skill_progress", "Skill", new SoopyTextElement().setLocation(0.1 + 0.5875 * 0.8, 0.3, (0.1 + 0.05 / 4) * 0.8, 0.1)))
        this.guildPage.addChild(sortify("average_slayer", "Slayer", new SoopyTextElement().setLocation(0.1 + 0.7 * 0.8, 0.3, (0.15 + 0.05 / 4) * 0.8, 0.1)))
        this.guildPage.addChild(sortify("average_catacomb", "Catacombs", new SoopyTextElement().setLocation(0.1 + 0.8625 * 0.8, 0.3, (0.1 + 0.05 / 4) * 0.8, 0.1)))

        this.guildsBox = new SoopyGuiElement().setLocation(0.1, 0.4, 0.8, 0.6).setScrollable(true)
        this.guildPage.addChild(this.guildsBox)



        this.finaliseLoading()
    }

    step() {
        if (!this.playerInformationUpdated && !this.updatingPlayerInfo) {
            this.loadPlayerInformation()
        }

        let pbHeight = this.playersBox.location.getHeightExact()
        let pbY = this.playersBox.location.getYExact()
        this.playersBox.children.forEach(b => {
            b.visable = true
            // console.log(this.playersBox._scrollAmount)
            if (b.location.getYExact() + 0.3 * pbHeight < pbY) {
                // console.log(2)
                b.visable = false
            }
            if (b.location.getYExact() - 0.1 * pbHeight > pbHeight + pbY) {
                // console.log(3)
                b.visable = false
            }
        })

        let gbHeight = this.guildsBox.location.getHeightExact()
        let gbY = this.guildsBox.location.getYExact()
        this.guildsBox.children.forEach(b => {
            b.visable = true
            // console.log(this.playersBox._scrollAmount)
            if (b.location.getYExact() + 0.3 * gbHeight < gbY) {
                // console.log(2)
                b.visable = false
            }
            if (b.location.getYExact() - 0.1 * gbHeight > gbHeight + gbY) {
                // console.log(3)
                b.visable = false
            }
        })
    }

    clickedGuildButton() {
        this.pages[1].clearChildren()
        this.pages[1].addChild(this.guildPage)

        this.guildSearchBox.setText("")
        this.guildSearch = ""

        // this.playersBox.location.scroll.y.set(0, 0)
        // this.playersBox._scrollAmount = 0

        this.goToPage(2)

        this.loadGuildInformation()
    }

    async loadGuildInformation() {
        let data = awaitfetch("https://hypixel-app-api.senither.com/leaderboard/").json()
        this.guildData = data.data

        this.regenGuildElements()
    }

    regenGuildElements() {
        this.guildsBox.clearChildren()

        let yPosThing = 0

        this.guildData.sort((a, b) => {
            return getThing(b, this.guildSortThing.split(".")) - getThing(a, this.guildSortThing.split("."))
        }).forEach((g, i) => {

            if (g.name.toLowerCase().includes(this.guildSearch.toLowerCase())) {
                let element = new SoopyBoxElement().setLocation(0, yPosThing * 0.175, 1, 0.15)

                element.addEvent(new SoopyHoverChangeEvent().setHandler(() => {
                    if (element.hovered) {
                        if (element.color[0] + element.color[1] + element.color[2] < 0.5 * (255 + 255 + 255)) {
                            element.setColorOffset(10, 10, 10, 100)
                        } else {
                            element.setColorOffset(-10, -10, -10, 100)
                        }
                    } else {
                        element.setColorOffset(0, 0, 0, 100)
                    }
                }))

                element.addChild(new SoopyTextElement().setText("§0#" + (i + 1)).setLocation(0, 0, 0.075, 1))
                element.addChild(new SoopyTextElement().setText("§0" + g.name).setLocation(0.1, 0, 0.2, 1))
                element.addChild(new SoopyTextElement().setText("§0" + numberWithCommas(Math.floor(g.weight.total))).setLocation(0.325, 0, 0.15, 1).setLore(["§6" + numberWithCommas(g.weight.skill) + " §7skill weight", "§6" + numberWithCommas(g.weight.slayer) + " §7slayer weight", "§6" + numberWithCommas(g.weight.catacomb) + " §7dungeons weight", "§6" + g.weight.multiplier + " §7multiplier"]))
                element.addChild(new SoopyTextElement().setText("§0" + numberWithCommas(g.members)).setLocation(0.475, 0, 0.1, 1))
                element.addChild(new SoopyTextElement().setText("§0" + numberWithCommas(g.average_skill_progress)).setLocation(0.5875, 0, 0.1, 1))
                element.addChild(new SoopyTextElement().setText("§0" + numberWithCommas(Math.floor(g.average_slayer))).setLocation(0.7, 0, 0.15, 1))
                element.addChild(new SoopyTextElement().setText("§0" + numberWithCommas(g.average_catacomb)).setLocation(0.8625, 0, 0.1, 1))
                // element.addChild(new SoopyTextElement().setText("§0"+numberWithCommas(g.members)).setLocation(0.75,0,0.2,1))

                this.guildsBox.addChild(element)

                yPosThing++
            }
            // this.guildPage.addChild(new SoopyTextElement().setText("§0Pos").setLocation(0.1,0.3,0.075*0.8,0.1))
            // this.guildPage.addChild(new SoopyTextElement().setText("§0Name").setLocation(0.1+0.1*0.8,0.3,0.2*0.8,0.1))
            // this.guildPage.addChild(new SoopyTextElement().setText("§0Weight").setLocation(0.1+0.325*0.8,0.3,0.15*0.8,0.1))
            // this.guildPage.addChild(new SoopyTextElement().setText("§0Members").setLocation(0.1+0.475*0.8,0.3,(0.1+0.05/4)*0.8,0.1))
            // this.guildPage.addChild(new SoopyTextElement().setText("§0Skill").setLocation(0.1+0.5875*0.8,0.3,(0.1+0.05/4)*0.8,0.1))
            // this.guildPage.addChild(new SoopyTextElement().setText("§0Slayer").setLocation(0.1+0.7*0.8,0.3,(0.15+0.05/4)*0.8,0.1))
            // this.guildPage.addChild(new SoopyTextElement().setText("§0Catacombs").setLocation(0.1+0.8625*0.8,0.3,(0.1+0.05/4)*0.8,0.1))
        })
    }

    clickedPlayerButton() {
        this.pages[1].clearChildren()
        this.pages[1].addChild(this.playerPage)

        this.playerSearchBox.setText("")
        this.playerSearch = ""

        this.playersBox.location.scroll.y.set(0, 0)
        this.playersBox._scrollAmount = 0

        this.goToPage(2)

        this.playerInformationUpdated = false
    }

    async loadPlayerInformation() {
        if (this.updatingPlayerInfo) return
        this.updatingPlayerInfo = true
        this.playerInformationUpdated = true
        let players = await fetch("https://hypixel-app-api.senither.com/leaderboard/players?perPage=100&page=1&sort=" + this.playerSortThing + (this.playerSearch ? "&username=" + this.playerSearch : "")).json()
        this.playersBox.clearChildren()
        players.data.forEach((p, i) => {
            let element = new SoopyBoxElement().setLocation(0, i * 0.175, 1, 0.15)

            element.addEvent(new SoopyHoverChangeEvent().setHandler(() => {
                if (element.hovered) {
                    if (element.color[0] + element.color[1] + element.color[2] < 0.5 * (255 + 255 + 255)) {
                        element.setColorOffset(10, 10, 10, 100)
                    } else {
                        element.setColorOffset(-10, -10, -10, 100)
                    }
                } else {
                    element.setColorOffset(0, 0, 0, 100)
                }
            }))

            element.addChild(new SoopyTextElement().setText("§0#" + (i + 1)).setLocation(0, 0, 0.075, 1))
            element.addChild(new SoopyTextElement().setText("§0" + p.username).setLocation(0.1, 0, 0.2, 1))
            element.addChild(new SoopyTextElement().setText("§0" + p.guild_name).setLocation(0.325, 0, 0.2, 1))
            element.addChild(new SoopyTextElement().setText("§0" + numberWithCommas(p.weight)).setLocation(0.55, 0, 0.2, 1))
            element.addChild(new SoopyTextElement().setText("§0" + numberWithCommas(p[this.selectedPlayerVal])).setLocation(0.75, 0, 0.2, 1))

            this.playersBox.addChild(element)
        })
        this.updatingPlayerInfo = false
    }

    async loadFirstPageInformation() {
        let stats = await fetch("https://hypixel-app-api.senither.com/leaderboard/stats").json()
        this.guildButton.setDesc("§0Guilds tracked: " + numberWithCommas(stats.data.guilds))
        this.playerButton.setDesc("§0Players tracked: " + numberWithCommas(stats.data.players))

        let leaveAndJoins = await fetch("https://hypixel-app-api.senither.com/leaderboard/history?perPage=10&page=1").json()
        this.leaveAndJoinsBox.clearChildren()
        let y = 0
        leaveAndJoins.data.forEach(elm => {
            this.leaveAndJoinsBox.addChild(new SoopyTextElement().setText(`§1${elm.username} §7${elm.type === 0 ? "joined" : "left"} §1${elm.guild_name}`).setLocation(0.05, y, 0.8, 0.1))
            this.leaveAndJoinsBox.addChild(new SoopyTextElement().setText(`§7${timeSince(elm.created_at)} ago`).setLocation(0.8125, y, 0.175, 0.1))
            y += 0.1
        })
    }


    onOpen() {
        this.loadFirstPageInformation()

        let sidebar = new SoopyGuiElement().setLocation(0.1, 0.1, 0.8, 0.8).setScrollable(true).enableFrameBuffer()
        this.openSidebarPage(sidebar)
        let markdown = new SoopyMarkdownElement().setText("# NOTE: \nAll credit for the idea, design of this gui, and loading of data goes to Senither who made the original leaderboard (https://hypixel-leaderboard.senither.com/)\n\nThis is just a recode of that to allow for checking the leaderboard from in-game")
        sidebar.addChild(markdown)

        sidebar.addChild(new ButtonWithArrow().setText("§0Open Leaderboard Website").setLocation(0.1, markdown.getHeight() + 0.05, 0.8, 0.2).addEvent(new SoopyMouseClickEvent().setHandler(() => {
            java.awt.Desktop.getDesktop().browse(new java.net.URI("https://hypixel-leaderboard.senither.com/"));
        })))

        sidebar.setScrollable(true)


        sidebar.dirtyFrameBuffer(1000)
    }
}

module.exports = {
    class: new SenitherGui()
}

function getThing(obj, stack) {
    while (stack.length > 0) {
        obj = obj[stack.shift()]
    }

    return obj
}