[Design Pattern] 9. μ λ΅ ν¨ν΄(Strategy)
μΉ΄ν κ³ λ¦¬: Design Pattern
νκ·Έ: C#, Design Pattern
Strategyν¨ν΄
Strategy
μ λ΅ ν¨ν΄(Strategy)
λλ‘ κ΅¬ν
λλ‘ μ λ€μν λμμ ꡬννλ μν©
λ°νμμ νΉμ λμμ κ°μ²΄μ λ°λ‘ ν λΉν μ μμ
context : μμ μ μμ
μ μννλλ° νμν μ λ΅μ μ ννλ ν΄λμ€
strategy : μ λ΅ μΈν°νμ΄μ€λ₯Ό ꡬνν ν΄λμ€λ€λ‘, νΉμ νλμ μ 곡ν¨
Client : ν΄λΌμ΄μΈνΈμμ context ν΄λμ€λ₯Ό μμ±
μ₯μ
Β Β 1. μΊ‘μν μ λ μ μμ.
Β Β 2. λ°νμμ κ°μ²΄κ° μ¬μ©νλ μκ³ λ¦¬μ¦μ κ΅νν μ μμ.
μ λ΅ ν¨ν΄κ³Ό μνν¨ν΄μ΄ νΌλλ μ μμ, κ΅¬μ‘°κ° μ μ¬νμ§λ§ μλκ° λ§€μ° λ€λ¦.
μ λ΅ ν¨ν΄ : κ°μ λ¬Έμ λ₯Ό ν΄κ²°νλ μ¬λ¬ μκ³ λ¦¬μ¦μ΄ μμ λ μ΄λ€ μ€ νλλ₯Ό λ°νμμ μ νν΄μΌ ν λ, μ¦ μκ³ λ¦¬μ¦ μ νμ μ€μ
μν ν¨ν΄ : κ°μ²΄κ° μ¬λ¬ μνλ₯Ό κ°μ§κ³ μκ³ , μνμ λ°λΌ νλμ΄ λ¬λΌμ ΈμΌ ν λ. μ¦, μνμ λ°λ₯Έ νλ λ³κ²½
Drone
using UnityEngine;
public class Drone : MonoBehaviour {
public void ApplyStrategy(IBehaviour strategy) {
strategy.Maneuver(this);
}
}
ClientStrategy
using UnityEngine;
using System.Collections.Generic;
public class ClientStrategy : MonoBehaviour {
private GameObject _drone;
private List<IBehaviour>
_components = new List<IBehaviour>();
private void SpawnDrone() {
_drone =
GameObject.CreatePrimitive(PrimitiveType.Cube);
_drone.AddComponent<Drone>();
_drone.transform.position =
Random.insideUnitSphere * 10;
ApplyRandomStrategies();
}
private void ApplyRandomStrategies() {
_components.Add(
_drone.AddComponent<Weaving>());
_components.Add(
_drone.AddComponent<Bopping>());
_components.Add(
_drone.AddComponent<Fallback>());
int index = Random.Range(0, _components.Count);
_drone.GetComponent<Drone>().
ApplyStrategy(_components[index]);
}
void OnGUI() {
if (GUILayout.Button("Spawn Drone")) {
SpawnDrone();
}
}
}
μ‘λ΄, μ 리
- λμμΈ ν¨ν΄μ μ μ΄μ νΉμ λ¬Έμ λ₯Ό ν΄κ²°νκΈ° μν΄ κ³ λ €λ κ².(μ±λ₯, λ©λͺ¨λ¦¬ μ¬μ© κ³ λ €)
- μΆκ° λ΄μ© μ 리
[C#] λμμΈ ν¨ν΄ (Design Pattern)
TOP
λκΈλ¨κΈ°κΈ°