Page 1 of 1

direction source code

PostPosted: Mon Jul 09, 2012 11:19 pm
by Fojam
I am working on a project in another programming language for a class, and it would be really helpful if someone could share the source code for the direction function? Does anybody know what it is?

Re: direction source code

PostPosted: Tue Jul 10, 2012 12:15 am
by skydereign
It is defined in ./gameEngine/Script.cpp.
Code: Select all
double direction(double x1, double y1, double x2, double y2)
{
   /*
   Direction between (x1, y1) and (x2, y2)
   (0 to 360, from x axis, counterclockwise, in degrees)
   */
   
   double angle = 0.0;
   
   if(x1 != x2 || y1 != y2)
   {
      if(y1 == y2)
      {
         if(x2 < x1) angle = 180.0;
         else angle = 0.0;
      }
      else if(x1 == x2)
      {
         if(y2 > y1) angle = 270.0;
         else angle = 90.0;
      }
      else
      {         
         angle = atan2(y1 - y2, x2 - x1)*180.0/Script::PI;
         if(angle < 0.0)
         {
            angle = 360.0 + angle;   
         }
      }
   }

   return angle;
}

There are other ways to do it. This seems a bit lengthy considering you just want the direction between point a and point b.

Re: direction source code

PostPosted: Tue Jul 10, 2012 7:46 pm
by Fojam
Thanks I'm taking a class in C# and this is very useful. now if only GE could export for xbox...