Compare commits

..

No commits in common. "master" and "1.0.0" have entirely different histories.

3 changed files with 196 additions and 155 deletions

View File

@ -15,7 +15,7 @@ namespace itemValueMod
[PatchPostfix] [PatchPostfix]
private static void PatchPostFix(ref Item __instance, string id, ItemTemplate template) private static void PatchPostFix(ref Item __instance, string id, ItemTemplate template)
{ {
ItemValue.AddItemValue(ref __instance, template); ItemValue.AddItemValue(ref __instance, id, template);
} }
} }
@ -29,7 +29,7 @@ namespace itemValueMod
[PatchPostfix] [PatchPostfix]
private static void PatchPostFix(ref BulletClass __instance, string id, AmmoTemplate template) private static void PatchPostFix(ref BulletClass __instance, string id, AmmoTemplate template)
{ {
ItemValue.AddItemValue(ref __instance, template); ItemValue.AddItemValue(ref __instance, id, template);
} }
} }
@ -43,7 +43,7 @@ namespace itemValueMod
[PatchPostfix] [PatchPostfix]
private static void PatchPostFix(ref GrenadeClass __instance, string id, ThrowableWeaponClass template) private static void PatchPostFix(ref GrenadeClass __instance, string id, ThrowableWeaponClass template)
{ {
ItemValue.AddItemValue(ref __instance, template); ItemValue.AddItemValue(ref __instance, id, template);
} }
} }
@ -57,7 +57,7 @@ namespace itemValueMod
[PatchPostfix] [PatchPostfix]
private static void PatchPostFix(ref ItemContainerClass __instance, string id, SecureContainerTemplateClass template) private static void PatchPostFix(ref ItemContainerClass __instance, string id, SecureContainerTemplateClass template)
{ {
ItemValue.AddItemValue(ref __instance, template); ItemValue.AddItemValue(ref __instance, id, template);
} }
} }
} }

View File

@ -4,220 +4,261 @@ using EFT.InventoryLogic;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using System.Net;
using System.Threading;
using UnityEngine; using UnityEngine;
using System.IO; using System.IO;
using System.Linq;
using Comfort.Common;
namespace itemValueMod namespace itemValueMod
{ {
public class ItemValue public class ItemValue
{ {
public static void AddItemValue<T>(ref T __instance, ItemTemplate template) where T : Item public static void AddItemValue<T>(ref T __instance, string id, ItemTemplate template) where T : Item
{ {
var atts = new List<ItemAttributeClass>();
atts.AddRange(__instance.Attributes);
__instance.Attributes = atts;
__instance.SetupShit(); ItemAttributeClass attr1 = new ItemAttributeClass(EItemAttributeId.MoneySum)
//var atts = new List<ItemAttributeClass>(); {
//atts.AddRange(__instance.Attributes); StringValue = new Func<string>(__instance.TraderPrice),
//__instance.Attributes = atts; FullStringValue = new Func<string>(__instance.TraderName),
Name = "TRADER",
DisplayType = new Func<EItemAttributeDisplayType>(() => EItemAttributeDisplayType.Compact)
};
//var attr1 = new ItemAttributeClass(EItemAttributeId.MoneySum) __instance.Attributes.Add(attr1);
//{
// StringValue = __instance.TraderPrice(template),
// FullStringValue = __instance.TraderName,
// Name = "TRADER",
// DisplayType = () => EItemAttributeDisplayType.Compact
//};
//__instance.Attributes.Add(attr1);
} }
} }
public static class ValueExtension public static class ValueExtension
{ {
public static ItemFactory ItemFactoryInstance; static public Dictionary<string, JsonClass> itemDictionary = new Dictionary<string, JsonClass>();
static object lockObject = new object();
public static void SetupShit(this Item item) public static JsonClass GetData(String itemId)
{ {
ItemFactoryInstance = Singleton<ItemFactory>.Instance; var json = RequestHandler.GetJson($"/cwx/seeitemvalue/{itemId}");
var itemTemplate = ItemFactoryInstance.ItemTemplates.Values.First(x => x._id == item.TemplateId).Name; var jsonClass = Json.Deserialize<JsonClass>(json);
itemDictionary.Add(itemId, jsonClass);
return jsonClass;
Debug.LogError($"[itemTemplate] {itemTemplate}");
} }
//public static Func<string> TraderPrice(this Item item, ItemTemplate template) public static string TraderPrice(this Item item)
//{ {
// string itemId = item.Template._id; string itemId = item.Template._id;
// JsonClass jsonClass; JsonClass jsonClass;
// double alteredPrice = 1; bool lockWasTaken = false;
double alteredPrice = 1;
// if (jsonClass.price != 1) try
// { {
// alteredPrice = DurabilityCheck(item, jsonClass); Monitor.Enter(lockObject, ref lockWasTaken);
// }
// double _price = alteredPrice * jsonClass.multiplier; if(!itemDictionary.TryGetValue(itemId, out jsonClass))
{
// return Math.Round(_price).ToString(); jsonClass = GetData(item.Template._id);
//} }
}
//public static string TraderName(this Item item) catch (WebException)
//{ {
// string itemId = item.Template._id; return $"[SeeItemValue] Issue happened whilst getting Item from server";
// JsonClass jsonClass; }
finally
// return jsonClass.traderName; {
//} if (lockWasTaken)
{
//public static double DurabilityCheck(this Item item, JsonClass jsonClass) Monitor.Exit(lockObject);
//{ }
// double editedPrice = jsonClass.price; }
// double originalMax = jsonClass.originalMax;
if (jsonClass.price != 1)
// DebugMode($" Entered DurabilityCheck() - starting price is: {editedPrice}"); {
alteredPrice = DurabilityCheck(item, jsonClass);
// var medKit = item.GetItemComponent<MedKitComponent>(); }
// if (medKit != null && medKit.HpResource != 0 && medKit.MaxHpResource != 0)
// { double _price = alteredPrice * jsonClass.multiplier;
// DebugMode($" Medkit Check - HpResource is: {medKit.HpResource}");
// DebugMode($" Medkit Check - MaxHpResource is: {medKit.MaxHpResource}"); return Math.Round(_price).ToString();
}
// editedPrice *= medKit.HpResource / medKit.MaxHpResource;
// } public static string TraderName(this Item item)
{
// DebugMode($" After Medkit Check - price is: {editedPrice}"); string itemId = item.Template._id;
JsonClass jsonClass;
// var repair = item.GetItemComponent<RepairableComponent>(); bool lockWasTaken = false;
// if (repair != null)
// { try
// if (repair.Durability > 0) {
// { Monitor.Enter(lockObject, ref lockWasTaken);
// DebugMode($" repairable Check - Durability is: {repair.Durability}");
// DebugMode($" Medkit Check - originalMax is: {originalMax}"); if (!itemDictionary.TryGetValue(itemId, out jsonClass))
{
// editedPrice *= repair.Durability / originalMax; jsonClass = GetData(item.Template._id);
// } }
// else }
// { catch (WebException)
// DebugMode($" repairable Check - Durability is 0"); {
return $"[SeeItemValue] Issue happened whilst getting Item from server";
// editedPrice = 1; }
// } finally
// } {
if (lockWasTaken)
// DebugMode($" After repairable Check - price is: {editedPrice}"); {
Monitor.Exit(lockObject);
// var dogtag = item.GetItemComponent<DogtagComponent>(); }
// if (dogtag != null && dogtag.Level != 0) }
// {
// DebugMode($" dogtag Check - level is: {dogtag.Level}"); return jsonClass.traderName;
}
// editedPrice *= dogtag.Level;
// } public static double DurabilityCheck(this Item item, JsonClass jsonClass)
{
// DebugMode($" After dogtag Check - price is: {editedPrice}"); double editedPrice = jsonClass.price;
double originalMax = jsonClass.originalMax;
// var repairKit = item.GetItemComponent<RepairKitComponent>();
// if (repairKit != null) DebugMode($" Entered DurabilityCheck() - starting price is: {editedPrice}");
// {
// if (repairKit.Resource > 0) var medKit = item.GetItemComponent<MedKitComponent>();
// { if (medKit != null && medKit.HpResource != 0 && medKit.MaxHpResource != 0)
// DebugMode($" repairkit Check - Resource is: {repairKit.Resource}"); {
// DebugMode($" repairkit Check - originalMax is: {originalMax}"); DebugMode($" Medkit Check - HpResource is: {medKit.HpResource}");
DebugMode($" Medkit Check - MaxHpResource is: {medKit.MaxHpResource}");
// editedPrice *= repairKit.Resource / originalMax;
// } editedPrice *= medKit.HpResource / medKit.MaxHpResource;
// else }
// {
// DebugMode($" repairkit Check - Resource is 0"); DebugMode($" After Medkit Check - price is: {editedPrice}");
// editedPrice = 1; var repair = item.GetItemComponent<RepairableComponent>();
// } if (repair != null)
// } {
if (repair.Durability > 0)
// DebugMode($" After repairkit Check - price is: {editedPrice}"); {
DebugMode($" repairable Check - Durability is: {repair.Durability}");
// var resource = item.GetItemComponent<ResourceComponent>(); DebugMode($" Medkit Check - originalMax is: {originalMax}");
// if (resource != null && resource.Value != 0 && resource.MaxResource != 0)
// { editedPrice *= repair.Durability / originalMax;
// DebugMode($" resource Check - Resource is: {resource.Value}"); }
// DebugMode($" resource Check - MaxResource is: {resource.MaxResource}"); else
{
// editedPrice *= resource.Value / resource.MaxResource; DebugMode($" repairable Check - Durability is 0");
// }
editedPrice = 1;
// DebugMode($" After resource Check - price is: {editedPrice}"); }
}
// var foodDrink = item.GetItemComponent<FoodDrinkComponent>();
// if (foodDrink != null && foodDrink.HpPercent != 0) DebugMode($" After repairable Check - price is: {editedPrice}");
// {
// GInterface234 ginterface234_0 = (GInterface234)foodDrink.GetType().GetField("ginterface234_0", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(foodDrink); var dogtag = item.GetItemComponent<DogtagComponent>();
if (dogtag != null && dogtag.Level != 0)
// DebugMode($" foodDrink Check - HpPercent is: {foodDrink.HpPercent}"); {
// DebugMode($" foodDrink Check - MaxResource is: {ginterface234_0.MaxResource}"); DebugMode($" dogtag Check - level is: {dogtag.Level}");
// editedPrice *= foodDrink.HpPercent / ginterface234_0.MaxResource; editedPrice *= dogtag.Level;
// } }
// DebugMode($" After foodDrink Check - price is: {editedPrice}"); DebugMode($" After dogtag Check - price is: {editedPrice}");
// var keys = item.GetItemComponent<KeyComponent>(); var repairKit = item.GetItemComponent<RepairKitComponent>();
// if (keys != null) if (repairKit != null)
// { {
// GInterface238 template = (GInterface238)keys.GetType().GetField("Template", BindingFlags.Public | BindingFlags.Instance).GetValue(keys); if (repairKit.Resource > 0)
{
// if (keys.NumberOfUsages > 0) DebugMode($" repairkit Check - Resource is: {repairKit.Resource}");
// { DebugMode($" repairkit Check - originalMax is: {originalMax}");
// double totalMinusUsed = Convert.ToDouble(template.MaximumNumberOfUsage - keys.NumberOfUsages);
// double multi = totalMinusUsed / template.MaximumNumberOfUsage; editedPrice *= repairKit.Resource / originalMax;
}
// DebugMode($" foodDrink Check - totalMinusUsed is: {totalMinusUsed}"); else
// DebugMode($" foodDrink Check - multi is: {multi}"); {
DebugMode($" repairkit Check - Resource is 0");
// editedPrice *= multi;
// } editedPrice = 1;
// } }
}
// DebugMode($" After keys Check - price is: {editedPrice}");
DebugMode($" After repairkit Check - price is: {editedPrice}");
// var sideEffect = item.GetItemComponent<SideEffectComponent>();
// if (sideEffect != null && sideEffect.Value != 0) var resource = item.GetItemComponent<ResourceComponent>();
// { if (resource != null && resource.Value != 0 && resource.MaxResource != 0)
// DebugMode($" sideEffect Check - resource is: {sideEffect.Value}"); {
// DebugMode($" sideEffect Check - MaxResource is: {sideEffect.MaxResource}"); DebugMode($" resource Check - Resource is: {resource.Value}");
DebugMode($" resource Check - MaxResource is: {resource.MaxResource}");
// editedPrice *= sideEffect.Value / sideEffect.MaxResource;
// } editedPrice *= resource.Value / resource.MaxResource;
}
// DebugMode($" After sideEffect Check - price is: {editedPrice}");
DebugMode($" After resource Check - price is: {editedPrice}");
// DebugMode($"Ending price: {editedPrice}");
var foodDrink = item.GetItemComponent<FoodDrinkComponent>();
// return editedPrice; if (foodDrink != null && foodDrink.HpPercent != 0)
//} {
GInterface234 ginterface234_0 = (GInterface234)foodDrink.GetType().GetField("ginterface234_0", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(foodDrink);
//public static void DebugMode(String str)
//{ DebugMode($" foodDrink Check - HpPercent is: {foodDrink.HpPercent}");
// var directory = Directory.GetCurrentDirectory(); DebugMode($" foodDrink Check - MaxResource is: {ginterface234_0.MaxResource}");
// var modDirectory = new DirectoryInfo(directory + "/user/mods/"); editedPrice *= foodDrink.HpPercent / ginterface234_0.MaxResource;
// DirectoryInfo[] dirsInDir = modDirectory.GetDirectories("*" + "SeeItemValue" + "*.*"); }
// if (dirsInDir.Length == 1) DebugMode($" After foodDrink Check - price is: {editedPrice}");
// {
// var json = File.ReadAllText(dirsInDir[0].ToString() + "/src/config.json"); var keys = item.GetItemComponent<KeyComponent>();
if (keys != null)
// var configJson = Json.Deserialize<ConfigClass>(json); {
GInterface238 template = (GInterface238)keys.GetType().GetField("Template", BindingFlags.Public | BindingFlags.Instance).GetValue(keys);
// if (configJson != null && configJson.DebugMode)
// { if (keys.NumberOfUsages > 0)
// Debug.LogError(str); {
// } double totalMinusUsed = Convert.ToDouble(template.MaximumNumberOfUsage - keys.NumberOfUsages);
// } double multi = totalMinusUsed / template.MaximumNumberOfUsage;
//}
DebugMode($" foodDrink Check - totalMinusUsed is: {totalMinusUsed}");
DebugMode($" foodDrink Check - multi is: {multi}");
editedPrice *= multi;
}
}
DebugMode($" After keys Check - price is: {editedPrice}");
var sideEffect = item.GetItemComponent<SideEffectComponent>();
if (sideEffect != null && sideEffect.Value != 0)
{
DebugMode($" sideEffect Check - resource is: {sideEffect.Value}");
DebugMode($" sideEffect Check - MaxResource is: {sideEffect.MaxResource}");
editedPrice *= sideEffect.Value / sideEffect.MaxResource;
}
DebugMode($" After sideEffect Check - price is: {editedPrice}");
DebugMode($"Ending price: {editedPrice}");
return editedPrice;
}
public static void DebugMode(String str)
{
var directory = Directory.GetCurrentDirectory();
var modDirectory = new DirectoryInfo(directory + "/user/mods/");
DirectoryInfo[] dirsInDir = modDirectory.GetDirectories("*" + "SeeItemValue" + "*.*");
if (dirsInDir.Length == 1)
{
var json = File.ReadAllText(dirsInDir[0].ToString() + "/src/config.json");
var configJson = Json.Deserialize<ConfigClass>(json);
if (configJson != null && configJson.DebugMode)
{
Debug.LogError(str);
}
}
}
} }
} }