Exemplo n.º 1
0
        public static FixedVector2 Lerp(FixedVector2 start, FixedVector2 end, long t)
        {
            calculator.x = (((end.x - start.x) * t) >> FixedMath.DECIMAL_BITS) + start.x;
            calculator.y = (((end.y - start.y) * t) >> FixedMath.DECIMAL_BITS) + start.y;

            return(calculator);
        }
Exemplo n.º 2
0
        public static bool LineIntersection(FixedLine2 left, FixedLine2 right, out FixedVector2 intersection)
        {
            intersection = FixedVector2.NAN;

            //check if we have parralel lines (even if we have two overlapping lines)
            if ((left.isHorizontal && right.isHorizontal) || ((left.isVertical && right.isVertical)))
            {
                return(false);
            }

            if (left.isHorizontal && right.isVertical)
            {
                horizontal = left;
                vertical   = right;
            }

            else if (right.isHorizontal && left.isVertical)
            {
                horizontal = right;
                vertical   = left;
            }

            intersection = new FixedVector2(vertical.start.x, horizontal.start.y);

            if ((FixedMath.Min(horizontal.start.x, horizontal.end.x) <= intersection.x) && intersection.x <= FixedMath.Max(horizontal.start.x, horizontal.end.x) &&
                (FixedMath.Min(vertical.start.y, vertical.end.y) <= intersection.y) && intersection.y <= FixedMath.Max(vertical.start.y, vertical.end.y))
            {
                return(true);
            }


            //check for sloped lines while accounting for vertical lines
            return(false);
        }
Exemplo n.º 3
0
        public static long SquareDistance(FixedVector2 from, FixedVector2 to)
        {
            long deltaX = (to.x - from.x);
            long deltaY = (to.y - from.y);

            return
                (((deltaX * deltaX) >> FixedMath.DECIMAL_BITS)
                 + ((deltaY * deltaY) >> FixedMath.DECIMAL_BITS));
        }
Exemplo n.º 4
0
        public static bool AAOrthogonalLineIntersection(FixedLine2 horizontal, FixedLine2 vertical, out FixedVector2 intersection)
        {
            intersection = new FixedVector2(vertical.start.x, horizontal.start.y);

            if ((FixedMath.Min(horizontal.start.x, horizontal.end.x) < intersection.x) && intersection.x < FixedMath.Max(horizontal.start.x, horizontal.end.x) &&
                (FixedMath.Min(vertical.start.y, vertical.end.y) < intersection.y) && intersection.y < FixedMath.Max(vertical.start.y, vertical.end.y))
            {
                return(true);
            }


            //check for sloped lines while accounting for vertical lines
            return(false);
        }
Exemplo n.º 5
0
        public FixedLine2(FixedVector2 _start, FixedVector2 _end)
        {
            this.start = _start;
            this.end   = _end;

            isHorizontal = start.y == end.y;
            isVertical   = start.x == end.x;

            this.m = 1;
            this.b = 1;

            //slope of y = m * x + b line form
            //this.m = (end.y - start.y).Div(end.x - start.x);

            //yIntercept of y = m * x + b line form
            //this.b = start.y - slope.Mul(start.x);
        }
Exemplo n.º 6
0
        public static bool LineBoxIntersection(int d, BoundingBox box, FixedVector2 origin, FixedVector2 length, out FixedVector2 intersection)
        {
            FixedVector2 end = origin + length;

            intersection = FixedVector2.NAN;

            long lowFraction  = 0;
            long highFraction = FixedMath.ONE;

            if (!ClipLine(d, box, origin, end, ref lowFraction, ref highFraction))
            {
                return(false);
            }

            intersection = origin + (length * lowFraction);

            return(true);
        }
Exemplo n.º 7
0
        public static bool LineLineIntersection(FixedLine2 line1, FixedLine2 line2, out FixedVector2 intersection)
        {
            intersection = new FixedVector2(long.MinValue, long.MinValue);

            //standard form of line 1
            long a1 = line1.end.y - line1.start.y;
            long b1 = line1.start.x - line1.end.x;
            long c1 = a1.Mul(line1.start.x) - b1.Mul(line1.start.y);

            //standard form of line 2
            long a2 = line2.end.y - line2.start.y;
            long b2 = line2.start.x - line2.end.x;
            long c2 = a2.Mul(line2.start.x) - b2.Mul(line2.start.y);

            //		float delta = A1*B2 - A2*B1;
            //		if(delta == 0)
            //			throw new ArgumentException("Lines are parallel");
            //
            //		float x = (B2*C1 - B1*C2)/delta;
            //		float y = (A1*C2 - A2*C1)/delta;

            long determinant = a1.Mul(b2) - a2.Mul(b1);

            //line are parallel
            if (determinant.Abs() < FixedMath.Hundredth)
            {
                return(false);
            }

            long x = (b2.Mul(c1) - b1.Mul(c2)).Div(determinant);
            long y = (a1.Mul(c2) - a2.Mul(c1)).Div(determinant);

            intersection = new FixedVector2(x, y);

            //		UnityEngine.Debug.DrawLine (new FixedVector2 (0, 0).ToVector3 (), intersection.ToVector3 ());

            if ((FixedMath.Min(line1.start.x, line1.end.x) < x && x < FixedMath.Max(line1.start.x, line1.end.x)) &&
                (FixedMath.Min(line1.start.y, line1.end.y) < y && y < FixedMath.Max(line1.start.y, line1.end.y)))
            {
                return(true);
            }

            return(false);
        }
Exemplo n.º 8
0
        public static bool ClipLine(int d, BoundingBox box, FixedVector2 origin, FixedVector2 end, ref long lowFraction, ref long highFraction)
        {
            long lowDimensionFraction, highDimensionFraction;
            long delta = (end[d] - origin[d]);

            if (delta != 0)
            {
                lowDimensionFraction  = (box.min[d] - origin[d]).Div(delta);
                highDimensionFraction = (box.max[d] - origin[d]).Div(delta);
            }
            else
            {
                return(box.min[d] <= end[d] && end[d] <= box.max[d]);
            }

            if (highDimensionFraction < lowDimensionFraction)
            {
                FixedMath.Swap(ref lowDimensionFraction, ref highDimensionFraction);
            }

            if (highDimensionFraction < lowFraction)
            {
                return(false);
            }

            if (lowDimensionFraction > highFraction)
            {
                return(false);
            }

            lowFraction  = FixedMath.Max(lowDimensionFraction, lowFraction);
            highFraction = FixedMath.Min(highDimensionFraction, highFraction);

            if (lowFraction > highFraction)
            {
                return(false);
            }

            return(true);
        }
Exemplo n.º 9
0
 public virtual void ScaleCollider(FixedVector2 newScale)
 {
 }
Exemplo n.º 10
0
 public virtual void MoveCollider(FixedVector2 newPosition)
 {
 }
Exemplo n.º 11
0
 public FixedLine2()
 {
     this.start = FixedVector2.ZERO;
     this.end   = FixedVector2.ZERO;
 }
Exemplo n.º 12
0
        public static bool LineIntersection(FixedVector2 startA, FixedVector2 endA, FixedVector2 startB, FixedVector2 endB, out FixedVector2 intersection)
        {
            intersection = FixedVector2.NAN;

            bool aIsHorizontal, aIsVertical, bIsHorizontal, bIsVertical;

            aIsHorizontal = aIsVertical = bIsHorizontal = bIsVertical = false;


            if (startA.y == endA.y)
            {
                aIsHorizontal = true;
            }
            if (startA.x == endA.x)
            {
                aIsVertical = true;
            }

            if (startB.y == endB.y)
            {
                bIsHorizontal = true;
            }
            if (startB.x == endB.x)
            {
                bIsVertical = true;
            }


            //check if we have parralel lines (even if we have two overlapping lines)
            if ((aIsHorizontal && bIsHorizontal) || ((aIsVertical && bIsVertical)))
            {
                return(false);
            }

            if (aIsHorizontal && bIsVertical)
            {
                intersection = new FixedVector2(startB.x, startA.y);
            }

            else if (bIsHorizontal && aIsVertical)
            {
                intersection = new FixedVector2(startA.x, startB.y);
            }

            if (aIsHorizontal &&
                (FixedMath.Min(startA.x, endA.x) < intersection.x) && intersection.x < FixedMath.Max(startA.x, endA.x) &&
                (FixedMath.Min(startB.y, endB.y) < intersection.y) && intersection.y < FixedMath.Max(startB.y, endB.y))
            {
                return(true);
            }

            if (bIsHorizontal &&
                (FixedMath.Min(startB.x, endB.x) < intersection.x) && intersection.x < FixedMath.Max(startB.x, endB.x) &&
                (FixedMath.Min(startA.y, endA.y) < intersection.y) && intersection.y < FixedMath.Max(startA.y, endA.y))
            {
                return(true);
            }


            //check for sloped lines while accounting for vertical lines
            return(false);
        }