Merge pull request #8321 from penev92/bleed_lintUpgrades

Add a lint check for actor upgrades
This commit is contained in:
Matthias Mailänder
2015-06-27 16:41:04 +02:00
16 changed files with 243 additions and 12 deletions

View File

@@ -9,12 +9,14 @@
#endregion
using System.Linq;
using OpenRA.Traits;
namespace OpenRA.Mods.Common.Traits
{
[Desc("Grants an upgrade to the collector.")]
public class GrantUpgradeCrateActionInfo : CrateActionInfo
{
[UpgradeGrantedReference]
[Desc("The upgrades to apply.")]
public readonly string[] Upgrades = { };

View File

@@ -13,9 +13,14 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Traits
{
[Desc("Grants upgrades to the actor this is attached to when prerequisites are available.")]
public class GlobalUpgradableInfo : ITraitInfo, Requires<UpgradeManagerInfo>
{
[UpgradeGrantedReference]
[Desc("List of upgrades to apply.")]
public readonly string[] Upgrades = { };
[Desc("List of required prerequisites.")]
public readonly string[] Prerequisites = { };
public object Create(ActorInitializer init) { return new GlobalUpgradable(init.Self, this); }

View File

@@ -19,6 +19,7 @@ namespace OpenRA.Mods.Common.Traits
{
class GrantUpgradePowerInfo : SupportPowerInfo
{
[UpgradeGrantedReference]
[Desc("The upgrades to apply.")]
public readonly string[] Upgrades = { };

View File

@@ -18,6 +18,7 @@ namespace OpenRA.Mods.Common.Traits
{
public class DeployToUpgradeInfo : ITraitInfo, Requires<UpgradeManagerInfo>
{
[UpgradeGrantedReference]
[Desc("The upgrades to grant when deploying and revoke when undeploying.")]
public readonly string[] Upgrades = { };

View File

@@ -7,6 +7,7 @@
* see COPYING.
*/
#endregion
using System.Collections.Generic;
using System.Linq;
using OpenRA.Traits;
@@ -16,6 +17,7 @@ namespace OpenRA.Mods.Common.Traits
/// <summary>Use as base class for *Info to subclass of UpgradableTrait. (See UpgradableTrait.)</summary>
public abstract class UpgradableTraitInfo
{
[UpgradeUsedReference]
[Desc("The upgrade types which can enable or disable this trait.")]
public readonly string[] UpgradeTypes = { };

View File

@@ -18,6 +18,7 @@ namespace OpenRA.Mods.Common.Traits
[Desc("Applies an upgrade to actors within a specified range.")]
public class UpgradeActorsNearInfo : ITraitInfo
{
[UpgradeGrantedReference]
[Desc("The upgrades to grant.")]
public readonly string[] Upgrades = { };