facebook twitter hatena line email

「Unity/MVP/Helloworld」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(サンプル)
行17: 行17:
 
{
 
{
 
     public int Counter {
 
     public int Counter {
         get => counter.Value;
+
         get => counterRP.Value;
         set => counter.Value = value;
+
         set => counterRP.Value = value;
 
     }
 
     }
     IntReactiveProperty counter = new IntReactiveProperty();
+
     IntReactiveProperty counterRP = new IntReactiveProperty();
  
 
     public void PlusCounter()
 
     public void PlusCounter()
 
     {
 
     {
         counter.Value++;
+
         counterRP.Value++;
 
     }
 
     }
 
     public void MinusCounter()
 
     public void MinusCounter()
 
     {
 
     {
         counter.Value--;
+
         counterRP.Value--;
 
     }
 
     }
 
}
 
}

2021年9月15日 (水) 16:41時点における版

MVPとは

MV(R)Pで、ModelとViewとPresenterをReactiveで、疎結合に連携したパターン

準備

  1. UniRxをインストールしておく。

Unity/UniRx [ショートカット]

サンプル

CounterModel.cs

using UnityEngine;
using UniRx;

public class CounterModel : MonoBehaviour
{
    public int Counter {
        get => counterRP.Value;
        set => counterRP.Value = value;
    }
    IntReactiveProperty counterRP = new IntReactiveProperty();

    public void PlusCounter()
    {
        counterRP.Value++;
    }
    public void MinusCounter()
    {
        counterRP.Value--;
    }
}

CounterView.cs

using UnityEngine;
using UnityEngine.UI;

public class CounterView : MonoBehaviour
{
    [SerializeField] public Button minusButton, plusButton, refreshButton;
    [SerializeField] public Text text;

    public void SetValueText(float value)
    {
        text.text = value.ToString();
    }
}

CounterPresenter.cs

using UnityEngine;
using UniRx;

public class CounterPresenter : MonoBehaviour
{
    [SerializeField] private CounterView _counterView;
    [SerializeField] private CounterModel _counterModel;

    void Start()
    {
        _counterView.SetValueText(_counterModel.Counter);

        _counterView.plusButton
            .OnClickAsObservable()
            .Subscribe(_ => {
                _counterModel.PlusCounter();
                _counterView.SetValueText(_counterModel.Counter);
            })
            .AddTo(this);

        _counterView.minusButton
            .OnClickAsObservable()
            .Subscribe(_ => {
                _counterModel.MinusCounter();
                _counterView.SetValueText(_counterModel.Counter);
            })
            .AddTo(this);
    }
    void OnDestroy()
    {
        Destroy(this);
    }
}

手順

  1. SampleSceneのヒエラルキーにTextとPlusButtonとMinusButtonとRefreshButtonを作成する。
  2. ヒエラルキーにGameObjectを作成して、CounterViewに名前を変更する。CounterView.csをAddComponentする。
  3. ヒエラルキーにGameObjectを作成して、CounterModelに名前を変更する。CounterModel.csをAddComponentする。
  4. CounterPresenter.csをMainCanvasにAddComponentする。
  5. CounterViewオブジェクトを選択し、インスペクターのCounterViewの部分にそれぞれのUIをドラッグする。
  6. MainCanvasのCounterPresenterにCounterViewオブジェクトとCounterModelオブジェクトをドラッグする。

参考

https://qiita.com/OKsaiyowa/items/745c5359682c7baad6bf

https://qiita.com/Nakashima_Toshiki/items/5e0c36c3b0df78110d32