X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fcarfire;a=blobdiff_plain;f=CarFire%2FCarFire%2FCarFire%2FProjectile.cs;h=a1d7f2779ccb7d8de22f23885d44817f4b2fdab8;hp=1dd5e08eaf1e1ac40a9f5e73e056fe81960eada6;hb=198cb6056e93fecd69e65351ca8d0b34a077523f;hpb=89e5ee7d83cfb353b6c98dcbf6ed6b87833b9866 diff --git a/CarFire/CarFire/CarFire/Projectile.cs b/CarFire/CarFire/CarFire/Projectile.cs index 1dd5e08..a1d7f27 100644 --- a/CarFire/CarFire/CarFire/Projectile.cs +++ b/CarFire/CarFire/CarFire/Projectile.cs @@ -15,7 +15,6 @@ namespace CarFire public class Projectile { //Member Variables - Map theMap; Vector2 velocity; Texture2D projectileModel; int damage; @@ -25,7 +24,11 @@ namespace CarFire //these will have to be transformed to the coordinate system that the drawable screen is using. int pixelX; int pixelY; - + MovementManager mMotion; + Point mPosition; + int mCharacterIndex; + Game mGame; + /// /// The Constructor for a projectile object. /// @@ -36,59 +39,40 @@ namespace CarFire /// The starting Y position in the map grid /// The absolute X pixel position on the map /// The absolute Y pixel position on the map - public Projectile(Map _currentMap, + public Projectile(Game theGame, Texture2D _projectileModel, Vector2 _velocity, - int _gridX, - int _gridY, - int _pixelX, - int _pixelY) + Point _position, + int characterNumber, + int _damage) + { - theMap = _currentMap; + mGame = theGame; + mCharacterIndex = characterNumber; projectileModel = _projectileModel; velocity = _velocity; - gridX = _gridX; - gridY = _gridY; - pixelX = _pixelX; - pixelY = _pixelY; + mPosition = _position; + damage = _damage; + // Speed is the number of grid cells you can move through per second. + mMotion = new MovementManager(mPosition, velocity.Length()); } - public void Update(TimeSpan timespan) + public void Update(TimeSpan timeSpan) { - /* - //See if something moved onto this projectile. - if(theMap.isOpenSquare(gridX, gridY)) - { - theMap.damageSquare(gridX, gridY, damage); - } - */ - //If the projectile will be moving to a new grid position we need to check to see if it is occupied. - if ((int)((pixelX + velocity.X) / Map.PixelsToUnitSquares) != gridX || (int)((pixelY + velocity.Y) / Map.PixelsToUnitSquares) != gridY) - { - bool open = theMap.IsCellOpen((int)((pixelX + velocity.X) /Map.PixelsToUnitSquares), (int)((pixelY + velocity.Y) / Map.PixelsToUnitSquares)); - //If open just move this projectile there - //***Map doesn't need to know that this projectile is there because players/monsters are allowed - // to move into the path of projectiles. - if (open) - { - Console.WriteLine("pixelX:" + pixelX + " " + " pixelY: "+ pixelY); - pixelX += (int)velocity.X; - pixelY += (int)velocity.Y; - gridX = (int)(pixelX /Map.PixelsToUnitSquares); - gridY = (int)(pixelY / Map.PixelsToUnitSquares); - } - //If the square isn't open then just damage whatever is there - //TODO: A projectile must be deleted after this happens - //else - { - //theMap.damageSquare(gridX, gridY, damage); - } - } - //If it is not moving grid positions just increment pixelX and pixelY - else - { - pixelX += (int)velocity.X; - pixelY += (int)velocity.Y; - } + bool moveRight = false; + bool moveLeft = false; + bool moveUp = false; + bool moveDown = false; + if (velocity.X > 0) + moveRight = true; + else if (velocity.X < 0) + moveLeft = true; + if (velocity.Y > 0) + moveDown = true; + else if (velocity.Y < 0) + moveUp = true; + Point destination = MovementManager.GetNeighbor(mMotion.Coordinates, moveLeft, moveRight, moveUp, moveDown); + mMotion.Update(timeSpan, moveLeft, moveRight, moveUp, moveDown); + } /// @@ -99,12 +83,9 @@ namespace CarFire /// The map Y pixel position of the topLeft of the display public void Draw(SpriteBatch spriteBatch) { - //Console.WriteLine(gridX + " " + gridY); - //Console.WriteLine(theMap.GetRectangleFromCoordinates(new Vector2(gridX, gridY))); - Rectangle position = theMap.GetRectangleFromCoordinates(new Vector2(gridX, gridY)); + Rectangle position = mGame.State.Map.GetRectangleFromCoordinates(mMotion.Position); spriteBatch.Draw(projectileModel, position, Color.White); - //Rectangle position2 = new Rectangle(pixelX-30, pixelY-30, 60, 60); - //spriteBatch.Draw(projectileModel, position2, Color.White); + } /// @@ -114,7 +95,9 @@ namespace CarFire public int GridY { get { return gridY; } set { gridY = value; } } public int PixelX { get { return pixelX; } set { pixelX = value; } } public int PixelY { get { return pixelY; } set { pixelY = value; } } - public Map TheMap { get { return theMap; } set { theMap = value; } } public int Damage { get { return damage; } set { damage = value; } } + public int CharacterIndex { get { return mCharacterIndex; } } + public Vector2 Position { get { return mMotion.Position; } } + public Point Coordinates { get { return mMotion.Coordinates; } } } }