summaryrefslogtreecommitdiff
path: root/Game1.cs
blob: a6f96b0ce7d5a23ae1e226a1c0f90b0235c6a6a4 (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
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using static Class_War.Constants;
using System.Diagnostics;
using System.Collections.Generic;
using System;
 

namespace Class_War
{
    /// <summary>
    /// This is the main type for your game.
    /// </summary>
    public class Game1 : Game
    {
        GraphicsDeviceManager graphics;
        SpriteBatch spriteBatch;

        SpriteFont Consolas12SF;

        Random random = new Random();

        InputHandler inputHandler;

        int score;
        byte level;
        int enemiesSpawnedForLevel;
        int maxEnemiesForCurrLevel;
        bool isPaused;
        DateTime startTime;
        bool newLevel;
        bool beginNewLevel = false;
        int lives = 3;
        bool lifeLost; // TODO: initialize these
        bool inMenu = false;
        bool isShill = false;
        bool usesBackgroundImage = false;

        Texture2D codeBackgroundImage;
        Texture2D shillBackgroundImage;


        DateTime lifeLostTime;

        Timer collisionTimer = new Timer();

        Menu menu;

        MainChara mainchara;
        List<Enemy> enemies;
        List<Bullet> bullets;


        List<string> csharpKeywords;
        List<string> assemblyKeywords;
        List<string> cppKeywords;
        List<string> keywords;
        List<string> exceptions;

        public bool IsCollision(List<Vector2> borders, Vector2 point)
        {
            // If point within the borders, return true.
            if (point.X >= borders[0].X && point.X <= borders[1].X && point.Y >= borders[0].Y && point.Y <= borders[1].Y) return true;
            else return false;

        } // TODO: add


        public Game1()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";
        }

        /// <summary>
        /// Allows the game to perform any initialization it needs to before starting to run.
        /// This is where it can query for any required services and load any non-graphic
        /// related content.  Calling base.Initialize will enumerate through any components
        /// and initialize them as well.
        /// </summary>
        protected override void Initialize()
        {
            // TODO: Add your initialization logic here

            isPaused = false;
            mainchara = new MainChara(Content, MainCharacterSpriteImage, MainCharacterStartingPosition);

            enemies = new List<Enemy>();
            bullets = new List<Bullet>();

            menu = new Menu(Content, Consolas12);

            // Level and Enemy loading logic
            newLevel = true;
            startTime = DateTime.Now;
            level = 1;
            score = 0;
            maxEnemiesForCurrLevel = Level1MaxEnemyCount;

            inputHandler = new InputHandler();

            shillBackgroundImage = Content.Load<Texture2D>("shillbg");
            codeBackgroundImage = Content.Load<Texture2D>("codebg");

            lifeLost = false;
            lifeLostTime = DateTime.Now.Subtract(new TimeSpan(0, 0, AfterLifeLostImmunityTime));

            // TODO: actually add keyword loading mechanism
            csharpKeywords = new List<string>()
            { "abstract", "base", "bool", "break", "byte", "case", "catch",
            "char", "checked", "class", "const", "continue", "decimal", "default",
            "delegate", "do", "double", "else", "enum", "event", "explicit",
            "extern", "false", "finally", "fixed", "float", "for", "foreach",
            "goto", "if", "implicit", "in", "int", "interface", "internal",
            "is", "lock", "long", "namespace", "new", "null", "object", "operator",
            "out", "override", "params", "private", "protected", "public",
            "readonly", "ref", "return", "sbyte", "sealed", "short", "sizeof",
            "stackalloc", "static", "string", "struct", "switch", "this",
            "throw", "true", "try", "typeof", "uint", "ulong", "unchecked", "unsafe", "ushort",
            "using", "virtual", "void", "volatile", "while"};
            assemblyKeywords = new List<string>()
            {
                "aaa", "aad", "aam", "aas", "adc", "add", "and", "call", "cbw",
                "clc", "cld", "cli", "cmc", "cmp", "cmpsb", "cmpsw", "cwd", "daa",
                "das", "dec", "div", "esc", "hlt", "idiv", "imul", "in", "inc",
                "int", "into", "iret", "ja", "jae", "jb", "jbe", "jc", "je", "jg",
                "jge", "jl", "jle", "jna", "jnae", "jnb", "jnbe", "jnc", "jne", "jng", 
                "jnge", "jnl", "jnle", "jno", "jnp", "jns", "jnz", "jo", "jp", "jpe",
                "jpo", "js", "jz", "jcxz", "jmp", "lahf", "lds", "lea", "les", "lock",
                "lodsb", "lodsw", "loop", "mov", "movsb", "movsw", "mul", "neg",
                "nop", "not", "or", "out", "pop", "popf", "push", "pushf", "rcl",
                "rcr", "rep", "repe", "repne", "repnz", "repz", "retn", "retf", 
                "ret", "rol", "ror", "sahf", "sal", "sar", "sbb", "scasb", "scasw",
                "shl", "shr", "stc", "std", "sti", "stosb", "stosw", "sub",
                "test", "wait", "xchg", "xlat", "xor"
            };
            cppKeywords = new List<string>() { "alignas", "alignof", "and",
            "and_eq", "asm", "atomic_cancel", "atomic_commit", "atomic_noexcept",
            "auto", "bitand", "bitor", "bool", "break", "case", "catch", "char",
            "char8_t", "char16_t", "char32_t", "class", "compl", "concept",
            "const", "consteval", "constexpr", "constinit", "const_cast",
            "continue", "co_await", "co_return", "co_yield", "decltype",
            "default", "delete", "do", "double", "dynamic_cast", "else",
            "enum", "explicit","export", "extern", "false", "float",
            "for", "friend", "goto", "if", "inline", "int", "long",
            "mutable", "namespace", "new", "noexcept", "not", "not_eq",
            "nullptr", "operator", "or", "or_eq", "private", "protected",
            "register", "reinterpret_cast", "requires", "return", "short",
            "signed", "sizeof", "static", "static_assert", "static_cast",
            "struct", "switch", "this", "template", "thread_local", "throw",
            "true", "try", "typedef", "typeid", "typename", "union", "unsigned",
            "using", "virtual", "void", "volatile", "wchar_t", "while",
            "xor", "xor_eq", "final", "override", "ifdef", "elif", "endif", "pragma",
            "undef", "define", "error", "line", "include", "export", "import",
            "module"};

                keywords = csharpKeywords;

            

            exceptions = new List<string>();
            exceptions.Add("NullReferenceException");


            // Add Level One enemies



            base.Initialize();
        }

        /// <summary>
        /// LoadContent will be called once per game and is the place to load
        /// all of your content.
        /// </summary>
        protected override void LoadContent()
        {
            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(GraphicsDevice);
            Consolas12SF = Content.Load<SpriteFont>(DefaultFont);

            // TODO: use this.Content to load your game content here
        }

        /// <summary>
        /// UnloadContent will be called once per game and is the place to unload
        /// game-specific content.
        /// </summary>
        protected override void UnloadContent()
        {
            // TODO: Unload any non ContentManager content here
        }

        /// <summary>
        /// Allows the game to run logic such as updating the world,
        /// checking for collisions, gathering input, and playing audio.
        /// </summary>
        /// <param name="gameTime">Provides a snapshot of timing values.</param>
        protected override void Update(GameTime gameTime)
        {
            if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
                Exit();

            if (newLevel)
            { // If newLevel begin the timer process, to regularly spawn the new enemies.
                if ((DateTime.Now - startTime) > TimeSpan.FromSeconds(30d / maxEnemiesForCurrLevel))// SystemOverFlowexception here.
                {
                    // Adequate time has passed, so spawn in a new enemy
                    string text = keywords[random.Next(keywords.Count)];
                    bool isException = false;

                    // Generate position and is left to right (or up and down)
                    Vector2 position = new Vector2(2,2); // Just to stop the error basically, position is overridden later
                    Direction direction;

                    // Testing for Random number gen
                    /*Debug.WriteLine(new string('\n', 20));
                    for (int amountoftimestodebugforwiththisthing = 0; amountoftimestodebugforwiththisthing < 150; amountoftimestodebugforwiththisthing++)
                    {
                        Debug.Write($"{(Direction)random.Next(0, 4)} - ");
                    }
                    Debug.WriteLine(new string('\n', 10));*/

                    if (level <= 5)
                    { // Can only declare left to right positions.
                        direction = (Direction)random.Next(0, 2); // Only generating 1
                    }
                    else
                        direction = (Direction)random.Next(0, 4); // Only generating 3

                    Debug.WriteLine($"\t\t\t\tCreated new Direction -> {direction.ToString()}");

                    if (direction == Direction.Left)
                    {
                            position = new Vector2(RightMostEdge+10f,
                                random.Next(0, BottomMostEdge-75));
                    }
                    else if (direction == Direction.Right)
                    {
                        position = new Vector2(-10f, random.Next(0, BottomMostEdge-75));
                    }
                    else if (direction == Direction.Down)
                    {
                        position = new Vector2(random.Next(0, GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Width), -10f);
                    }
                    else if (direction == Direction.Up)
                    {
                        position = new Vector2(random.Next(0, RightMostEdge-5),
                            BottomMostEdge + 10f);
                    }
                    



                    if (exceptions.Contains(text)) isException = true;
                    enemies.Add(new Enemy(Content, Level1EnemyHealth * level, text,
                        Consolas12,
                        Color.White,
                        random.NextDouble() + 0.3 + (level*0.15),
                        level, isException, position, direction));

                    enemiesSpawnedForLevel++;
                    if (enemiesSpawnedForLevel == maxEnemiesForCurrLevel) newLevel = false; // Once everything is spawned, no longer new level
                }

            }
            // Begin the New Level once all Enemies down
            if (!newLevel && (enemies.Count == 0)) // If all for this level spawned and disappeared out of list
            {
                beginNewLevel = true;
            }


            // Updating spawning logic for the next level
            if (enemiesSpawnedForLevel >= maxEnemiesForCurrLevel && beginNewLevel)
            { // Time for each spawning wave will be 30 seconds
                level++;
                newLevel = true;
                beginNewLevel = false; // the level is begun-- this is set to true again once all enemies are gone
                startTime = DateTime.Now;
                enemiesSpawnedForLevel = 0;
                maxEnemiesForCurrLevel = ((Level1MaxEnemyCount) + maxEnemiesForCurrLevel);
            }
            
            

            // Handle Input
            inputHandler.ReadInput();
            Debug.WriteLine("Jello"); // This is working every loop

            /*if (inputHandler.IsKeyDown(Keys.P, 0.5))
            { // Toggle Pausing with TAB
                if (isPaused) isPaused = false;
                else isPaused = true;
            }*/

            Debug.WriteLine("---- ABOUT TO CHECK FOR IF TAB PRESSED ----");
            bool menuCodeExecuted = false;
            if (isPaused && inMenu)
            {
                menu.HandleInput(inputHandler);

                // TODO: handle states
                // ....
                if (menu.outValue == 0) {
                    isPaused = inMenu = false;
                    menu.outValue = 328;
                }
                else if (menu.outValue == 3) // C# Language
                    { keywords = csharpKeywords; }
                else if (menu.outValue == 4) // Assembly
                    { keywords = assemblyKeywords; }
                else if (menu.outValue == 5)
                    { keywords = cppKeywords; }
                else if (menu.outValue == 6) // BLACK
                    { isShill = usesBackgroundImage = false; }
                else if (menu.outValue == 7) // CODE
                    { usesBackgroundImage = true; isShill = false; }
                else if (menu.outValue == 8) // SHILL
                    { usesBackgroundImage = isShill = true; }


                else if (false) { } // TODO: add


                if (inputHandler.OnKeyPress(Keys.Tab)) isPaused = inMenu = false;

                menuCodeExecuted = true;
            }

            if (inputHandler.OnKeyPress(Keys.Tab) && menuCodeExecuted == false)
            {
                Debug.WriteLine("NOW IN MENU");
                isPaused = true;
                inMenu = true;
            }

            // If In Menu


            if (!isPaused)
            {
                if (inputHandler.IsKeyDown(Keys.W) || inputHandler.IsKeyDown(Keys.Up))
                    mainchara.GoUp();
                else if (inputHandler.IsKeyDown(Keys.S) || inputHandler.IsKeyDown(Keys.Down))
                    mainchara.GoDown();
                else if (inputHandler.IsKeyDown(Keys.D) || inputHandler.IsKeyDown(Keys.Right))
                    mainchara.GoRight();
                else if (inputHandler.IsKeyDown(Keys.A) || inputHandler.IsKeyDown(Keys.Left))
                    mainchara.GoLeft();
                if (inputHandler.IsKeyDown(Keys.Enter))
                    mainchara.Fire(ref bullets);
            }

            // Update Enemys and Bullets, e.g. deleting them where necessary
            /*List<Enemy> toBeRemoved = new List<Enemy>();
            foreach (Enemy e in enemies)
            {
                e.Update(ref bullets);
                if (e.IsDestroyed) toBeRemoved.Add(e);
            }
            enemies.RemoveAll(e => toBeRemoved.Contains(e));*/
            if (!isPaused)
            {
                List<Bullet> bulletsToBeRemoved = new List<Bullet>();
                foreach (Bullet b in bullets)
                {
                    b.Move();
                    if (b.IsDestroyed) bulletsToBeRemoved.Add(b);
                }
                bullets.RemoveAll(b => bulletsToBeRemoved.Contains(b));

                // Handling Collisions
                /* If the Word Enemys collide with the bullet, they are destroyed.
                 * If the Word Enemys or their Bullets collide with the player, a life is lost.
                 * */
                collisionTimer.StartTime();

                foreach (Bullet bullet in bullets)
                {
                    if (bullet.isPlayersBullet)
                    {
                        foreach (Enemy enemy in enemies)
                        {
                            if (IsCollision(enemy.Borders, bullet.position))
                            {
                                enemy.IsDestroyed = true;
                                bullet.IsDestroyed = true;
                                score += enemy.points;
                            }
                        }
                    }
                    else
                    {
                        if (IsCollision(mainchara.Borders, bullet.position))
                        {
                            if (DateTime.Now - lifeLostTime > TimeSpan.FromSeconds(AfterLifeLostImmunityTime))
                            {
                                Debug.WriteLine("Player loses life!");
                                lives--;
                                lifeLost = true;
                                lifeLostTime = DateTime.Now;
                                isPaused = true;
                                mainchara.topleft.X = -10000; // Just to prevent loss of lives
                                mainchara.topleft.Y = -10000;
                                break;
                            }
                            else { } // Do nothing if still in regeneratory period

                        }
                    }
                }
                // Remove The 
                List<Enemy> tbr = new List<Enemy>();
                foreach (Enemy e in enemies)
                {
                    e.Update(ref bullets);
                    if (e.IsDestroyed) tbr.Add(e);
                }
                enemies.RemoveAll(e => tbr.Contains(e));

                collisionTimer.EndTime();
                Debug.WriteLine($"Collision Detection -> Time This Run {collisionTimer.GetLastDuration()}");
                Debug.WriteLine($"Collision Detection -> Average Time  {collisionTimer.GetAverageDuration()}");
            }

             if (isPaused && lifeLost)
            {
                if (DateTime.Now - lifeLostTime > TimeSpan.FromSeconds(LifeLostScreenDuration))
                {
                    isPaused = lifeLost = false;
                    mainchara.topleft = MainCharacterStartingPosition;
                }
            }

            base.Update(gameTime);
        }

        /// <summary>
        /// This is called when the game should draw itself.
        /// </summary>
        /// <param name="gameTime">Provides a snapshot of timing values.</param>
        protected override void Draw(GameTime gameTime)
        {
            GraphicsDevice.Clear(Color.Black);


            spriteBatch.Begin();

            if (usesBackgroundImage && !isPaused)
            {
                if (isShill)
                    spriteBatch.Draw(shillBackgroundImage, new Vector2(0, 0), Color.White);
                else spriteBatch.Draw(codeBackgroundImage, new Vector2(0, 0), Color.White);
            }



            Debug.WriteLine("In Draw() -- spriteBatch begun");
            Debug.WriteLine($"In Draw() -> enemies.Count = {enemies.Count}");
            Debug.WriteLine($"In Draw() -> bullets.Count = {bullets.Count}");
            Debug.WriteLine($"In Draw() -> player coords = ({mainchara.Borders[0].X}, {mainchara.Borders[0].Y})");
            Debug.WriteLine("Enemy coordinates as follows: ");
            foreach (Enemy enemy in enemies)
            {
                Debug.WriteLine($"\t{enemy.position}\t{enemy.direction}");
            }

            if (inMenu && isPaused) menu.Draw(spriteBatch, isShill);


            // TODO: Add your drawing code here
            if (lives == 0) // if game over
            {
                spriteBatch.DrawString(Consolas12SF, "GAME OVER!", new Vector2(250, 200), Color.White);
                spriteBatch.DrawString(Consolas12SF, $"Points: {score}", new Vector2(250, 220), Color.Red);
                spriteBatch.DrawString(Consolas12SF, $"Level:  {level}", new Vector2(250, 240), Color.Red);

                isPaused = true; // Otherwise score count can change
            }
            else
            {
                if (isPaused && !lifeLost)
                {
                    Debug.WriteLine("In Draw -> isPaused");
                    spriteBatch.DrawString(Consolas12SF, "PAUSED", new Vector2(GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Height / 2,
                        GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Width / 2), Color.White);
                }
                else if (isPaused && lifeLost)
                {
                    spriteBatch.DrawString(Consolas12SF, "YOU DIED", new Vector2(250, 250), Color.White);
                    spriteBatch.DrawString(Consolas12SF, $"{lives} lives left", new Vector2(250, 270), Color.White);
                }
                else
                {
                    Debug.WriteLine("In Draw -> isNotPaused");
                    mainchara.Draw(spriteBatch);
                    foreach (Enemy enemy in enemies) enemy.Draw(spriteBatch);
                    foreach (Bullet bullet in bullets) bullet.Draw(spriteBatch);
                }

                spriteBatch.DrawString(Consolas12SF, $"Score: {score.ToString("X8")}", new Vector2(10, 10), Color.Red);
                //spriteBatch.DrawString(Consolas12SF, $"n. Enemies {enemies.Count}", new Vector2(10, 50), Color.Red);
                spriteBatch.DrawString(Consolas12SF, $"Level {Convert.ToString(level, 2).PadLeft(8, '0')}", new Vector2(10, 30), Color.Red);
            }

            spriteBatch.End();
            base.Draw(gameTime);
        }
    }
}