-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrategy.cs
138 lines (116 loc) · 3.19 KB
/
strategy.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Startegy Design Pattern
// -----------------------
// The Strategy Design Pattern defines a family of algorithms,
// encapsulates each one, and makes them interchangeable. Strategy
// lets the algorithm vary independently from clients that use it.
// Problem:
// -----------------------
// Imagine that you are creating a game where the player can
// choose one of the three characters: a knight, a troll, or a
// wizard. Each character has a different set of skills and
// abilities. For example, the knight can use a sword and a
// shield, the troll can use a club, and the wizard can use a
// staff. The knight can also use a bow and arrow, but the troll
// and the wizard can't. The knight can also use magic, but the
// troll and the wizard can't. The troll can also use a sword,
// but the knight and the wizard can't. The wizard can also use
// a sword and a shield, but the knight and the troll can't.
using System;
// Define the weapon interface
interface IWeapon
{
string GetName();
}
// Implement the sword weapon
class Sword : IWeapon
{
public string GetName()
{
return "sword";
}
}
// Implement the club weapon
class Club : IWeapon
{
public string GetName()
{
return "club";
}
}
// Implement the spell weapon
class Spell : IWeapon
{
public string GetName()
{
return "spell";
}
}
// Define the player class
class Player
{
private readonly IWeapon _weapon;
private readonly IPlayerStrategy _strategy;
public Player(IPlayerStrategy strategy, IWeapon weapon)
{
_strategy = strategy;
_weapon = weapon;
}
public void Attack()
{
_strategy.Attack(_weapon);
}
}
// Define the strategy interface
interface IPlayerStrategy
{
void Attack(IWeapon weapon);
}
// Implement the knight strategy
class KnightStrategy : IPlayerStrategy
{
public void Attack(IWeapon weapon)
{
if (weapon.GetName() != "sword")
{
throw new ArgumentException($"Invalid weapon for knight: {weapon.GetName()}");
}
Console.WriteLine("Knight attacks with sword.");
}
}
// Implement the troll strategy
class TrollStrategy : IPlayerStrategy
{
public void Attack(IWeapon weapon)
{
if (weapon.GetName() != "club")
{
throw new ArgumentException($"Invalid weapon for troll: {weapon.GetName()}");
}
Console.WriteLine("Troll attacks with club.");
}
}
// Implement the wizard strategy
class WizardStrategy : IPlayerStrategy
{
public void Attack(IWeapon weapon)
{
if (weapon.GetName() != "spell")
{
throw new ArgumentException($"Invalid weapon for wizard: {weapon.GetName()}");
}
Console.WriteLine("Wizard attacks with spell.");
}
}
// Usage
class Program
{
static void Main(string[] args)
{
Player player = new Player(new KnightStrategy(), new Sword());
player.Attack(); // Output: Knight attacks with sword.
player = new Player(new TrollStrategy(), new Club());
player.Attack(); // Output: Troll attacks with club.
player = new Player(new WizardStrategy(), new Spell());
player.Attack(); // Output: Wizard attacks with spell.
}
}