You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.2 KiB
103 lines
2.2 KiB
12 months ago
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class UIView : MonoBehaviour
|
||
|
{
|
||
|
//类型
|
||
|
public UIViewType ViewType;
|
||
|
//public string ViewName;
|
||
|
public Action OnShow;
|
||
|
public Action OnHide;
|
||
|
public virtual void Awake()
|
||
|
{
|
||
|
UIManager.Instance?.AddView(this);
|
||
|
}
|
||
|
public virtual void OnDestroy()
|
||
|
{
|
||
|
UIManager.Instance?.RemoveView(this);
|
||
|
}
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 显示
|
||
|
/// </summary>
|
||
|
public virtual void Show()
|
||
|
{
|
||
|
Refresh();
|
||
|
if (!gameObject.activeSelf)
|
||
|
{
|
||
|
gameObject.SetActive(true);
|
||
|
if (OnShow != null)
|
||
|
{
|
||
|
OnShow();
|
||
|
}
|
||
|
// 设置层级到最上层
|
||
|
transform.SetAsLastSibling();
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 隐藏
|
||
|
/// </summary>
|
||
|
public virtual void Hide()
|
||
|
{
|
||
|
//显示的情况下才隐藏
|
||
|
if (gameObject.activeSelf)
|
||
|
{
|
||
|
gameObject.SetActive(false);
|
||
|
if (OnHide != null)
|
||
|
{
|
||
|
OnHide();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 刷新
|
||
|
/// </summary>
|
||
|
public virtual void Refresh()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
public virtual void Show(object data)
|
||
|
{
|
||
|
Show();
|
||
|
}
|
||
|
public GameObject Find(string name)
|
||
|
{
|
||
|
return transform.Find(name).gameObject;
|
||
|
}
|
||
|
public T Find<T>(string name)
|
||
|
{
|
||
|
return transform.Find(name).GetComponent<T>();
|
||
|
}
|
||
|
}
|
||
|
public class UIView<TModel, TReactiveModel> : UIView
|
||
|
where TReactiveModel : ISetData<TModel>, new()
|
||
|
where TModel : class
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据
|
||
|
/// </summary>
|
||
|
protected TReactiveModel DataSource { get; private set; } = new TReactiveModel();
|
||
|
/// <summary>
|
||
|
/// 显示
|
||
|
/// </summary>
|
||
|
/// <param name="data"></param>
|
||
|
public override void Show(object data)
|
||
|
{
|
||
|
Debug.Log(data.GetHashCode());
|
||
|
DataSource.SetData(data as TModel);
|
||
|
base.Show(data);
|
||
|
}
|
||
|
}
|
||
|
//TODO 修改名字为IData 新增GetData方法
|
||
|
public interface ISetData<T>
|
||
|
{
|
||
|
//新增属性GetData SetData 时修改此属性的值
|
||
|
//T Data { get; set; }
|
||
|
void SetData(T t);
|
||
|
}
|
||
|
|
||
|
|