aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TimeHACK.Engine/FileAssociation.cs50
-rw-r--r--TimeHACK.Engine/SaveSystem.cs24
-rw-r--r--TimeHACK.Engine/StartMenuBackend.cs48
-rw-r--r--TimeHACK.Engine/TimeHACK.Engine.csproj2
-rw-r--r--TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs4
-rw-r--r--TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.cs3
-rw-r--r--TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs2
-rw-r--r--TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.cs2
-rw-r--r--TimeHACK.Main/GlobalPrograms/AddressBook/WinClassicAddressBook.cs6
-rw-r--r--TimeHACK.Main/GlobalPrograms/WinClassicTerminal.cs2
-rw-r--r--TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs16
-rw-r--r--TimeHACK.Main/OS/BaseOS.Designer.cs (renamed from TimeHACK.Main/BaseOS.Designer.cs)1
-rw-r--r--TimeHACK.Main/OS/BaseOS.cs (renamed from TimeHACK.Main/BaseOS.cs)95
-rw-r--r--TimeHACK.Main/OS/BaseOS.resx (renamed from TimeHACK.Main/BaseOS.resx)0
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.Designer.cs45
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.cs203
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.resx9
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs23
-rw-r--r--TimeHACK.Main/OpenApplication.cs99
-rw-r--r--TimeHACK.Main/Program.cs11
-rw-r--r--TimeHACK.Main/Properties/Resources.Designer.cs10
-rw-r--r--TimeHACK.Main/Properties/Resources.resx3
-rw-r--r--TimeHACK.Main/TimeHACK.Main.csproj8
23 files changed, 313 insertions, 353 deletions
diff --git a/TimeHACK.Engine/FileAssociation.cs b/TimeHACK.Engine/FileAssociation.cs
new file mode 100644
index 0000000..25fe895
--- /dev/null
+++ b/TimeHACK.Engine/FileAssociation.cs
@@ -0,0 +1,50 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Runtime.InteropServices;
+using Microsoft.Win32;
+
+namespace TimeHACK.Engine
+{
+ public class FileAssociation
+ {
+ // Associate file extension with progID, description, icon and application
+ public static void Associate(string extension,
+ string progID, string description, string icon, string application)
+ {
+ Registry.ClassesRoot.CreateSubKey(extension).SetValue("", progID);
+ if (progID != null && progID.Length > 0)
+ using (RegistryKey key = Registry.ClassesRoot.CreateSubKey(progID))
+ {
+ if (description != null)
+ key.SetValue("", description);
+ if (icon != null)
+ key.CreateSubKey("DefaultIcon").SetValue("", ToShortPathName(icon));
+ if (application != null)
+ key.CreateSubKey(@"Shell\Open\Command").SetValue("",
+ ToShortPathName(application) + " \"%1\"");
+ }
+ }
+
+ // Return true if extension already associated in registry
+ public static bool IsAssociated(string extension)
+ {
+ return (Registry.ClassesRoot.OpenSubKey(extension, false) != null);
+ }
+
+ [DllImport("Kernel32.dll")]
+ private static extern uint GetShortPathName(string lpszLongPath,
+ [Out] StringBuilder lpszShortPath, uint cchBuffer);
+
+ // Return short path format of a file name
+ private static string ToShortPathName(string longName)
+ {
+ StringBuilder s = new StringBuilder(1000);
+ uint iSize = (uint)s.Capacity;
+ uint iRet = GetShortPathName(longName, s, iSize);
+ return s.ToString();
+ }
+ }
+}
diff --git a/TimeHACK.Engine/SaveSystem.cs b/TimeHACK.Engine/SaveSystem.cs
index e217bf4..7a6eed0 100644
--- a/TimeHACK.Engine/SaveSystem.cs
+++ b/TimeHACK.Engine/SaveSystem.cs
@@ -14,6 +14,8 @@ namespace TimeHACK.Engine
public static FileSystemFolderInfo filesystemflinfo { get; set; }
public static Boolean DevMode = false;
+ public static FileAssociation IconChanger = new FileAssociation();
+
public static string GameDirectory
{
get
@@ -118,7 +120,7 @@ namespace TimeHACK.Engine
save.ExperiencedStories = new List<string>();
save.CurrentOS = "95";
CurrentSave = save;
-
+
CheckFiles();
SaveGame();
}
@@ -143,6 +145,26 @@ namespace TimeHACK.Engine
if (CurrentSave.CurrentOS != "95") SaveDirectoryInfo(ProfileSettingsDirectory, false, "Documents and Settings", true);
SaveDirectoryInfo(ProfileProgramsDirectory, true, "Program Files", true);
SaveDirectoryInfo(ProfileWindowsDirectory, true, "Windows", true);
+
+ CreateWindowsDirectory();
+ }
+
+ public static void CreateWindowsDirectory()
+ {
+ SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "System"), true, "System", true);
+ SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Config"), true, "Config", true);
+ SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Cursors"), true, "Cursors", true);
+ SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Fonts"), true, "Fonts", true);
+ SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Help"), true, "Help", true);
+ SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Temp"), true, "Temp", true);
+
+ CreateWindowsFile(Path.Combine(ProfileWindowsDirectory, "Calc.exe"), "Calculator");
+ CreateWindowsFile(Path.Combine(ProfileWindowsDirectory, "explorer.exe"), "windowsexplorer");
+ }
+
+ public static void CreateWindowsFile(String filepath, String contents)
+ {
+ File.WriteAllText(filepath, contents);
}
public static void SaveDirectoryInfo(String directory, Boolean isProtected, String label, Boolean allowback)
diff --git a/TimeHACK.Engine/StartMenuBackend.cs b/TimeHACK.Engine/StartMenuBackend.cs
deleted file mode 100644
index a500e0d..0000000
--- a/TimeHACK.Engine/StartMenuBackend.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace TimeHACK.Engine
-{
- class StartMenuBackend
- {
- //public void CreateMenu(ref Panel thePanel, String OSStyle, Image SideImage)
- //{
- // // Init the Start Menu
-
- // MenuStrip startmenuitems = new MenuStrip();
- // PictureBox sideimage = new PictureBox();
-
- // switch (OSStyle)
- // {
- // case "95":
- // case "98":
- // case "2000":
- // case "ME":
- // sideimage.Image = SideImage;
- // sideimage.Dock = DockStyle.Left;
- // startmenuitems.Dock = DockStyle.Fill;
-
- // AddWinClassicItemsToMenuStrip(ref startmenuitems);
- // break;
- // }
-
-
- //}
-
- //public void AddWinClassicItemsToMenuStrip(ref MenuStrip toAddTo)
- //{
- // ToolStripMenuItem ProgramsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- // ToolStripMenuItem DocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- // ToolStripMenuItem SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- // ToolStripMenuItem FindToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- // ToolStripMenuItem HelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- //}
-
-
- }
-}
diff --git a/TimeHACK.Engine/TimeHACK.Engine.csproj b/TimeHACK.Engine/TimeHACK.Engine.csproj
index f9ed679..fef9500 100644
--- a/TimeHACK.Engine/TimeHACK.Engine.csproj
+++ b/TimeHACK.Engine/TimeHACK.Engine.csproj
@@ -48,9 +48,9 @@
<Compile Include="BSODCreator.cs" />
<None Include="packages.config" />
<None Include="Resources\WinClassic\Window\pjBg6mKP.bin" />
+ <Compile Include="FileAssociation.cs" />
<Compile Include="FileDialogBoxManager.cs" />
<Compile Include="SaveSystem.cs" />
- <Compile Include="StartMenuBackend.cs" />
<Compile Include="TaskBarController.cs" />
<Compile Include="Template\Win9XBSOD.cs">
<SubType>Form</SubType>
diff --git a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs
index 8e9a49e..4319d9e 100644
--- a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs
+++ b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs
@@ -1,4 +1,4 @@
-namespace TimeHACK.OS.Win95.Win95Apps.AddressBook
+namespace TimeHACK.OS.Win95.Win95Apps
{
partial class FRMWinClassicAddressBookNewContact
{
@@ -48,7 +48,7 @@
//
// button1
//
- this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
+ this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.button1.Location = new System.Drawing.Point(107, 239);
this.button1.Name = "button1";
diff --git a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.cs b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.cs
index 4206f79..fe75e83 100644
--- a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.cs
+++ b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewContact.cs
@@ -8,7 +8,8 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
-namespace TimeHACK.OS.Win95.Win95Apps.AddressBook
+
+namespace TimeHACK.OS.Win95.Win95Apps
{
public partial class FRMWinClassicAddressBookNewContact : UserControl
{
diff --git a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs
index e96ea9d..c7efcd0 100644
--- a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs
+++ b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs
@@ -1,4 +1,4 @@
-namespace TimeHACK.OS.Win95.Win95Apps.AddressBook
+namespace TimeHACK.OS.Win95.Win95Apps
{
partial class FRMWinClassicAddressBookNewFolder
{
diff --git a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.cs b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.cs
index 6f7cbb1..705fd0d 100644
--- a/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.cs
+++ b/TimeHACK.Main/GlobalPrograms/AddressBook/FRMWinClassicAddressBookNewFolder.cs
@@ -8,7 +8,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
-namespace TimeHACK.OS.Win95.Win95Apps.AddressBook
+namespace TimeHACK.OS.Win95.Win95Apps
{
public partial class FRMWinClassicAddressBookNewFolder : UserControl
{
diff --git a/TimeHACK.Main/GlobalPrograms/AddressBook/WinClassicAddressBook.cs b/TimeHACK.Main/GlobalPrograms/AddressBook/WinClassicAddressBook.cs
index 32d5ebc..c7c8184 100644
--- a/TimeHACK.Main/GlobalPrograms/AddressBook/WinClassicAddressBook.cs
+++ b/TimeHACK.Main/GlobalPrograms/AddressBook/WinClassicAddressBook.cs
@@ -122,7 +122,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
void NewFolder()
{
- AddressBook.FRMWinClassicAddressBookNewFolder abnf = new AddressBook.FRMWinClassicAddressBookNewFolder();
+ FRMWinClassicAddressBookNewFolder abnf = new FRMWinClassicAddressBookNewFolder();
WinClassic app = wm.startWin95(abnf, "Address Book - New Folder", Properties.Resources.Win95IconWordpad, true, true, true);
if (treeView1.SelectedNode != null)
@@ -145,7 +145,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
void NewContact()
{
- AddressBook.FRMWinClassicAddressBookNewContact abnc = new AddressBook.FRMWinClassicAddressBookNewContact();
+ FRMWinClassicAddressBookNewContact abnc = new FRMWinClassicAddressBookNewContact();
WinClassic app = wm.startWin95(abnc, "Address Book - New Contact", Properties.Resources.Win95IconWordpad, true, true, true);
if (treeView1.SelectedNode != null)
@@ -171,7 +171,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
void OpenProperties()
{
- AddressBook.FRMWinClassicAddressBookNewContact abnc = new AddressBook.FRMWinClassicAddressBookNewContact();
+ FRMWinClassicAddressBookNewContact abnc = new FRMWinClassicAddressBookNewContact();
// Finds the selected contact
if (treeView1.SelectedNode != null)
diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicTerminal.cs b/TimeHACK.Main/GlobalPrograms/WinClassicTerminal.cs
index 174c5b4..86873ff 100644
--- a/TimeHACK.Main/GlobalPrograms/WinClassicTerminal.cs
+++ b/TimeHACK.Main/GlobalPrograms/WinClassicTerminal.cs
@@ -28,7 +28,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
public void WriteLine(string Text)
{
richTextBox1.AppendText(Text + "\n");
- richTextBox1.Update();
+ this.Update();
}
/// <summary>
diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs b/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs
index 2c84133..c2b53bc 100644
--- a/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs
+++ b/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs
@@ -110,13 +110,27 @@ namespace TimeHACK.OS.Win95.Win95Apps
}
foreach (String str in Directory.GetFiles(currentDirectory))
{
+ // Get app Icon
+
+ int AppIcon = 1;
+
+ switch (Path.GetFileName(str))
+ {
+ case ".exe":
+ break;
+ }
+
if (IsFileOpenDialog == true || IsFileSaveDialog == true)
{
if (!(Path.GetFileName(str) == "_data.info"))
{
if (new FileInfo(str).Extension == onlyViewExtension)
{
- this.mainView.Items.Add(Path.GetFileName(str), 2);
+ if (new FileInfo(str).Extension == ".exe")
+ {
+ this.mainView.Items.Add(Path.GetFileName(str), 2);
+ }
+
}
}
} else {
diff --git a/TimeHACK.Main/BaseOS.Designer.cs b/TimeHACK.Main/OS/BaseOS.Designer.cs
index 534d950..f8f9efa 100644
--- a/TimeHACK.Main/BaseOS.Designer.cs
+++ b/TimeHACK.Main/OS/BaseOS.Designer.cs
@@ -631,7 +631,6 @@ namespace TimeHACK.OS.Win95
this.InternetExplorerToolStripMenuItem.Name = "InternetExplorerToolStripMenuItem";
this.InternetExplorerToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
this.InternetExplorerToolStripMenuItem.Text = "Internet Explorer";
- this.InternetExplorerToolStripMenuItem.Click += new System.EventHandler(this.InternetExplorerToolStripMenuItem_Click);
//
// MSDOSPromptToolStripMenuItem1
//
diff --git a/TimeHACK.Main/BaseOS.cs b/TimeHACK.Main/OS/BaseOS.cs
index bb30b8a..a449d81 100644
--- a/TimeHACK.Main/BaseOS.cs
+++ b/TimeHACK.Main/OS/BaseOS.cs
@@ -4,6 +4,7 @@ using System.Drawing;
using System.IO;
using System.Media;
using System.Windows.Forms;
+using TimeHACK;
using TimeHACK.Engine;
using TimeHACK.Engine.Template;
using TimeHACK.Engine.Template.Taskbars;
@@ -17,11 +18,10 @@ namespace TimeHACK.OS.Win95
{
public WindowManager wm = new WindowManager();
-
- public WinClassic webchat;
- public WinClassic ie;
public TaskBarController tb = new TaskBarController();
+ public OpenApplication openApp = new OpenApplication();
+
// Init the form
public BaseOS()
{
@@ -142,15 +142,8 @@ namespace TimeHACK.OS.Win95
private void NotePadToolStripMenuItem_Click(object sender, EventArgs e)
{
- WinClassicNotepad wp = new WinClassicNotepad();
- WinClassic app = wm.startWin95(wp, "Notepad", Properties.Resources.Win95IconNotepad, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Notepad", Properties.Resources.Win95IconNotepad);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
+ openApp.OpenApp("Notepad");
- app.BringToFront();
startmenu.Hide();
}
private void windowManagerTestToolStripMenuItem_Click(object sender, EventArgs e)
@@ -185,16 +178,6 @@ namespace TimeHACK.OS.Win95
startmenu.Hide();
}
- private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e)
- {
- if (ie != null) { wm.startInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", Properties.Resources.Win95Warning); return; }
- ie = wm.startWin95(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
- AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
- ie.BringToFront();
- ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing);
- startmenu.Hide();
- }
-
private void desktopicons_Click(object sender, EventArgs e)
{
Point objDrawingPoint = desktopicons.PointToClient(Cursor.Position);
@@ -207,19 +190,19 @@ namespace TimeHACK.OS.Win95
{
if (objListViewItem.Text == "Internet Explorer")
{
- if (ie != null) { wm.startInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", Properties.Resources.Win95Warning); return; }
- ie = wm.startWin95(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
- AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
- ie.BringToFront();
- ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing);
- startmenu.Hide();
+ switch (SaveSystem.CurrentSave.CurrentOS)
+ {
+ case "95":
+ openApp.OpenApp("ie4");
+
+ startmenu.Hide();
+ break;
+
+ }
} else if (objListViewItem.Text == "Web Chat Setup")
{
- WinClassicInstaller inst = new WinClassicInstaller();
- inst.installname.Text = "Web Chat 1998";
- WinClassic app = wm.startWin95(inst, "Web Chat Setup", null, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Web Chat Setup", null);
- app.BringToFront();
+ openApp.OpenApp("webchat1998");
+
startmenu.Hide();
}
}
@@ -243,27 +226,10 @@ namespace TimeHACK.OS.Win95
app.BringToFront();
startmenu.Hide();
}
- public void NonImportantApp_Closing(object sender, FormClosingEventArgs e)
- {
- Program.nonimportantapps.Remove((WinClassic)sender);
- }
- private void InternetExplorer4_Closing(object sender, FormClosingEventArgs e)
- {
- ie = null;
- }
private void WordPadToolStripMenuItem_Click(object sender, EventArgs e)
{
- WinClassicWordPad wp = new WinClassicWordPad();
- WinClassic app = wm.startWin95(wp, "Wordpad", Properties.Resources.Win95IconWordpad, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Wordpad", Properties.Resources.Win95IconWordpad);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
-
- app.BringToFront();
- startmenu.Hide();
+ openApp.OpenApp("Wordpad");
}
public void AddTaskBarItem(Form Application, string ApplicationID, string ApplicationName, Image ApplicationIcon)
@@ -293,31 +259,15 @@ namespace TimeHACK.OS.Win95
private void AddressBookToolStripMenuItem_Click(object sender, EventArgs e)
{
- WinClassicAddressBook ab = new WinClassicAddressBook();
- WinClassic app = wm.startWin95(ab, "Address Book", Properties.Resources.WinClassicAddressBook, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Address Book", Properties.Resources.WinClassicAddressBook);
+ openApp.OpenApp("addressbook");
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
-
- app.BringToFront();
startmenu.Hide();
}
private void WindowsExplorerToolStripMenuItem1_Click(object sender, EventArgs e)
{
- FileDialogBoxManager.IsInOpenDialog = false;
- FileDialogBoxManager.IsInSaveDialog = false;
- WinClassicWindowsExplorer we = new WinClassicWindowsExplorer();
- WinClassic app = wm.startWin95(we, "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
+ openApp.OpenApp("windowsexplorer");
- app.BringToFront();
startmenu.Hide();
}
@@ -335,15 +285,8 @@ namespace TimeHACK.OS.Win95
void StartSurviveTheDay()
{
- Win2K.Win2KApps.SurviveTheDay std = new Win2K.Win2KApps.SurviveTheDay();
- WinClassic app = wm.startWin95(std, "Survive The Day", null, false, false);
- AddTaskBarItem(app, app.Tag.ToString(), "Survive The Day", null);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
+ openApp.OpenApp("survivetheday");
- app.BringToFront();
startmenu.Hide();
}
diff --git a/TimeHACK.Main/BaseOS.resx b/TimeHACK.Main/OS/BaseOS.resx
index 8e963f9..8e963f9 100644
--- a/TimeHACK.Main/BaseOS.resx
+++ b/TimeHACK.Main/OS/BaseOS.resx
diff --git a/TimeHACK.Main/OS/Win95/Win95.Designer.cs b/TimeHACK.Main/OS/Win95/Win95.Designer.cs
index 0266773..f238b70 100644
--- a/TimeHACK.Main/OS/Win95/Win95.Designer.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.Designer.cs
@@ -30,23 +30,60 @@ namespace TimeHACK.OS.Win95
/// </summary>
private void InitializeComponent()
{
- this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95));
+ this.panel1.SuspendLayout();
+ this.taskbar.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.startbutton)).BeginInit();
+ this.startmenu.SuspendLayout();
+ this.ossidestartmenu.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.osimage)).BeginInit();
+ this.clockPanel.SuspendLayout();
this.SuspendLayout();
//
+ // clockTimer
+ //
+ this.clockTimer.Enabled = true;
+ //
+ // desktopImages
+ //
+ this.desktopImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("desktopImages.ImageStream")));
+ this.desktopImages.Images.SetKeyName(0, "WinClassicComputer.png");
+ this.desktopImages.Images.SetKeyName(1, "WinClassicFolder.png");
+ this.desktopImages.Images.SetKeyName(2, "WinClassicIE4.png");
+ this.desktopImages.Images.SetKeyName(3, "WinClassicInbox.png");
+ this.desktopImages.Images.SetKeyName(4, "WinClassicMSN.png");
+ this.desktopImages.Images.SetKeyName(5, "WinClassicNetworking.png");
+ this.desktopImages.Images.SetKeyName(6, "WinClassicOutlook.png");
+ this.desktopImages.Images.SetKeyName(7, "WinClassicRecycle.png");
+ this.desktopImages.Images.SetKeyName(8, "WinClassicSetup.png");
+ this.desktopImages.Images.SetKeyName(9, "WinClassicSetup.png");
+ this.desktopImages.Images.SetKeyName(10, "WinClassicSetup.png");
+ this.desktopImages.Images.SetKeyName(11, "WinClassicSetup.png");
+ //
// Windows95
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Teal;
this.ClientSize = new System.Drawing.Size(640, 480);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Windows95";
- this.Tag = "ignoreFormOnTaskbar";
- this.Text = "TimeHACKDesktop";
this.Load += new System.EventHandler(this.Desktop_Load);
+ this.Controls.SetChildIndex(this.desktopicons, 0);
+ this.Controls.SetChildIndex(this.panel1, 0);
+ this.Controls.SetChildIndex(this.startmenu, 0);
+ this.Controls.SetChildIndex(this.taskbar, 0);
+ this.panel1.ResumeLayout(false);
+ this.taskbar.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.startbutton)).EndInit();
+ this.startmenu.ResumeLayout(false);
+ this.startmenu.PerformLayout();
+ this.ossidestartmenu.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.osimage)).EndInit();
+ this.clockPanel.ResumeLayout(false);
+ this.clockPanel.PerformLayout();
this.ResumeLayout(false);
+ this.PerformLayout();
}
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs
index 53628e4..6a443dd 100644
--- a/TimeHACK.Main/OS/Win95/Win95.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.cs
@@ -10,6 +10,7 @@ using TimeHACK.Engine.Template.Taskbars;
using TimeHACK.OS.Win95.Win95Apps;
using TimeHACK.WinClassicForms;
using TimeHACK.OS.Win95.Win95Apps.Story;
+using TimeHACK.OS;
namespace TimeHACK.OS.Win95
{
@@ -49,22 +50,7 @@ namespace TimeHACK.OS.Win95
startsound = new SoundPlayer(audio);
startsound.Play();
-
-
- // Check for and set VM Mode
- if (this.FormBorderStyle != FormBorderStyle.None)
- {
- this.Text = "TimeHACK - VM Mode";
- }
-
- // Start the ClockTimer
- clockTimer.Start();
-
- // Set the StartMenu seperator
- startmenuitems.Items.Insert(6, new ToolStripSeparator());
-
//Program.nonimportantapps.Capacity = 100;
- this.SendToBack();
// Update the taskbar
UpdateTaskbar();
@@ -89,50 +75,8 @@ namespace TimeHACK.OS.Win95
#region StartMenu
- // Paint StartMenu
- private void startmenu_Paint(object sender, PaintEventArgs e)
- {
- // Paint the StartMenu
- ControlPaint.DrawBorder(e.Graphics, startmenu.ClientRectangle,
- SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset,
- SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset,
- SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset,
- SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset);
- }
-
- // StartButton Click
- private void startbutton_Click(object sender, EventArgs e)
- {
- startmenu.Show();
- startmenu.BringToFront();
- }
-
- // Shutdown button
- private void ShutdownToolStripMenuItem_Click(object sender, EventArgs e)
- {
- Program.ShutdownApplication(Properties.Resources.tada);
- }
-
#endregion //Region
- // When add new folder is clicked
- private void FolderToolStripMenuItem_Click(object sender, EventArgs e)
- {
- desktopicons.Items.Add("New Folder");
- }
-
- // Give Year Code - NYI
- private void taskbartime_Click(object sender, EventArgs e)
- {
- //TODO: Set Up Save System
- }
-
- // Set the Clock
- private void clockTimer_Tick(object sender, EventArgs e)
- {
- taskbartime.Text = DateTime.Now.ToString("h:mm tt");
- }
-
// On Desktop MouseDown
private void desktop_mousedown(object sender, MouseEventArgs e)
{
@@ -158,15 +102,8 @@ namespace TimeHACK.OS.Win95
private void NotePadToolStripMenuItem_Click(object sender, EventArgs e)
{
- WinClassicNotepad wp = new WinClassicNotepad();
- WinClassic app = wm.startWin95(wp, "Notepad", Properties.Resources.Win95IconNotepad, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Notepad", Properties.Resources.Win95IconNotepad);
+ openApp.OpenApp("notepad");
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
-
- app.BringToFront();
startmenu.Hide();
}
private void windowManagerTestToolStripMenuItem_Click(object sender, EventArgs e)
@@ -203,43 +140,7 @@ namespace TimeHACK.OS.Win95
private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e)
{
- if (ie != null) { wm.startInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", Properties.Resources.Win95Warning); return; }
- ie = wm.startWin95(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
- AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
- ie.BringToFront();
- ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing);
- startmenu.Hide();
- }
-
- private void desktopicons_Click(object sender, EventArgs e)
- {
- Point objDrawingPoint = desktopicons.PointToClient(Cursor.Position);
- ListViewItem objListViewItem;
-
- if (objDrawingPoint != null)
- {
- objListViewItem = desktopicons.GetItemAt(objDrawingPoint.X, objDrawingPoint.Y);
- if (objListViewItem != null)
- {
- if (objListViewItem.Text == "Internet Explorer")
- {
- if (ie != null) { wm.startInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", Properties.Resources.Win95Warning); return; }
- ie = wm.startWin95(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
- AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
- ie.BringToFront();
- ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing);
- startmenu.Hide();
- } else if (objListViewItem.Text == "Web Chat Setup")
- {
- WinClassicInstaller inst = new WinClassicInstaller();
- inst.installname.Text = "Web Chat 1998";
- WinClassic app = wm.startWin95(inst, "Web Chat Setup", null, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Web Chat Setup", null);
- app.BringToFront();
- startmenu.Hide();
- }
- }
- }
+ openApp.OpenApp("ie4");
}
private void infoboxTestToolStripMenuItem_Click(object sender, EventArgs e)
@@ -259,110 +160,12 @@ namespace TimeHACK.OS.Win95
app.BringToFront();
startmenu.Hide();
}
- public void NonImportantApp_Closing(object sender, FormClosingEventArgs e)
- {
- Program.nonimportantapps.Remove((WinClassic)sender);
- }
- private void InternetExplorer4_Closing(object sender, FormClosingEventArgs e)
- {
- ie = null;
- }
-
- private void WordPadToolStripMenuItem_Click(object sender, EventArgs e)
- {
- WinClassicWordPad wp = new WinClassicWordPad();
- WinClassic app = wm.startWin95(wp, "Wordpad", Properties.Resources.Win95IconWordpad, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Wordpad", Properties.Resources.Win95IconWordpad);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
-
- app.BringToFront();
- startmenu.Hide();
- }
-
- public void AddTaskBarItem(Form Application, string ApplicationID, string ApplicationName, Image ApplicationIcon)
- {
- taskbarItems = tb.AddTaskbarItem95(ApplicationID, ApplicationName, ApplicationIcon, (UserControl)new Win95TaskBarItem(), taskbarItems);
- Application.FormClosed += new FormClosedEventHandler(UpdateTaskbarFromClosedApplication);
- }
-
- public void UpdateTaskbarFromClosedApplication(object sender, FormClosedEventArgs e)
- {
- UpdateTaskbar();
- }
-
- public void UpdateTaskbar()
- {
- // Clears out all the items on the taskbar
- taskbarItems.Controls.Clear();
-
- // Loops through all the Applications which are open
-
- foreach (Form form in tb.GetAllOpenApps())
- {
- // Calls that "AddToTaskbar" thing
- taskbarItems = tb.AddTaskbarItem95(form.Tag.ToString(), form.Text.ToString(), (Image)form.Icon.ToBitmap(), (UserControl)new Win95TaskBarItem(), taskbarItems);
- }
- }
-
- private void AddressBookToolStripMenuItem_Click(object sender, EventArgs e)
- {
- WinClassicAddressBook ab = new WinClassicAddressBook();
- WinClassic app = wm.startWin95(ab, "Address Book", Properties.Resources.WinClassicAddressBook, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Address Book", Properties.Resources.WinClassicAddressBook);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
-
- app.BringToFront();
- startmenu.Hide();
- }
-
- private void WindowsExplorerToolStripMenuItem1_Click(object sender, EventArgs e)
- {
- FileDialogBoxManager.IsInOpenDialog = false;
- FileDialogBoxManager.IsInSaveDialog = false;
- WinClassicWindowsExplorer we = new WinClassicWindowsExplorer();
- WinClassic app = wm.startWin95(we, "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true);
- AddTaskBarItem(app, app.Tag.ToString(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
-
- app.BringToFront();
- startmenu.Hide();
- }
private void storyTest1ToolStripMenuItem_Click(object sender, EventArgs e)
{
Hack1.startObjective();
}
- private void temp_for_std(object sender, EventArgs e)
- {
- System.Threading.Thread thread = new System.Threading.Thread(StartSurviveTheDay);
-
- thread.Start();
- }
-
- void StartSurviveTheDay()
- {
- Win2K.Win2KApps.SurviveTheDay std = new Win2K.Win2KApps.SurviveTheDay();
- WinClassic app = wm.startWin95(std, "Survive The Day", null, false, false);
- AddTaskBarItem(app, app.Tag.ToString(), "Survive The Day", null);
-
- Program.nonimportantapps.Add(app);
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
- Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
-
- app.BringToFront();
- startmenu.Hide();
- }
-
//TODO: Add Outlook Express 4
}
}
diff --git a/TimeHACK.Main/OS/Win95/Win95.resx b/TimeHACK.Main/OS/Win95/Win95.resx
index 3b8f414..d9d5bd0 100644
--- a/TimeHACK.Main/OS/Win95/Win95.resx
+++ b/TimeHACK.Main/OS/Win95/Win95.resx
@@ -127,8 +127,8 @@
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
- ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADq
- ggAAAk1TRnQBSQFMAgEBDAEAAXABAQFwAQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
+ ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADs
+ ggAAAk1TRnQBSQFMAgEBDAEAAXABAQF4AQEBIAEAASABAAT/ASEBEAj/AUIBTQE2BwABNgMAASgDAAGA
AwABgAMAAQEBAAEgBwABAf8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A
/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A
/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8AXAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8AAf8DAAH/
@@ -686,12 +686,9 @@
AeABAwHwAwAB/gIAAQcEAAHwAgABAwH4AgABAQH+AgABBwQAAfgCAAEHAfgCAAEBAf4CAAEHBAAB/AIA
AQcB/AIAAQMB/gIAAQcDAAEBAf4CAAEOAfwCAAEDAf4CAAEHAYABAAP/AgABHgH8AgABBwH+AgABBwHA
AQED/wHAAQABfgH8AgABDwH+AgABBwHgAQMD/wH4AQEB/gH8AgABHwH/AgABBwHwAQcE/wHhAvwCAAE/
- Af8BgAEAAQcG/wH8AXkB/wIAAv8BwAEAAQ8H/wEDAf8BxAEDAf8L
+ Af8BgAEAAQcG/wH8AXkB/wIAAv8BwAEAAQ8H/wEDAf8BxAEDAf8WAAs=
</value>
</data>
- <metadata name="rightclickbackproperties.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
- <value>398, 17</value>
- </metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>63</value>
</metadata>
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs
index 38962fe..4c76a77 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs
@@ -9,12 +9,12 @@ using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using TimeHACK.Engine;
+using TimeHACK.Engine.Template;
namespace TimeHACK.OS.Win95.Win95Apps.Story
{
static class Hack1 : Object
{
- static WinClassicTerminal Console = new WinClassicTerminal();
static WindowManager wm = new WindowManager();
static Boolean ended = false;
static Thread soundThread = new Thread(dialup_sound_play);
@@ -25,7 +25,9 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story
{
System.Windows.Forms.Timer tmr = new System.Windows.Forms.Timer();
- wm.startWin95(Console, "MS-DOS Prompt", null, true, true);
+ WinClassicTerminal Console = new WinClassicTerminal();
+ WinClassic app = wm.startWin95(Console, "MS-DOS Prompt", null, true, true);
+
Console.WriteLine("telnet> 104.27.135.159 Connecting...");
tmr.Interval = 1;
@@ -33,7 +35,11 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story
if (devMode == true)
{
- continueObjective();
+ Thread contObjective = new Thread(continueObjective);
+
+ app.Close();
+
+ contObjective.Start();
}
else
{
@@ -44,6 +50,11 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story
public static void continueObjective()
{
+ WinClassicTerminal Console = new WinClassicTerminal();
+ wm.startWin95(Console, "MS-DOS Prompt", null, true, true);
+
+ Application.DoEvents();
+
Console.WriteLine("\ntelnet> 104.27.135.159 Connected.");
Thread.Sleep(2500);
Console.WriteLine("\ntelnet> 104.27.135.159 set hostname to 'TheHiddenHacker'.");
@@ -65,6 +76,12 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story
Console.WriteLine("\nTheHiddenHacker> The hostname is 172.68.119.42, and the username is most likely 12padams. I'm not too sure what the password is, however.");
Thread.Sleep(3500);
Console.WriteLine("\nTheHiddenHacker> You'll need to figure out where you can get the password. Try looking for any odd text on the website.");
+ Thread.Sleep(1000);
+ Console.WriteLine("\nTheHiddenHacker> I don't have much time to talk - I'd quickly copy down those details into Notepad before this Terminal gets closed.");
+
+ Application.DoEvents();
+
+ Thread.Sleep(36000);
}
public static void CheckIfSoundFinished(Object sender, EventArgs e)
diff --git a/TimeHACK.Main/OpenApplication.cs b/TimeHACK.Main/OpenApplication.cs
new file mode 100644
index 0000000..3586a56
--- /dev/null
+++ b/TimeHACK.Main/OpenApplication.cs
@@ -0,0 +1,99 @@
+using System;
+using System.IO;
+using TimeHACK.Engine;
+using TimeHACK.OS.Win95.Win95Apps;
+using TimeHACK.Engine.Template;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace TimeHACK
+{
+ public class OpenApplication
+ {
+ WindowManager wm = new WindowManager();
+ public String GetDataFromExe(String path)
+ {
+ return File.ReadAllText(path);
+ }
+
+ public void OpenApp(String appName)
+ {
+ WinClassic toReturn = new WinClassic();
+
+ switch (appName.ToLower())
+ {
+ case "notepad":
+ toReturn = wm.startWin95(new WinClassicNotepad(), "Notepad", Properties.Resources.Win95IconNotepad, true, true);
+ Program.AddTaskbarItem(toReturn, toReturn.Tag.ToString(), "Notepad", Properties.Resources.Win95IconNotepad);
+
+ Program.nonimportantapps.Add(toReturn);
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing);
+
+ toReturn.BringToFront();
+
+ break;
+ case "wordpad":
+ toReturn = wm.startWin95(new WinClassicWordPad(), "Wordpad", Properties.Resources.Win95IconWordpad, true, true);
+ Program.AddTaskbarItem(toReturn, toReturn.Tag.ToString(), "Wordpad", Properties.Resources.Win95IconWordpad);
+
+ Program.nonimportantapps.Add(toReturn);
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing);
+
+ break;
+ case "addressbook":
+ toReturn = wm.startWin95(new WinClassicAddressBook(), "Address Book", Properties.Resources.WinClassicAddressBook, true, true);
+ Program.AddTaskbarItem(toReturn, toReturn.Tag.ToString(), "Address Book", Properties.Resources.WinClassicAddressBook);
+
+ Program.nonimportantapps.Add(toReturn);
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing);
+
+ break;
+ case "ie4":
+ toReturn = wm.startWin95(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconNotepad, true, true);
+ Program.AddTaskbarItem(toReturn, toReturn.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconNotepad);
+
+ break;
+ case "windowsexplorer":
+ FileDialogBoxManager.IsInOpenDialog = false;
+ FileDialogBoxManager.IsInSaveDialog = false;
+ WinClassicWindowsExplorer we = new WinClassicWindowsExplorer();
+ WinClassic app = wm.startWin95(we, "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true);
+ Program.AddTaskbarItem(app, app.Tag.ToString(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer);
+
+ Program.nonimportantapps.Add(app);
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing);
+
+ app.BringToFront();
+
+ break;
+ case "survivetheday":
+ TimeHACK.OS.Win2K.Win2KApps.SurviveTheDay std = new TimeHACK.OS.Win2K.Win2KApps.SurviveTheDay();
+ toReturn = wm.startWin95(std, "Survive The Day", null, false, false);
+ Program.AddTaskbarItem(toReturn, toReturn.Tag.ToString(), "Survive The Day", null);
+
+ Program.nonimportantapps.Add(toReturn);
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront();
+ Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing);
+
+ toReturn.BringToFront();
+
+ break;
+ case "webchat1998":
+ WebChat1998 wc = new WebChat1998();
+ toReturn = wm.startWin95(wc, "Web Chat 1998", null, true, true);
+ Program.AddTaskbarItem(toReturn, toReturn.Tag.ToString(), "Web Chat 1998", null);
+
+ toReturn.BringToFront();
+
+ break;
+ }
+ }
+ }
+}
diff --git a/TimeHACK.Main/Program.cs b/TimeHACK.Main/Program.cs
index 1e3e37d..83beaea 100644
--- a/TimeHACK.Main/Program.cs
+++ b/TimeHACK.Main/Program.cs
@@ -12,6 +12,7 @@ using TimeHACK.OS.Win95;
using TimeHACK.OS.Win95.Win95Apps;
using TimeHACK.Engine;
using TimeHACK.Engine.Template;
+using System.Drawing;
namespace TimeHACK
{
@@ -116,5 +117,15 @@ namespace TimeHACK
}
}
+
+ public static void AddTaskbarItem(Form Application, string ApplicationID, string ApplicationName, Image ApplicationIcon)
+ {
+ TitleScreen.frm95.AddTaskBarItem(Application, ApplicationID, ApplicationName, ApplicationIcon);
+ }
+
+ public static void NonImportantApp_Closing(object sender, FormClosingEventArgs e)
+ {
+ Program.nonimportantapps.Remove((WinClassic)sender);
+ }
}
}
diff --git a/TimeHACK.Main/Properties/Resources.Designer.cs b/TimeHACK.Main/Properties/Resources.Designer.cs
index f05a298..6168c3d 100644
--- a/TimeHACK.Main/Properties/Resources.Designer.cs
+++ b/TimeHACK.Main/Properties/Resources.Designer.cs
@@ -486,6 +486,16 @@ namespace TimeHACK.Properties {
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
+ internal static System.Drawing.Bitmap WinClassicCalc {
+ get {
+ object obj = ResourceManager.GetObject("WinClassicCalc", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ /// </summary>
internal static System.Drawing.Bitmap WinClassicClock {
get {
object obj = ResourceManager.GetObject("WinClassicClock", resourceCulture);
diff --git a/TimeHACK.Main/Properties/Resources.resx b/TimeHACK.Main/Properties/Resources.resx
index e2ac293..1ba4778 100644
--- a/TimeHACK.Main/Properties/Resources.resx
+++ b/TimeHACK.Main/Properties/Resources.resx
@@ -501,4 +501,7 @@
}
}</value>
</data>
+ <data name="WinClassicCalc" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>..\Resources\WinClassic\WinClassicCalc.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+ </data>
</root> \ No newline at end of file
diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj
index e3ee47e..aaa7ca1 100644
--- a/TimeHACK.Main/TimeHACK.Main.csproj
+++ b/TimeHACK.Main/TimeHACK.Main.csproj
@@ -121,6 +121,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
+ <Compile Include="OpenApplication.cs" />
<Compile Include="OS\BIOS\BIOS.cs">
<SubType>Form</SubType>
</Compile>
@@ -273,10 +274,10 @@
<Compile Include="TitleScreen.Designer.cs">
<DependentUpon>TitleScreen.cs</DependentUpon>
</Compile>
- <Compile Include="BaseOS.cs">
+ <Compile Include="OS\BaseOS.cs">
<SubType>Form</SubType>
</Compile>
- <Compile Include="BaseOS.Designer.cs">
+ <Compile Include="OS\BaseOS.Designer.cs">
<DependentUpon>BaseOS.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="OS\BIOS\BIOS.resx">
@@ -359,7 +360,7 @@
<EmbeddedResource Include="TitleScreen.resx">
<DependentUpon>TitleScreen.cs</DependentUpon>
</EmbeddedResource>
- <EmbeddedResource Include="BaseOS.resx">
+ <EmbeddedResource Include="OS\BaseOS.resx">
<DependentUpon>BaseOS.cs</DependentUpon>
</EmbeddedResource>
<None Include="packages.config" />
@@ -432,6 +433,7 @@
<None Include="Resources\WinClassic\WinClassicAddressBookNewIcon.png" />
<None Include="Resources\WinClassic\WinClassicAddressBookPropertiesIcon.png" />
<None Include="Resources\WinClassic\WinClassicAddressBookDeleteIcon.png" />
+ <None Include="Resources\WinClassic\WinClassicCalc.png" />
<Content Include="Resources\WinClassic\WinClassicClock.png" />
<Content Include="Resources\WinClassic\WinClassicComputer.png" />
<None Include="Resources\WinClassic\WinClassicCopy.png" />