-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPlayer.cs
71 lines (63 loc) · 2.14 KB
/
Player.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
using System;
using System.Collections.Generic;
using System.Linq;
namespace Loaf
{
// For the sake of this example, we're just using a player singleton.
// It's marked IRecordable so we can save our game.
public class Player : SingletonManual<Player>, Dec.IRecordable
{
private List<ItemDec> inventory = new List<ItemDec>();
private int gold = 0;
public int Gold
{
get => gold;
}
public IEnumerable<ItemDec> Inventory
{
get => inventory;
}
public WeaponDec CurrentWeapon
{
get => inventory.OfType<WeaponDec>().MaxOfOrDefault(weapon => weapon.damage.Average);
}
public void AcquireItem(ItemDec item)
{
if (!inventory.Contains(item))
{
inventory.Add(item);
}
}
public void AcquireGold(int gold)
{
this.gold = (int)Math.Min((long)this.gold + gold, int.MaxValue);
}
public bool SpendGold(int gold)
{
if (this.gold >= gold)
{
this.gold = this.gold - gold;
return true;
}
else
{
return false;
}
}
// This is the entire serialization and deserialization code.
//
// I recognize that this is almost suspiciously simple.
// It feels like one of those tutorials where it shows you an example that is specifically customized to the abilities of the library,
// and where any actual real-world implementation is many times more complicated and finicky.
//
// It isn't, though. It really is this simple.
//
// Recorder handles primitive types, collections, Dec references, class references, non-tree structures, and circular structures automatically.
// In most cases all you need to do is list your fields and Recorder will do the rest.
public void Record(Dec.Recorder recorder)
{
recorder.Record(ref inventory, "inventory");
recorder.Record(ref gold, "gold");
}
}
}