forked from IhanaMies/LootValue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.cs
568 lines (477 loc) · 16.5 KB
/
Plugin.cs
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
using System;
using System.Reflection;
using EFT;
using EFT.UI.DragAndDrop;
using EFT.InventoryLogic;
using EFT.UI;
using Aki.Reflection.Patching;
using Aki.Reflection.Utils;
using CurrencyUtil = GClass2334;
using static LootValue.Globals;
using BepInEx;
using BepInEx.Logging;
using BepInEx.Configuration;
using UnityEngine;
using UnityEngine.EventSystems;
using System.Collections.Generic;
using Newtonsoft.Json;
using static UnityEngine.EventSystems.EventTrigger;
using static System.Collections.Specialized.BitVector32;
using System.Threading.Tasks;
namespace LootValue
{
[BepInPlugin(pluginGuid, pluginName, pluginVersion)]
public class LootValueMod : BaseUnityPlugin
{
// BepinEx
public const string pluginGuid = "IhanaMies.LootValue";
public const string pluginName = "LootValue";
public const string pluginVersion = "1.2.2";
private void Awake()
{
Config.SaveOnConfigSet = true;
logger = Logger;
SetupConfig();
new TraderPatch().Enable();
new ShowTooltipPatch().Enable();
new GridItemOnPointerEnterPatch().Enable();
new GridItemOnPointerExitPatch().Enable();
new ItemViewOnClickPatch().Enable();
Config.SettingChanged += Config_SettingChanged;
}
private void Config_SettingChanged(object sender, SettingChangedEventArgs e)
{
ConfigEntryBase entry = e.ChangedSetting;
logger.LogInfo($"Settings changed - {entry.Definition.Section}:{entry.Definition.Key}");
if (entry.Definition.Key == "Custom colours")
{
if (UseCustomColours.Value)
{
logger.LogInfo($"Read colors");
SlotColoring.ReadColors(CustomColours.Value);
}
}
if (entry.Definition.Key == "Custom colours" || entry.Definition.Key == "Use custom colours")
{
if (UseCustomColours.Value)
{
SlotColoring.ReadColors(CustomColours.Value);
}
else
{
SlotColoring.UseDefaultColors();
}
}
}
internal static ConfigEntry<bool> UseCustomColours;
internal static ConfigEntry<string> CustomColours;
internal static ConfigEntry<bool> EnableQuickSell;
internal static ConfigEntry<bool> EnableFleaQuickSell;
internal static ConfigEntry<bool> OneButtonQuickSell;
internal static ConfigEntry<bool> OneButtonQuickSellFlea;
internal static ConfigEntry<bool> OnlyShowTotalValue;
internal static ConfigEntry<bool> ShowFleaPriceBeforeAccess;
internal static ConfigEntry<bool> IgnoreFleaMaxOfferCount;
private void SetupConfig()
{
OneButtonQuickSell = Config.Bind("Quick Sell", "One button quick sell", false);
OneButtonQuickSellFlea = Config.Bind("Quick Sell", "One button quick only. Sell FIR item to trader if flea orders are full", false);
OnlyShowTotalValue = Config.Bind("Quick Sell", "Only show total value", false);
EnableQuickSell = Config.Bind("Quick Sell", "Enable quick sell", true, "Hold Left Alt + Left Shift while left clicking an item to quick sell either to flea (if enabled) or trader which ever has better value");
EnableFleaQuickSell = Config.Bind("Quick Sell", "Enable flea quick sell", true);
ShowFleaPriceBeforeAccess = Config.Bind("Flea", "Show flea price before access", false);
IgnoreFleaMaxOfferCount = Config.Bind("Flea", "Ignore flea max offer count", false);
UseCustomColours = Config.Bind("Colours", "Use custom colours", false);
CustomColours = Config.Bind("Colours", "Custom colours", "[5000:#ff0000],[10000:#ffff00],[:#ffffff]",
@"Colouring bound is marked as [int:hexcolor] e.q. [lower than this value : will be this hexcolor]
The values should incremental from lower to higher and last value should be valueless.
For example [5000:#ff0000],[10000:#ffff00],[:#ffffff] means three different bounds.
Anything under 5000 rubles, will be red.
Anything under 10000 rubles, will be yellow.
The third is marked as the ultimate color. Anything over 10000 rubles would be white.
"
);
if (UseCustomColours.Value)
SlotColoring.ReadColors(CustomColours.Value);
}
}
internal class TraderPatch : ModulePatch
{
protected override MethodBase GetTargetMethod() => typeof(TraderClass).GetConstructors()[0];
[PatchPostfix]
private static void PatchPostfix(ref TraderClass __instance)
{
__instance.UpdateSupplyData();
}
}
internal static class PlayerExtensions
{
private static readonly FieldInfo InventoryControllerField =
typeof(Player).GetField("_inventoryController", BindingFlags.NonPublic | BindingFlags.Instance);
public static InventoryControllerClass GetInventoryController(this Player player) =>
InventoryControllerField.GetValue(player) as InventoryControllerClass;
}
internal static class Globals
{
public static bool isStashItemHovered = false;
public static ISession Session => ClientAppUtils.GetMainApp().GetClientBackEndSession();
public static ManualLogSource logger { get; set; }
public static Item hoveredItem;
public static TraderOffer GetBestTraderOffer(Item item)
{
if (!Session.Profile.Examined(item))
return null;
switch (item.Owner?.OwnerType)
{
case EOwnerType.RagFair:
case EOwnerType.Trader:
if (item.StackObjectsCount > 1 || item.UnlimitedCount)
{
item = item.CloneItem();
item.StackObjectsCount = 1;
item.UnlimitedCount = false;
}
break;
}
TraderOffer highestOffer = null;
if (item is Weapon weapon)
{
foreach (Mod mod in weapon.Mods)
{
TraderOffer tempHighestOffer = null;
foreach (TraderClass trader in Session.Traders)
{
if (!trader.Info.Available || trader.Info.Disabled || !trader.Info.Unlocked)
continue;
if (GetTraderOffer(mod, trader) is TraderOffer offer)
{
if (tempHighestOffer == null || offer.Price > tempHighestOffer.Price)
tempHighestOffer = offer;
//Item might be part of a weapon
//Try to get an offer from the template
if (tempHighestOffer == null)
{
Item tempItem = new Item(mod.Id, mod.Template);
if (GetTraderOffer(tempItem, trader) is TraderOffer offer2)
if (tempHighestOffer == null || offer2.Price > tempHighestOffer.Price)
tempHighestOffer = offer2;
}
}
}
if (tempHighestOffer != null)
{
if (highestOffer == null)
highestOffer = tempHighestOffer;
else
highestOffer.Price += tempHighestOffer.Price;
}
}
}
else
{
foreach (TraderClass trader in Session.Traders)
{
if (!trader.Info.Available || trader.Info.Disabled || !trader.Info.Unlocked)
continue;
if (GetTraderOffer(item, trader) is TraderOffer offer)
if (highestOffer == null || offer.Price > highestOffer.Price)
highestOffer = offer;
}
}
return highestOffer;
}
public class FleaPriceRequest
{
public string templateId;
public FleaPriceRequest(string templateId) => this.templateId = templateId;
}
private static TraderOffer GetTraderOffer(Item item, TraderClass trader)
{
var result = trader.GetUserItemPrice(item);
if (result == null)
return null;
return new TraderOffer(
trader.Id,
trader.LocalizedName,
result.Value.Amount,
CurrencyUtil.GetCurrencyCharById(result.Value.CurrencyId),
trader.GetSupplyData().CurrencyCourses[result.Value.CurrencyId],
item.StackObjectsCount
);
}
public sealed class TraderOffer
{
public string TraderId;
public string TraderName;
public int Price;
public string Currency;
public double Course;
public int Count;
public TraderOffer(string traderId, string traderName, int price, string currency, double course, int count)
{
TraderId = traderId;
TraderName = traderName;
Price = price;
Currency = currency;
Course = course;
Count = count;
}
}
}
public class ItemShowTooltipPatch : ModulePatch
{
protected override MethodBase GetTargetMethod() => typeof(GridItemView).GetMethod("ShowTooltip", BindingFlags.Instance | BindingFlags.NonPublic);
[PatchPrefix]
static void Prefix(GridItemView __instance)
{
if (__instance.Item != null)
hoveredItem = __instance.Item;
}
}
internal class GridItemOnPointerEnterPatch : ModulePatch
{
protected override MethodBase GetTargetMethod() => typeof(GridItemView).GetMethod("OnPointerEnter", BindingFlags.Instance | BindingFlags.Public);
[PatchPrefix]
static void Prefix(GridItemView __instance, PointerEventData eventData)
{
if (__instance.Item != null)
{
hoveredItem = __instance.Item;
Globals.isStashItemHovered = true;
}
}
}
internal class GridItemOnPointerExitPatch : ModulePatch
{
protected override MethodBase GetTargetMethod() => typeof(GridItemView).GetMethod("OnPointerExit", BindingFlags.Instance | BindingFlags.Public);
[PatchPrefix]
static void Prefix(GridItemView __instance, PointerEventData eventData)
{
Globals.isStashItemHovered = false;
hoveredItem = null;
}
}
public class SellItemToTraderRequest
{
public string ItemId;
public string TraderId;
public int Price;
public SellItemToTraderRequest(string itemId, string traderId, int price)
{
this.ItemId = itemId;
this.TraderId = traderId;
this.Price = price;
}
}
internal class ItemViewOnClickPatch : ModulePatch
{
protected override MethodBase GetTargetMethod() => typeof(GridItemView).GetMethod("OnClick", BindingFlags.Instance | BindingFlags.NonPublic);
private static HashSet<string> itemSells = new HashSet<string>();
[PatchPrefix]
static async void Prefix(GridItemView __instance, PointerEventData.InputButton button, Vector2 position, bool doubleClick)
{
Item item = __instance.Item;
if (itemSells.Contains(item.Id))
return;
itemSells.Add(item.Id);
if (LootValueMod.EnableQuickSell.Value && !GClass1716.InRaid && item != null)
{
if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.LeftAlt))
{
//One button quicksell
if (LootValueMod.OneButtonQuickSell.Value)
{
if (button == PointerEventData.InputButton.Left)
{
TraderOffer bestTraderOffer = GetBestTraderOffer(item);
double? fleaPrice = null;
if (item.MarkedAsSpawnedInSession)
fleaPrice = FleaPriceCache.FetchPrice(item.TemplateId);
if (bestTraderOffer != null)
{
if (fleaPrice.HasValue && fleaPrice.Value > bestTraderOffer.Price)
{
if (!HasFleaSlotToSell(item))
{
if (LootValueMod.OneButtonQuickSellFlea.Value)
{
NotificationManagerClass.DisplayWarningNotification("Maximum number of flea offers reached. Sell to trader");
TraderClass traderClass = Globals.Session.GetTrader(bestTraderOffer.TraderId);
if (traderClass.CurrentAssortment == null)
await traderClass.RefreshAssortment(true, true);
TraderAssortmentControllerClass tacc = traderClass.CurrentAssortment;
tacc.PrepareToSell(item, new LocationInGrid(2, 3, ItemRotation.Horizontal));
tacc.Sell();
}
else
{
NotificationManagerClass.DisplayWarningNotification("Maximum number of flea offers reached");
}
itemSells.Remove(item.Id);
return;
}
var g = new GClass1711()
{
count = fleaPrice.Value - 1, //undercut by 1 ruble
_tpl = "5449016a4bdc2d6f028b456f" //id of ruble
};
GClass1711[] gs = new GClass1711[1];
gs[0] = g;
Globals.Session.RagFair.AddOffer(false, new string[1] { item.Id }, gs, null);
if (!HasFleaSlotToSell(item))
NotificationManagerClass.DisplayWarningNotification("Maximum number of flea offers reached");
}
else
{
TraderClass traderClass = Globals.Session.GetTrader(bestTraderOffer.TraderId);
if (traderClass.CurrentAssortment == null)
await traderClass.RefreshAssortment(true, true);
TraderAssortmentControllerClass tacc = traderClass.CurrentAssortment;
tacc.PrepareToSell(item, new LocationInGrid(2, 3, ItemRotation.Horizontal));
tacc.Sell();
}
}
}
}
else //Two button quicksell
{
if (button == PointerEventData.InputButton.Left)
{
await SellToTrader(item);
}
else if (button == PointerEventData.InputButton.Right)
{
SellToFlea(item);
}
}
}
}
itemSells.Remove(item.Id);
}
static async Task SellToTrader(Item item)
{
try
{
TraderOffer bestTraderOffer = GetBestTraderOffer(item);
if (bestTraderOffer != null)
{
TraderClass traderClass = Globals.Session.GetTrader(bestTraderOffer.TraderId);
if (traderClass.CurrentAssortment == null)
await traderClass.RefreshAssortment(true, true);
TraderAssortmentControllerClass tacc = traderClass.CurrentAssortment;
tacc.PrepareToSell(item, new LocationInGrid(2, 3, ItemRotation.Horizontal));
tacc.Sell();
}
itemSells.Remove(item.Id);
}
catch (Exception ex)
{
itemSells.Remove(item.Id);
logger.LogInfo($"Something fucked up: {ex.Message}");
logger.LogInfo($"{ex.InnerException.Message}");
}
}
static bool HasFleaSlotToSell(Item item)
{
return LootValueMod.IgnoreFleaMaxOfferCount.Value || Session.RagFair.MyOffersCount < Session.RagFair.GetMaxOffersCount(Session.RagFair.MyRating);
}
static void SellToFlea(Item item)
{
if (!item.MarkedAsSpawnedInSession || !Session.RagFair.Available)
return;
double? fleaPrice = FleaPriceCache.FetchPrice(item.TemplateId);
if (!HasFleaSlotToSell(item))
{
NotificationManagerClass.DisplayWarningNotification("Maximum number of flea offers reached");
return;
}
if (Session.RagFair.Available && fleaPrice.HasValue)
{
var g = new GClass1711()
{
count = fleaPrice.Value - 1, //undercut by 1 ruble
_tpl = "5449016a4bdc2d6f028b456f" //id of ruble
};
GClass1711[] gs = new GClass1711[1];
gs[0] = g;
Globals.Session.RagFair.AddOffer(false, new string[1] { item.Id }, gs, null);
}
}
}
internal class ShowTooltipPatch : ModulePatch
{
protected override MethodBase GetTargetMethod() => typeof(SimpleTooltip).GetMethod("Show", BindingFlags.Instance | BindingFlags.Public);
[PatchPrefix]
private static void Prefix(ref string text, ref float delay, SimpleTooltip __instance)
{
delay = 0;
bool isFleaEligible = false;
double lowestFleaOffer = 0;
if (hoveredItem != null)
{
TraderOffer bestTraderOffer = GetBestTraderOffer(hoveredItem);
//For weapons we want to fetch each mods flea price, if eligible
if (hoveredItem is Weapon weapon)
{
double totalFleaPrice = 0;
foreach (Mod mod in weapon.Mods)
{
if (mod.MarkedAsSpawnedInSession)
{
double? fleaPrice = FleaPriceCache.FetchPrice(mod.TemplateId);
if (fleaPrice.HasValue)
{
isFleaEligible = true;
totalFleaPrice += fleaPrice.Value * mod.StackObjectsCount;
}
}
}
if (totalFleaPrice > 0)
lowestFleaOffer = totalFleaPrice;
}
else if (hoveredItem.MarkedAsSpawnedInSession)
{
double? fleaPrice = FleaPriceCache.FetchPrice(hoveredItem.TemplateId);
if (fleaPrice.HasValue)
{
isFleaEligible = true;
lowestFleaOffer = fleaPrice.Value * hoveredItem.StackObjectsCount;
}
}
int fleaPricePerSlot = 0, traderPricePerSlot = 0;
var size = hoveredItem.CalculateCellSize();
int slots = size.X * size.Y;
if (isFleaEligible)
fleaPricePerSlot = (int)Math.Round(lowestFleaOffer / slots);
if (bestTraderOffer != null)
{
double totalTraderPrice = bestTraderOffer.Price;
traderPricePerSlot = (int)Math.Round(totalTraderPrice / slots);
SetText(traderPricePerSlot, fleaPricePerSlot, totalTraderPrice, slots, ref text, bestTraderOffer.TraderName);
}
if (isFleaEligible)
SetText(fleaPricePerSlot, traderPricePerSlot, lowestFleaOffer, slots, ref text, "Flea");
//hoveredItem = null;
}
}
private static void SetText(int valuePerSlotA, int valuePerSlotB, double totalValue, int slots, ref string text, string buyer)
{
string perSlotColor = SlotColoring.GetColorFromValuePerSlots(valuePerSlotA);
string highlightText;
if (valuePerSlotA > valuePerSlotB)
highlightText = $"<color=#ffffff>{buyer}</color>";
else
highlightText = buyer;
if (LootValueMod.OnlyShowTotalValue.Value)
{
text += $"<br>{highlightText}: <color={perSlotColor}>{totalValue.FormatNumber()}</color>";
}
else
{
text += $"<br>{highlightText}: <color={perSlotColor}>{valuePerSlotA.FormatNumber()}</color>";
if (slots > 1)
text += $" Total: {totalValue.FormatNumber()}";
}
}
}
}