From 5775fa5e9fa4ad5c232367dd19ab384253000fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 1 Nov 2014 12:39:23 +0100 Subject: [PATCH] add a new lint check for map rule loading --- OpenRA.Mods.RA/Lint/CheckMapRules.cs | 31 ++++++++++++++++++++++++++++ OpenRA.Mods.RA/OpenRA.Mods.RA.csproj | 1 + 2 files changed, 32 insertions(+) create mode 100644 OpenRA.Mods.RA/Lint/CheckMapRules.cs diff --git a/OpenRA.Mods.RA/Lint/CheckMapRules.cs b/OpenRA.Mods.RA/Lint/CheckMapRules.cs new file mode 100644 index 0000000000..895a2d4eaa --- /dev/null +++ b/OpenRA.Mods.RA/Lint/CheckMapRules.cs @@ -0,0 +1,31 @@ +#region Copyright & License Information +/* + * Copyright 2007-2014 The OpenRA Developers (see AUTHORS) + * This file is part of OpenRA, which is free software. It is made + * available to you under the terms of the GNU General Public License + * as published by the Free Software Foundation. For more information, + * see COPYING. + */ +#endregion + +using System; +using OpenRA.Traits; + +namespace OpenRA.Mods.RA +{ + public class CheckMapRules : ILintPass + { + public void Run(Action emitError, Action emitWarning, Map map) + { + try + { + Game.modData.RulesetCache.LoadMapRules(map); + } + catch (Exception e) + { + emitError(e.Message); + } + } + } +} + diff --git a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj index f645279052..87c417404c 100644 --- a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj +++ b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj @@ -494,6 +494,7 @@ +