Here is the function i call to get the closest enemy in from a quad tree call: (probably don't need to look at this section of code to understand my question, added it just in case)
Code: Select all
public Vector2 findClosestEnemy()
{
List<QT.IQuadTreeItem> collideItems = new List<QT.IQuadTreeItem>(10);
collideItems.Clear();
QT.FloatRectangle range = new QT.FloatRectangle(bounds.X - 200, bounds.Y- 200, 400, 400);
Game1.quadTree.Query(range, ref collideItems);
Vector2 closest = new Vector2 (100);
closestDistance = 1000;
Vector2 mapPos = position - Game1.mapOffset;
Vector2 itemPosition = new Vector2(
mapPos.X + BoundingBox.Width / 2f,
mapPos.Y + BoundingBox.Height / 2f);
float itemRadius = BoundingBox.Width / 2f;
foreach (Actors.Enemies.Zombie item in (collideItems.OfType<Actors.Enemies.Zombie>()))
{
Vector2 item2Position = new Vector2(
item.BoundingBox.X + item.BoundingBox.Width / 2f,
item.BoundingBox.Y + item.BoundingBox.Height / 2f);
if (Vector2.Distance(itemPosition, item2Position) < closestDistance)
{
closestDistance = Vector2.Distance(itemPosition, item2Position);
closest = new Vector2(item.bounds.X, item.bounds.Y);
lightningTarget = item;
toTarget = new Vector2((item.bounds.X + item.BoundingBox.Width/2) - (this.bounds.X + BoundingBox.Width/2),
(item.bounds.Y + item.BoundingBox.Height/2) - (this.bounds.Y + BoundingBox.Height/2));
toTarget.Normalize();
lightningRotation = (float)Math.Atan2(toTarget.Y, toTarget.X) + (float)Math.PI / 2;
}
}
if (closest == new Vector2(100))
{
return new Vector2(0);
}
else
{
return closest;
}
}
Code: Select all
if (fireLightning == true)
{
int lightFrame = gunFrame / 3;
Game1.spriteBatch.Draw(Game1.teslaTexture[lightFrame],
new Vector2 (bounds.X - toTarget.X/2, bounds.Y - toTarget.Y/2),
null,
Color.White,
lightningRotation + (float)Math.PI/2,
new Vector2((bounds.X + BoundingBox.Width/2) + toTarget.X / 2, (bounds.Y + BoundingBox.Height/2) + toTarget.Y / 2),
closestDistance/467,
SpriteEffects.None, 0.0f);
gunFrame++;
if (gunFrame >= 30)
gunFrame = 0;
}
Code: Select all
SpriteBatch.Draw (Texture2D, Vector2, Nullable<Rectangle>, Color, Single, Vector2, Vector2, SpriteEffects, Single)
bounds.x and bounds.y are my position minus the map offset from scrolling
The problem is the first vector2, and I realize it is not right at all how I am doing it. bounds.x minus a normalized vector facing the enemy. It doesnt make sense. Can anyone help me out here on the location. i cant just put the center of the player as the location because the top left corner of the image will be placed at the center and thats wrong. I need the middle/left edge to always be in the center of the player. Also the center of the Right edge at the middle of the enemy sprite.
video added to show how it works with the code above:
and as always, thank guys!