aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/HackUI.cs
blob: 342318a339a9002ef1a222a396e201d9b5dab84f (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ShiftOS
{
    public partial class HackUI : Form
    {
        public HackUI()
        {
            InitializeComponent();
            ThisEnemyHacker = new EnemyHacker("Test Dummy", "A test hacker", "A test hacker", 1, 1, "easy");
        }

        public event EventHandler OnWin;

        public HackUI(EnemyHacker enemy)
        {
            ThisEnemyHacker = enemy;
            InitializeComponent();
        }

        public Computer ThisPlayerPC = null;
        private decimal TotalPlayerHP = 0;
        private EnemyHacker EnemyNet = null;

        private List<Module> MyNetwork = new List<Module>();

        #region PLAYER

        private void LoadPlayerScreen()
        {
            AntiVirusBounds = new List<Rectangle>();
            TutorialNetwork.Add(new Module(SystemType.Core, 1, "localhost"));
            foreach (var m in GetMyNet())
            {
                if (m.Type == SystemType.Core)
                {
                    MyNetwork.Add(m);
                }
            }
            VisualizePlayerNetwork();
            if (EnemyNet != null)
            {
                tmrplayerhealthdetect.Start();
            }
            else
            {
                tmrplayerhealthdetect.Start();
            }
            if (IsTutorial)
            {
                SetupTutorialUI(0);
            }
        }

        private void VisualizePlayerNetwork()
        {
            AllPlayerComputers = new List<Computer>();
            foreach (Module m in MyNetwork)
            {
                if (AllPlayerComputers.Count <= 10)
                {
                    var c = m.Deploy();
                    if (c.Type == SystemType.Core)
                    {
                        ThisPlayerPC = c;
                    }
                    AddModule(c);
                }
            }
            if(ThisPlayerPC == null)
            {
                var m = new Module(SystemType.Core, 1, "localhost");
                GetMyNet().Add(m);
                MyNetwork.Add(m);
                var c = m.Deploy();
                ThisPlayerPC = c;
                AddModule(c);
            }
        }
        
        public List<Computer> AllPlayerComputers = null;

        private void tmrplayerhealthdetect_Tick(object sender, EventArgs e)
        {
            var rnd = new Random();
            int chance = 0;
            foreach (var pc in AllPlayerComputers)
            {
                if (pc.Disabled == false)
                {
                    if (pc.Enemies != null)
                    {
                        foreach (var enemy in pc.Enemies)
                        {
                            if (AllEnemyComputers.Contains(enemy))
                            {
                                chance = rnd.Next(1, 15);
                                if (chance == 7)
                                {
                                    if (IsTutorial)
                                    {
                                        if (TutorialProgress == 32 || TutorialProgress == 9)
                                        {
                                            enemy.LaunchAttack(pc.GetProperType(), pc.GetDamageRate());
                                        }
                                    }
                                    else
                                    {
                                        enemy.LaunchAttack(pc.GetProperType(), pc.GetDamageRate());
                                    }
                                }
                            }
                        }
                    }
                }
            }
            decimal health = 0;
            foreach (var pc in AllPlayerComputers)
            {
                health += (decimal)pc.HP;
            }
            if (health > TotalPlayerHP)
            {
                TotalPlayerHP = health;
            }
            decimal percent = (health / TotalPlayerHP) * 100;
            lbstats.Text = $"System Health: {percent}%";
            if (ThisPlayerPC.HP <= 0)
            {
                API.CreateInfoboxSession("System compromised.", "The enemy hacker has overthrown your defenses and compromised your system. You will need to wait an hour before you can start another hack battle.", infobox.InfoboxMode.Info);
                Hacking.Failure = true;
                Hacking.FailDate = DateTime.Now;
                UserRequestedClose = false;
                this.Close();
            }
        }

        public bool UserRequestedClose = true;

        private void this_Closing(object sender, FormClosingEventArgs e)
        {
            arc.Dispose();
            if (UserRequestedClose == false)
            {
                tmrplayerhealthdetect.Stop();
                foreach (var pc in AllPlayerComputers)
                {
                    pc.HP = 0;
                }
            }
        }

        public Computer SelectedPlayerComputer = null;

        public void AddModule(Computer newModule)
        {
            pnlyou.Controls.Add(newModule);
            int hp = newModule.HP;
            WriteLine($"[Network] Welcome to the network, {newModule.Hostname}!");
            TotalPlayerHP += newModule.HP;
            AllPlayerComputers.Add(newModule);
            newModule.Show();
            newModule.OnDestruction += (object s, EventArgs a) =>
            {
                if (this.SelectedPlayerComputer == newModule)
                {
                    SelectedPlayerComputer = null;
                }
                if (newModule.Type == SystemType.Firewall)
                {
                    Player_Firewall_Destroy(newModule);
                }
                AllPlayerComputers.Remove(newModule);
                newModule.Dispose();
                WriteLine($"[Network] {newModule.Hostname} has gone OFFLINE.");
            };
            newModule.Select += (object s, EventArgs e) =>
            {
                SelectedPlayerComputer = newModule;
                ShowPCInfo(newModule.Hostname);
                if (IsTutorial)
                {
                    if (TutorialProgress == 6)
                    {
                        if (newModule == ThisPlayerPC)
                        {
                            SetupTutorialUI(7);
                        }
                    }
                }
            };
            newModule.HP_Decreased += new EventHandler(Player_System_Damaged);
            newModule.OnRepair += new EventHandler(Player_System_Repaired);
            if (newModule.Type == SystemType.Antivirus || newModule.Type == SystemType.RepairModule)
            {
                var b = newModule.GetAreaOfEffect();
                AntiVirusBounds.Add(b);
                pnlyou.Refresh();
                newModule.AntivirusRepair += (object s, EventArgs a) =>
                {
                    foreach (Computer pc in AllPlayerComputers)
                    {
                        if (pc != newModule && pc.Bounds.IntersectsWith(b))
                        {
                            if (newModule.Type == SystemType.RepairModule)
                            {
                                if (pc.HP < newModule.HP)
                                {
                                    if (pc.HP < pc.GetTotal())
                                    {
                                        WriteLine($"[{newModule.Hostname}] Repairing neighbouring system \"{pc.Hostname}\"");
                                        pc.Repair(1);
                                    }
                                }

                            }
                            else
                            {
                                if (pc.HP < 10)
                                {
                                    WriteLine($"[{newModule.Hostname}] Repairing neighbouring system \"{pc.Hostname}\"");
                                    pc.Repair(1);
                                }
                            }
                        }
                    }
                };

            }
            if (newModule.Type == SystemType.Firewall)
            {
                var b = newModule.GetAreaOfEffect();
                AntiVirusBounds.Add(b);
                pnlenemy.Refresh();
                Player_Firewall_Deflect(newModule);
            }
            if (newModule.Type == SystemType.ServerStack)
            {
                newModule.MassDDoS += (object s, EventArgs a) =>
                {
                    WormToEnemy();
                };
            }
        }

        public void WormToEnemy()
        {
            var rnd = new Random();
            int r = rnd.Next(0, 10);
            WriteLine("[Network] Launching distributed denial-of-service attack on rival network.");
            foreach (Computer c in AllEnemyComputers)
            {
                if (r == 5)
                {
                    c.Disable();
                }
            }
        }

        public void ShowPCInfo(string hostname)
        {
            Module mod = null;
            foreach (var m in GetMyNet())
            {
                if (m.Hostname == hostname)
                {
                    mod = m;
                }
            }
            if (mod != null)
            {
                pnlpcinfo.Left = 7;
                pnlpcinfo.Show();
                lbmoduletitle.Text = "Module Info - " + hostname;
                lbpcinfo.Text = $"Hostname: {hostname}{Environment.NewLine}Type: {mod.Type.ToString()}";
                if (mod.Type == SystemType.Core)
                {
                    lbpcinfo.Text += Environment.NewLine + "This represents your main system. If this module is destroyed, you will automatically lose the battle. Protect it at all costs.";
                    btnupgrade.Hide();
                    btnpoweroff.Hide();
                }
                else
                {
                    lbpcinfo.Text += $"{Environment.NewLine}Grade: {mod.Grade}";
                    if (mod.Grade < 4)
                    {
                        btnupgrade.Show();
                    }
                    else
                    {
                        btnupgrade.Hide();
                    }
                    btnpoweroff.Show();
                }
            }
            Computer c = null;
            foreach (var pc in AllPlayerComputers)
            {
                if (pc.Hostname == hostname)
                {
                    c = pc;
                }
            }
            if (c != null)
            {
                lbtargets.Text = "Targets: ";
                if (c.Enemies != null)
                {
                    if (c.Enemies.Count > 0)
                    {
                        foreach (var pc in c.Enemies)
                        {
                            lbtargets.Text += " " + pc.Hostname + ",";
                        }
                    }
                    else
                    {
                        lbtargets.Text += " - Click on an enemy module to target it.";
                    }
                }
                else
                {
                    lbtargets.Text += " - Click on an enemy module to target it.";
                }
                lbtargets.Text += Environment.NewLine + "Some modules will not fire at their targets.";
            }
        }

        public void Player_Firewall_Deflect(Computer fwall)
        {
            //Safegaurd...
            if (fwall.Type == SystemType.Firewall)
            {
                var r = fwall.GetAreaOfEffect();
                foreach (var pc in AllPlayerComputers)
                {
                    if (pc != fwall)
                    {
                        if (pc.Bounds.IntersectsWith(r))
                        {
                            pc.DamageDefector = fwall.Grade;
                        }
                    }
                }
            }
        }

        public void Player_Firewall_Destroy(Computer fwall)
        {
            //Safegaurd...
            if (fwall.Type == SystemType.Firewall)
            {
                var r = fwall.GetAreaOfEffect();
                foreach (var pc in AllPlayerComputers)
                {
                    if (pc.Bounds.IntersectsWith(r))
                    {
                        pc.DamageDefector = 1;
                        UpdatePlayerFirewalls();
                    }
                }
            }
        }

        public void UpdatePlayerFirewalls()
        {
            foreach (var pc in AllPlayerComputers)
            {
                if (pc.Type == SystemType.Firewall)
                {
                    Player_Firewall_Deflect(pc);
                }
            }
        }


        private void Player_System_Repaired(object s, EventArgs e)
        {
            var c = (Computer)s;
            WriteLine($"[{c.Hostname}] System repaired.");
            lbcompromised.Text = "System regenerating...";
            int location = c.Left - (lbcompromised.Width / 4);
            int y = c.Top - 25;
            lbcompromised.Location = new Point(location, y);
            lbcompromised.Show();
            c.Flash(lbcompromised);

        }


        private void Player_System_Damaged(object s, EventArgs e)
        {
            var c = (Computer)s;
            WriteLine($"[{c.Hostname}] System damaged. Total HP: {c.HP}");
            lbcompromised.Text = "System damaged!";
            int location = c.Left - (lbcompromised.Width / 4);
            int y = c.Top - 25;
            lbcompromised.Location = new Point(location, y);
            lbcompromised.Show();
            c.Flash(lbcompromised);
        }

        private void btnaddmodule_Click(object sender, EventArgs e)
        {
            SetupModuleList();
            pnldefensemanager.Left = 7;
            pnldefensemanager.Visible = !pnldefensemanager.Visible;
            if (IsTutorial)
            {
                if (TutorialProgress == 12)
                {
                    SetupTutorialUI(13);
                }
            }
        }

        private Dictionary<string, SystemType> FutureModules = null;
        public List<Module> TutorialNetwork = new List<Module>();

        public void SetupModuleList()
        {
            FutureModules = new Dictionary<string, SystemType>();
            cmbmodules.Items.Clear();
            List<Module> net = null;
            if (IsTutorial)
            {
                net = TutorialNetwork;
            }
            else
            {
                net = Hacking.MyNetwork;
            }
            foreach (var item in net)
            {
                Computer m = null;
                foreach (var mod in AllPlayerComputers)
                {
                    if (mod.Hostname == item.Hostname)
                    {
                        m = mod;
                    }
                }
                if (m == null)
                {
                    cmbmodules.Items.Add(item.Hostname);
                    FutureModules.Add(item.Hostname, item.Type);
                }
            }

        }

        bool PlacingNewModule = false;


        private void button1_Click_1(object sender, EventArgs e)
        {
            if (cmbmodules.Text != "")
            {
                PlacingNewModule = true;
                pnldefensemanager.Hide();
                if (IsTutorial)
                {
                    if (TutorialProgress == 20)
                    {
                        SetupTutorialUI(21);
                    }
                }
            }
        }

        private void playfield_MouseDown(object sender, MouseEventArgs e)
        {
            if (PlacingNewModule == true)
            {
                if (e.Button == MouseButtons.Left)
                {
                    if (AllPlayerComputers.Count < 10)
                    {
                        bool cont = true;
                        try
                        {
                            SystemType type = FutureModules[cmbmodules.Text];
                        }
                        catch (Exception ex)
                        {
                            cont = false;
                            API.CreateInfoboxSession("Error", "Please select a module type.", infobox.InfoboxMode.Info);
                        }
                        if (cont == true)
                        {
                            var coordinates = pnlyou.PointToClient(Cursor.Position);
                            int x = coordinates.X;
                            int y = coordinates.Y;

                            var m = new Module(FutureModules[cmbmodules.Text], 1, cmbmodules.Text);
                            foreach (var mod in GetMyNet())
                            {
                                if (mod.Hostname == cmbmodules.Text)
                                {
                                    m = mod;
                                }
                            }
                            m.X = x;
                            m.Y = y;
                            var c = m.Deploy();
                            AddModule(c);
                            API.RemoveCodepoints(10);
                            pnldefensemanager.Hide();
                            if (IsTutorial)
                            {
                                if (TutorialProgress == 21)
                                {
                                    SetupTutorialUI(22);
                                }
                                else if (TutorialProgress == 25)
                                {
                                    SetupTutorialUI(26);
                                }
                            }
                        }
                        PlacingNewModule = false;
                    }
                    else
                    {
                        API.CreateInfoboxSession("Too much deployed modules", "You can have a maximum of 10 modules deployed on your network, including your main system. You will have to wait for one to be destroyed.", infobox.InfoboxMode.Info);
                        PlacingNewModule = false;
                    }
                }
                else
                {
                    PlacingNewModule = false;
                }
            }
        }

        public List<FutureModule> BuyableModules = null;

        public void SetupBuyable()
        {
            if (!IsTutorial)
            {
                BuyableModules = Hacking.GetFutureModules();
            }
            cmbbuyable.Items.Clear();
            foreach (var m in BuyableModules)
            {
                cmbbuyable.Items.Add(m.Name);
            }
            lbmoduleinfo.Text = "";
            txtgrade.Text = "1";
        }

        private void btnbuy_Click(object sender, EventArgs e)
        {
            if (IsTutorial)
            {
                if (TutorialProgress == 14)
                {
                    SetupTutorialUI(15);
                }
            }
            SetupBuyable();
            pnlbuy.Show();
            pnldefensemanager.Hide();
        }

        public List<Rectangle> AntiVirusBounds = null;
        public List<Rectangle> IndicatorsToDestroy = new List<Rectangle>();
        private void boundpaint(object sender, PaintEventArgs e)
        {
            foreach (Rectangle r in IndicatorsToDestroy)
            {
                AntiVirusBounds.Remove(r);
                var sb = new SolidBrush(Color.Black);
                var p = new Pen(sb);
                p.DashStyle = System.Drawing.Drawing2D.DashStyle.Solid;
                p.Width = 2;
                e.Graphics.DrawRectangle(p, r);

            }
            IndicatorsToDestroy.Clear();
            foreach (Rectangle r in AntiVirusBounds)
            {
                IndicatorsToDestroy.Add(r);
                tmrredraw.Start();
                var sb = new SolidBrush(Color.White);
                var p = new Pen(sb);
                p.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
                p.Width = 2;
                e.Graphics.DrawRectangle(p, r);
            }
        }

        private void tmrredraw_Tick(object sender, EventArgs e)
        {
            pnlyou.Refresh();
            tmrredraw.Stop();
        }

        private void SetupModuleInfo()
        {
            bool cont = false;
            FutureModule m = null;
            foreach (var mod in BuyableModules)
            {
                if (mod.Name == cmbbuyable.Text)
                {
                    m = mod;
                    cont = true;
                }
            }
            if (cont == true)
            {
                lbmoduleinfo.Text = m.Name;
                lbmoduleinfo.Text += Environment.NewLine + $"Cost: {m.Cost * Convert.ToInt32(txtgrade.Text)} CP";
                lbmoduleinfo.Text += Environment.NewLine + $"Description: {Environment.NewLine}{m.Description}";
            }
        }

        private void cmbbuyable_SelectedIndexChanged(object sender, EventArgs e)
        {
            SetupModuleInfo();
            if (IsTutorial)
            {
                if (TutorialProgress == 17)
                {
                    if (cmbbuyable.Text == "Antivirus")
                    {
                        SetupTutorialUI(18);
                    }
                }
            }
        }

        private void txtgrade_TextChanged(object sender, EventArgs e)
        {
            try
            {
                int g = Convert.ToInt32(txtgrade.Text);
                if (g < 1)
                {
                    txtgrade.Text = "1";
                }
                else if (g > 4)
                {
                    txtgrade.Text = "4";
                }
                SetupModuleInfo();
            }
            catch (Exception ex)
            {
                txtgrade.Text = "1";
                SetupModuleInfo();
            }
        }

        public List<Module> GetMyNet()
        {
            if (IsTutorial)
            {
                return TutorialNetwork;
            }
            else
            {
                return Hacking.MyNetwork;
            }
        }

        private void btndonebuying_Click(object sender, EventArgs e)
        {
            var mod = new FutureModule("", 0, "", SystemType.Core);
            bool cont = false;
            foreach (var m in BuyableModules)
            {
                if (m.Name == cmbbuyable.Text)
                {
                    mod = m;
                    cont = true;
                }
            }
            if (cont == true)
            {
                if (API.Codepoints >= mod.Cost)
                {
                    if (txthostname.Text != "")
                    {
                        bool cont2 = true;
                        string hname = txthostname.Text.Replace(" ", "_");
                        foreach (var pc in GetMyNet())
                        {
                            if (pc.Hostname == hname)
                            {
                                cont2 = false;
                            }
                        }
                        if (cont2 == true)
                        {
                            GetMyNet().Add(new Module(mod.Type, Convert.ToInt32(txtgrade.Text), hname));
                            API.RemoveCodepoints(mod.Cost);
                            API.CreateInfoboxSession("Module added.", "To deploy the module to the network, select 'Add Module' and choose the hostname from the menu.", infobox.InfoboxMode.Info);
                            pnlbuy.Hide();
                            if (IsTutorial)
                            {
                                if (TutorialProgress == 19)
                                {
                                    SetupTutorialUI(20);
                                }
                                else if (TutorialProgress == 24)
                                {
                                    SetupTutorialUI(25);
                                }
                            }
                        }
                        else
                        {
                            API.CreateInfoboxSession("Please enter a unique hostname.", "No two computers can share the same hostname. Please choose another.", infobox.InfoboxMode.Info);
                        }
                    }
                    else
                    {
                        API.CreateInfoboxSession("Please enter a hostname.", "It is best to enter a hostname for your new computer so you know which one it is.", infobox.InfoboxMode.Info);
                    }

                }
                else
                {
                    API.CreateInfoboxSession("Insufficient Codepoints", "You do not have enough Codepoints to buy this module.", infobox.InfoboxMode.Info);
                }
            }
        }

        private void btncloseinfo_Click(object sender, EventArgs e)
        {
            SelectedPlayerComputer = null;
            pnlpcinfo.Hide();
            Hacking.SaveCharacters();
        }

        private void btnpoweroff_Click(object sender, EventArgs e)
        {
            //Remove the computer from the game.
            pnlyou.Controls.Remove(SelectedPlayerComputer);
            AllPlayerComputers.Remove(SelectedPlayerComputer);
            btnpoweroff.Hide();
        }

        private void btnupgrade_Click(object sender, EventArgs e)
        {
            int price = 20 * SelectedPlayerComputer.Grade;
            if (API.Codepoints >= price)
            {
                foreach (var m in GetMyNet())
                {
                    if (m.Hostname == SelectedPlayerComputer.Hostname)
                    {
                        SelectedPlayerComputer.Grade += 1;
                        m.Grade += 1;
                        Hacking.SaveCharacters();
                        API.CreateInfoboxSession("Upgrade successful.", "Your module has been upgraded.", infobox.InfoboxMode.Info);
                    }
                }
            }
            else
            {
                API.CreateInfoboxSession("Insufficient funds", $"You need at least {price} CP to upgrade this module.", infobox.InfoboxMode.Info);
            }
            ShowPCInfo(SelectedPlayerComputer.Hostname);
        }

        public int TutorialProgress = 0;
        public bool IsTutorial = false;

        public void SetupTutorialUI(int p)
        {
            TutorialProgress = p;
            lbtutorial.Show();
            switch (p)
            {
                case 0:
                    lbtutorial.Text = "Welcome to the Hacker Battle tutorial. This guide will teach you the fundamentals and basics of taking part in a Hacker Battle. When you're done here, you'll have all you need for a very basic network.";
                    btnaddmodule.Hide();
                    btnnext.Show();
                    break;
                case 1:
                    lbtutorial.Text = "When a battle commenses, you will see two windows. The one on the left, is your network. You can view information about all computers on the network, buy new systems, upgrade them and deploy them.";
                    break;
                case 2:
                    lbtutorial.Text = "On the right is the enemy's network. This window will show you the strength (HP) of all enemy systems, and will allow you to target specific systems to take down.";
                    break;
                case 3:
                    lbtutorial.Text = "On the top-left corner of both windows is the network health indicator. It will display a percentage of the entire network health.";
                    break;
                case 4:
                    lbtutorial.Text = "If the enemy's total network health hits 0%, or his core's strength hits 0%, you win.";
                    break;
                case 5:
                    lbtutorial.Text = "However, if the same happens to you, you will lose the battle.";
                    break;
                case 6:
                    lbtutorial.Text = "You can click on your Core to view information about it.";
                    btnnext.Hide();
                    break;
                case 7:
                    lbtutorial.Text = "When you click on a module, you can see information about it, such as it's grade level, HP, and type. This module is a Core, so it has no grade level. It currently has 100 HP.";
                    btnnext.Show();
                    break;
                case 8:
                    lbtutorial.Text = "When a module is selected you can left-click an enemy module to target it. This will make the selected module attempt to fire at the target. Cores are very weak, but are capable of bringing a target down by 1 HP.";
                    break;
                case 9:
                    lbtutorial.Text = "The enemy Core is attacking your Core now. Looks like it's time to fight back. Select your core, and target the enemy's Core to fight back.";
                    btnnext.Hide();
                    break;
                case 10:
                    lbtutorial.Text = "Phew! He couldn't do much damage before we fought back. In a real battle, modules won't just stop fighting randomly, but for the purpose of this tutorial, your Core will stop attacking the enemy Core.";
                    btnnext.Show();
                    ThisPlayerPC.Enemies.Clear();
                    break;
                case 11:
                    lbtutorial.Text = "Should your Core fall to a fatal state in the future, you can deploy some defenses to slow the enemy down. Any hacker knows it's best to disable defenses before attacking the main target.";
                    ThisPlayerPC.HP = 5;
                    break;
                case 12:
                    lbtutorial.Text = "We will look at ways of healing damaged modules now. You can add new modules to the network by clicking the [Add Module] button in the lower-left corner.";
                    btnaddmodule.Show();
                    btnnext.Hide();
                    break;
                case 13:
                    lbtutorial.Text = "You can select a module from the list of hostnames. Only modules that are not powered on will display in the menu.";
                    btnnext.Show();
                    BuyableModules = new List<FutureModule>();
                    BuyableModules.Add(new FutureModule("Antivirus", 0, "This module will heal any other module within it's area of effect to 10 HP. Higher grades can improve it's area of effect.", SystemType.Antivirus));
                    break;
                case 14:
                    lbtutorial.Text = "In this demonstration, you have no other modules to deploy. You will need to buy some modules to get started. Click [Buy New Module] to continue.";
                    btnnext.Hide();
                    break;
                case 15:
                    lbtutorial.Text = "Let's go over the user interface, shall we? At the top is a list of all possible module types.";
                    btnnext.Show();
                    btndonebuying.Hide();
                    lbgrade.Hide();
                    txtgrade.Hide();
                    txthostname.Hide();
                    lbhostname.Hide();
                    lbmoduleinfo.Hide();
                    break;
                case 16:
                    lbtutorial.Text = "Below that, is the cost and description of the selected module type. It's invisible right now, but when you select a new module, it will populate.";
                    lbmoduleinfo.Show();
                    break;
                case 17:
                    lbtutorial.Text = "We need an Antivirus module, so go ahead and select it from the menu.";
                    btnnext.Hide();
                    break;
                case 18:
                    lbtutorial.Text = "Normally, an Antivirus would cost us 15 Codepoints, however since this is a tutorial, it is free.";
                    btnnext.Show();
                    break;
                case 19:
                    lbtutorial.Text = "Below the description is the Hostname box. A Hostname is used to identify the new module. Pick something you'll remember as this new Antivirus, then click [Buy] to purchase it.";
                    btnnext.Hide();
                    lbhostname.Show();
                    txthostname.Show();
                    btndonebuying.Show();
                    break;
                case 20:
                    btnnext.Hide();
                    lbtutorial.Text = "Now that we have an antivirus module, go ahead and deploy it by selecting [Add Module], choosing the hostname you entered, and clicking [Done].";
                    break;
                case 21:
                    btnnext.Hide();
                    lbtutorial.Text = "Alrighty. Now you get to choose where you place your module. Simply left-click in a blank area where you'd like to place the module. Right-click to cancel. Oh, be sure to place close to our Core!";
                    break;
                case 22:
                    lbtutorial.Text = "The Antivirus has been placed. You may've noticed that white dotted box around it when you placed it. If the Core is even slightly within the box, the Antivirus will heal it back to 10 HP.";
                    btnnext.Show();
                    break;
                case 23:
                    lbtutorial.Text = "The higher the Antivirus' grade, the bigger this area of effect becomes. However, it will always only be able to heal modules to 10 HP.";
                    break;
                case 24:
                    lbtutorial.Text = "A Turret has been added to the list of buyable modules. Go pick one up!";
                    btnnext.Hide();
                    BuyableModules.Clear();
                    BuyableModules.Add(new FutureModule("Turret", 0, "It's not super-effective, but the Turret will blast through any Grade 1 defenses pretty quickly. The higher the grade, the higher the strength.", SystemType.Turret));
                    break;
                case 25:
                    lbtutorial.Text = "Turrets can fire damaging viruses at their targets. Go ahead and place your Turret somewhere within the Antivirus's Area of Effect.";
                    break;
                case 26:
                    lbtutorial.Text = "Notice how the Turret only has 10 HP, just like the Antivirus?";
                    btnnext.Show();
                    break;
                case 27:
                    lbtutorial.Text = "This is because both the Antivirus and Turret are at Grade 1. There are four grades of modules you can get, and you can easily upgrade by selecting a module and choosing [Upgrade This Module].";
                    break;
                case 28:
                    lbtutorial.Text = "Upgrading a module will increase it's max HP. Grade 1 is 10 HP, Grade 2 is 20 HP, Grade 3 is 40 HP, and Grade 4 is 80 HP.";
                    break;
                case 29:
                    lbtutorial.Text = "Some modules will have a higher attack rate based on their grade. Others may throw more damaging attacks, and any module's Area of Effect (if it has one) will grow.";
                    break;
                case 30:
                    lbtutorial.Text = "Another tip: Multiple modules can target the same module, and a module can have multiple targets. This means that you can have your Core and your Turret both attack the enemy Core.";
                    break;
                case 31:
                    lbtutorial.Text = "Some modules do not work on a target-based system. Some may work using an area-of-effect system (like an Antivirus), and some may target the entire enemy network.";
                    break;
                case 32:
                    lbtutorial.Text = "We have reset both your Cores' health. Go ahead and finish off the enemy Core using your newfound skills.";
                    ThisPlayerPC.HP = 100;
                    ThisEnemyPC.HP = 100;
                    btnnext.Hide();
                    BuyableModules = new List<FutureModule>();
                    BuyableModules.Add(new FutureModule("Antivirus", 0, "This module will heal any other module within it's area of effect to 10 HP. Higher grades can improve it's area of effect.", SystemType.Antivirus));
                    BuyableModules.Add(new FutureModule("Turret", 0, "It's not super-effective, but the Turret will blast through any Grade 1 defenses pretty quickly. The higher the grade, the higher the strength.", SystemType.Turret));
                    break;
                default:
                    lbtutorial.Text = "This concludes the Hacker Battle tutorial. Happy hunting, soldier. Just kidding. Stay safe.";
                    btnnext.Text = "Close";
                    break;
            }
        }

        private void btnnext_Click(object sender, EventArgs e)
        {
            if (btnnext.Text == "Close")
            {
                UserRequestedClose = false;
                this.Close();
            }
            SetupTutorialUI(TutorialProgress + 1);
        }

        #endregion

        private void HackUI_Load(object sender, EventArgs e)
        {
            this.TopMost = true;
            arc = new AudioResourceClient("HackerBattle");
            arc.SongFinished += (object s, EventArgs a) =>
            {
                arc.PlayRandom();
            };
            arc.PlayRandom();
            this.WindowState = FormWindowState.Maximized;
            //this.TopMost = true;
            LoadPlayerScreen();
            LoadEnemyScreen();
        }

        #region ENEMY
        private EnemyHacker ThisEnemyHacker { get; set; }
        public List<Computer> AllEnemyComputers = null;
        public Computer ThisEnemyPC { get; set; }
        private void LoadEnemyScreen()
        {
            AllEnemyComputers = new List<Computer>();
            VisualizeEnemyNetwork();
            tmrenemyhealthdetect.Start();
            ThisEnemyPC.Enemy = true;
        }

        private void VisualizeEnemyNetwork()
        {
            var rnd = new Random();
            foreach (Module m in ThisEnemyHacker.Network)
            {
                var c = m.Deploy();
                c.Location = new Point(m.X, m.Y);
                if (c.Type == SystemType.Core)
                {
                    ThisEnemyPC = c;
                    ThisEnemyPC.EnemyComputer = ThisPlayerPC;
                    ThisPlayerPC.EnemyComputer = ThisEnemyPC;
                }
                AddEnemyModule(c);
            }
        }

        public void Enemy_System_Attacking(object s, EventArgs a)
        {
            int i = new Random().Next(AllPlayerComputers.Count);
            var pc = AllPlayerComputers[i];
            var se = (Computer)s;
            pc.LaunchAttack(se.GetProperType());
        }

        public Computer SelectedEnemyComputer = null;

        public void AddEnemyModule(Computer newModule)
        {
            if(newModule.Type == SystemType.Core)
            {
                newModule.Left = (pnlenemy.Width - newModule.Width) / 2;
                newModule.Top = (pnlenemy.Height - newModule.Height) / 2;
            }
            var rnd = new Random();
            pnlenemy.Controls.Add(newModule);
            foreach (var pc in AllEnemyComputers)
            {
                while (newModule.Bounds.IntersectsWith(pc.Bounds))
                {
                    newModule.Location = new Point(rnd.Next(100, 350), rnd.Next(100, 350));
                }
            }
            AllEnemyComputers.Add(newModule);
            int hp = newModule.HP;
            TotalEnemyHP += (decimal)newModule.HP;
            newModule.Show();
            newModule.OnDestruction += (object s, EventArgs a) =>
            {
                if (this.SelectedEnemyComputer == newModule)
                {
                    SelectedEnemyComputer = null;
                }
                WriteLine_Enemy($"[Network] {newModule.Hostname} has gone OFFLINE.");
                AllEnemyComputers.Remove(newModule);
                newModule.Dispose();
            };
            newModule.Select += (object s, EventArgs a) =>
            {
                bool c = true;
                foreach (var pc in SelectedPlayerComputer.Enemies)
                {
                    if (pc.Hostname == newModule.Hostname)
                    {
                        c = false;
                    }
                }
                if (c == true)
                {
                    SelectedPlayerComputer.Enemies.Add(newModule);
                    ShowPCInfo(SelectedPlayerComputer.Hostname);
                    if (IsTutorial)
                    {
                        if (TutorialProgress == 9)
                        {
                            SetupTutorialUI(10);
                        }
                    }
                    WriteLine_Enemy("[Network] WARNING! Rival system has targeted a system on this network!");
                    WriteLine($"[Network] System \"{SelectedPlayerComputer.Hostname}\" is now targeting rival system \"{newModule.Hostname}\".");
                }
            };
            newModule.HP_Decreased += new EventHandler(Enemy_System_Damaged);
            newModule.OnRepair += new EventHandler(Enemy_System_Repaired);
            if (newModule.Type == SystemType.Antivirus)
            {
                var b = newModule.GetAreaOfEffect();
                newModule.AntivirusRepair += (object s, EventArgs a) =>
                {
                    foreach (Computer pc in AllEnemyComputers)
                    {
                        if (pc != newModule && pc.Bounds.IntersectsWith(b))
                        {
                            if (newModule.Type == SystemType.RepairModule)
                            {
                                if (pc.HP < newModule.HP)
                                {
                                    if (pc.HP < pc.GetTotal())
                                    {
                                        WriteLine_Enemy($"[{newModule.Hostname}] Repairing neighbouring system \"{pc.Hostname}\"...");
                                        pc.Repair(1);
                                    }
                                }

                            }
                            else
                            {
                                if (pc.HP < 10)
                                {
                                    pc.Repair(1);
                                }
                            }
                        }
                    }
                };
            }
            if (newModule.Type == SystemType.Firewall)
            {
                pnlenemy.Refresh();
                Enemy_Firewall_Deflect(newModule);
            }
            if (newModule.Type == SystemType.ServerStack)
            {
                newModule.MassDDoS += (object s, EventArgs a) =>
                {
                    WormToPlayer();
                };
            }
        }

        public void Enemy_Firewall_Deflect(Computer fwall)
        {
            //Safegaurd...
            if (fwall.Type == SystemType.Firewall)
            {
                var r = fwall.GetAreaOfEffect();
                foreach (var pc in AllEnemyComputers)
                {
                    if (pc != fwall)
                    {
                        if (pc.Bounds.IntersectsWith(r))
                        {
                            pc.DamageDefector = fwall.Grade;
                        }
                    }
                }
            }
        }

        public void Enemy_Firewall_Destroy(Computer fwall)
        {
            //Safegaurd...
            if (fwall.Type == SystemType.Firewall)
            {
                var r = fwall.GetAreaOfEffect();
                foreach (var pc in AllEnemyComputers)
                {
                    if (pc.Bounds.IntersectsWith(r))
                    {
                        pc.DamageDefector = 1;
                        UpdateEnemyFirewalls();
                    }
                }
            }
        }

        public void UpdateEnemyFirewalls()
        {
            foreach (var pc in AllEnemyComputers)
            {
                if (pc.Type == SystemType.Firewall)
                {
                    Enemy_Firewall_Deflect(pc);
                }
            }
        }


        private void Enemy_System_Repaired(object s, EventArgs e)
        {
            var c = (Computer)s;
            WriteLine_Enemy($"[{c.Hostname}] System repaired.");
            lbenemycompromised.Text = "System regenerating...";
            int location = c.Left - (lbenemycompromised.Width / 4);
            int y = c.Top - 25;
            lbenemycompromised.Location = new Point(location, y);
            lbenemycompromised.Show();
            c.Flash(lbenemycompromised);

        }


        private void Enemy_System_Damaged(object s, EventArgs e)
        {
            var c = (Computer)s;
            WriteLine_Enemy($"[{c.Hostname}] System damaged. Current HP: {c.HP}");
            WriteLine($"[Network] Damaged system on rival network with hostname \"{c.Hostname}\"");
            lbenemycompromised.Text = "System damaged!";
            int location = c.Left - (lbenemycompromised.Width / 4);
            int y = c.Top - 25;
            lbenemycompromised.Location = new Point(location, y);
            lbenemycompromised.Show();
            c.Flash(lbenemycompromised);
        }

        private decimal TotalEnemyHP = 0;

        private void tmrenemyhealthdetect_Tick(object sender, EventArgs e)
        {
            lbsong.Visible = Audio.Enabled;
            btntogglemusic.Visible = Audio.Enabled;

            if(arc != null)
            {
                lbsong.Text = $"Ross Bugden - {arc.CurrentSong}";
            }

            decimal health = 0;
            lbcodepoints.Text = $"Codepoints: {API.Codepoints}";
            var rnd = new Random();
            int chance = 0;
            foreach (var pc in AllEnemyComputers)
            {
                if (pc.Disabled == false)
                {
                    foreach (var enemy in AllPlayerComputers)
                    {
                        chance = rnd.Next(1, 20);
                        if (chance == 10)
                        {
                            if (IsTutorial)
                            {
                                if (TutorialProgress == 9)
                                {
                                    ThisPlayerPC.LaunchAttack(pc.GetProperType(), pc.GetDamageRate());
                                }
                                else if (TutorialProgress == 32)
                                {
                                    enemy.LaunchAttack(pc.GetProperType(), pc.GetDamageRate());
                                }
                                else
                                {
                                    enemy.Enemies.Clear();
                                }
                            }
                            else
                            {
                                enemy.LaunchAttack(pc.GetProperType(), pc.GetDamageRate());
                            }
                        }
                    }
                }
            }

            foreach (var pc in AllEnemyComputers)
            {
                health += (decimal)pc.HP;
            }
            try
            {
                decimal percent = (health / TotalEnemyHP) * 100;
                lbenemystats.Text = $"Enemy Health: {percent}%";
                if (ThisEnemyPC.HP <= 0)
                {
                    if (IsTutorial)
                    {
                        SetupTutorialUI(33);
                    }
                    else
                    {
                        API.CreateInfoboxSession("You won.", "You have successfully overthrown the enemy network.", infobox.InfoboxMode.Info);
                        UserRequestedClose = false;
                        var h = OnWin;
                        if(h != null)
                        {
                            h(this, new EventArgs());
                        }
                        this.Close();
                    }
                }
            }
            catch
            {

            }
        }

        public void WormToPlayer()
        {
            var rnd = new Random();
            int r = rnd.Next(0, 10);
            WriteLine_Enemy("[NETWORK] Launching distributed denial-of-service attack on rival network...");
            foreach (Computer c in AllPlayerComputers)
            {
                if (r == 5)
                {
                    c.Disable();
                }
            }
        }
        
        public void WriteLine_Enemy(string text)
        {
            if(txtenemyconsole.Text.Length == 0)
            {
                txtenemyconsole.Text = text + Environment.NewLine;
            }
            else
            {
                txtenemyconsole.Text += text + Environment.NewLine;
            }
            txtenemyconsole.Select(txtenemyconsole.TextLength, 0);
            txtenemyconsole.ScrollToCaret();
        }

        public void WriteLine(string text)
        {
            if (txtyourconsole.Text.Length == 0)
            {
                txtyourconsole.Text = text + Environment.NewLine;
            }
            else
            {
                txtyourconsole.Text += text + Environment.NewLine;
            }
            txtyourconsole.Select(txtyourconsole.TextLength, 0);
            txtyourconsole.ScrollToCaret();
        }

        #endregion

        AudioResourceClient arc = null;
        bool musicenabled = true;

        private void button2_Click(object sender, EventArgs e)
        {
            arc.Pause();
        }
    }
}