Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Runtime.Serialization;
|
---|
4 | using System.Threading;
|
---|
5 |
|
---|
6 | namespace AllocsFixes.PersistentData
|
---|
7 | {
|
---|
8 | [Serializable]
|
---|
9 | public class Inventory
|
---|
10 | {
|
---|
11 | public List<InvItem> bag;
|
---|
12 | public List<InvItem> belt;
|
---|
13 |
|
---|
14 | public Inventory ()
|
---|
15 | {
|
---|
16 | bag = new List<InvItem> ();
|
---|
17 | belt = new List<InvItem> ();
|
---|
18 | }
|
---|
19 |
|
---|
20 | public void Update (PlayerDataFile pdf)
|
---|
21 | {
|
---|
22 | Log.Out ("Updating player inventory - player id: " + pdf.id);
|
---|
23 | ProcessInv (bag, pdf.bag);
|
---|
24 | ProcessInv (belt, pdf.inventory);
|
---|
25 | }
|
---|
26 |
|
---|
27 | private void ProcessInv (List<InvItem> target, InventoryField[] sourceFields)
|
---|
28 | {
|
---|
29 | Monitor.Enter (target);
|
---|
30 | try {
|
---|
31 | target.Clear ();
|
---|
32 | for (int i = 0; i < sourceFields.Length; i++) {
|
---|
33 | if (sourceFields [i].count > 0) {
|
---|
34 | int count = sourceFields [i].count;
|
---|
35 | string name = getInvFieldName (sourceFields [i]);
|
---|
36 |
|
---|
37 | target.Add (new InvItem (name, count));
|
---|
38 | } else {
|
---|
39 | target.Add (null);
|
---|
40 | }
|
---|
41 | }
|
---|
42 | } finally {
|
---|
43 | Monitor.Exit (target);
|
---|
44 | }
|
---|
45 | }
|
---|
46 |
|
---|
47 | private string getInvFieldName (InventoryField item)
|
---|
48 | {
|
---|
49 | ItemBase iBase = ItemBase.list [item.itemValue.type];
|
---|
50 | return iBase.GetItemName(item.itemValue);
|
---|
51 | }
|
---|
52 |
|
---|
53 |
|
---|
54 | }
|
---|
55 | }
|
---|
56 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.