aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/TooltipTweaks.java
blob: 30cb922d988f5141233fd235dbb8610b753588c2 (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
/*
 * Copyright (C) 2022-2024 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.options.separatesections;

import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.ConfigAccordionId;
import io.github.moulberry.moulconfig.annotations.ConfigEditorAccordion;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigEditorDraggableList;
import io.github.moulberry.moulconfig.annotations.ConfigEditorDropdown;
import io.github.moulberry.moulconfig.annotations.ConfigEditorKeybind;
import io.github.moulberry.moulconfig.annotations.ConfigEditorSlider;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
import org.lwjgl.input.Keyboard;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class TooltipTweaks {
	@ConfigOption(
		name = "Tooltip Price Information",
		desc = ""
	)
	@ConfigEditorAccordion(id = 0)
	public boolean priceInfoAccordion = false;

	@Expose
	@ConfigOption(
		name = "Price Info (Auc)",
		desc = "\u00a7rSelect what price information you would like to see on auctionable item tooltips\n" +
			"\u00a7eDrag text to rearrange"
	)
	@ConfigEditorDraggableList(
		exampleText = {
			"\u00a7eLowest BIN",
			"\u00a7eAH Price",
			"\u00a7eAH Sales",
			"\u00a7eRaw Craft Cost",
			"\u00a7eAVG Lowest BIN",
			"\u00a7eDungeon Costs"
		}
	)
	@ConfigAccordionId(id = 0)
	public List<Integer> priceInfoAuc = new ArrayList<>(Arrays.asList(0, 1, 2, 3, 5));

	@Expose
	@ConfigOption(
		name = "Price Info (Baz)",
		desc = "\u00a7rSelect what price information you would like to see on bazaar item tooltips\n" +
			"\u00a7eDrag text to rearrange"
	)
	@ConfigEditorDraggableList(
		exampleText = {
			"\u00a7eBuy",
			"\u00a7eSell",
			"\u00a7eBuy (Insta)",
			"\u00a7eSell (Insta)",
			"\u00a7eRaw Craft Cost",
			"\u00a7eInsta-Buys (Hourly)",
			"\u00a7eInsta-Sells (Hourly)",
			"\u00a7eInsta-Buys (Daily)",
			"\u00a7eInsta-Sells (Daily)",
			"\u00a7eInsta-Buys (Weekly)",
			"\u00a7eInsta-Sells (Weekly)"
		}
	)
	@ConfigAccordionId(id = 0)
	public List<Integer> priceInfoBaz = new ArrayList<>(Arrays.asList(0, 1, 2, 3, 4));

	@Expose
	@ConfigOption(
		name = "Show raw craft on items that can't be sold",
		desc = "Raw craft cost will be shown on items that can't be sold on the ah or bz"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 0)
	public boolean rawCraft = true;

	@Expose
	@ConfigOption(
		name = "Show NPC Sell price on Items",
		desc = "Display for how much items can be sold to NPC Shops"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 0)
	public boolean npcSellPrice = false;

	@Expose
	@ConfigOption(
		name = "Display donation status",
		desc = "Add an extra line on items you have already donated to the museum. Visit all pages of the museum to populate this list."
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 0)
	public boolean museumDonationStatus = false;

	@Expose
	@ConfigOption(
		name = "Use Short Number Format",
		desc = "Use Short Numbers (5.1m) instead of 5,130,302"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 0)
	public boolean shortNumberFormatPrices = false;

	@Expose
	@ConfigOption(
		name = "Price Info (Inv)",
		desc = "Show price information for items in your inventory"
	)
	@ConfigEditorBoolean
	public boolean showPriceInfoInvItem = true;

	@Expose
	@ConfigOption(
		name = "Price Info (AH)",
		desc = "Show price information for auctioned items"
	)
	@ConfigEditorBoolean
	public boolean showPriceInfoAucItem = true;

	@Expose
	@ConfigOption(
		name = "Price info keybind",
		desc = "Only show price info if holding a key."
	)
	@ConfigEditorBoolean
	public boolean disablePriceKey = false;

	@Expose
	@ConfigOption(
		name = "Show Price info Keybind",
		desc = "Hold this key to show a price info tooltip"
	)
	@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
	public int disablePriceKeyKeybind = Keyboard.KEY_NONE;

	@Expose
	@ConfigOption(
		name = "Always show required dungeon items",
		desc = "Always show the required items to upgrade to the next star if more than just Essence is needed"
	)
	@ConfigEditorBoolean
	public boolean alwaysShowRequiredItems = false;

	@Expose
	@ConfigOption(
		name = "Show reforge stats",
		desc = "Show statistics a reforge stone will apply."
	)
	@ConfigEditorBoolean
	public boolean showReforgeStats = true;

	@Expose
	@ConfigOption(
		name = "Show gemstone stats",
		desc = "Show statistics a gemstone will apply"
	)
	@ConfigEditorBoolean
	public boolean showGemstoneStats = true;

	@Expose
	@ConfigOption(
		name = "Hide default reforge stats",
		desc = "Hides the reforge stats only for Legendary items that Hypixel adds to the Reforge stones"
	)
	@ConfigEditorBoolean
	public boolean hideDefaultReforgeStats = true;

	@Expose
	@ConfigOption(
		name = "Missing Enchant List",
		desc = "Show which enchants are missing on an item when pressing LSHIFT"
	)
	@ConfigEditorBoolean
	public boolean missingEnchantList = true;

	@Expose
	@ConfigOption(
		name = "Resize tooltips",
		desc = "Resizes tooltips to make them readable"
	)
	@ConfigEditorDropdown(
		values = {"Default", "Small", "Normal", "Large", "Auto"}
	)
	public int guiScale = 0;

	@Expose
	@ConfigOption(
		name = "Custom tooltips",
		desc = "Replace tooltips with neu's custom tooltips"
	)
	@ConfigEditorBoolean
	public boolean customTooltips = false;

	@Expose
	@ConfigOption(
		name = "Scrollable Tooltips",
		desc = "Make tooltips text scrollable, by making some text lines disappear when using the mouse while hovering over an item."
	)
	@ConfigEditorBoolean
	public boolean scrollableTooltips = false;

	@Expose
	@ConfigOption(
		name = "Expand Pet Exp Requirement",
		desc = "Show which the full amount of pet xp required"
	)
	@ConfigEditorBoolean
	public boolean petExtendExp = false;

	@Expose
	@ConfigOption(
		name = "Tooltip Border Colours",
		desc = "Make the borders of tooltips match the rarity of the item (NEU Tooltips Only)"
	)
	@ConfigEditorBoolean
	public boolean tooltipBorderColours = true;

	@Expose
	@ConfigOption(
		name = "Tooltip Border Opacity",
		desc = "Change the opacity of the rarity highlight (NEU Tooltips Only)"
	)
	@ConfigEditorSlider(
		minValue = 0f,
		maxValue = 255f,
		minStep = 1f
	)
	public int tooltipBorderOpacity = 200;

	@Expose
	@ConfigOption(
		name = "Power Stone Stats",
		desc = "Show your real magical power and real stat increase on power stones"
	)
	@ConfigEditorBoolean
	public boolean powerStoneStats = true;

	@ConfigOption(
		name = "RNG Meter",
		desc = ""
	)
	@ConfigEditorAccordion(id = 1)
	public boolean rngMeter = false;

	@Expose
	@ConfigOption(
		name = "Fraction Display",
		desc = "Show the fraction instead of the percentage in the slayer and dungeon rng meter inventory"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 1)
	public boolean rngMeterFractionDisplay = true;

	@Expose
	@ConfigOption(
		name = " Profit Per Score/XP",
		desc = "Show the amount of coins per Score/XP in the rng meter inventory"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 1)
	public boolean rngMeterProfitPerUnit = true;

	@Expose
	@ConfigOption(
		name = "Dungeon/Slayer Needed Counter",
		desc = "Show the amount of dungeon runs or slayer bosses needed for the rng meter to fill up"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 1)
	public boolean rngMeterRunsNeeded = true;

	@Expose
	@ConfigOption(
		name = "Abiphone NPC Requirements",
		desc = "Show what the NPC needs in order to add him as contact in the abiphone"
	)
	@ConfigEditorBoolean
	public boolean abiphoneContactRequirements = true;

	@Expose
	@ConfigOption(
		name = "Abiphone NPC Location",
		desc = "Click on an NPC to set a marker at the location"
	)
	@ConfigEditorBoolean
	public boolean abiphoneContactMarker = true;

	@Expose
	@ConfigOption(
		name = "Essence Price In Shop",
		desc = "Show the essence price in the essence shop in the dungeon hub"
	)
	@ConfigEditorBoolean
	public boolean essencePriceInEssenceShop = true;

	@ConfigOption(
		name = "Garden Visitors",
		desc = ""
	)
	@ConfigEditorAccordion(id = 2)
	public boolean gardenVisitors = false;

	@Expose
	@ConfigOption(
		name = "Item Cost in Garden NPC",
		desc = "Show the item cost in garden NPC shop"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 2)
	public boolean gardenNpcPrice = true;

	@Expose
	@ConfigOption(
		name = "Copper value",
		desc = "Calculate how much coins is a copper worth"
	)
	@ConfigEditorBoolean
	@ConfigAccordionId(id = 2)
	public boolean copperCoins = true;