Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionCodeView.cs @ 13011

Last change on this file since 13011 was 13011, checked in by gkronber, 9 years ago

#2069 changed namespaces for trunk integration

File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.IO;
24using System.Windows.Forms;
25using HeuristicLab.Core.Views;
26using HeuristicLab.MainForm;
27using HeuristicLab.Problems.GeneticProgramming.RoboCode;
28
29namespace HeuristicLab.Problems.GeneticProgramming.Views.RoboCode {
30  [View("Robocode Tank Code View")]
31  [Content(typeof(Solution), IsDefaultView = true)]
32  public partial class SolutionCodeView : ItemView {
33    private const string programName = "BestSolution";
34
35    public new Solution Content {
36      get { return (Solution)base.Content; }
37      set { base.Content = value; }
38    }
39
40    public SolutionCodeView()
41      : base() {
42      InitializeComponent();
43    }
44
45    protected override void OnContentChanged() {
46      base.OnContentChanged();
47      if (Content == null) {
48        programCode.Text = string.Empty;
49      } else {
50        programCode.Text = Interpreter.InterpretProgramTree(Content.Tree.Root, programName);
51      }
52    }
53
54    private void btnSave_Click(object sender, EventArgs e) {
55      saveFileDialog.FileName = programName;
56      var result = saveFileDialog.ShowDialog(this);
57      if (result == DialogResult.OK)
58        File.WriteAllText(saveFileDialog.FileName, programCode.Text);
59    }
60
61    private void btnRunInRobocode_Click(object sender, EventArgs e) {
62      using (var battleRunnerDlg = new BattleRunnerDialog(Content)) {
63        var result = battleRunnerDlg.ShowDialog(this);
64        if (result == DialogResult.OK) {
65          var enemies = battleRunnerDlg.Enemies;
66          string path = enemies.RobocodePath;
67          int nrOfRounds = battleRunnerDlg.NrOfRounds;
68          Interpreter.EvaluateTankProgram(Content.Tree, path, enemies, programName, true, nrOfRounds);
69        }
70      }
71    }
72  }
73}
Note: See TracBrowser for help on using the repository browser.