Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/Fire.cs @ 9781

Last change on this file since 9781 was 9630, checked in by ascheibe, 11 years ago

#2069 fixed cloning constructors and formatting

File size: 1.7 KB
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
3using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
5namespace HeuristicLab.Problems.Robocode {
6  [StorableClass]
7  public class Fire : CodeNode {
8    public override int MinimumArity { get { return 1; } }
9    public override int MaximumArity { get { return 1; } }
10
11    [Storable]
12    public override string Prefix { get; set; }
13
14    [Storable]
15    public override string Suffix { get; set; }
16
17    [StorableConstructor]
18    private Fire(bool deserializing) : base(deserializing) { }
19    private Fire(Fire original, Cloner cloner)
20      : base(original, cloner) { }
21
22    public Fire()
23      : base("Fire", "Immediately fires a bullet.") {
24      this.Prefix = "setFire(";
25      this.Suffix = ");";
26    }
27
28    public override IDeepCloneable Clone(Cloner cloner) {
29      return new Fire(this, cloner);
30    }
31
32    public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
33      var enumerator = children.GetEnumerator();
34
35      if (!enumerator.MoveNext()) throw new System.Exception("Fire was not given a child.");
36      var symbol = enumerator.Current.Symbol;
37
38      if (!(symbol is ShotPower))
39        throw new System.Exception("Fire was given a child of type " + symbol.GetType().ToString() +
40            ". The expected child must be of type " + typeof(ShotPower).ToString() + ".");
41
42      string result = ((CodeNode)symbol).Interpret(enumerator.Current, enumerator.Current.Subtrees);
43      if (enumerator.MoveNext()) throw new System.Exception("Fire was given more than one child.");
44
45      return this.Prefix + result + this.Suffix;
46    }
47  }
48}
Note: See TracBrowser for help on using the repository browser.