Example #1
0
 public void SaveGameTest()
 {
     SaveGame testSaveGame = new SaveGame();
     testSaveGame.saveButtonOne_Click();
     testSaveGame.saveButtonTwo_Click();
     testSaveGame.saveButtonThree_Click();
     testSaveGame.saveButtonFour_Click();
     testSaveGame.cancelButton_Click();
 }
Example #2
0
 /// <summary>
 /// Saves the game to a .txt file.
 /// If the game is already saved, it adds to the current file
 /// </summary>
 private void saveButton_Click(object sender, EventArgs e)
 {
     //String location = Application.StartupPath;
     //String filename = "save.txt";
     //String pathString = System.IO.Path.Combine(location, filename);
     ////MessageBox.Show(pathString);
     //if (!System.IO.File.Exists(pathString))
     //{
     //    System.IO.File.Create(pathString).Dispose();
     //    System.IO.TextWriter tw = new System.IO.StreamWriter(pathString);
     //    tw.WriteLine("saving the game");
     //    tw.Close();
     //    MessageBox.Show("Saved the game to " + pathString);
     //}
     ////else if (System.IO.File.Exists(pathString))
     ////{
     ////    System.IO.TextWriter tw = new System.IO.StreamWriter(pathString);
     ////    tw.WriteLine("saving the game again!");
     ////    tw.Close();
     ////}
     SaveGame saveMenu = new SaveGame(gameWindow);
     saveMenu.Show();
 }