public Item(GS.Map.World world, ItemTable definition) : base(world, definition.SNOActor) { SetInitialValues(definition); this.ItemHasChanges = true;//initial, this is set to true. // level requirement // Attributes[GameAttribute.Requirement, 38] = definition.RequiredLevel; Attributes[GameAttribute.Item_Quality_Level] = 1; if (Item.IsArmor(this.ItemType) || Item.IsWeapon(this.ItemType) || Item.IsOffhand(this.ItemType)) { Attributes[GameAttribute.Item_Quality_Level] = RandomHelper.Next(6); } if (this.ItemType.Flags.HasFlag(ItemFlags.AtLeastMagical) && Attributes[GameAttribute.Item_Quality_Level] < 3) { Attributes[GameAttribute.Item_Quality_Level] = 3; } Attributes[GameAttribute.ItemStackQuantityLo] = 1; Attributes[GameAttribute.Seed] = RandomHelper.Next(); //unchecked((int)2286800181); RandomGenerator = new ItemRandomHelper(Attributes[GameAttribute.Seed]); RandomGenerator.Next(); if (Item.IsArmor(this.ItemType)) { RandomGenerator.Next(); // next value is used but unknown if armor } RandomGenerator.ReinitSeed(); ApplyWeaponSpecificOptions(definition); ApplyArmorSpecificOptions(definition); ApplyDurability(definition); ApplySkills(definition); ApplyAttributeSpecifier(definition); int affixNumber = 1; if (Attributes[GameAttribute.Item_Quality_Level] >= 3) { affixNumber = Attributes[GameAttribute.Item_Quality_Level] - 2; } AffixGenerator.Generate(this, affixNumber); }
public Item(GS.Map.World world, ItemTable definition) : base(world, definition.SNOActor) { this.ItemDefinition = definition; this.GBHandle.Type = (int)GBHandleType.Gizmo; this.GBHandle.GBID = definition.Hash; this.ItemType = ItemGroup.FromHash(definition.ItemType1); this.EquipmentSlot = 0; this.InventoryLocation = new Vector2D { X = 0, Y = 0 }; this.Scale = 1.0f; this.RotationW = 0.0f; this.RotationAxis.Set(0.0f, 0.0f, 1.0f); this.CurrentState = ItemState.Normal; this.Field2 = 0x00000000; this.Field7 = 0; this.NameSNOId = -1; // I think it is ignored anyways - farmy this.Field10 = 0x00; this.ItemLevel = definition.ItemLevel; // level requirement // Attributes[GameAttribute.Requirement, 38] = definition.RequiredLevel; Attributes[GameAttribute.Item_Quality_Level] = 1; if (Item.IsArmor(this.ItemType) || Item.IsWeapon(this.ItemType) || Item.IsOffhand(this.ItemType)) { Attributes[GameAttribute.Item_Quality_Level] = RandomHelper.Next(6); } if (this.ItemType.Flags.HasFlag(ItemFlags.AtLeastMagical) && Attributes[GameAttribute.Item_Quality_Level] < 3) { Attributes[GameAttribute.Item_Quality_Level] = 3; } Attributes[GameAttribute.ItemStackQuantityLo] = 1; Attributes[GameAttribute.Seed] = RandomHelper.Next(); //unchecked((int)2286800181); RandomGenerator = new ItemRandomHelper(Attributes[GameAttribute.Seed]); RandomGenerator.Next(); if (Item.IsArmor(this.ItemType)) { RandomGenerator.Next(); // next value is used but unknown if armor } RandomGenerator.ReinitSeed(); ApplyWeaponSpecificOptions(definition); ApplyArmorSpecificOptions(definition); ApplyDurability(definition); ApplySkills(definition); ApplyAttributeSpecifier(definition); int affixNumber = 1; if (Attributes[GameAttribute.Item_Quality_Level] >= 3) { affixNumber = Attributes[GameAttribute.Item_Quality_Level] - 2; } AffixGenerator.Generate(this, affixNumber); }
public static void Generate(Item item, int affixesCount) { if (!Item.IsWeapon(item.ItemType) && !Item.IsArmor(item.ItemType) && !Item.IsOffhand(item.ItemType) && !Item.IsAccessory(item.ItemType)) { return; } var itemTypes = ItemGroup.HierarchyToHashList(item.ItemType); int itemQualityMask = 1 << item.Attributes[GameAttribute.Item_Quality_Level]; var filteredList = AffixList.Where(a => a.QualityMask.HasFlag((QualityMask)itemQualityMask) && itemTypes.ContainsAtLeastOne(a.ItemGroup) && a.AffixLevel <= item.ItemLevel); Dictionary <int, AffixTable> bestDefinitions = new Dictionary <int, AffixTable>(); foreach (var affix in filteredList) { bestDefinitions[affix.AffixFamily0] = affix; } var selectedGroups = bestDefinitions.Values.OrderBy(x => RandomHelper.Next()).Take(affixesCount); foreach (var def in selectedGroups) { if (def != null) { //Logger.Debug("Generating affix " + def.Name + " (aLvl:" + def.AffixLevel + ")"); item.AffixList.Add(new Affix(def.Hash)); foreach (var effect in def.AttributeSpecifier) { if (effect.AttributeId > 0) { float result; if (FormulaScript.Evaluate(effect.Formula.ToArray(), item.RandomGenerator, out result)) { //Logger.Debug("Randomized value for attribute " + GameAttribute.Attributes[effect.AttributeId].Name + " is " + result); if (GameAttribute.Attributes[effect.AttributeId] is GameAttributeF) { var attr = GameAttribute.Attributes[effect.AttributeId] as GameAttributeF; if (effect.SNOParam != -1) { item.Attributes[attr, effect.SNOParam] += result; } else { item.Attributes[attr] += result; } } else if (GameAttribute.Attributes[effect.AttributeId] is GameAttributeI) { var attr = GameAttribute.Attributes[effect.AttributeId] as GameAttributeI; if (effect.SNOParam != -1) { item.Attributes[attr, effect.SNOParam] += (int)result; } else { item.Attributes[attr] += (int)result; } } } } } } } }