Rev | Line | |
---|
[144] | 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 | {
|
---|
[192] | 22 | //Log.Out ("Updating player inventory - player id: " + pdf.id);
|
---|
[197] | 23 | ProcessInv (bag, pdf.bag, pdf.id);
|
---|
| 24 | ProcessInv (belt, pdf.inventory, pdf.id);
|
---|
[144] | 25 | }
|
---|
| 26 |
|
---|
[197] | 27 | private void ProcessInv (List<InvItem> target, InventoryField[] sourceFields, int id)
|
---|
[144] | 28 | {
|
---|
[189] | 29 | lock (target) {
|
---|
[144] | 30 | target.Clear ();
|
---|
| 31 | for (int i = 0; i < sourceFields.Length; i++) {
|
---|
| 32 | if (sourceFields [i].count > 0) {
|
---|
| 33 | int count = sourceFields [i].count;
|
---|
[224] | 34 | int maxAllowed = ItemBase.list [sourceFields [i].itemValue.type].Stacknumber.Value;
|
---|
[232] | 35 | string name = ItemBase.list [sourceFields [i].itemValue.type].GetItemName ();
|
---|
[144] | 36 |
|
---|
[197] | 37 | if (count > maxAllowed)
|
---|
| 38 | Log.Out ("Player with ID " + id + " has stack for \"" + name + "\" greater than allowed (" + count + " > " + maxAllowed + ")");
|
---|
[144] | 39 | target.Add (new InvItem (name, count));
|
---|
| 40 | } else {
|
---|
| 41 | target.Add (null);
|
---|
| 42 | }
|
---|
| 43 | }
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 |
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.