Fix IDE0083
This commit is contained in:
committed by
Pavel Penev
parent
bd2b3d9793
commit
164abfdae1
@@ -276,7 +276,7 @@ dotnet_diagnostic.IDE0078.severity = silent # Requires C# 9 - TODO Consider enab
|
|||||||
|
|
||||||
# IDE0083 Use pattern matching ('not' operator)
|
# IDE0083 Use pattern matching ('not' operator)
|
||||||
#csharp_style_prefer_not_pattern = true
|
#csharp_style_prefer_not_pattern = true
|
||||||
dotnet_diagnostic.IDE0083.severity = silent # Requires C# 9 - TODO Consider enabling
|
dotnet_diagnostic.IDE0083.severity = warning
|
||||||
|
|
||||||
# IDE0170 Simplify property pattern
|
# IDE0170 Simplify property pattern
|
||||||
#csharp_style_prefer_extended_property_pattern = true
|
#csharp_style_prefer_extended_property_pattern = true
|
||||||
|
|||||||
@@ -510,7 +510,7 @@ namespace OpenRA
|
|||||||
|
|
||||||
public static bool IsTraitEnabled<T>(this T trait)
|
public static bool IsTraitEnabled<T>(this T trait)
|
||||||
{
|
{
|
||||||
return !(trait is IDisabledTrait disabledTrait) || !disabledTrait.IsTraitDisabled;
|
return trait is not IDisabledTrait disabledTrait || !disabledTrait.IsTraitDisabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static T FirstEnabledTraitOrDefault<T>(this IEnumerable<T> ts)
|
public static T FirstEnabledTraitOrDefault<T>(this IEnumerable<T> ts)
|
||||||
|
|||||||
@@ -309,7 +309,7 @@ namespace OpenRA.FileSystem
|
|||||||
if (!installedMods.TryGetValue(parentPath[1..], out var mod))
|
if (!installedMods.TryGetValue(parentPath[1..], out var mod))
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
if (!(mod.Package is Folder))
|
if (mod.Package is not Folder)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
path = Path.Combine(mod.Package.Name, filename);
|
path = Path.Combine(mod.Package.Name, filename);
|
||||||
|
|||||||
@@ -177,7 +177,7 @@ namespace OpenRA.Graphics
|
|||||||
|
|
||||||
foreach (var e in World.Effects)
|
foreach (var e in World.Effects)
|
||||||
{
|
{
|
||||||
if (!(e is IEffectAboveShroud ea))
|
if (e is not IEffectAboveShroud ea)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
foreach (var renderable in ea.RenderAboveShroud(this))
|
foreach (var renderable in ea.RenderAboveShroud(this))
|
||||||
@@ -218,7 +218,7 @@ namespace OpenRA.Graphics
|
|||||||
|
|
||||||
foreach (var e in World.Effects)
|
foreach (var e in World.Effects)
|
||||||
{
|
{
|
||||||
if (!(e is IEffectAnnotation ea))
|
if (e is not IEffectAnnotation ea)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
foreach (var renderAnnotation in ea.RenderAnnotation(this))
|
foreach (var renderAnnotation in ea.RenderAnnotation(this))
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ namespace OpenRA
|
|||||||
var ret = new MiniYaml(Type);
|
var ret = new MiniYaml(Type);
|
||||||
foreach (var o in initDict.Value)
|
foreach (var o in initDict.Value)
|
||||||
{
|
{
|
||||||
if (!(o is ActorInit init) || o is ISuppressInitExport)
|
if (o is not ActorInit init || o is ISuppressInitExport)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (initFilter != null && !initFilter(init))
|
if (initFilter != null && !initFilter(init))
|
||||||
|
|||||||
@@ -481,7 +481,7 @@ namespace OpenRA
|
|||||||
|
|
||||||
innerData.Status = MapStatus.Downloading;
|
innerData.Status = MapStatus.Downloading;
|
||||||
var installLocation = cache.MapLocations.FirstOrDefault(p => p.Value == MapClassification.User);
|
var installLocation = cache.MapLocations.FirstOrDefault(p => p.Value == MapClassification.User);
|
||||||
if (!(installLocation.Key is IReadWritePackage mapInstallPackage))
|
if (installLocation.Key is not IReadWritePackage mapInstallPackage)
|
||||||
{
|
{
|
||||||
Log.Write("debug", "Map install directory not found");
|
Log.Write("debug", "Map install directory not found");
|
||||||
innerData.Status = MapStatus.DownloadError;
|
innerData.Status = MapStatus.DownloadError;
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ namespace OpenRA.Network
|
|||||||
|
|
||||||
// Generating sync reports is expensive, so only do it if we have
|
// Generating sync reports is expensive, so only do it if we have
|
||||||
// other players to compare against if a desync did occur
|
// other players to compare against if a desync did occur
|
||||||
generateSyncReport = !(Connection is ReplayConnection) && LobbyInfo.GlobalSettings.EnableSyncReports;
|
generateSyncReport = Connection is not ReplayConnection && LobbyInfo.GlobalSettings.EnableSyncReports;
|
||||||
|
|
||||||
NetFrameNumber = 1;
|
NetFrameNumber = 1;
|
||||||
LocalFrameNumber = 0;
|
LocalFrameNumber = 0;
|
||||||
|
|||||||
@@ -210,7 +210,7 @@ namespace OpenRA.Primitives
|
|||||||
|
|
||||||
public override bool Equals(object obj)
|
public override bool Equals(object obj)
|
||||||
{
|
{
|
||||||
if (!(obj is Color))
|
if (obj is not Color)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return this == (Color)obj;
|
return this == (Color)obj;
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ namespace OpenRA.Primitives
|
|||||||
|
|
||||||
public override bool Equals(object obj)
|
public override bool Equals(object obj)
|
||||||
{
|
{
|
||||||
if (!(obj is Rectangle))
|
if (obj is not Rectangle)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return this == (Rectangle)obj;
|
return this == (Rectangle)obj;
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ namespace OpenRA.Primitives
|
|||||||
|
|
||||||
public override bool Equals(object obj)
|
public override bool Equals(object obj)
|
||||||
{
|
{
|
||||||
if (!(obj is Size))
|
if (obj is not Size)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return this == (Size)obj;
|
return this == (Size)obj;
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ namespace OpenRA.Scripting
|
|||||||
{
|
{
|
||||||
foreach (var arg in clrArgs)
|
foreach (var arg in clrArgs)
|
||||||
{
|
{
|
||||||
if (!(arg is LuaValue[] table))
|
if (arg is not LuaValue[] table)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
foreach (var value in table)
|
foreach (var value in table)
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ namespace OpenRA.Scripting
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
var elementHasClrValue = kv.Value.TryGetClrValue(innerType, out element);
|
var elementHasClrValue = kv.Value.TryGetClrValue(innerType, out element);
|
||||||
if (!elementHasClrValue || !(element is LuaValue))
|
if (!elementHasClrValue || element is not LuaValue)
|
||||||
kv.Value.Dispose();
|
kv.Value.Dispose();
|
||||||
if (!elementHasClrValue)
|
if (!elementHasClrValue)
|
||||||
throw new LuaException($"Unable to convert table value of type {kv.Value.WrappedClrType()} to type {innerType}");
|
throw new LuaException($"Unable to convert table value of type {kv.Value.WrappedClrType()} to type {innerType}");
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ namespace OpenRA
|
|||||||
|
|
||||||
public int CompareTo(object obj)
|
public int CompareTo(object obj)
|
||||||
{
|
{
|
||||||
if (!(obj is WDist))
|
if (obj is not WDist)
|
||||||
return 1;
|
return 1;
|
||||||
return Length.CompareTo(((WDist)obj).Length);
|
return Length.CompareTo(((WDist)obj).Length);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -355,7 +355,7 @@ namespace OpenRA
|
|||||||
{
|
{
|
||||||
effects.Add(e);
|
effects.Add(e);
|
||||||
|
|
||||||
if (!(e is ISpatiallyPartitionable))
|
if (e is not ISpatiallyPartitionable)
|
||||||
unpartitionedEffects.Add(e);
|
unpartitionedEffects.Add(e);
|
||||||
|
|
||||||
if (e is ISync se)
|
if (e is ISync se)
|
||||||
@@ -366,7 +366,7 @@ namespace OpenRA
|
|||||||
{
|
{
|
||||||
effects.Remove(e);
|
effects.Remove(e);
|
||||||
|
|
||||||
if (!(e is ISpatiallyPartitionable))
|
if (e is not ISpatiallyPartitionable)
|
||||||
unpartitionedEffects.Remove(e);
|
unpartitionedEffects.Remove(e);
|
||||||
|
|
||||||
if (e is ISync se)
|
if (e is ISync se)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ namespace OpenRA.Mods.Cnc.Traits
|
|||||||
public override void RulesetLoaded(Ruleset rules, ActorInfo ai)
|
public override void RulesetLoaded(Ruleset rules, ActorInfo ai)
|
||||||
{
|
{
|
||||||
var mobileInfo = ai.TraitInfoOrDefault<MobileInfo>();
|
var mobileInfo = ai.TraitInfoOrDefault<MobileInfo>();
|
||||||
if (mobileInfo == null || !(mobileInfo.LocomotorInfo is JumpjetLocomotorInfo))
|
if (mobileInfo == null || mobileInfo.LocomotorInfo is not JumpjetLocomotorInfo)
|
||||||
throw new YamlException("GrantConditionOnJumpjetLayer requires Mobile to be linked to a JumpjetLocomotor!");
|
throw new YamlException("GrantConditionOnJumpjetLayer requires Mobile to be linked to a JumpjetLocomotor!");
|
||||||
|
|
||||||
base.RulesetLoaded(rules, ai);
|
base.RulesetLoaded(rules, ai);
|
||||||
|
|||||||
@@ -316,7 +316,7 @@ namespace OpenRA.Mods.Common.Activities
|
|||||||
{
|
{
|
||||||
foreach (var actor in self.World.ActorMap.GetActorsAt(cell))
|
foreach (var actor in self.World.ActorMap.GetActorsAt(cell))
|
||||||
{
|
{
|
||||||
if (!(actor.OccupiesSpace is Mobile move) || move.IsTraitDisabled || !move.IsLeaving())
|
if (actor.OccupiesSpace is not Mobile move || move.IsTraitDisabled || !move.IsLeaving())
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ namespace OpenRA.Mods.Common.Activities
|
|||||||
else if (repairableNear == null)
|
else if (repairableNear == null)
|
||||||
QueueChild(move.MoveToTarget(self, host));
|
QueueChild(move.MoveToTarget(self, host));
|
||||||
}
|
}
|
||||||
else if (repairableNear == null && !(self.CurrentActivity.NextActivity is Move))
|
else if (repairableNear == null && self.CurrentActivity.NextActivity is not Move)
|
||||||
QueueChild(move.MoveToTarget(self, host));
|
QueueChild(move.MoveToTarget(self, host));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ namespace OpenRA.Mods.Common.Installer
|
|||||||
|
|
||||||
foreach (var prefix in prefixes)
|
foreach (var prefix in prefixes)
|
||||||
{
|
{
|
||||||
if (!(Registry.GetValue($"{prefix}GOG.com\\Games\\{appId.Value}", "path", null) is string installDir))
|
if (Registry.GetValue($"{prefix}GOG.com\\Games\\{appId.Value}", "path", null) is not string installDir)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (InstallerUtils.IsValidSourcePath(installDir, modSource))
|
if (InstallerUtils.IsValidSourcePath(installDir, modSource))
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace OpenRA.Mods.Common.Installer
|
|||||||
|
|
||||||
foreach (var prefix in source.RegistryPrefixes)
|
foreach (var prefix in source.RegistryPrefixes)
|
||||||
{
|
{
|
||||||
if (!(Microsoft.Win32.Registry.GetValue(prefix + source.RegistryKey, source.RegistryValue, null) is string path))
|
if (Microsoft.Win32.Registry.GetValue(prefix + source.RegistryKey, source.RegistryValue, null) is not string path)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
path = Path.GetDirectoryName(path);
|
path = Path.GetDirectoryName(path);
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace OpenRA.Mods.Common.Installer
|
|||||||
|
|
||||||
foreach (var prefix in source.RegistryPrefixes)
|
foreach (var prefix in source.RegistryPrefixes)
|
||||||
{
|
{
|
||||||
if (!(Microsoft.Win32.Registry.GetValue(prefix + source.RegistryKey, source.RegistryValue, null) is string path))
|
if (Microsoft.Win32.Registry.GetValue(prefix + source.RegistryKey, source.RegistryValue, null) is not string path)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Resolve 8.3 format (DOS-style) paths to the full path.
|
// Resolve 8.3 format (DOS-style) paths to the full path.
|
||||||
|
|||||||
@@ -413,7 +413,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Add takeoff activity if Aircraft trait is not paused and the actor should not land when idle.
|
// Add takeoff activity if Aircraft trait is not paused and the actor should not land when idle.
|
||||||
if (ForceLanding && !IsTraitPaused && !cruising && !(self.CurrentActivity is TakeOff))
|
if (ForceLanding && !IsTraitPaused && !cruising && self.CurrentActivity is not TakeOff)
|
||||||
{
|
{
|
||||||
ForceLanding = false;
|
ForceLanding = false;
|
||||||
|
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
if (!h.Key.IsIdle)
|
if (!h.Key.IsIdle)
|
||||||
{
|
{
|
||||||
// Ignore this actor if FindAndDeliverResources is working fine or it is performing a different activity
|
// Ignore this actor if FindAndDeliverResources is working fine or it is performing a different activity
|
||||||
if (!(h.Key.CurrentActivity is FindAndDeliverResources act) || !act.LastSearchFailed)
|
if (h.Key.CurrentActivity is not FindAndDeliverResources act || !act.LastSearchFailed)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
// The DeployTransform order does not have a position associated with it,
|
// The DeployTransform order does not have a position associated with it,
|
||||||
// so we can only queue a new transformation if something else has
|
// so we can only queue a new transformation if something else has
|
||||||
// already triggered the undeploy.
|
// already triggered the undeploy.
|
||||||
if (!order.Queued || !(self.CurrentActivity is Transform currentTransform))
|
if (!order.Queued || self.CurrentActivity is not Transform currentTransform)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
currentTransform.Queue(new IssueOrderAfterTransform("DeployTransform", order.Target));
|
currentTransform.Queue(new IssueOrderAfterTransform("DeployTransform", order.Target));
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
public override void RulesetLoaded(Ruleset rules, ActorInfo ai)
|
public override void RulesetLoaded(Ruleset rules, ActorInfo ai)
|
||||||
{
|
{
|
||||||
var mobileInfo = ai.TraitInfoOrDefault<MobileInfo>();
|
var mobileInfo = ai.TraitInfoOrDefault<MobileInfo>();
|
||||||
if (mobileInfo == null || !(mobileInfo.LocomotorInfo is SubterraneanLocomotorInfo))
|
if (mobileInfo == null || mobileInfo.LocomotorInfo is not SubterraneanLocomotorInfo)
|
||||||
throw new YamlException("GrantConditionOnSubterraneanLayer requires Mobile to be linked to a SubterraneanLocomotor!");
|
throw new YamlException("GrantConditionOnSubterraneanLayer requires Mobile to be linked to a SubterraneanLocomotor!");
|
||||||
|
|
||||||
base.RulesetLoaded(rules, ai);
|
base.RulesetLoaded(rules, ai);
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ namespace OpenRA.Mods.Common.Traits.Render
|
|||||||
protected override IEnumerable<IRenderable> RenderSelectionBars(Actor self, WorldRenderer wr, bool displayHealth, bool displayExtra)
|
protected override IEnumerable<IRenderable> RenderSelectionBars(Actor self, WorldRenderer wr, bool displayHealth, bool displayExtra)
|
||||||
{
|
{
|
||||||
// Don't render the selection bars for non-selectable actors
|
// Don't render the selection bars for non-selectable actors
|
||||||
if (!(interactable is Selectable) || (!displayHealth && !displayExtra))
|
if (interactable is not Selectable || (!displayHealth && !displayExtra))
|
||||||
yield break;
|
yield break;
|
||||||
|
|
||||||
var bounds = interactable.DecorationBounds(self, wr);
|
var bounds = interactable.DecorationBounds(self, wr);
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ namespace OpenRA.Mods.Common.Traits.Render
|
|||||||
if (exitingActor == null)
|
if (exitingActor == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!exitingActor.IsInWorld || exitingActor.Location != openExit || !(exitingActor.CurrentActivity is Mobile.ReturnToCellActivity))
|
if (!exitingActor.IsInWorld || exitingActor.Location != openExit || exitingActor.CurrentActivity is not Mobile.ReturnToCellActivity)
|
||||||
{
|
{
|
||||||
desiredFrame = 0;
|
desiredFrame = 0;
|
||||||
exitingActor = null;
|
exitingActor = null;
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
|
|
||||||
IEnumerable<IRenderable> ITiledTerrainRenderer.RenderUIPreview(WorldRenderer wr, TerrainTemplateInfo t, int2 origin, float scale)
|
IEnumerable<IRenderable> ITiledTerrainRenderer.RenderUIPreview(WorldRenderer wr, TerrainTemplateInfo t, int2 origin, float scale)
|
||||||
{
|
{
|
||||||
if (!(t is DefaultTerrainTemplateInfo template))
|
if (t is not DefaultTerrainTemplateInfo template)
|
||||||
yield break;
|
yield break;
|
||||||
|
|
||||||
var ts = map.Grid.TileSize;
|
var ts = map.Grid.TileSize;
|
||||||
@@ -187,7 +187,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
|
|
||||||
IEnumerable<IRenderable> ITiledTerrainRenderer.RenderPreview(WorldRenderer wr, TerrainTemplateInfo t, WPos origin)
|
IEnumerable<IRenderable> ITiledTerrainRenderer.RenderPreview(WorldRenderer wr, TerrainTemplateInfo t, WPos origin)
|
||||||
{
|
{
|
||||||
if (!(t is DefaultTerrainTemplateInfo template))
|
if (t is not DefaultTerrainTemplateInfo template)
|
||||||
yield break;
|
yield break;
|
||||||
|
|
||||||
var i = 0;
|
var i = 0;
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ namespace OpenRA.Mods.Common.UpdateRules
|
|||||||
var yaml = new YamlFileSet();
|
var yaml = new YamlFileSet();
|
||||||
foreach (var filename in files)
|
foreach (var filename in files)
|
||||||
{
|
{
|
||||||
if (!modData.ModFiles.TryGetPackageContaining(filename, out var package, out var name) || !(package is IReadWritePackage))
|
if (!modData.ModFiles.TryGetPackageContaining(filename, out var package, out var name) || package is not IReadWritePackage)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Failed to load file `{0}` for writing. It will not be updated.", filename);
|
Console.WriteLine("Failed to load file `{0}` for writing. It will not be updated.", filename);
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ namespace OpenRA.Mods.Common.UtilityCommands
|
|||||||
|
|
||||||
// HACK: We know that maps can only be oramap or folders, which are ReadWrite
|
// HACK: We know that maps can only be oramap or folders, which are ReadWrite
|
||||||
var folder = new Folder(Platform.EngineDir);
|
var folder = new Folder(Platform.EngineDir);
|
||||||
if (!(folder.OpenPackage(args[1], modData.ModFiles) is IReadWritePackage package))
|
if (folder.OpenPackage(args[1], modData.ModFiles) is not IReadWritePackage package)
|
||||||
throw new FileNotFoundException(args[1]);
|
throw new FileNotFoundException(args[1]);
|
||||||
|
|
||||||
IEnumerable<UpdateRule> rules = null;
|
IEnumerable<UpdateRule> rules = null;
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
var disconnected = false;
|
var disconnected = false;
|
||||||
widget.Get<LogicTickerWidget>("DISCONNECT_WATCHER").OnTick = () =>
|
widget.Get<LogicTickerWidget>("DISCONNECT_WATCHER").OnTick = () =>
|
||||||
{
|
{
|
||||||
if (!(orderManager.Connection is NetworkConnection connection))
|
if (orderManager.Connection is not NetworkConnection connection)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (disconnected || connection.ConnectionState != ConnectionState.NotConnected)
|
if (disconnected || connection.ConnectionState != ConnectionState.NotConnected)
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
|
|
||||||
foreach (var kv in modData.MapCache.MapLocations)
|
foreach (var kv in modData.MapCache.MapLocations)
|
||||||
{
|
{
|
||||||
if (!(kv.Key is Folder folder))
|
if (kv.Key is not Folder folder)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
try
|
try
|
||||||
@@ -209,7 +209,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (!(map.Package is IReadWritePackage package) || package.Name != combinedPath)
|
if (map.Package is not IReadWritePackage package || package.Name != combinedPath)
|
||||||
{
|
{
|
||||||
selectedDirectory.Folder.Delete(combinedPath);
|
selectedDirectory.Folder.Delete(combinedPath);
|
||||||
if (fileType == MapFileType.OraMap)
|
if (fileType == MapFileType.OraMap)
|
||||||
|
|||||||
@@ -276,7 +276,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
games[games.IndexOf(oldPath)] = newPath;
|
games[games.IndexOf(oldPath)] = newPath;
|
||||||
foreach (var c in gameList.Children)
|
foreach (var c in gameList.Children)
|
||||||
{
|
{
|
||||||
if (!(c is ScrollItemWidget item) || item.ItemKey != oldPath)
|
if (c is not ScrollItemWidget item || item.ItemKey != oldPath)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
item.ItemKey = newPath;
|
item.ItemKey = newPath;
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
// Select the first active tab
|
// Select the first active tab
|
||||||
foreach (var b in typesContainer.Children)
|
foreach (var b in typesContainer.Children)
|
||||||
{
|
{
|
||||||
if (!(b is ProductionTypeButtonWidget button) || button.IsDisabled())
|
if (b is not ProductionTypeButtonWidget button || button.IsDisabled())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
button.OnClick();
|
button.OnClick();
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
|
|
||||||
forceAttackButton.IsDisabled = () => { UpdateStateIfNecessary(); return forceAttackDisabled; };
|
forceAttackButton.IsDisabled = () => { UpdateStateIfNecessary(); return forceAttackDisabled; };
|
||||||
forceAttackButton.IsHighlighted = () => !forceAttackButton.IsDisabled() && IsForceModifiersActive(Modifiers.Ctrl)
|
forceAttackButton.IsHighlighted = () => !forceAttackButton.IsDisabled() && IsForceModifiersActive(Modifiers.Ctrl)
|
||||||
&& !(world.OrderGenerator is AttackMoveOrderGenerator);
|
&& world.OrderGenerator is not AttackMoveOrderGenerator;
|
||||||
|
|
||||||
forceAttackButton.OnClick = () =>
|
forceAttackButton.OnClick = () =>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var option in allOptions.Where(o => !(o is LobbyBooleanOption)))
|
foreach (var option in allOptions.Where(o => o is not LobbyBooleanOption))
|
||||||
{
|
{
|
||||||
if (dropdownColumns.Count == 0)
|
if (dropdownColumns.Count == 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
|
|
||||||
var multiClick = mi.MultiTapCount >= 2;
|
var multiClick = mi.MultiTapCount >= 2;
|
||||||
|
|
||||||
if (!(World.OrderGenerator is UnitOrderGenerator uog))
|
if (World.OrderGenerator is not UnitOrderGenerator uog)
|
||||||
{
|
{
|
||||||
ApplyOrders(World, mi);
|
ApplyOrders(World, mi);
|
||||||
isDragging = false;
|
isDragging = false;
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ namespace OpenRA.Mods.D2k.Traits.Buildings
|
|||||||
{
|
{
|
||||||
var map = self.World.Map;
|
var map = self.World.Map;
|
||||||
|
|
||||||
if (!(self.World.Map.Rules.TerrainInfo is ITemplatedTerrainInfo terrainInfo))
|
if (self.World.Map.Rules.TerrainInfo is not ITemplatedTerrainInfo terrainInfo)
|
||||||
throw new InvalidDataException("D2kBuilding requires a template-based tileset.");
|
throw new InvalidDataException("D2kBuilding requires a template-based tileset.");
|
||||||
|
|
||||||
var template = terrainInfo.Templates[info.ConcreteTemplate];
|
var template = terrainInfo.Templates[info.ConcreteTemplate];
|
||||||
|
|||||||
Reference in New Issue
Block a user