Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/Symbols/Numerical Methods/GetGunHeading.cs @ 9630

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

#2069 fixed cloning constructors and formatting

File size: 1.3 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 GetGunHeading : CodeNode, INumericalMethod {
8    public override int MinimumArity { get { return 0; } }
9    public override int MaximumArity { get { return 0; } }
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 GetGunHeading(bool deserializing) : base(deserializing) { }
19    private GetGunHeading(GetGunHeading original, Cloner cloner)
20      : base(original, cloner) {
21
22    }
23
24    public GetGunHeading()
25      : base("GetGunHeading", "Returns the direction that the robot's gun is facing, in degrees.") {
26      this.Prefix = "getGunHeading(";
27      this.Suffix = ")";
28    }
29
30    public override IDeepCloneable Clone(Cloner cloner) {
31      return new GetGunHeading(this, cloner);
32    }
33
34    public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
35      return this.Prefix + this.Suffix;
36    }
37  }
38}
Note: See TracBrowser for help on using the repository browser.