「Unity/Csharp/Delegate」の版間の差分
提供: 初心者エンジニアの簡易メモ
行21: | 行21: | ||
public delegate void CustomCallback(ResponseType responseType); | public delegate void CustomCallback(ResponseType responseType); | ||
private CustomCallback callbacks; | private CustomCallback callbacks; | ||
− | public void | + | public void AddCallback(CustomCallback callback) |
{ | { | ||
callbacks += callback; | callbacks += callback; | ||
行57: | 行57: | ||
GameObject gameObj = new GameObject(); | GameObject gameObj = new GameObject(); | ||
mountain = gameObj.AddComponent<Mountain>(); | mountain = gameObj.AddComponent<Mountain>(); | ||
− | mountain. | + | mountain.AddCallback(OnResponse); |
mountain.Exec("やっほー"); | mountain.Exec("やっほー"); | ||
} | } |
2018年11月15日 (木) 01:27時点における版
delegateとは
独自イベントを生成できるもの。httpのレスポンスなど少し待たないとレスポンスが戻ってこないところで使う。
delegateのサンプル
"やっほー"をリクエストすると1/2の確率で"やっほー"を返してくれるサンプル
delegateを宣言
- Mountain.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Mountain : MonoBehaviour { private string msg; public enum ResponseType { Success, Faild, NetworkError } public delegate void CustomCallback(ResponseType responseType); private CustomCallback callbacks; public void AddCallback(CustomCallback callback) { callbacks += callback; } public void Exec(string msg) { // 1/2の確率で成功 if (Random.Range(-10.0f, 10.0f) > 0) { this.msg = msg; if (callbacks != null) { callbacks(ResponseType.Success); } } else { this.msg = ""; if (callbacks != null) { callbacks(ResponseType.Faild); } } } public string GetMessage() { return msg; } }
呼び出し元
- NewBehaviourScript.cs
public class NewBehaviourScript : MonoBehaviour { Mountain mountain; // 送信 void Start () { GameObject gameObj = new GameObject(); mountain = gameObj.AddComponent<Mountain>(); mountain.AddCallback(OnResponse); mountain.Exec("やっほー"); } // 受信 public void OnResponse(Mountain.ResponseType responseType) { Debug.Log("OnResponse=" + responseType); if (mountain) { if (responseType.Equals(mountain.ResponseType.Success)) { Debug.Log("msg=" + mountain.GetMessage()); } else if (responseType.Equals(mountain.ResponseType.Faild)) { Debug.Log("msg=" + mountain.GetMessage()); } } } }
httpでdelegateを使った例
unity/Csharp/Request [ショートカット]