[9790] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2013 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 |
|
---|
| 22 | using System;
|
---|
[9985] | 23 | using System.IO;
|
---|
| 24 | using System.Windows.Forms;
|
---|
[9779] | 25 | using HeuristicLab.Core.Views;
|
---|
| 26 | using HeuristicLab.MainForm;
|
---|
[9985] | 27 | using HeuristicLab.Problems.Robocode.Views;
|
---|
[9779] | 28 |
|
---|
[9790] | 29 | namespace HeuristicLab.Problems.Robocode {
|
---|
| 30 | [View("Robocode Tank Code View")]
|
---|
| 31 | [Content(typeof(Solution), IsDefaultView = true)]
|
---|
[9890] | 32 | public partial class SolutionCodeView : ItemView {
|
---|
| 33 | private const string programName = "BestSolution";
|
---|
| 34 |
|
---|
[9790] | 35 | public new Solution Content {
|
---|
| 36 | get { return (Solution)base.Content; }
|
---|
| 37 | set { base.Content = value; }
|
---|
| 38 | }
|
---|
[9779] | 39 |
|
---|
[9790] | 40 | public SolutionCodeView()
|
---|
| 41 | : base() {
|
---|
| 42 | InitializeComponent();
|
---|
| 43 | }
|
---|
[9779] | 44 |
|
---|
[9790] | 45 | protected override void OnContentChanged() {
|
---|
| 46 | base.OnContentChanged();
|
---|
| 47 | if (Content == null) {
|
---|
[9890] | 48 | programCode.Text = string.Empty;
|
---|
[9790] | 49 | } else {
|
---|
[9890] | 50 | programCode.Text = Interpreter.InterpretProgramTree(Content.Tree.Root, programName);
|
---|
[9790] | 51 | }
|
---|
| 52 | }
|
---|
[9779] | 53 |
|
---|
[9985] | 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 |
|
---|
[9790] | 61 | private void btnRunInRobocode_Click(object sender, EventArgs e) {
|
---|
[9985] | 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 | }
|
---|
[9779] | 71 | }
|
---|
[9790] | 72 | }
|
---|
[9779] | 73 | }
|
---|