public SpawnRngHelper(PlatformType platform, CharacterGroup group, List <Monster> monsters) : base(platform, group) { _monsters = monsters; _futureRng = new SpawnFutureRng(); }
protected override void CalculateRngHelper() { foreach (Monster monster in _monsters) { monster.ResetSpawnInfo(); } _futureRng = new SpawnFutureRng(); List <List <int> > lastNBeforeM = InitializeMatrix(); // Use these variables to check for first punch combo ComboFound = false; ComboPosition = -1; uint firstRngVal = DisplayRng.genrand(); uint secondRngVal = DisplayRng.genrand(); // We want to preserve the character index, since this loop is just for display: int indexStatic = Group.GetIndex(); Group.ResetIndex(); int start = GetLoopStartIndex(); int end = start + HealVals.Count + FutureRngPositionsToCalculate; for (int index = start; index < end; index++) { // Index starting at 0 LoopIndex = index - start; // Get the heal value once int currentHeal = Group.GetHealValue(firstRngVal); int nextHeal = Group.PeekHealValue(secondRngVal); // Set the next expected heal value if (index == start + HealVals.Count - 1 || index == 1) { NextHealValue = nextHeal; } // Advance the RNG before starting the loop in case we want to skip an entry uint firstRngValTemp = firstRngVal; firstRngVal = secondRngVal; secondRngVal = DisplayRng.genrand(); // Skip the entry if it's too long ago if (LoopIndex < HealVals.Count - HistoryToDisplay) { continue; } //Start actually collating data SpawnFutureRngInstance newRngInstance = new SpawnFutureRngInstance(_monsters.Count); // check if we are in calculating past RNG if (index < start + HealVals.Count) { newRngInstance.IsPastRng = true; } // Set useful information newRngInstance.Index = index; newRngInstance.CurrentHeal = currentHeal; float spawnChance = newRngInstance.SpawnChance = (float)firstRngValTemp / Monster.RareSpawnValue; newRngInstance.RawRngValue = firstRngValTemp; CalculateMonsterSpawns(spawnChance, newRngInstance); CalculateLastNBeforeMMatrix(lastNBeforeM, spawnChance); CheckForCombo(firstRngValTemp); _futureRng.AddNextRngInstance(newRngInstance); } _futureRng.SetLastNBeforeMMatrix(lastNBeforeM); WriteSpawnDirectionsInfo(); AttacksBeforeNextCombo = ComboPosition; Group.SetIndex(indexStatic); }