Beispiel #1
0
 public Oyaji(GameScene game, int row, int col, EggMachine left, EggMachine right)
     : base(game, RECTANGLE, new Vector(col * Settings.BLOCK_WDITH, row * Settings.BLOCK_WDITH), Vector.Zero, INIT_HEALTH)
 {
     leftEggMachine = left;
     rightEggMachine = right;
     byaa = null;
     nuru = null;
     norio1 = null;
     norio2 = null;
     currentState = State.Wait1;
     stateCount = 0;
     animation = 0;
     numDeathTicks = 0;
 }
Beispiel #2
0
 public Oyaji(GameScene game, int row, int col, EggMachine left, EggMachine right)
     : base(game, RECTANGLE, new Vector(col * Settings.BLOCK_WDITH, row * Settings.BLOCK_WDITH), Vector.Zero, INIT_HEALTH)
 {
     leftEggMachine  = left;
     rightEggMachine = right;
     byaa            = null;
     nuru            = null;
     norio1          = null;
     norio2          = null;
     currentState    = State.Wait1;
     stateCount      = 0;
     animation       = 0;
     numDeathTicks   = 0;
 }
Beispiel #3
0
        public override void Tick(GameInput input)
        {
            if (health <= 0)
            {
                DeathTick(input);
                base.Tick(input);
                return;
            }

            if (4000 < health && health <= 5500 && currentState != State.Wait2 && currentState != State.Pattern2)
            {
                currentState = State.Wait2;
                stateCount   = 0;
            }
            else if (2500 < health && health <= 4000 && currentState != State.Pattern2_5)
            {
                currentState = State.Pattern2_5;
                stateCount   = 0;
            }
            else if (1000 < health && health <= 2500 && currentState != State.Wait3 && currentState != State.Pattern3)
            {
                currentState = State.Wait3;
                stateCount   = 0;
            }
            else if (500 < health && health <= 1000 && currentState != State.Wait4 && currentState != State.Pattern4)
            {
                currentState = State.Wait4;
                stateCount   = 0;
            }
            else if (0 < health && health <= 500 && currentState != State.Wait5 && currentState != State.Pattern5)
            {
                currentState = State.Wait5;
                stateCount   = 0;
            }

            switch (currentState)
            {
            case State.Wait1:
                if (stateCount < 120)
                {
                    stateCount++;
                }
                else
                {
                    currentState = State.Pattern1;
                    stateCount   = 0;
                }
                break;

            case State.Pattern1:
                if (stateCount < 64)
                {
                    if (stateCount == 0)
                    {
                        game.PlaySound(GameSound.Shuhu);
                    }
                    animation = stateCount / 4 % 2;
                    leftEggMachine.SetAnimation(stateCount / 8);
                    rightEggMachine.SetAnimation(stateCount / 8);
                }
                else
                {
                    if (stateCount % 8 == 0)
                    {
                        leftEggMachine.FireBullet();
                        rightEggMachine.FireBullet();
                    }
                    animation = 0;
                }
                stateCount = (stateCount + 1) % 512;
                break;

            case State.Wait2:
                if (stateCount < 120)
                {
                    if (stateCount == 0)
                    {
                        leftEggMachine.BeginIdle();
                        rightEggMachine.BeginIdle();
                    }
                    stateCount++;
                }
                else
                {
                    currentState = State.Pattern2;
                    stateCount   = 0;
                }
                break;

            case State.Pattern2:
                if (stateCount < 64)
                {
                    if (stateCount == 0)
                    {
                        game.PlaySound(GameSound.Duely);
                    }
                    animation = stateCount / 4 % 2;
                }
                else
                {
                    if (stateCount % 12 == 0)
                    {
                        game.AddParticle(new OyajiThunder(game, 176 + 672 * game.Random.NextDouble()));
                    }
                    animation = 0;
                }
                stateCount = (stateCount + 1) % 256;
                break;

            case State.Pattern2_5:
                if (stateCount < 64)
                {
                    if (stateCount == 0)
                    {
                        game.PlaySound(GameSound.Shuhu);
                    }
                    animation = stateCount / 4 % 2;
                    leftEggMachine.SetAnimation(stateCount / 8);
                    rightEggMachine.SetAnimation(stateCount / 8);
                }
                else
                {
                    if (stateCount % 32 == 8)
                    {
                        leftEggMachine.FireWormEgg();
                    }
                    if (stateCount % 32 == 24)
                    {
                        rightEggMachine.FireWormEgg();
                    }
                    animation = 0;
                }
                stateCount = (stateCount + 1) % 512;
                break;

            case State.Wait3:
                foreach (Thing enemy in game.Enemies)
                {
                    if (enemy is Worm)
                    {
                        enemy.Die();
                    }
                }
                if (stateCount < 64)
                {
                    leftEggMachine.SetAnimation(stateCount / 8);
                    rightEggMachine.SetAnimation(stateCount / 8);
                }
                if (stateCount < 120)
                {
                    stateCount++;
                }
                else
                {
                    byaa = new Byaa(game, new Vector(32, 32), Byaa.Direction.Right, true);
                    nuru = new Nurunuru(game, new Vector(game.Map.Width - 128 - 32, 32), Nurunuru.Direction.Left, true);
                    game.AddEnemy(byaa);
                    game.AddEnemy(nuru);
                    currentState = State.Pattern3;
                    stateCount   = 0;
                }
                break;

            case State.Pattern3:
                foreach (Thing enemy in game.Enemies)
                {
                    if (enemy is Worm)
                    {
                        enemy.Die();
                    }
                }
                if (stateCount < 64)
                {
                    if (stateCount == 0)
                    {
                        game.PlaySound(GameSound.Horay);
                    }
                    animation = stateCount / 4 % 2;
                }
                else
                {
                    animation = 0;
                }
                if (stateCount % 64 == 16)
                {
                    leftEggMachine.FireBullet();
                }
                if (stateCount % 64 == 48)
                {
                    rightEggMachine.FireBullet();
                }

                /*
                 * if (stateCount % 128 == 64)
                 * {
                 *  double x = game.Player.Center.X + 128 * game.Random.NextDouble() - 64;
                 *  if (x < 176) x = 176;
                 *  if (x > 848) x = 848;
                 *  game.AddParticle(new OyajiThunder(game, x));
                 * }
                 */
                stateCount = (stateCount + 1) % 512;
                break;

            case State.Wait4:
                if (stateCount == 0)
                {
                    if (byaa != null)
                    {
                        byaa.Die();
                    }
                    if (nuru != null)
                    {
                        nuru.Die();
                    }
                }
                if (stateCount < 32)
                {
                    leftEggMachine.SetAnimation(stateCount / 4);
                    rightEggMachine.SetAnimation(stateCount / 4);
                }
                if (stateCount < 60)
                {
                    stateCount++;
                }
                else
                {
                    norio1 = new Norio(game, 1, 1, Norio.Direction.Right, true);
                    norio2 = new Norio(game, 1, (game.Map.Width / Settings.BLOCK_WDITH) - 5, Norio.Direction.Left, true);
                    game.AddEnemy(norio1);
                    game.AddEnemy(norio2);
                    currentState = State.Pattern4;
                    stateCount   = 0;
                }
                break;

            case State.Pattern4:
                if (stateCount % 64 == 16)
                {
                    leftEggMachine.FireBullet();
                }
                if (stateCount % 64 == 48)
                {
                    rightEggMachine.FireBullet();
                }
                stateCount = (stateCount + 1) % 64;
                break;

            case State.Wait5:
                if (stateCount < 60)
                {
                    if (stateCount == 0)
                    {
                        if (norio1 != null)
                        {
                            norio1.Die();
                        }
                        if (norio2 != null)
                        {
                            norio2.Die();
                        }
                        leftEggMachine.BeginIdle();
                        rightEggMachine.BeginIdle();
                    }
                    stateCount++;
                }
                else
                {
                    currentState = State.Pattern5;
                    stateCount   = 0;
                }
                break;

            case State.Pattern5:
                if (stateCount < 64)
                {
                    leftEggMachine.SetAnimation(stateCount / 8);
                    rightEggMachine.SetAnimation(stateCount / 8);
                }
                else
                {
                    if (stateCount % 8 == 0)
                    {
                        leftEggMachine.FireBullet();
                        rightEggMachine.FireBullet();
                    }
                    if (stateCount % 16 == 0)
                    {
                        game.AddParticle(new OyajiThunder(game, 176 + 672 * game.Random.NextDouble()));
                    }
                }
                stateCount = (stateCount + 1) % 512;
                break;
            }

            velocity.X = 0.0078125 * (game.Player.Center.X - Center.X);
            if (Math.Abs(velocity.X) > 16)
            {
                velocity.X = Math.Sign(velocity.X) * 16;
            }
            MoveBy(input, velocity);

            base.Tick(input);
        }
Beispiel #4
0
        public override void Tick(GameInput input)
        {
            if (health <= 0)
            {
                DeathTick(input);
                base.Tick(input);
                return;
            }

            if (4000 < health && health <= 5500 && currentState != State.Wait2 && currentState != State.Pattern2)
            {
                currentState = State.Wait2;
                stateCount = 0;
            }
            else if (2500 < health && health <= 4000 && currentState != State.Pattern2_5)
            {
                currentState = State.Pattern2_5;
                stateCount = 0;
            }
            else if (1000 < health && health <= 2500 && currentState != State.Wait3 && currentState != State.Pattern3)
            {
                currentState = State.Wait3;
                stateCount = 0;
            }
            else if (500 < health && health <= 1000 && currentState != State.Wait4 && currentState != State.Pattern4)
            {
                currentState = State.Wait4;
                stateCount = 0;
            }
            else if (0 < health && health <= 500 && currentState != State.Wait5 && currentState != State.Pattern5)
            {
                currentState = State.Wait5;
                stateCount = 0;
            }

            switch (currentState)
            {
                case State.Wait1:
                    if (stateCount < 120)
                    {
                        stateCount++;
                    }
                    else
                    {
                        currentState = State.Pattern1;
                        stateCount = 0;
                    }
                    break;
                case State.Pattern1:
                    if (stateCount < 64)
                    {
                        if (stateCount == 0)
                        {
                            game.PlaySound(GameSound.Shuhu);
                        }
                        animation = stateCount / 4 % 2;
                        leftEggMachine.SetAnimation(stateCount / 8);
                        rightEggMachine.SetAnimation(stateCount / 8);
                    }
                    else
                    {
                        if (stateCount % 8 == 0)
                        {
                            leftEggMachine.FireBullet();
                            rightEggMachine.FireBullet();
                        }
                        animation = 0;
                    }
                    stateCount = (stateCount + 1) % 512;
                    break;
                case State.Wait2:
                    if (stateCount < 120)
                    {
                        if (stateCount == 0)
                        {
                            leftEggMachine.BeginIdle();
                            rightEggMachine.BeginIdle();
                        }
                        stateCount++;
                    }
                    else
                    {
                        currentState = State.Pattern2;
                        stateCount = 0;
                    }
                    break;
                case State.Pattern2:
                    if (stateCount < 64)
                    {
                        if (stateCount == 0)
                        {
                            game.PlaySound(GameSound.Duely);
                        }
                        animation = stateCount / 4 % 2;
                    }
                    else
                    {
                        if (stateCount % 12 == 0)
                        {
                            game.AddParticle(new OyajiThunder(game, 176 + 672 * game.Random.NextDouble()));
                        }
                        animation = 0;
                    }
                    stateCount = (stateCount + 1) % 256;
                    break;
                case State.Pattern2_5:
                    if (stateCount < 64)
                    {
                        if (stateCount == 0)
                        {
                            game.PlaySound(GameSound.Shuhu);
                        }
                        animation = stateCount / 4 % 2;
                        leftEggMachine.SetAnimation(stateCount / 8);
                        rightEggMachine.SetAnimation(stateCount / 8);
                    }
                    else
                    {
                        if (stateCount % 32 == 8)
                        {
                            leftEggMachine.FireWormEgg();
                        }
                        if (stateCount % 32 == 24)
                        {
                            rightEggMachine.FireWormEgg();
                        }
                        animation = 0;
                    }
                    stateCount = (stateCount + 1) % 512;
                    break;
                case State.Wait3:
                    foreach (Thing enemy in game.Enemies)
                    {
                        if (enemy is Worm)
                        {
                            enemy.Die();
                        }
                    }
                    if (stateCount < 64)
                    {
                        leftEggMachine.SetAnimation(stateCount / 8);
                        rightEggMachine.SetAnimation(stateCount / 8);
                    }
                    if (stateCount < 120)
                    {
                        stateCount++;
                    }
                    else
                    {
                        byaa = new Byaa(game, new Vector(32, 32), Byaa.Direction.Right, true);
                        nuru = new Nurunuru(game, new Vector(game.Map.Width - 128 - 32, 32), Nurunuru.Direction.Left, true);
                        game.AddEnemy(byaa);
                        game.AddEnemy(nuru);
                        currentState = State.Pattern3;
                        stateCount = 0;
                    }
                    break;
                case State.Pattern3:
                    foreach (Thing enemy in game.Enemies)
                    {
                        if (enemy is Worm)
                        {
                            enemy.Die();
                        }
                    }
                    if (stateCount < 64)
                    {
                        if (stateCount == 0)
                        {
                            game.PlaySound(GameSound.Horay);
                        }
                        animation = stateCount / 4 % 2;
                    }
                    else
                    {
                        animation = 0;
                    }
                    if (stateCount % 64 == 16)
                    {
                        leftEggMachine.FireBullet();
                    }
                    if (stateCount % 64 == 48)
                    {
                        rightEggMachine.FireBullet();
                    }
                    /*
                    if (stateCount % 128 == 64)
                    {
                        double x = game.Player.Center.X + 128 * game.Random.NextDouble() - 64;
                        if (x < 176) x = 176;
                        if (x > 848) x = 848;
                        game.AddParticle(new OyajiThunder(game, x));
                    }
                    */
                    stateCount = (stateCount + 1) % 512;
                    break;
                case State.Wait4:
                    if (stateCount == 0)
                    {
                        if (byaa != null)
                        {
                            byaa.Die();
                        }
                        if (nuru != null)
                        {
                            nuru.Die();
                        }
                    }
                    if (stateCount < 32)
                    {
                        leftEggMachine.SetAnimation(stateCount / 4);
                        rightEggMachine.SetAnimation(stateCount / 4);
                    }
                    if (stateCount < 60)
                    {
                        stateCount++;
                    }
                    else
                    {
                        norio1 = new Norio(game, 1, 1, Norio.Direction.Right, true);
                        norio2 = new Norio(game, 1, (game.Map.Width / Settings.BLOCK_WDITH) - 5, Norio.Direction.Left, true);
                        game.AddEnemy(norio1);
                        game.AddEnemy(norio2);
                        currentState = State.Pattern4;
                        stateCount = 0;
                    }
                    break;
                case State.Pattern4:
                    if (stateCount % 64 == 16)
                    {
                        leftEggMachine.FireBullet();
                    }
                    if (stateCount % 64 == 48)
                    {
                        rightEggMachine.FireBullet();
                    }
                    stateCount = (stateCount + 1) % 64;
                    break;
                case State.Wait5:
                    if (stateCount < 60)
                    {
                        if (stateCount == 0)
                        {
                            if (norio1 != null)
                            {
                                norio1.Die();
                            }
                            if (norio2 != null)
                            {
                                norio2.Die();
                            }
                            leftEggMachine.BeginIdle();
                            rightEggMachine.BeginIdle();
                        }
                        stateCount++;
                    }
                    else
                    {
                        currentState = State.Pattern5;
                        stateCount = 0;
                    }
                    break;
                case State.Pattern5:
                    if (stateCount < 64)
                    {
                        leftEggMachine.SetAnimation(stateCount / 8);
                        rightEggMachine.SetAnimation(stateCount / 8);
                    }
                    else
                    {
                        if (stateCount % 8 == 0)
                        {
                            leftEggMachine.FireBullet();
                            rightEggMachine.FireBullet();
                        }
                        if (stateCount % 16 == 0)
                        {
                            game.AddParticle(new OyajiThunder(game, 176 + 672 * game.Random.NextDouble()));
                        }
                    }
                    stateCount = (stateCount + 1) % 512;
                    break;
            }

            velocity.X = 0.0078125 * (game.Player.Center.X - Center.X);
            if (Math.Abs(velocity.X) > 16)
            {
                velocity.X = Math.Sign(velocity.X) * 16;
            }
            MoveBy(input, velocity);

            base.Tick(input);
        }