aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/Terminal/Commands/TestStory.cs
blob: b3c0989df188efd5ba94968fd8912435ace62eaa (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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace ShiftOS.Main.Terminal.Commands
{
    public class TestStory : TerminalCommand
    {
        public override string Name { get; } = "teststory";
        public override string Summary { get; } = "Debug Command - Test the intro";
        public override string Usage { get; } = "teststory";
        public override bool Unlocked { get; set; } = false;

        public override void Run(params string[] parameters)
        {
            var r = new Random();
            WriteLine($"Incoming connection from {r.Next(0, 256)}.{r.Next(0, 256)}.{r.Next(0, 256)}.{r.Next(0, 256)}...");
            WriteLine(); //The various Task.Delay functions are to make the Thread.Sleep function work.
            Thread.Sleep(r.Next(2000, 4500));
            WriteLine("User set alias as \"DevX\".");
            Task.Delay(1);
            Thread.Sleep(4000);
            WriteLine("User <DevX> has connected successfully!");
            Task.Delay(1);
            Thread.Sleep(3400);
            StoryWriteLine("Well, it seems ShiftOS has installed. Congrats.... err... whatever your name is.");
        }
        private void StoryWriteLine(string value)
        {
            WriteLine($"[devx@master ~]$ {value}");
        }
    }
}