aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-01 13:05:37 -0400
committerlempamo <[email protected]>2017-08-01 13:05:37 -0400
commitc0fd6c4d1b176d44f05d2f20c4d4439f3278f632 (patch)
tree5b0ef118aa352bb7a452a1618ddb35fd9a5256fb /TimeHACK.Main
parent554fc5e2b3027f104fceda0421fed4352749d0f8 (diff)
downloadhistacom2-c0fd6c4d1b176d44f05d2f20c4d4439f3278f632.tar.gz
histacom2-c0fd6c4d1b176d44f05d2f20c4d4439f3278f632.tar.bz2
histacom2-c0fd6c4d1b176d44f05d2f20c4d4439f3278f632.zip
added more "files"
Diffstat (limited to 'TimeHACK.Main')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs106
-rw-r--r--TimeHACK.Main/TitleScreen.cs15
2 files changed, 30 insertions, 91 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
index c27f6a4..3debce7 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
@@ -12,6 +12,7 @@ using System.IO;
using TimeHACK.Engine;
using Newtonsoft.Json;
using TimeHACK.Engine.Template;
+using System.Diagnostics;
namespace TimeHACK.OS.Win95.Win95Apps
{
@@ -52,22 +53,23 @@ namespace TimeHACK.OS.Win95.Win95Apps
mainView.LargeImageList = new ImageList();
mainView.LargeImageList.ImageSize = new Size(32, 32);
- mainView.LargeImageList.Images.Add(Properties.Resources.Win95Computer);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicFolder);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicIE4);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicInbox);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicMSN);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicNetworking);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicOutlook);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicRecycle);
- mainView.LargeImageList.Images.Add(Properties.Resources.Win95File);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicFolder);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicApp);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicSetup);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicNotepad);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicCalcBig);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicNotepadBig);
- mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicRegedit);
+ mainView.LargeImageList.Images.AddRange(new Bitmap[] { Properties.Resources.Win95Computer, // 0
+ Properties.Resources.WinClassicFolder,
+ Properties.Resources.WinClassicIE4,
+ Properties.Resources.WinClassicInbox,
+ Properties.Resources.WinClassicMSN,
+ Properties.Resources.WinClassicNetworking, // 5
+ Properties.Resources.WinClassicOutlook,
+ Properties.Resources.WinClassicRecycle,
+ Properties.Resources.Win95File,
+ Properties.Resources.WinClassicFolder,
+ Properties.Resources.WinClassicApp, // 10
+ Properties.Resources.WinClassicSetup,
+ Properties.Resources.WinClassicNotepad,
+ Properties.Resources.WinClassicCalcBig,
+ Properties.Resources.WinClassicNotepadBig,
+ Properties.Resources.WinClassicRegedit, // 15
+ Properties.Resources.WinClassicWordpad });
program.BringToFront();
@@ -162,39 +164,10 @@ namespace TimeHACK.OS.Win95.Win95Apps
FileSystemFolderInfo fsfi = JsonConvert.DeserializeObject<FileSystemFolderInfo>(File.ReadAllText(Path.Combine(CurrentDirectory, "_data.info")));
foreach(var item in fsfi.Files)
{
- if (item.Name == Path.GetFileName(str)) { itm.ImageIndex = item.FileIcon; break; }
+ Debug.Print(item.Name + " " + Path.GetFileName(str));
+ if (item.Name == Path.GetFileName(str)) { itm.ImageIndex = item.FileIcon; return; }
}
-
- /*switch (new FileInfo(str).Extension)
- {
- case ".exe":
- string contents;
-
- contents = File.ReadAllText(str);
-
- switch (contents.ToLower())
- {
- case "calc":
- itm.ImageIndex = 13;
- break;
- case "explorer":
- itm.ImageIndex = 0;
- break;
- case "notepad":
- itm.ImageIndex = 12;
- break;
- default:
- itm.ImageIndex = 10;
- break;
- }
- break;
- case ".txt":
- itm.ImageIndex = 12;
- break;
- default:
- itm.ImageIndex = 8;
- break;
- }*/
+ itm.ImageIndex = 8;
}
} catch (Exception ex) {
//wm.StartInfobox95("Exploring - C:", "Error with the file explorer \n" + ex.Message, Properties.Resources.Win95Info); add illegal operation dialog here later
@@ -331,8 +304,8 @@ namespace TimeHACK.OS.Win95.Win95Apps
}
string ReturnType(string extension) {
- string returnVal = "";
- fileType = 1;
+ string returnVal = "File";
+ fileType = 0;
switch (extension) {
case ".txt":
fileType = 1;
@@ -725,19 +698,10 @@ namespace TimeHACK.OS.Win95.Win95Apps
else OpenFile = true;
if (OpenFile == true)
{
- if (txtSave.Text == "")
- {
- wm.StartInfobox95("Windows Explorer", "Please enter a filename", InfoboxType.Info, InfoboxButtons.OK);
- }
+ if (txtSave.Text == "") wm.StartInfobox95("Windows Explorer", "Please enter a filename", InfoboxType.Info, InfoboxButtons.OK);
else
{
- if (new FileInfo(Path.Combine(CurrentDirectory, txtSave.Text)).Extension == onlyViewExtension)
- {
-
- Program.WindowsExplorerReturnPath = Path.Combine(CurrentDirectory, txtSave.Text);
-
- }
-
+ if (new FileInfo(Path.Combine(CurrentDirectory, txtSave.Text)).Extension == onlyViewExtension) Program.WindowsExplorerReturnPath = Path.Combine(CurrentDirectory, txtSave.Text);
FileDialogBoxManager.IsInOpenDialog = false;
FileDialogBoxManager.IsInSaveDialog = false;
@@ -809,22 +773,13 @@ namespace TimeHACK.OS.Win95.Win95Apps
{
string setText;
setText = e.Label;
- if (setText == "")
- {
- wm.StartInfobox95("Windows Explorer", "Please enter a new directory name", InfoboxType.Info, InfoboxButtons.OK);
- }
+ if (setText == "") wm.StartInfobox95("Windows Explorer", "Please enter a new directory name", InfoboxType.Info, InfoboxButtons.OK);
else
{
- if (Directory.Exists(setText))
- {
- wm.StartInfobox95("Windows Explorer", "That directory already exists.", InfoboxType.Info, InfoboxButtons.OK);
- }
+ if (Directory.Exists(setText)) wm.StartInfobox95("Windows Explorer", "That directory already exists.", InfoboxType.Info, InfoboxButtons.OK);
else
{
- if (File.Exists(setText))
- {
- wm.StartInfobox95("Windows Explorer", "That file already exists.", InfoboxType.Info, InfoboxButtons.OK);
- }
+ if (File.Exists(setText)) wm.StartInfobox95("Windows Explorer", "That file already exists.", InfoboxType.Info, InfoboxButtons.OK);
else
{
if (Directory.Exists(mainView.FocusedItem.ImageKey))
@@ -1019,10 +974,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
private void SellectAllCtrlAToolStripMenuItem_Click(object sender, EventArgs e)
{
- foreach (ListViewItem item in mainView.Items)
- {
- item.Selected = true;
- }
+ foreach (ListViewItem item in mainView.Items) item.Selected = true;
}
}
}
diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs
index 6ee2ef1..90cd0af 100644
--- a/TimeHACK.Main/TitleScreen.cs
+++ b/TimeHACK.Main/TitleScreen.cs
@@ -56,10 +56,7 @@ namespace TimeHACK
public void StartGame()
{
//TODO: You may want to handle story stuff to decide what OS to boot here.
- if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337)
- {
- leet();
- }
+ if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) leet();
else
{
// Time to decide which OS to start up!
@@ -107,16 +104,6 @@ namespace TimeHACK
}
}
- void closeButton(object sender, MouseEventArgs e)
- {
- Close();
- }
-
- private void closebutton_Click(object sender, EventArgs e)
- {
- Close();
- }
-
private void VM_WidthHeight_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) &&