コード例 #1
0
 public void SetFireAtDirection(Vector2 fireAtDirection, int shotSpeed, int aimOffset)
 {
     vectorMagnitude = PhysicsUtility.VectorMagnitude(GetBoundingBox().X, fireAtDirection.X, GetBoundingBox().Y, fireAtDirection.Y);
     shotLenX        = Math.Max((int)fireAtDirection.X, GetBoundingBox().X) - Math.Min((int)fireAtDirection.X, GetBoundingBox().X);
     shotLenY        = Math.Max((int)fireAtDirection.Y, GetBoundingBox().Y) - Math.Min((int)fireAtDirection.Y, GetBoundingBox().Y);
     shotDirX        = (fireAtDirection.X - GetBoundingBox().X + aimOffset) / vectorMagnitude * shotSpeed;
     shotDirY        = (fireAtDirection.Y - GetBoundingBox().Y + aimOffset) / vectorMagnitude * shotSpeed;
 }
コード例 #2
0
        public void Update(KeyboardState kstate, GameTime gameTime, Camera camera, List <InventoryItem> actionInventory)
        {
            timeSinceLastExpClean += gameTime.ElapsedGameTime.Milliseconds;

            // clean shots
            foreach (var shot in Shots)
            {
                shot.Update(gameTime);
            }
            if (timeSinceLastExpClean > millisecondsExplosionLasts)
            {
                // remove exploded shots
                for (int i = 0; i < Shots.Count; i++)
                {
                    if (Shots[i].exploded || Shots[i].outOfRange)
                    {
                        Shots.RemoveAt(i);
                    }
                }
                timeSinceLastExpClean = 0;
            }

            // lighting items
            if (emittingLight != null)
            {
                // toggle light
                if (kstate.IsKeyDown(Keys.T))
                {
                    msToggleButtonHit += gameTime.ElapsedGameTime.Milliseconds;
                    if (msToggleButtonHit > 500) // toggle time 500ms
                    {
                        emittingLight.lit = !emittingLight.lit;
                        msToggleButtonHit = 0;
                    }
                }

                emittingLight.Update(kstate, gameTime, GetBoundingBox().Center.ToVector2());
            }

            aiming = false;

            // aiming
            if (Mouse.GetState().LeftButton == ButtonState.Pressed)
            {
                timeSinceLastShot += gameTime.ElapsedGameTime.Milliseconds;
                float percentReloaded = timeSinceLastShot / millisecondsNewShot;

                aiming       = true;
                startAimLine = GetBoundingBox().Center.ToVector2();

                Vector2 mousePos   = new Vector2(Mouse.GetState().X, Mouse.GetState().Y);
                Vector2 clickPos   = mousePos - new Vector2(GameOptions.PrefferedBackBufferWidth / 2, GameOptions.PrefferedBackBufferHeight / 2) + camera.Position;
                Vector2 reloadSpot = new Vector2(((1 - percentReloaded) * startAimLine.X + (percentReloaded * clickPos.X)), ((1 - percentReloaded) * startAimLine.Y + (percentReloaded * clickPos.Y)));

                var lineDistanceFull   = PhysicsUtility.VectorMagnitude(clickPos.X, startAimLine.X, clickPos.Y, startAimLine.Y);
                var lineDistanceReload = PhysicsUtility.VectorMagnitude(reloadSpot.X, startAimLine.X, reloadSpot.Y, startAimLine.Y);

                // max range
                float   disRatio = shotRange / lineDistanceFull;
                Vector2 maxPos   = new Vector2(((1 - disRatio) * startAimLine.X + (disRatio * clickPos.X)), ((1 - disRatio) * startAimLine.Y + (disRatio * clickPos.Y)));

                // shot offset from mount
                float shotOffsetRatio = 30 / lineDistanceFull;
                shotOffsetPos = new Vector2(((1 - shotOffsetRatio) * startAimLine.X + (shotOffsetRatio * clickPos.X)), ((1 - shotOffsetRatio) * startAimLine.Y + (shotOffsetRatio * clickPos.Y)));

                // restrict aiming by shotRange
                if (lineDistanceFull > shotRange)
                {
                    endAimLineFull = maxPos;
                }
                else
                {
                    endAimLineFull = clickPos;
                }

                if (lineDistanceReload > lineDistanceFull || lineDistanceReload > shotRange)
                {
                    endAimLineReload = endAimLineFull;
                }
                else
                {
                    endAimLineReload = reloadSpot;
                }

                // rotate the mount
                float angleFull = (float)Math.Atan2(edgeFull.Y, edgeFull.X);
                rotation = angleFull + ((float)Math.PI / 2);
            }
            else
            {
                aiming = false;
            }

            // shooting
            if (aiming && kstate.IsKeyDown(Keys.Space) && timeSinceLastShot > millisecondsNewShot)
            {
                animateShot = true;
                // loading ammo
                if (ammoLoaded == null || actionInventory[ammoLoadedIndex] == null || actionInventory[ammoLoadedIndex].bbKey != ammoLoaded.bbKey) // ran out of ammo, or switched ammo type. Reload
                {
                    for (int i = 0; i < actionInventory.Count; i++)
                    {
                        var item = actionInventory[i];
                        if (item != null && item is IShipAmmoItem && ammoItemType == item.GetType()) // TODO: selects the first item in ship action inv to shoot
                        {
                            if (item.amountStacked > 0)
                            {
                                ammoLoaded      = item;
                                ammoLoadedIndex = i;
                                IShipAmmoItem sai = (IShipAmmoItem)item;
                                firedAmmoKey = sai.GetFiredAmmoKey();
                            }
                            break;
                        }
                    }
                }
                else
                {
                    Ammo  shot      = (Ammo)ItemUtility.CreateItem(firedAmmoKey, teamType, regionKey, shotOffsetPos, _content, _graphics);
                    float angleFull = (float)Math.Atan2(edgeFull.Y, edgeFull.X);
                    shot.rotation = angleFull + ((float)Math.PI / 2);
                    shot.SetFireAtDirection(endAimLineFull, RandomEvents.rand.Next(10, 25), 0);
                    shot.moving = true;
                    Shots.Add(shot);
                    timeSinceLastShot         = 0;
                    ammoLoaded.amountStacked -= 1;
                    if (ammoLoaded.amountStacked <= 0)
                    {
                        ammoLoaded = null;
                    }
                }
            }

            if (animateShot)
            {
                msAnimateShot += gameTime.ElapsedGameTime.Milliseconds;
                if (msAnimateShot > 70)
                {
                    currColumnFrame++;
                    msAnimateShot = 0;
                }
                if (currColumnFrame >= nColumns)
                {
                    currColumnFrame = 0;
                    animateShot     = false;
                }
            }
        }
コード例 #3
0
        public void UpdateAIMountShot(GameTime gameTime, Vector2?target)
        {
            timeSinceLastExpClean += gameTime.ElapsedGameTime.Milliseconds;
            // clean shots
            foreach (var shot in Shots)
            {
                shot.Update(gameTime);
            }
            if (timeSinceLastExpClean > millisecondsExplosionLasts)
            {
                // remove exploded shots
                for (int i = 0; i < Shots.Count; i++)
                {
                    if (Shots[i].exploded || Shots[i].outOfRange)
                    {
                        Shots.RemoveAt(i);
                    }
                }
                timeSinceLastExpClean = 0;
            }

            if (target != null)
            {
                Vector2 targetV = target.Value;

                float percentReloaded = timeSinceLastShot / millisecondsNewShot;
                startAimLine = GetBoundingBox().Center.ToVector2();

                aiming = true;
                Vector2 reloadSpot = new Vector2(((1 - percentReloaded) * startAimLine.X + (percentReloaded * targetV.X)), ((1 - percentReloaded) * startAimLine.Y + (percentReloaded * targetV.Y)));

                var lineDistanceFull   = PhysicsUtility.VectorMagnitude(targetV.X, startAimLine.X, targetV.Y, startAimLine.Y);
                var lineDistanceReload = PhysicsUtility.VectorMagnitude(reloadSpot.X, startAimLine.X, reloadSpot.Y, startAimLine.Y);

                // max range
                float   disRatio = shotRange / lineDistanceFull;
                Vector2 maxPos   = new Vector2(((1 - disRatio) * startAimLine.X + (disRatio * targetV.X)), ((1 - disRatio) * startAimLine.Y + (disRatio * targetV.Y)));

                // shot offset from mount
                float shotOffsetRatio = 30 / lineDistanceFull;
                shotOffsetPos = new Vector2(((1 - shotOffsetRatio) * startAimLine.X + (shotOffsetRatio * targetV.X)), ((1 - shotOffsetRatio) * startAimLine.Y + (shotOffsetRatio * targetV.Y)));

                // restrict aiming by shotRange
                if (lineDistanceFull > shotRange)
                {
                    endAimLineFull = maxPos;
                }
                else
                {
                    endAimLineFull = targetV;
                }

                if (lineDistanceReload > lineDistanceFull || lineDistanceReload > shotRange)
                {
                    endAimLineReload = endAimLineFull;
                }
                else
                {
                    endAimLineReload = reloadSpot;
                }

                edgeFull   = endAimLineFull - startAimLine;
                edgeReload = endAimLineReload - startAimLine;
                // rotate the mount
                float angleFull = (float)Math.Atan2(edgeFull.Y, edgeFull.X);
                rotation = angleFull + ((float)Math.PI / 2);


                timeSinceLastShot += gameTime.ElapsedGameTime.Milliseconds;
                if (timeSinceLastShot > millisecondsNewShot)
                {
                    // TODO: just cannon balls for now. Cannon is hard coded to BaseShip animatedSprite AI for now
                    animateShot = true;
                    BaseCannonBall cannonShot = new BaseCannonBall(teamType, regionKey, shotOffsetPos, _content, _graphics);
                    cannonShot.SetFireAtDirection(targetV, RandomEvents.rand.Next(10, 25), RandomEvents.rand.Next(-shotWander, shotWander)); // 3rd param is aim offset for cannon ai
                    cannonShot.moving = true;
                    Shots.Add(cannonShot);
                    timeSinceLastShot = 0;
                }

                if (animateShot)
                {
                    msAnimateShot += gameTime.ElapsedGameTime.Milliseconds;
                    if (msAnimateShot > 70)
                    {
                        currColumnFrame++;
                        msAnimateShot = 0;
                    }
                    if (currColumnFrame >= nColumns)
                    {
                        currColumnFrame = 0;
                        animateShot     = false;
                    }
                }
            }
        }