1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
3 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Problems.Robocode {
|
---|
6 | [StorableClass]
|
---|
7 | public class OnScannedRobot : 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 OnScannedRobot(bool deserializing) : base(deserializing) { }
|
---|
19 | private OnScannedRobot(OnScannedRobot original, Cloner cloner)
|
---|
20 | : base(original, cloner) {
|
---|
21 |
|
---|
22 | }
|
---|
23 |
|
---|
24 | public OnScannedRobot()
|
---|
25 | : base("OnScannedRobot", "This method is called when your robot sees another robot, i.e. when the robot's radar scan \"hits\" another robot.") {
|
---|
26 | this.Prefix = "\r\npublic void onScannedRobot(ScannedRobotEvent e) {" +
|
---|
27 | "\r\ndouble absoluteBearing = getHeading() + e.getBearing();" +
|
---|
28 | "\r\ndouble bearingFromGun = normalRelativeAngleDegrees(absoluteBearing - getGunHeading());" +
|
---|
29 | "\r\nsetTurnGunRight(bearingFromGun);\r\n";
|
---|
30 | this.Suffix = "\r\nexecute();\r\n}\r\n";
|
---|
31 | }
|
---|
32 |
|
---|
33 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
34 | return new OnScannedRobot(this, cloner);
|
---|
35 | }
|
---|
36 |
|
---|
37 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
38 | string result = "";
|
---|
39 | foreach (ISymbolicExpressionTreeNode c in children)
|
---|
40 | result += "\r\n" + ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
41 | return this.Prefix + "\r\n" + result + "\r\n" + this.Suffix;
|
---|
42 | }
|
---|
43 | }
|
---|
44 | } |
---|