ModernUO/Projects/Server/Items
Kamron Batman 6f0e1a22f9
fix(core): Core cleanup, adds event loop synchronization, and fixes gumps (#429)
- [X] Cleans up gump packets
- [X] Adds event loop task synchronization
- [X] Moves timer pause and cleans up the delay task timer class
- [X] Cleans up the conserve cpu
- [X] Renames variables to make them consistent with the new style
- [X] Removes process delta recursion checking.
- [X] Properly diposes net states. This fixes edge cases that may cause hanging connections to stay open longer than they should.
- [X] Fixes an issue with gump items not compiling properly

Users can now utilize `Timer.Pause()` since the code will be executed on the proper thread.

```cs
public void async void Talk()
{
    _canTalk = false;
    await Timer.Pause(Utility.RandomMinMax(5000, 8000)); // Talk after 5-8 seconds
    DoTalk();
    await Timer.Pause(Utility.RandomMinMax(12000, 25000)); // Reset ability to talk after 12-25 seconds
    _canTalk = true;
}
```
2021-01-25 21:06:46 -08:00
..
BaseMulti.cs fix(core): Converts to ref struct enumerators (#426) 2021-01-22 19:41:44 -08:00
Container.cs fix(core): Removes some uses of Linq (#421) 2021-01-18 21:05:11 -08:00
Containers.cs fix(core): Fixes several serialization issues (#355) 2020-12-23 07:11:41 -08:00
Item.cs fix(core): Core cleanup, adds event loop synchronization, and fixes gumps (#429) 2021-01-25 21:06:46 -08:00
ItemBounds.cs Cleanup/Housekeeping (#242) 2020-09-12 15:31:21 -07:00
Layer.cs Cleanup/Housekeeping (#242) 2020-09-12 15:31:21 -07:00
LightType.cs Cleanup/Housekeeping (#242) 2020-09-12 15:31:21 -07:00
SecureTradeContainer.cs fix(core): Converts some packets & misc fixes/cleanup (#414) 2021-01-16 21:01:54 -08:00
VirtualCheck.cs Cleanup/Housekeeping (#242) 2020-09-12 15:31:21 -07:00
VirtualHair.cs fix(party): Converts party packets (#401) 2021-01-10 14:23:10 -08:00