[13210] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16140] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[13210] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.IO;
|
---|
| 24 | using System.Windows.Forms;
|
---|
| 25 | using HeuristicLab.Core.Views;
|
---|
| 26 | using HeuristicLab.MainForm;
|
---|
| 27 | using HeuristicLab.Problems.GeneticProgramming.Robocode;
|
---|
| 28 |
|
---|
| 29 | namespace 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 | programCode.Text = Content == null ? string.Empty : Interpreter.InterpretProgramTree(Content.Tree.Root, programName);
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | private void btnSave_Click(object sender, EventArgs e) {
|
---|
| 51 | saveFileDialog.FileName = programName;
|
---|
| 52 | var result = saveFileDialog.ShowDialog(this);
|
---|
| 53 | if (result == DialogResult.OK)
|
---|
| 54 | File.WriteAllText(saveFileDialog.FileName, programCode.Text);
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | private void btnRunInRobocode_Click(object sender, EventArgs e) {
|
---|
| 58 | using (var battleRunnerDlg = new BattleRunnerDialog(Content)) {
|
---|
| 59 | var result = battleRunnerDlg.ShowDialog(this);
|
---|
| 60 | if (result == DialogResult.OK) {
|
---|
| 61 | var enemies = battleRunnerDlg.Enemies;
|
---|
| 62 | string path = enemies.RobocodePath;
|
---|
| 63 | int nrOfRounds = battleRunnerDlg.NrOfRounds;
|
---|
| 64 | Interpreter.EvaluateTankProgram(Content.Tree, path, enemies, programName, true, nrOfRounds);
|
---|
| 65 | }
|
---|
| 66 | }
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|