ModernUO/Projects/Server/Maps
Kamron Batman 6d51b33cf8
feat: Add CanSpawnMobile overload with props Z-range support. (#2293)
### Summary

- Adds CanSpawnMobile(x, y, minZ, maxZ, canSwim, cantWalk, out spawnZ) overload for finding spawn surfaces within a Z range
- Adds CanSpawnItem(x, y, minZ, maxZ, out spawnZ) for item spawning with Surface+Impassable support (tables, furniture)
- Uses bitmask optimization inspired by Item.DropToWorld's m_OpenSlots pattern for O(1) surface/blocker checks
- HomeRange spawners now use surface detection to set proper Z bounds

### Key Changes

Map.cs:
- CanSpawnMobile with Z-range finds lowest valid surface for mobiles
- CanSpawnItem with Z-range finds lowest valid surface for items (including tables)
- CanFitItem for point-check item placement on Surface+Impassable tiles
- Bitmask approach eliminates nested loops and stackalloc arrays

Spawners:
- Simplified GetSpawnPosition using new Z-range methods
- HomeRange setter detects surface below spawner for proper Z bounds
- Consistent handling for mobiles and items

### Bug Fixes

- Water tiles (Impassable | Wet) no longer block swimming mobs
- Items can now spawn on tables/furniture (Surface+Impassable)

### Test Plan

- Run dotnet test - 631 tests pass
- Manual testing: multi-story spawning, water mobs, item spawning on tables
- Verify HomeRange spawner movement shifts bounds correctly
2025-12-27 17:01:15 -08:00
..
Map.ClientByDistanceEnumerator.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
Map.ClientEnumerator.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
Map.cs feat: Add CanSpawnMobile overload with props Z-range support. (#2293) 2025-12-27 17:01:15 -08:00
Map.ItemByDistanceEnumerator.cs fix: Fixes returning min distance from GetXInRangeByDistance (#2280) 2025-11-28 11:56:06 -08:00
Map.ItemEnumerator.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
Map.MobileByDistanceEnumerator.cs fix: Fixes returning min distance from GetXInRangeByDistance (#2280) 2025-11-28 11:56:06 -08:00
Map.MobileEnumerator.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
Map.MultiEnumerator.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
Map.StaticTileEnumerator.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
MapLoader.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
MapSelection.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00