You are currently viewing the gmlscripts.pro static mirror. Forum access and script submissions are not available through this mirror.

Invert gmlscripts.pro

instance_nth_farthest

instance_nth_farthest(x,y,obj,n)
Returns the id of the nth farthest instance of an object from a given point or noone if none is found.
COPY
  1. /// instance_nth_farthest(x,y,obj,n)
  2. //
  3. // Returns the id of the nth farthest instance of an object
  4. // from a given point or noone if none is found.
  5. //
  6. // x,y point coordinates, real
  7. // obj object index (or all), real
  8. // n proximity, real
  9. //
  10. /// GMLscript.com/license
  11. {
  12. var pointx,pointy,object,n,list,farthest;
  13. pointx = argument0;
  14. pointy = argument1;
  15. object = argument2;
  16. n = argument3;
  17. n = min(max(1,n),instance_number(object));
  18. list = ds_priority_create();
  19. farthest = noone;
  20. with (object) ds_priority_add(list,id,distance_to_point(pointx,pointy));
  21. repeat (n) farthest = ds_priority_delete_max(list);
  22. ds_priority_destroy(list);
  23. return farthest;
  24. }

Contributors: xot

GitHub: View · Commits · Blame · Raw