summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2024-05-19 17:03:57 +0800
committerchai <215380520@qq.com>2024-05-19 17:03:57 +0800
commitcf58771365b5953c6eac548b172aae880d1f0acd (patch)
treea49757a4b5c447cbf877584d482367a6bfe33b10 /Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs
parenteed315deae356ddfb17f28305e7cde6cdfc43313 (diff)
* rename
Diffstat (limited to 'Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs')
-rw-r--r--Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs97
1 files changed, 0 insertions, 97 deletions
diff --git a/Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs b/Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs
deleted file mode 100644
index 2690bf1..0000000
--- a/Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs
+++ /dev/null
@@ -1,97 +0,0 @@
-using System;
-using System.Collections.Generic;
-using UnityEngine;
-
-namespace I2.Loc;
-
-public class LocalizationParamsManager : MonoBehaviour, ILocalizationParamsManager
-{
- [Serializable]
- public struct ParamValue
- {
- public string Name;
-
- public string Value;
- }
-
- [SerializeField]
- public List<ParamValue> _Params = new List<ParamValue>();
-
- public bool _IsGlobalManager;
-
- public string GetParameterValue(string ParamName)
- {
- if (_Params != null)
- {
- int i = 0;
- for (int count = _Params.Count; i < count; i++)
- {
- if (_Params[i].Name == ParamName)
- {
- return _Params[i].Value;
- }
- }
- }
- return null;
- }
-
- public void SetParameterValue(string ParamName, string ParamValue, bool localize = true)
- {
- bool flag = false;
- int i = 0;
- for (int count = _Params.Count; i < count; i++)
- {
- if (_Params[i].Name == ParamName)
- {
- ParamValue value = _Params[i];
- value.Value = ParamValue;
- _Params[i] = value;
- flag = true;
- break;
- }
- }
- if (!flag)
- {
- _Params.Add(new ParamValue
- {
- Name = ParamName,
- Value = ParamValue
- });
- }
- if (localize)
- {
- OnLocalize();
- }
- }
-
- public void OnLocalize()
- {
- Localize component = GetComponent<Localize>();
- if (component != null)
- {
- component.OnLocalize(Force: true);
- }
- }
-
- public virtual void OnEnable()
- {
- if (_IsGlobalManager)
- {
- DoAutoRegister();
- }
- }
-
- public void DoAutoRegister()
- {
- if (!LocalizationManager.ParamManagers.Contains(this))
- {
- LocalizationManager.ParamManagers.Add(this);
- LocalizationManager.LocalizeAll(Force: true);
- }
- }
-
- public void OnDisable()
- {
- LocalizationManager.ParamManagers.Remove(this);
- }
-}