Useful functions - Please help to build a list
Hello Community, Let's build together a great collection of simple but very useful functions. Ideally keep them small and flexible.
Please post your own code snippets that you find to be useful. I am thinking we need a more general collection of common game-related functions such as:
- sprite.turnTo(targetSprite)
- screen.shake(amount,millisecs)
Here are a few of my contributions for a kick off:
// return concatenated string from r,g, and b values
RGBtoString=function(r,g,b) "rgb("+r+","+g+","+b+")" end
// a shortcut way of getting directional movements (-1,0,1) from keyboard inputs
xdir=-keyboard.A+keyboard.D
ydir=-keyboard.S+keyboard.W
// return the sign of a value ** Update - TinkerSmith's minimalist version
sgn=function(v) (v>0)-(v<0) end
dist2d=function(x1,y1,x2,y2) sqrt((x2-x1)^2+(y2-y1)^2) end
lerp=function(v1,v2,amt) (1-amt)*v1+amt*v2 end
clamp=function(v,lo,hi) max(lo,min(v,hi)) end
wrap=function(v,lo,hi)
local r=hi-lo
return (lo+((((v-lo)%r)+r)%r))
end
remap=function(v,s1,e1,s2,e2) (v-s1)*(e2-s2)/(e1-s1)+s2 end
mouseInZone=function(x1,y1,x2,y2)
(mouse.x>=x1 and mouse.x<=x2 and mouse.y>=y1 and mouse.y<=y2)
end
rectsOverlap=function(x1,y1,w1,h1,x2,y2,w2,h2)
not(x2>x1+w1 or x2+w2<x1 or y2>(y1+h1) or (y2+h2)<y1)
end
screen.drawText("X="+floor(touch.x)+" Y="+floor(touch.y),0,92,8,"rgb(255,85,198)")