50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
using DunGen;
|
|
|
|
namespace ScarletMansion.GamePatch.Props {
|
|
|
|
public class SpawnSyncedObjectCycle : MonoBehaviour, IDungeonCompleteReceiver {
|
|
|
|
public static int cycle;
|
|
public static Dictionary<int, int> cycleDictionary;
|
|
|
|
public SpawnSyncedObject spawn;
|
|
public int id;
|
|
public List<GameObject> props = new List<GameObject>();
|
|
|
|
void Reset(){
|
|
spawn = GetComponent<SpawnSyncedObject>();
|
|
}
|
|
|
|
public static void UpdateCycle(int value){
|
|
Plugin.logger.LogInfo($"Updating SpawnSyncedObject start cycle to {value}");
|
|
cycle = value;
|
|
cycleDictionary = new Dictionary<int, int>();
|
|
}
|
|
|
|
public int GetCycle(int id){
|
|
if (!cycleDictionary.TryGetValue(id, out var value)){
|
|
value = cycle;
|
|
cycleDictionary.Add(id, value);
|
|
}
|
|
|
|
cycleDictionary[id] = value + 1;
|
|
Plugin.logger.LogInfo($"Cycle{id}: {value}");
|
|
return value;
|
|
}
|
|
|
|
public void OnDungeonComplete(Dungeon dungeon) {
|
|
var index = GetCycle(id) % props.Count;
|
|
var prefab = props[index];
|
|
spawn.spawnPrefab = prefab;
|
|
}
|
|
}
|
|
|
|
|
|
}
|