123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- using System;
- using System.Collections.Generic;
- using I2.Loc;
- using UnityEngine;
- public class DanceSubtitleMgr : PartsMgrBase
- {
- protected override void Start()
- {
- base.Start();
- base.IsActive &= (DanceMain.SelectDanceData != null);
- base.IsActive &= DanceSetting.Settings.IsSubtitleOn;
- if (!base.IsActive)
- {
- base.gameObject.SetActive(false);
- return;
- }
- this.m_SubtitleUI.SetActive(false);
- string csv_path = RhythmAction_Mgr.Instance.MusicCSV_Path + "dance_subtitle.nei";
- KasaiUtility.CsvReadY(csv_path, delegate(CsvParser csv, int cy)
- {
- int num = 0;
- DanceSubtitleMgr.SubtitleData subtitleData = new DanceSubtitleMgr.SubtitleData();
- subtitleData.ID = csv.GetCellAsInteger(num++, cy);
- subtitleData.StartTime = csv.GetCellAsReal(num++, cy);
- subtitleData.EndTime = csv.GetCellAsReal(num++, cy);
- subtitleData.TranslationKey = csv.GetCellAsString(num++, cy);
- this.m_SubtitleDataList.Add(subtitleData);
- }, 1, delegate
- {
- this.IsActive = false;
- Debug.Log(csv_path + "が見つからなかったので、ダンスの字幕を非表示にします。");
- this.gameObject.SetActive(false);
- });
- }
- private void DrawSubtitle()
- {
- float danceTimer = RhythmAction_Mgr.Instance.DanceTimer;
- string sheet_name = DanceMain.SelectDanceData.SubtitleSheetName + "/";
- Product.Language wmzi = Product.WMZI;
- using (List<DanceSubtitleMgr.SubtitleData>.Enumerator enumerator = this.m_SubtitleDataList.GetEnumerator())
- {
- while (enumerator.MoveNext())
- {
- DanceSubtitleMgr.SubtitleData data = enumerator.Current;
- if (data.EndTime <= danceTimer)
- {
- if (data.IsExistUIObj)
- {
- data.DestroyUIObj();
- this.m_SubtitleUIGrid.UpdateChildUI();
- }
- }
- else if (data.StartTime <= danceTimer && !data.IsExistUIObj)
- {
- bool create_success = false;
- Action<Product.Language> action = delegate(Product.Language langage)
- {
- string term = sheet_name + data.TranslationKey;
- string translation = LocalizationManager.GetTranslation(term, true, 0, true, false, null, Product.EnumConvert.ToI2LocalizeLanguageName(langage));
- if (string.IsNullOrEmpty(translation))
- {
- return;
- }
- GameObject gameObject = UnityEngine.Object.Instantiate<GameObject>(this.m_SubtitleUI, this.m_SubtitleUIGrid.transform, false);
- gameObject.SetActive(true);
- data.SetUIObj(langage, gameObject);
- UILabel component = gameObject.GetComponent<UILabel>();
- component.text = translation;
- if (component.width > this.m_NewLineWidthSize)
- {
- component.overflowMethod = UILabel.Overflow.ResizeHeight;
- component.width = this.m_NewLineWidthSize;
- component.ProcessText();
- }
- create_success |= true;
- };
- if (Product.SPP)
- {
- switch (DanceSetting.Settings.SubtitleType)
- {
- case SubtitleDisplayManager.DisplayType.OriginalAndSubtitle:
- action(Product.Language.INKD);
- action(wmzi);
- break;
- case SubtitleDisplayManager.DisplayType.Subtitle:
- action(wmzi);
- break;
- case SubtitleDisplayManager.DisplayType.Original:
- action(Product.Language.INKD);
- break;
- }
- }
- else
- {
- action(Product.Language.INKD);
- }
- if (create_success)
- {
- this.m_SubtitleUIGrid.UpdateChildUI();
- }
- }
- }
- }
- }
- public override void StartAction()
- {
- RhythmAction_Mgr.Instance.StartTimeCroutine(new Action(this.DrawSubtitle), null);
- }
- private List<DanceSubtitleMgr.SubtitleData> m_SubtitleDataList = new List<DanceSubtitleMgr.SubtitleData>();
- [SerializeField]
- [Header("使い回し用オブジェクト")]
- private GameObject m_SubtitleUI;
- [SerializeField]
- [Header("字幕UIの親")]
- private DynamicUIGrid m_SubtitleUIGrid;
- [SerializeField]
- [Header("表示領域の横サイズがこれ以上になったら改行")]
- private int m_NewLineWidthSize = 930;
- private class SubtitleData
- {
- public bool IsExistUIObj
- {
- get
- {
- return this.OrijinalUI != null || this.SubtitleUI != null;
- }
- }
- public void SetUIObj(Product.Language langage_code, GameObject ui_obj)
- {
- if (langage_code == Product.Language.INKD)
- {
- this.OrijinalUI = ui_obj;
- }
- else
- {
- this.SubtitleUI = ui_obj;
- }
- }
- public void DestroyUIObj()
- {
- if (this.OrijinalUI)
- {
- UnityEngine.Object.DestroyImmediate(this.OrijinalUI);
- }
- if (this.SubtitleUI)
- {
- UnityEngine.Object.DestroyImmediate(this.SubtitleUI);
- }
- }
- public int ID;
- public float StartTime;
- public float EndTime;
- public string TranslationKey;
- public GameObject OrijinalUI;
- public GameObject SubtitleUI;
- }
- }
|