perf: Eliminates allocations in Container searching. (#2409)

## Summary

Removes per-call heap allocations from `Container`'s consume / find / group hot paths and from `BaseCreature.OnDeath`'s fame/karma tracking. The headline wins: kill the `List<List<Item>>` + `Item[][]` + `int[]` grouping bridges in `ConsumeTotal*` / `ConsumeTotalGrouped*` / `GetBestGroupAmount*`, and kill the per-call `Predicate<Item>` allocations in `FindItemsByType(Type)` / `FindItemsByType(Type[])`.

### `Container.cs`

- `ConsumeTotal`, `ConsumeTotalGrouped`, `GetBestGroupAmount` now share four streaming helpers (`HasAmount`, `TryFindGroupMeetingAmount`, `BestGroupTotal`, `ConsumeSlice`) backed by `PooledRefList` instead of allocating per-group lists and jagged arrays. Two-phase validate-then-consume pattern preserved — all-or-nothing semantics for spell reagents, vendor pay, and crafting still hold.
- `(Type)` / `(Type[])` / `(Type[][])` overload trios collapsed to single `ReadOnlySpan<Type>` + `ReadOnlySpan<int>` implementations. Implicit `T[] → ReadOnlySpan<T>` conversion means UOContent callers compile unchanged.
- Unused overloads deleted: `ConsumeTotalGrouped(Type)`, `ConsumeTotalGrouped(Type[][])`, `GetBestGroupAmount(Type)`, `GetBestGroupAmount(Type[][])`, plus the never-called `TryDropItems` hook and its private `ItemStackEntry` struct.
- Fixes a `PooledRefList` leak in `GetBestGroupAmount(Type[], …)` (missing `using`).
- `m_ContainerData` / `m_Items` / `m_TotalGold` / `m_TotalItems` / `m_TotalWeight` / `ContainerData.m_Table` / `ContainerData.logger` renamed to the underscored convention. `m_Items` cross-file rename for the Container-side references in `Item.cs`; `Item.CompactInfo.m_Items` deliberately left alone (separate effort).
- `CheckHold` parent walk simplified; trivial dispatch methods (`CheckHold` overloads, `OnItemAdded`, `OnItemRemoved`, `OnStackAttempt`) get `[MethodImpl(AggressiveInlining)]`; `Destroy` and `DisplayTo` cache `Items` outside the loop; dead comments removed.

### `Item.Enumerable.cs`

- `FindItemsByType(Type)` previously allocated a `Predicate<Item>` per call (method-group conversion). `FindItemsByType(Type[])` allocated a closure capturing `types`. Both now construct the enumerator with a `Type` / `ReadOnlySpan<Type>` field directly, no delegate.
- `FindItemsByTypeEnumerator<T>` gains two constructors plus a `Matches(T)` helper that picks the right filter inline. Constructor chaining via a private 2-arg seed constructor incidentally fixes a pre-existing bug where `PooledRefQueue` was always rented at capacity 0 because `_recurse` hadn't been assigned yet.
- `(Type[])` overload of `FindItemsByType` becomes `(ReadOnlySpan<Type>)`.
- `EnumerateItemsByType(Type)` / `EnumerateItemsByType(ReadOnlySpan<Type>)` / `ListItemsByType(Type)` / `ListItemsByType(ReadOnlySpan<Type>)` simplified to delegate to the new alloc-free overloads instead of filtering manually.

### `Utility.cs`

- `InTypeList<T>(this T, Type[])` and `InTypeList(this Type, Type[])` switched to `ReadOnlySpan<Type>`.

### `BaseCreature.cs`

- `OnDeath` per-death `List<Mobile>` / `List<int>` / `List<int>` for fame/karma tracking switched to `PooledRefList`.
This commit is contained in:
Kamron Batman 2026-04-25 13:40:21 -07:00 committed by GitHub
parent 597c81345e
commit c552f65673
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 771 additions and 792 deletions

View file

@ -132,4 +132,484 @@ public class ContainerTests
item => Assert.Equal(item3, item)
);
}
// -------------------------------------------------------------------------
// ConsumeTotal / ConsumeTotalGrouped / GetBestGroupAmount / GetAmount /
// FindItemByType / ConsumeUpTo behavior locks.
//
// These tests pin down the public contract before the optimization pass:
// - all-or-nothing semantics across multi-slot consume
// - callback ordering and per-item delta values
// - "first sufficient group wins" (not best) for ConsumeTotalGrouped
// - grouper(a, b) receives the group leader as `a`
// - >= amount threshold for groups
// -------------------------------------------------------------------------
private static Container MakeContainer(uint serial = 0x100) => new((Serial)serial);
private static Item MakeStack(uint serial, int amount, int hue = 0)
{
var item = new Item((Serial)serial) { Amount = amount };
if (hue != 0)
{
item.Hue = hue;
}
return item;
}
private static TestReagentA MakeReagentA(uint serial, int amount, int hue = 0)
{
var item = new TestReagentA((Serial)serial) { Amount = amount };
if (hue != 0)
{
item.Hue = hue;
}
return item;
}
private static TestReagentB MakeReagentB(uint serial, int amount, int hue = 0)
{
var item = new TestReagentB((Serial)serial) { Amount = amount };
if (hue != 0)
{
item.Hue = hue;
}
return item;
}
// Mirrors CraftItem.CheckHueGrouping: groups items that share a hue.
private static int HueGrouper(Item a, Item b) => b.Hue.CompareTo(a.Hue);
[Fact]
public void TestConsumeTotal_SingleType_ExactAmount_Succeeds()
{
var c = MakeContainer(0x200);
c.AddItem(MakeReagentA(0x201, 5));
Assert.True(c.ConsumeTotal(typeof(TestReagentA), 5));
Assert.Empty(c.Items); // Stack was fully consumed -> Delete()
}
[Fact]
public void TestConsumeTotal_SingleType_AcrossStacks_PartialOnLast()
{
var c = MakeContainer(0x210);
var a = MakeReagentA(0x211, 3);
var b = MakeReagentA(0x212, 4);
c.AddItem(a);
c.AddItem(b);
Assert.True(c.ConsumeTotal(typeof(TestReagentA), 5));
// BFS order: a fully consumed (3), b partially (2 of 4 remain).
Assert.True(a.Deleted);
Assert.False(b.Deleted);
Assert.Equal(2, b.Amount);
}
[Fact]
public void TestConsumeTotal_SingleType_NotEnough_NoConsumption()
{
var c = MakeContainer(0x220);
var a = MakeReagentA(0x221, 2);
var b = MakeReagentA(0x222, 2);
c.AddItem(a);
c.AddItem(b);
Assert.False(c.ConsumeTotal(typeof(TestReagentA), 10));
// Must not partially consume.
Assert.Equal(2, a.Amount);
Assert.Equal(2, b.Amount);
}
[Fact]
public void TestConsumeTotal_MultiType_FailsAtSlot1_Slot0Untouched()
{
var c = MakeContainer(0x230);
var ra = MakeReagentA(0x231, 5);
var rb = MakeReagentB(0x232, 1); // not enough for slot 1
c.AddItem(ra);
c.AddItem(rb);
var result = c.ConsumeTotal(
new[] { typeof(TestReagentA), typeof(TestReagentB) },
new[] { 5, 5 }
);
Assert.Equal(1, result);
// Critical all-or-nothing invariant.
Assert.Equal(5, ra.Amount);
Assert.Equal(1, rb.Amount);
}
[Fact]
public void TestConsumeTotal_NestedContainer_RecurseCountsChildItems()
{
var outer = MakeContainer(0x240);
var inner = MakeContainer(0x241);
outer.AddItem(inner);
inner.AddItem(MakeReagentA(0x242, 4));
outer.AddItem(MakeReagentA(0x243, 1));
Assert.True(outer.ConsumeTotal(typeof(TestReagentA), 5));
// Both reagents deleted; inner container itself persists in outer.
Assert.Single(outer.Items);
Assert.Empty(inner.Items);
}
[Fact]
public void TestConsumeTotal_CallbackFires_PerItem_WithDelta()
{
var c = MakeContainer(0x250);
c.AddItem(MakeReagentA(0x251, 3));
c.AddItem(MakeReagentA(0x252, 4));
var calls = new List<(int serial, int amount)>();
Assert.True(
c.ConsumeTotal(
typeof(TestReagentA), 5, true,
(item, amt) => calls.Add(((int)item.Serial.Value, amt))
)
);
Assert.Equal(2, calls.Count);
Assert.Equal((0x251, 3), calls[0]); // full first stack
Assert.Equal((0x252, 2), calls[1]); // partial second stack
}
[Fact]
public void TestConsumeTotalGrouped_HueGrouping_FirstSufficientGroupWins()
{
// Two hue groups: blue (sum=4, insufficient), red (sum=8, sufficient).
// First group meeting >= amount in BFS order wins. Blue is first; it's
// skipped because insufficient. Red wins. Verify red consumed, blue intact.
var c = MakeContainer(0x260);
var blue1 = MakeReagentA(0x261, 2, hue: 0x10);
var blue2 = MakeReagentA(0x262, 2, hue: 0x10);
var red1 = MakeReagentA(0x263, 5, hue: 0x20);
var red2 = MakeReagentA(0x264, 3, hue: 0x20);
c.AddItem(blue1);
c.AddItem(blue2);
c.AddItem(red1);
c.AddItem(red2);
var result = c.ConsumeTotalGrouped(
new[] { typeof(TestReagentA) }, new[] { 6 },
true, null, HueGrouper
);
Assert.Equal(-1, result);
Assert.Equal(2, blue1.Amount);
Assert.Equal(2, blue2.Amount);
// Red consumed: 5 + 1 = 6 needed.
Assert.True(red1.Deleted);
Assert.False(red2.Deleted);
Assert.Equal(2, red2.Amount);
}
[Fact]
public void TestConsumeTotalGrouped_GrouperReceivesGroupLeader()
{
// grouper(a, b) must receive the group's first item as `a`, not the
// previous item. This matters when grouping is order-sensitive.
var c = MakeContainer(0x270);
var i1 = MakeReagentA(0x271, 1, hue: 0x10);
var i2 = MakeReagentA(0x272, 1, hue: 0x10);
var i3 = MakeReagentA(0x273, 1, hue: 0x10);
c.AddItem(i1);
c.AddItem(i2);
c.AddItem(i3);
var leaderSerials = new List<int>();
c.ConsumeTotalGrouped(
new[] { typeof(TestReagentA) }, new[] { 3 },
true, null,
(a, b) =>
{
leaderSerials.Add((int)a.Serial.Value);
return b.Hue.CompareTo(a.Hue);
}
);
// Leader for every comparison in the single group must be i1 (the first).
Assert.NotEmpty(leaderSerials);
Assert.All(leaderSerials, s => Assert.Equal((int)i1.Serial.Value, s));
}
[Fact]
public void TestConsumeTotalGrouped_PartialFailure_NothingConsumedFromAnySlot()
{
// Slot 0 has enough; slot 1 does not. Nothing consumed, return 1.
var c = MakeContainer(0x280);
var a = MakeReagentA(0x281, 5, hue: 0x10);
var b = MakeReagentB(0x282, 1, hue: 0x10);
c.AddItem(a);
c.AddItem(b);
var result = c.ConsumeTotalGrouped(
new[] { typeof(TestReagentA), typeof(TestReagentB) },
new[] { 5, 5 },
true, null, HueGrouper
);
Assert.Equal(1, result);
Assert.Equal(5, a.Amount);
Assert.Equal(1, b.Amount);
}
[Fact]
public void TestConsumeTotalGrouped_ExactGroupAmount_Succeeds()
{
// Group sum equals exactly the requested amount. Threshold is >=, so
// a group of exactly N satisfies a request for N.
var c = MakeContainer(0x330);
var stack = MakeReagentA(0x331, 5, hue: 0x10);
c.AddItem(stack);
var result = c.ConsumeTotalGrouped(
new[] { typeof(TestReagentA) }, new[] { 5 },
true, null, HueGrouper
);
Assert.Equal(-1, result);
Assert.True(stack.Deleted);
}
[Fact]
public void TestConsumeTotalGrouped_CallbackOrderMatchesBFS()
{
// OnResourceConsumed in CraftItem.cs retains the hue of the largest
// consumed stack, so callback order must match BFS iteration order.
var c = MakeContainer(0x290);
c.AddItem(MakeReagentA(0x291, 3, hue: 0x10));
c.AddItem(MakeReagentA(0x292, 4, hue: 0x10));
var calls = new List<(int serial, int amount)>();
c.ConsumeTotalGrouped(
new[] { typeof(TestReagentA) }, new[] { 5 },
true,
(item, amt) => calls.Add(((int)item.Serial.Value, amt)),
HueGrouper
);
Assert.Equal(2, calls.Count);
Assert.Equal((0x291, 3), calls[0]);
Assert.Equal((0x292, 2), calls[1]);
}
[Fact]
public void TestGetBestGroupAmount_ReturnsLargestGroupSum()
{
var c = MakeContainer(0x2A0);
c.AddItem(MakeReagentA(0x2A1, 2, hue: 0x10));
c.AddItem(MakeReagentA(0x2A2, 2, hue: 0x10));
c.AddItem(MakeReagentA(0x2A3, 5, hue: 0x20));
c.AddItem(MakeReagentA(0x2A4, 3, hue: 0x20));
var best = c.GetBestGroupAmount(new[] { typeof(TestReagentA) }, true, HueGrouper);
Assert.Equal(8, best);
}
[Fact]
public void TestGetBestGroupAmount_EmptyOrNoMatch_ReturnsZero()
{
var c = MakeContainer(0x2B0);
Assert.Equal(0, c.GetBestGroupAmount(new[] { typeof(TestReagentA) }, true, HueGrouper));
c.AddItem(MakeReagentB(0x2B1, 5));
Assert.Equal(0, c.GetBestGroupAmount(new[] { typeof(TestReagentA) }, true, HueGrouper));
}
[Fact]
public void TestGetBestGroupAmount_NullGrouper_Throws()
{
var c = MakeContainer(0x2C0);
Assert.Throws<ArgumentNullException>(
() => c.GetBestGroupAmount(new[] { typeof(TestReagentA) }, true, null)
);
}
[Fact]
public void TestGetAmount_TypeArray_SumsAcrossTypes()
{
var c = MakeContainer(0x2D0);
c.AddItem(MakeReagentA(0x2D1, 3));
c.AddItem(MakeReagentB(0x2D2, 4));
c.AddItem(MakeStack(0x2D3, 99)); // base Item, doesn't match A or B
var total = c.GetAmount(new[] { typeof(TestReagentA), typeof(TestReagentB) });
Assert.Equal(7, total);
}
[Fact]
public void TestFindItemByType_Generic_WithPredicate()
{
var c = MakeContainer(0x2E0);
c.AddItem(MakeReagentA(0x2E1, 1, hue: 0x10));
var target = MakeReagentA(0x2E2, 1, hue: 0x20);
c.AddItem(target);
c.AddItem(MakeReagentA(0x2E3, 1, hue: 0x10));
var found = c.FindItemByType<TestReagentA>(true, item => item.Hue == 0x20);
Assert.Same(target, found);
}
[Fact]
public void TestConsumeUpTo_DeletesExhaustedStacks()
{
var c = MakeContainer(0x2F0);
var s1 = MakeReagentA(0x2F1, 3);
var s2 = MakeReagentA(0x2F2, 3);
c.AddItem(s1);
c.AddItem(s2);
var consumed = c.ConsumeUpTo(typeof(TestReagentA), 5);
Assert.Equal(5, consumed);
// BFS: first stack fully (3), second partially (2 of 3 remain).
Assert.True(s1.Deleted);
Assert.False(s2.Deleted);
Assert.Equal(1, s2.Amount);
}
[Fact]
public void TestConsumeTotal_LengthMismatch_Throws()
{
var c = MakeContainer(0x300);
Assert.Throws<ArgumentException>(
() => c.ConsumeTotal(new[] { typeof(TestReagentA) }, new[] { 1, 2 })
);
}
[Fact]
public void TestConsumeTotalGrouped_LengthMismatch_Throws()
{
var c = MakeContainer(0x310);
Assert.Throws<ArgumentException>(
() => c.ConsumeTotalGrouped(
new[] { typeof(TestReagentA) }, new[] { 1, 2 },
true, null, HueGrouper
)
);
}
[Fact]
public void TestConsumeTotalGrouped_NullGrouper_Throws()
{
var c = MakeContainer(0x320);
Assert.Throws<ArgumentNullException>(
() => c.ConsumeTotalGrouped(
new[] { typeof(TestReagentA) }, new[] { 1 },
true, null, null
)
);
}
// -------------------------------------------------------------------------
// FindItemsByType(Type) and FindItemsByType(ReadOnlySpan<Type>) — Phase 10:
// these used to allocate a Predicate<Item> per call (method-group conversion
// for the single-Type case, real closure for the Type[] case). The
// enumerator now stores the filter directly.
// -------------------------------------------------------------------------
[Fact]
public void TestFindItemsByType_RuntimeType_MatchesPredicatePath()
{
var c = MakeContainer(0x340);
c.AddItem(MakeReagentA(0x341, 1));
c.AddItem(MakeReagentB(0x342, 1));
c.AddItem(MakeReagentA(0x343, 1));
c.AddItem(MakeStack(0x344, 1)); // base Item, doesn't match TestReagentA
var fromRuntime = new List<int>();
foreach (var item in c.FindItemsByType(typeof(TestReagentA)))
{
fromRuntime.Add((int)item.Serial.Value);
}
var fromGeneric = new List<int>();
foreach (var item in c.FindItemsByType<TestReagentA>())
{
fromGeneric.Add((int)item.Serial.Value);
}
Assert.Equal(fromGeneric, fromRuntime);
Assert.Equal(new[] { 0x341, 0x343 }, fromRuntime);
}
[Fact]
public void TestFindItemsByType_TypeSpan_MatchesUnionOfTypes()
{
var c = MakeContainer(0x350);
c.AddItem(MakeReagentA(0x351, 1));
c.AddItem(MakeReagentB(0x352, 1));
c.AddItem(MakeStack(0x353, 1)); // base Item
var serials = new List<int>();
foreach (var item in c.FindItemsByType(new[] { typeof(TestReagentA), typeof(TestReagentB) }))
{
serials.Add((int)item.Serial.Value);
}
Assert.Equal(new[] { 0x351, 0x352 }, serials);
}
[Fact]
public void TestFindItemsByType_RuntimeType_NoAllocations()
{
// Establishes that the (Type) path no longer allocates a Predicate per
// call. Snapshot allocation counter, run a few iterations, assert flat.
var c = MakeContainer(0x360);
c.AddItem(MakeReagentA(0x361, 1));
c.AddItem(MakeReagentA(0x362, 1));
// Warm up to load any first-call jitting.
foreach (var _ in c.FindItemsByType(typeof(TestReagentA))) { }
var before = GC.GetAllocatedBytesForCurrentThread();
for (var i = 0; i < 100; i++)
{
foreach (var _ in c.FindItemsByType(typeof(TestReagentA)) ) { }
}
var delta = GC.GetAllocatedBytesForCurrentThread() - before;
// PooledRefQueue rents from the pool but the rental itself doesn't
// allocate when the bucket is warm. Allow a small headroom for any
// first-rent-after-pool-cleanup allocations but well below the ~48
// bytes/call the old delegate path would have produced (=4800 bytes).
Assert.True(delta < 1024, $"Expected near-zero allocations, got {delta} bytes across 100 iterations");
}
[Fact]
public void TestFindItemsByType_TypeSpan_NoAllocations()
{
var c = MakeContainer(0x370);
c.AddItem(MakeReagentA(0x371, 1));
c.AddItem(MakeReagentB(0x372, 1));
var types = new[] { typeof(TestReagentA), typeof(TestReagentB) };
foreach (var _ in c.FindItemsByType(types)) { } // warm
var before = GC.GetAllocatedBytesForCurrentThread();
for (var i = 0; i < 100; i++)
{
foreach (var _ in c.FindItemsByType(types)) { }
}
var delta = GC.GetAllocatedBytesForCurrentThread() - before;
// Old closure path: ~80 bytes/call → ~8000 bytes for 100 iterations.
Assert.True(delta < 1024, $"Expected near-zero allocations, got {delta} bytes across 100 iterations");
}
}
// Test-only Item subclasses used to differentiate concrete types in the
// consume/find/group tests above. They have no serialization generator
// (the tests never round-trip through World). Stackable is set so the Amount
// setter doesn't log "Amount changed for non-stackable item" warnings.
public sealed class TestReagentA : Item
{
public TestReagentA(Serial serial) : base(serial) => Stackable = true;
}
public sealed class TestReagentB : Item
{
public TestReagentB(Serial serial) : base(serial) => Stackable = true;
}

File diff suppressed because it is too large Load diff

View file

@ -54,16 +54,16 @@ public partial class Item
/// <paramref name="predicate" />.
/// </returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public FindItemsByTypeEnumerator<T> FindItemsByType<T>(bool recurse = true, Predicate<T> predicate = null) where T : Item =>
new(this, recurse, predicate);
public FindItemsByTypeEnumerator<T> FindItemsByType<T>(bool recurse = true, Predicate<T> predicate = null)
where T : Item => new(this, recurse, predicate);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public FindItemsByTypeEnumerator<Item> FindItemsByType(Type type, bool recurse = true) =>
new(this, recurse, type.IsInstanceOfType);
new(this, recurse, type);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public FindItemsByTypeEnumerator<Item> FindItemsByType(Type[] types, bool recurse = true) =>
new(this, recurse, item => item.InTypeList(types));
public FindItemsByTypeEnumerator<Item> FindItemsByType(ReadOnlySpan<Type> types, bool recurse = true) =>
new(this, recurse, types);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public FindItemsByTypeEnumerator<Item> FindItems(bool recurse = true, Predicate<Item> predicate = null) =>
@ -122,28 +122,22 @@ public partial class Item
{
var queue = PooledRefQueue<Item>.Create(128);
foreach (var item in FindItemsByType<Item>(recurse))
foreach (var item in FindItemsByType(type, recurse))
{
if (type.IsInstanceOfType(item))
{
queue.Enqueue(item);
}
queue.Enqueue(item);
}
return queue;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public PooledRefQueue<Item> EnumerateItemsByType(Type[] types, bool recurse = true)
public PooledRefQueue<Item> EnumerateItemsByType(ReadOnlySpan<Type> types, bool recurse = true)
{
var queue = PooledRefQueue<Item>.Create(128);
foreach (var item in FindItemsByType<Item>(recurse))
foreach (var item in FindItemsByType(types, recurse))
{
if (item.InTypeList(types))
{
queue.Enqueue(item);
}
queue.Enqueue(item);
}
return queue;
@ -170,28 +164,22 @@ public partial class Item
{
var list = PooledRefList<Item>.Create(128);
foreach (var item in FindItemsByType<Item>(recurse))
foreach (var item in FindItemsByType(type, recurse))
{
if (type.IsInstanceOfType(item))
{
list.Add(item);
}
list.Add(item);
}
return list;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public PooledRefList<Item> ListItemsByType(Type[] types, bool recurse = true)
public PooledRefList<Item> ListItemsByType(ReadOnlySpan<Type> types, bool recurse = true)
{
var list = PooledRefList<Item>.Create(128);
foreach (var item in FindItemsByType<Item>(recurse))
foreach (var item in FindItemsByType(types, recurse))
{
if (item.InTypeList(types))
{
list.Add(item);
}
list.Add(item);
}
return list;
@ -211,13 +199,30 @@ public partial class Item
private int _index;
private T _current;
private readonly bool _recurse;
private readonly Predicate<T> _predicate;
private Item _currentContainer;
private int _version;
// Exactly one filter source is used per enumerator instance, depending on
// which constructor was called. The unused fields stay at default and the
// branches below pick the right path. This avoids the per-call delegate
// allocation that the (Type)/(Type[]) factory methods used to incur.
private readonly Predicate<T> _predicate;
private readonly Type _runtimeType;
private readonly ReadOnlySpan<Type> _runtimeTypes;
public FindItemsByTypeEnumerator(Item container, bool recurse, Predicate<T> predicate)
: this(container, recurse) => _predicate = predicate;
public FindItemsByTypeEnumerator(Item container, bool recurse, Type runtimeType)
: this(container, recurse) => _runtimeType = runtimeType;
public FindItemsByTypeEnumerator(Item container, bool recurse, ReadOnlySpan<Type> runtimeTypes)
: this(container, recurse) => _runtimeTypes = runtimeTypes;
private FindItemsByTypeEnumerator(Item container, bool recurse)
{
_containers = PooledRefQueue<Item>.Create(_recurse ? 64 : 0);
_recurse = recurse;
_containers = PooledRefQueue<Item>.Create(recurse ? 64 : 0);
if (container != null)
{
@ -230,11 +235,6 @@ public partial class Item
_currentContainer = container;
_version = container.LookupContainerVersion();
}
_current = default;
_index = 0;
_recurse = recurse;
_predicate = predicate;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
@ -259,6 +259,22 @@ public partial class Item
return false;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private bool Matches(T t)
{
if (_runtimeType is not null)
{
return _runtimeType.IsInstanceOfType(t);
}
if (_runtimeTypes.Length > 0)
{
return t.GetType().InTypeList(_runtimeTypes);
}
return _predicate?.Invoke(t) != false;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private bool SetNextItem()
{
@ -270,12 +286,12 @@ public partial class Item
while (_index < _items.Length)
{
var item = _items[_index++];
if (_recurse && item.LookupItems() is { Count: > 0 } items)
if (_recurse && item.LookupItems() is { Count: > 0 })
{
_containers.Enqueue(item);
}
if (item is T t && _predicate?.Invoke(t) != false)
if (item is T t && Matches(t))
{
if (_version != _currentContainer.LookupContainerVersion())
{

View file

@ -1705,13 +1705,13 @@ public partial class Item : IHued, IComparable<Item>, ISpawnable, IObjectPropert
}
}
public List<Item> LookupItems() => (this is Container container ? container.m_Items : LookupCompactInfo()?.m_Items) ?? EmptyItems;
public List<Item> LookupItems() => (this is Container container ? container._items : LookupCompactInfo()?.m_Items) ?? EmptyItems;
public List<Item> AcquireItems()
{
if (this is Container cont)
{
return cont.m_Items ??= new List<Item>();
return cont._items ??= new List<Item>();
}
var info = AcquireCompactInfo();
@ -2714,7 +2714,7 @@ public partial class Item : IHued, IComparable<Item>, ISpawnable, IObjectPropert
if (this is Container)
{
(this as Container).m_Items = items;
(this as Container)._items = items;
}
else
{
@ -2875,7 +2875,7 @@ public partial class Item : IHued, IComparable<Item>, ISpawnable, IObjectPropert
if (this is Container cont)
{
cont.m_Items = items;
cont._items = items;
}
else
{
@ -3004,7 +3004,7 @@ public partial class Item : IHued, IComparable<Item>, ISpawnable, IObjectPropert
if (this is Container cont)
{
cont.m_Items = items;
cont._items = items;
}
else
{

View file

@ -1422,9 +1422,9 @@ public static partial class Utility
public static bool IsNullOrWhiteSpace(this ReadOnlySpan<char> span) => span.IsEmpty || span.IsWhiteSpace();
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static bool InTypeList<T>(this T obj, Type[] types) => obj.GetType().InTypeList(types);
public static bool InTypeList<T>(this T obj, ReadOnlySpan<Type> types) => obj.GetType().InTypeList(types);
public static bool InTypeList(this Type t, Type[] types)
public static bool InTypeList(this Type t, ReadOnlySpan<Type> types)
{
for (var i = 0; i < types.Length; ++i)
{

View file

@ -3289,9 +3289,9 @@ namespace Server.Mobiles
var (totalFame, totalKarma) = Titles.ComputeKillAwards(this, Map);
var list = GetLootingRights(DamageEntries, HitsMax);
var titles = new List<Mobile>();
var fame = new List<int>();
var karma = new List<int>();
using var titles = PooledRefList<Mobile>.Create();
var fame = PooledRefList<int>.Create();
var karma = PooledRefList<int>.Create();
var givenQuestKill = false;
var givenFactionKill = false;
@ -3396,6 +3396,9 @@ namespace Server.Mobiles
Titles.AwardFame(titles[i], fame[i], true);
Titles.AwardKarma(titles[i], karma[i], true);
}
fame.Dispose();
karma.Dispose();
}
base.OnDeath(c);