aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs
blob: 4a2c9881040d03c0f6171c19a5fd3d6ce60c703d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Media;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using TimeHACK.Engine;

namespace TimeHACK.OS.Win95.Win95Apps.Story
{
    class Hack1 : NormalHack
    {
        WinClassicTerminal term = new WinClassicTerminal();
        WindowManager wm = new WindowManager();

        

        // This is the very first story script!
        public void startObjective()
        {
            
            wm.startWin95(term, "MS-DOS Prompt", null, true, true);
            term.WriteLine("192.168.0.1 Connecting...");
            Thread soundThread = new Thread(dialup_sound_play);
            soundThread.Start();
            soundThread.Join();
            term.WriteLine("192.168.0.1 Connected.");

        }

        public void dialup_sound_play()
        {
            SoundPlayer dialup_sound; 

            // Play Dial-up Sound
            Stream audio = Properties.Resources.modem_dial;
            dialup_sound = new SoundPlayer(audio);
            dialup_sound.PlaySync();
        }
    }
}