Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/Symbols/Event Methods/Events/OnHitByBullet.cs @ 9760

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

#2069 fixed cloning constructors and formatting

File size: 1.5 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 OnHitByBullet : CodeNode {
8    public override int MinimumArity { get { return 2; } }
9    public override int MaximumArity { get { return 10; } }
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 OnHitByBullet(bool deserializing) : base(deserializing) { }
19    private OnHitByBullet(OnHitByBullet original, Cloner cloner)
20      : base(original, cloner) {
21
22    }
23
24    public OnHitByBullet()
25      : base("OnHitByBullet", "This method is called when your robot is hit by a bullet.") {
26      this.Prefix = "\r\npublic void onHitByBullet(HitByBulletEvent e) {\r\n";
27      this.Suffix = "\r\nexecute();\r\n}\r\n";
28    }
29
30    public override IDeepCloneable Clone(Cloner cloner) {
31      return new OnHitByBullet(this, cloner);
32    }
33
34    public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
35      string result = "";
36      foreach (ISymbolicExpressionTreeNode c in children)
37        result += "\r\n" + ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
38      return this.Prefix + "\r\n" + result + "\r\n" + this.Suffix;
39    }
40  }
41}
Note: See TracBrowser for help on using the repository browser.