var Arrow = function(tadpole, camera) {
	var arrow = this;
	
	this.x = 0;
	this.y = 0;
	
	this.tadpole = tadpole;
	this.camera = camera;
	
	this.angle = 0;
	this.distance = 10;
	
	this.opacity = 1;
	
	this.update = function() {
		arrow.angle = Math.atan2(tadpole.y - arrow.camera.y, tadpole.x - arrow.camera.x);
	};
	
	this.draw = function(context, canvas) {
		var cameraBounds = arrow.camera.getBounds();
		
		if( arrow.tadpole.x < cameraBounds[0].x ||
			arrow.tadpole.y < cameraBounds[0].y ||
			arrow.tadpole.x > cameraBounds[1].x ||
			arrow.tadpole.y > cameraBounds[1].y ) {
			
			var size = 4;
			
			var arrowDistance = 100;

			var angle = arrow.angle;
			var w = (canvas.width/2) - 10;
			var h = (canvas.height/2) - 10;
			var aa = Math.atan(h / w);
			var ss = Math.cos(angle);
			var cc = Math.sin(angle);

			if((Math.abs(angle) + aa) % Math.PI / 2 < aa) {
				arrowDistance = w / Math.abs(ss);
			} else {
				arrowDistance = h / Math.abs(cc);
			}

			var x = (canvas.width/2) + Math.cos(arrow.angle) * arrowDistance;
			var y = (canvas.height/2) + Math.sin(arrow.angle) * arrowDistance;

			var point = calcPoint(x, y, this.angle, 2, size);
			var side1 = calcPoint(x, y, this.angle, 1.5, size);
			var side2 = calcPoint(x, y, this.angle, 0.5, size);

			// Draw arrow
			context.fillStyle = 'rgba(255,255,255,'+arrow.opacity+')';
			context.beginPath();
			context.moveTo(point.x, point.y);
			context.lineTo(side1.x, side1.y);
			context.lineTo(side2.x, side2.y)
			context.closePath();
			context.fill();
		}
	};
	
	var calcPoint = function(x, y, angle, angleMultiplier, length) {
		return {
			x: x + Math.cos(angle + Math.PI * angleMultiplier) * length,
			y: y + Math.sin(angle + Math.PI * angleMultiplier) * length
		}
	};
}

