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
|
/*
* Copyright (C) 2022-2023 NotEnoughUpdates contributors
*
* This file is part of NotEnoughUpdates.
*
* NotEnoughUpdates is free software: you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* NotEnoughUpdates is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>.
*/
package io.github.moulberry.notenoughupdates.miscfeatures.profileviewer.bestiary
import io.github.moulberry.notenoughupdates.core.util.StringUtils
import io.github.moulberry.notenoughupdates.profileviewer.GuiProfileViewer
import io.github.moulberry.notenoughupdates.profileviewer.GuiProfileViewerPage
import io.github.moulberry.notenoughupdates.miscfeatures.profileviewer.bestiary.BestiaryData.calculateTotalBestiaryTiers
import io.github.moulberry.notenoughupdates.miscfeatures.profileviewer.bestiary.BestiaryData.hasMigrated
import io.github.moulberry.notenoughupdates.miscfeatures.profileviewer.bestiary.BestiaryData.parseBestiaryData
import io.github.moulberry.notenoughupdates.util.Constants
import io.github.moulberry.notenoughupdates.util.Utils
import net.minecraft.client.Minecraft
import net.minecraft.client.gui.ScaledResolution
import net.minecraft.client.renderer.GlStateManager
import net.minecraft.client.renderer.RenderHelper
import net.minecraft.item.ItemStack
import net.minecraft.util.EnumChatFormatting
import net.minecraft.util.ResourceLocation
import org.lwjgl.input.Mouse
import org.lwjgl.opengl.GL11
import java.awt.Color
/**
* Individual mob entry in the Bestiary
*/
data class Mob(
val name: String, val icon: ItemStack, val kills: Double, val deaths: Double, val mobLevelData: MobLevelData
)
/**
* A Bestiary category as defined in `constants/bestiary.json`
*/
data class Category(
val id: String,
val name: String,
val icon: ItemStack,
val mobs: List<Mob>,
val subCategories: List<Category>,
val familyData: FamilyData
)
/**
* Level data for one specific mob
*/
data class MobLevelData(
val level: Int, val maxLevel: Boolean, val progress: Double, val totalProgress: Double, val mobKillData: MobKillData
)
/**
* Kills data for one specific mob
*/
data class MobKillData(
val tierKills: Double, val tierReq: Double, val cappedKills: Double, val cap: Double
)
/**
* Family data for one specific category
*/
data class FamilyData(
val found: Int, val completed: Int, val total: Int
)
class BestiaryPage(instance: GuiProfileViewer?) : GuiProfileViewerPage(instance) {
private var selectedCategory = "dynamic"
private var selectedSubCategory = ""
private var tooltipToDisplay: MutableList<String> = mutableListOf()
private var bestiaryLevel = 0.0
private var computedCategories: MutableList<Category> = mutableListOf()
private var lastProfileName = ""
private val bestiaryTexture = ResourceLocation("notenoughupdates:pv_bestiary_tab.png")
private val mobListXCount = 9
private val mobListYCount = 5
private val mobListXPadding = (240 - mobListXCount * 20) / (mobListXCount + 1).toFloat()
private val mobListYPadding = (202 - mobListYCount * 20) / (mobListYCount + 1).toFloat()
override fun drawPage(mouseX: Int, mouseY: Int, partialTicks: Float) {
val guiLeft = GuiProfileViewer.getGuiLeft()
val guiTop = GuiProfileViewer.getGuiTop()
val selectedProfile = GuiProfileViewer.getSelectedProfile() ?: return
val profileInfo = selectedProfile.profileJson
val profileName = GuiProfileViewer.getProfileName()
if (!hasMigrated(profileInfo) || Constants.BESTIARY == null) {
Utils.drawStringCentered(
"${EnumChatFormatting.RED}No valid bestiary data!",
guiLeft + 431 / 2f,
(guiTop + 101).toFloat(),
true,
0
)
lastProfileName = profileName
return
}
// Do the initial parsing only once or on profile switch
if (computedCategories.isEmpty() || lastProfileName != profileName) {
computedCategories = parseBestiaryData(profileInfo)
bestiaryLevel = calculateTotalBestiaryTiers(computedCategories).toDouble()
}
if (computedCategories.isEmpty() || Constants.BESTIARY == null) {
Utils.drawStringCentered(
"${EnumChatFormatting.RED}No valid bestiary data!",
guiLeft + 431 / 2f,
(guiTop + 101).toFloat(),
true,
0
)
lastProfileName = profileName
return
}
lastProfileName = profileName
val bestiarySize = computedCategories.size
val bestiaryXSize = (350f / (bestiarySize - 1 + 0.0000001f)).toInt()
// Render the category list
for ((categoryXIndex, category) in computedCategories.withIndex()) {
Minecraft.getMinecraft().textureManager.bindTexture(GuiProfileViewer.pv_elements)
if (mouseX > guiLeft + 30 + bestiaryXSize * categoryXIndex &&
mouseX < guiLeft + 30 + bestiaryXSize * categoryXIndex + 20
&& mouseY > guiTop + 10 && mouseY < guiTop + 10 + 20
) {
tooltipToDisplay.add(EnumChatFormatting.GRAY.toString() + category.name)
if (Mouse.getEventButtonState() && selectedCategory != category.id) {
selectedCategory = category.id
Utils.playPressSound()
}
}
if (category.id == selectedCategory) {
Utils.drawTexturedRect(
(guiLeft + 30 + bestiaryXSize * categoryXIndex).toFloat(),
(guiTop + 10).toFloat(),
20f,
20f,
20 / 256f,
0f,
20 / 256f,
0f,
GL11.GL_NEAREST
)
} else {
Utils.drawTexturedRect(
(guiLeft + 30 + bestiaryXSize * categoryXIndex).toFloat(),
(guiTop + 10).toFloat(),
20f,
20f,
0f,
20 / 256f,
0f,
20 / 256f,
GL11.GL_NEAREST
)
}
Utils.drawItemStack(category.icon, guiLeft + 32 + bestiaryXSize * categoryXIndex, guiTop + 12)
}
val scaledResolution = ScaledResolution(Minecraft.getMinecraft())
val width = scaledResolution.scaledWidth
val height = scaledResolution.scaledHeight
Minecraft.getMinecraft().textureManager.bindTexture(bestiaryTexture)
Utils.drawTexturedRect(guiLeft.toFloat(), guiTop.toFloat(), 431f, 202f, GL11.GL_NEAREST)
GlStateManager.color(1f, 1f, 1f, 1f)
val color = Color(128, 128, 128, 255)
Utils.renderAlignedString(
EnumChatFormatting.RED.toString() + "Milestone: ",
"${EnumChatFormatting.GRAY}${(bestiaryLevel / 10)}",
(guiLeft + 280).toFloat(),
(guiTop + 50).toFloat(),
110
)
// Render the subcategories in the bottom right corner, if applicable
val selectedCategory = computedCategories.first { it.id == selectedCategory }
if (selectedCategory.subCategories.isNotEmpty()) {
if (selectedSubCategory == "") {
selectedSubCategory = selectedCategory.subCategories.first().id
}
Utils.renderShadowedString(
"${EnumChatFormatting.RED}Subcategories", (guiLeft + 317).toFloat(), (guiTop + 165).toFloat(), 1000
)
GlStateManager.color(1f, 1f, 1f, 1f)
|