summary refs log tree commit diff
path: root/clicker/Clicker/Program.cs
blob: 4390cd3049a6fae25b0700140fa644c667c33133 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
int points = 0;
int totalPoints = 0;
int power = 1;
int reset = 1;

Console.Clear();
for (ConsoleKeyInfo keypress = Console.ReadKey(); !string.Equals(keypress.KeyChar.ToString(), "x"); keypress = Console.ReadKey())
{
    Console.Clear();
    if (string.Equals(keypress.KeyChar.ToString(), " "))
    {
        points += power * reset;
        totalPoints++;
        Console.Write("You have " + points + " points");
        if (totalPoints % 50 == 0)
        {
            power++;
            Console.Clear();
            Console.Write("Your power has increased!");
        }
        if (totalPoints % 250 == 0)
        {
            reset++;
            points = 0;
            power = 1;
            Console.Clear();
            Console.Write("You have reset! Now you will gain points much faster.");
        }
    }
    else if (string.Equals(keypress.KeyChar.ToString(), "u"))
    {
        Console.Clear();
        if (points >= 100)
        {
            power += 1;
            points -= 100;
            Console.Write("You have upgraded! Now you will gain points faster.");
        }
        else
        {
           Console.Write("You do not have enough points to upgrade.");
        }
    }
    else if (string.Equals(keypress.KeyChar.ToString(), "s"))
    {
        Console.Write("You have " + points + " points, " + power + " power," + " and have reset " + (reset - 1) + " times.");
    }
    else if (string.Equals(keypress.KeyChar.ToString(), "?"))
    {
        Console.Write("Type 'space' to increase your points, 'u' to upgrade, '?' for help, 's' to see your stats, and 'x' to exit.");
    }
    else
    {
        Console.Write("Type '?' for help.");
    }
}
Console.Clear();
Console.Write("Thanks for playing.");