private void StartOldSim()
        {
            this.Simulation = SPY_Simulation.DeserializeFromJSONFile(this.file);

            this.Simulation.ProgressReported += this.ProcessProgressReport;

            this.Simulation.Run();
        }
        private void StartNewSim()
        {
            this.Simulation = new SPY_Simulation(11, 8, 6, 50, 10, SPY_History.DeserializeFromJSONFile(this.file));

            this.Simulation.ProgressReported += this.ProcessProgressReport;

            this.Simulation.Run();
        }