2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. System.register(["cc"], function (_export, _context) {
  2. "use strict";
  3. var _cclegacy, __checkObsolete__, __checkObsoleteInNamespace__, misc, Vec2, Vec3, MathUtil, _crd, tempVec3, rad2Deg, deg2Rad;
  4. _export("MathUtil", void 0);
  5. return {
  6. setters: [function (_cc) {
  7. _cclegacy = _cc.cclegacy;
  8. __checkObsolete__ = _cc.__checkObsolete__;
  9. __checkObsoleteInNamespace__ = _cc.__checkObsoleteInNamespace__;
  10. misc = _cc.misc;
  11. Vec2 = _cc.Vec2;
  12. Vec3 = _cc.Vec3;
  13. }],
  14. execute: function () {
  15. _crd = true;
  16. _cclegacy._RF.push({}, "5df23qNkJ5Jco4b72bZLJJf", "MathUtil", undefined);
  17. /** 用于计算的临时工 */
  18. __checkObsolete__(['misc', 'Rect', 'Vec2', 'Vec3']);
  19. tempVec3 = new Vec3();
  20. /** 用于弧度转角度 */
  21. rad2Deg = 180 / Math.PI;
  22. /** 用于角度转弧度 */
  23. deg2Rad = Math.PI / 180;
  24. _export("MathUtil", MathUtil = class MathUtil {
  25. /**
  26. * 用于弧度转角度
  27. */
  28. static get rad2Deg() {
  29. return rad2Deg;
  30. }
  31. /**
  32. * 用于角度转弧度
  33. */
  34. static get deg2Rad() {
  35. return deg2Rad;
  36. }
  37. /**
  38. * 弧度转角度
  39. * @param radians
  40. */
  41. static radiansToDegrees(radians) {
  42. return radians * rad2Deg;
  43. }
  44. /**
  45. * 角度转弧度
  46. * @param degree
  47. */
  48. static degreesToRadians(degree) {
  49. return degree * deg2Rad;
  50. }
  51. /**限制数大小 */
  52. static Clamp(value, min, max) {
  53. if (value < min) {
  54. value = min;
  55. } else if (value > max) {
  56. value = max;
  57. }
  58. return value;
  59. }
  60. static Clamp01(value) {
  61. return this.Clamp(value, 0, 1);
  62. }
  63. static PingPong(t, length) {
  64. t = this.Repeat(t, length * 2);
  65. return length - Math.abs(t - length);
  66. }
  67. static Repeat(t, length) {
  68. return t - Math.floor(t / length) * length;
  69. }
  70. static Round(num) {
  71. return Math.floor(num + 0.5);
  72. }
  73. static Sign(num) {
  74. if (num > 0) {
  75. num = 1;
  76. } else if (num < 0) {
  77. num = -1;
  78. } else {
  79. num = 0;
  80. }
  81. return num;
  82. }
  83. static InverseLerp(from, to, value) {
  84. if (from < to) {
  85. if (value < from) return 0;
  86. if (value > to) return 1;
  87. value = value - from;
  88. value = value / (to - from);
  89. return value;
  90. }
  91. if (from <= to) return 0;
  92. if (value < to) return 1;
  93. if (value > from) return 0;
  94. return 1 - (value - to) / (from - to);
  95. }
  96. static Lerp(from, to, t) {
  97. return from + (to - from) * this.Clamp01(t);
  98. }
  99. static LerpUnclamped(a, b, t) {
  100. return a + (b - a) * t;
  101. }
  102. static DeltaAngle(current, target) {
  103. let num = this.Repeat(target - current, 360);
  104. if (num > 180) num = num - 360;
  105. return num;
  106. }
  107. static LerpAngle(a, b, t) {
  108. let num = this.Repeat(b - a, 360);
  109. if (num > 180) num = num - 360;
  110. return a + num * this.Clamp01(t);
  111. }
  112. /**
  113. * 在最小值和最大值之间进行插值,并在极限处进行平滑处理
  114. * @param from
  115. * @param to
  116. * @param t
  117. */
  118. static smoothStep(from, to, t) {
  119. t = this.Clamp01(t);
  120. t = -2.0 * t * t * t + 3.0 * t * t;
  121. return to * t + from * (1.0 - t);
  122. }
  123. /**
  124. * 平滑控制
  125. * @param current 当前值
  126. * @param target 目标值
  127. * @param currentVelocity 当前速度
  128. * @param smoothTime 平滑时间
  129. * @param maxSpeed 最大速度
  130. * @param deltaTime 时间增量
  131. */
  132. static smoothDamp(current, target, currentVelocity, smoothTime, deltaTime, maxSpeed = Number.POSITIVE_INFINITY) {
  133. smoothTime = Math.max(0.0001, smoothTime);
  134. const num1 = 2 / smoothTime;
  135. const num2 = num1 * deltaTime;
  136. const num3 = 1 / (1 + num2 + 0.47999998927116394 * num2 * num2 + 0.23499999940395355 * num2 * num2 * num2);
  137. const num4 = current - target;
  138. const num5 = target;
  139. const max = maxSpeed * smoothTime;
  140. const num6 = this.Clamp(num4, -max, max);
  141. target = current - num6;
  142. const num7 = (currentVelocity + num1 * num6) * deltaTime;
  143. let velocity = (currentVelocity - num1 * num7) * num3;
  144. let num8 = target + (num6 + num7) * num3;
  145. if (num5 - current > 0 === num8 > num5) {
  146. num8 = num5;
  147. velocity = (num8 - num5) / deltaTime;
  148. }
  149. return {
  150. value: num8,
  151. velocity: velocity
  152. };
  153. }
  154. /**
  155. * 垂直于原向量V的单位向量
  156. * @param v 一个向量
  157. * @returns
  158. */
  159. static getPerpendicular(v) {
  160. const perpendicular = new Vec2(-v.y, v.x); //计算垂直向量
  161. const normal = perpendicular.normalize(); //归一化
  162. return normal;
  163. } //角度转向量
  164. static angleToVector(angle) {
  165. return this.zore.clone().rotate(-misc.degreesToRadians(angle));
  166. } // 向量转角度
  167. static vectorToAngle(dir) {
  168. return -misc.radiansToDegrees(dir.signAngle(this.zore));
  169. } // 角度转向量
  170. static angle_to_vector(angle) {
  171. // tan = sin / cos
  172. // 将传入的角度转为弧度
  173. let radian = this.degreesToRadians(angle); // 算出cos,sin和tan
  174. let cos = Math.cos(radian); // 邻边 / 斜边
  175. let sin = Math.sin(radian); // 对边 / 斜边
  176. let tan = sin / cos; // 对边 / 邻边
  177. // 结合在一起并归一化
  178. let vec = new Vec2(cos, sin).normalize(); // 返回向量
  179. return vec;
  180. } // !!!!!!!!其实使用Math.atan2求出弧度再转角度一样的效果
  181. // 向量转角度
  182. static vector_to_angle(dir) {
  183. // 将传入的向量归一化 一般已经归一化了
  184. //dir.normalize();
  185. // 计算出目标角度的弧度
  186. let radian = dir.signAngle(this.zore); // 把弧度计算成角度
  187. let angle = -this.radiansToDegrees(radian); // 返回角度
  188. return angle;
  189. } //向量转弧度
  190. static vector_to_radian(dir) {
  191. return dir.signAngle(this.zore);
  192. } /// <summary>
  193. /// 旋转向量,使其方向改变,大小不变
  194. /// </summary>
  195. /// <param name="v">需要旋转的向量</param>
  196. /// <param name="angle">旋转的角度</param>
  197. /// <returns>旋转后的向量</returns>
  198. static RotationMatrix(x, y, angle) {
  199. let radian = this.degreesToRadians(angle);
  200. let sin = Math.sin(radian);
  201. var cos = Math.cos(radian);
  202. var newX = x * cos + y * sin;
  203. var newY = x * -sin + y * cos; //var newX = x * cos - y * sin;
  204. //var newY = x * sin + y * cos;
  205. return new Vec2(newX, newY);
  206. }
  207. static RotationDir(dir, angle) {
  208. let radian = this.radiansToDegrees(angle);
  209. let sin = Math.sin(radian);
  210. var cos = Math.cos(radian);
  211. var newX = dir.x * cos + dir.y * sin;
  212. var newY = dir.x * -sin + dir.y * cos;
  213. dir.x = newX;
  214. dir.y = newY;
  215. return dir;
  216. } //扇形范围
  217. static CheckInView(mPos, faceDir, tPos, dis, angle) {
  218. //let t = tPos.subtract(mPos);
  219. //let distance = Vec2.lengthSqr(t);
  220. //if(distance<dis*dis)
  221. let distance = Vec2.distance(mPos, tPos);
  222. if (distance < dis) {
  223. if (angle >= 360) return true;
  224. let dir = tPos.subtract(mPos).normalize();
  225. let ang = this.radiansToDegrees(Vec2.angle(faceDir, dir));
  226. if (ang <= angle * 0.5) {
  227. return true;
  228. }
  229. }
  230. return false;
  231. } //检测点是否在一个凸四边形内
  232. static InConvexQuad(point, pointA, pointB, pointC, pointD) {
  233. let vec1, vec2;
  234. vec1.x = pointB.x - pointA.x;
  235. vec1.y = pointB.y - pointA.y;
  236. vec2.x = point.x - pointA.x;
  237. vec2.y = point.y - pointA.y;
  238. if (this.cross2DPoint(vec2.x, vec2.y, vec1.x, vec1.y)) return false;
  239. vec1.x = pointC.x - pointB.x;
  240. vec1.y = pointC.y - pointB.y;
  241. vec2.x = point.x - pointB.x;
  242. vec2.y = point.y - pointB.y;
  243. if (this.cross2DPoint(vec2.x, vec2.y, vec1.x, vec1.y)) return false;
  244. vec1.x = pointD.x - pointC.x;
  245. vec1.y = pointD.y - pointC.y;
  246. vec2.x = point.x - pointC.x;
  247. vec2.y = point.y - pointC.y;
  248. if (this.cross2DPoint(vec2.x, vec2.y, vec1.x, vec1.y)) return false;
  249. vec1.x = pointA.x - pointD.x;
  250. vec1.y = pointA.y - pointD.y;
  251. vec2.x = point.x - pointD.x;
  252. vec2.y = point.y - pointD.y;
  253. if (this.cross2DPoint(vec2.x, vec2.y, vec1.x, vec1.y)) return false;
  254. return true;
  255. }
  256. /**等同于Vec2.cross */
  257. static cross2DPoint(x1, y1, x2, y2) {
  258. return x1 * y2 - x2 * y1;
  259. }
  260. /**检测两个2D包围盒(xy为中心点 wh分别为x轴半径宽 y轴半径宽) 是否相交*/
  261. static AABBAABB2D(pointX1, pointY1, w1, h1, pointX2, pointY2, w2, h2) {
  262. if (Math.abs(pointX1 - pointX2) > w1 + w2) return false;
  263. if (Math.abs(pointY1 - pointY2) > h1 + h2) return false;
  264. return true;
  265. }
  266. /**检测两个3D包围盒 是否相交*/
  267. static AABBAABB3D(pointX1, pointY1, pointZ1, w1, h1, t1, pointX2, pointY2, pointZ2, w2, h2, t2) {
  268. if (Math.abs(pointX1 - pointX2) > w1 + w2) return false;
  269. if (Math.abs(pointY1 - pointY2) > h1 + h2) return false;
  270. if (Math.abs(pointZ1 - pointZ2) > t1 + t2) return false;
  271. return true;
  272. }
  273. /**点与点*/
  274. static pointPoint(point1, point2) {
  275. if (point1.x == point2.x && point1.y == point2.y) {
  276. return true;
  277. }
  278. return false;
  279. } //判断点是否在线上,在返回1,不在返回0
  280. static onSegement(Q, p1, p2) {
  281. let maxx, minx, maxy, miny;
  282. maxx = p1.x > p2.x ? p1.x : p2.x; //矩形的右边长
  283. minx = p1.x > p2.x ? p2.x : p1.x; //矩形的左边长
  284. maxy = p1.y > p2.y ? p1.y : p2.y; //矩形的上边长
  285. miny = p1.y > p2.y ? p2.y : p1.y; //矩形的下边长
  286. if ((Q.x - p1.x) * (p2.y - p1.y) == (p2.x - p1.x) * (Q.y - p1.y) && Q.x >= minx && Q.x <= maxx && Q.y >= miny && Q.y <= maxy) {
  287. return true;
  288. }
  289. return false;
  290. } //点与圆的碰撞
  291. //通过计算点到圆心的距离与半径比较判断circle(由中心点和半径构成)
  292. static pointInCircle(point, center, radius) {
  293. return Vec2.squaredDistance(point, center) <= radius * radius;
  294. } //点与矩形的碰撞
  295. //通过判断点坐标是否在矩形四个顶点围成的坐标区域内
  296. static pointInRect(point, rect) {
  297. if (point.x >= rect.x && point.x <= rect.x + rect.width && point.y >= rect.y && point.y <= rect.y + rect.height) return true;
  298. return false;
  299. } //线与矩形的碰撞
  300. static lineInRect(p1, p2, rect) {
  301. let height = p1.y - p2.y;
  302. let width = p2.x - p1.x;
  303. let c = p1.x * p2.y - p2.x - p1.y; //计算叉乘
  304. if (height * rect.xMin + width * rect.yMin + c >= 0 && height * rect.xMax + width * rect.yMax + c <= 0 || height * rect.xMin + width * rect.yMin + c <= 0 && height * rect.xMax + width * rect.yMax + c >= 0 || height * rect.xMin + width * rect.yMax + c >= 0 && height * rect.xMax + width * rect.yMin + c <= 0 || height * rect.xMin + width * rect.yMax + c <= 0 && height * rect.xMax + width * rect.yMin + c >= 0) {
  305. if (p1.x < rect.xMin && p2.x < rect.xMin || p1.x > rect.xMax && p2.x > rect.xMax || p1.y > rect.yMin && p2.y > rect.yMin || p1.y < rect.yMax && p2.y < rect.yMax) {
  306. return false;
  307. } else {
  308. return true;
  309. }
  310. } else {
  311. return false;
  312. }
  313. } //两个rect是否相交
  314. static collisionRectWithRect(rect1, rect2) {
  315. //计算相交部分的矩形
  316. //左下角坐标:( lx , ly ) //右上角坐标:( rx , ry )
  317. let lx = Math.max(rect1.xMin, rect2.xMin);
  318. let ly = Math.max(rect1.yMin, rect2.yMin);
  319. let rx = Math.min(rect1.xMax, rect2.xMax);
  320. let ry = Math.min(rect1.yMax, rect2.yMax); //判断是否能构成小矩形
  321. if (lx > rx || ly > ry) return false; //矩形不相交
  322. return true; //发生碰撞
  323. } //圆与矩形是否相交
  324. static collisionRectWithCircle(rect, p, r) {
  325. //获取矩形信息
  326. //左下角坐标:( lx , ly )
  327. //右上角坐标:( rx , ry )
  328. let lx = rect.xMin;
  329. let ly = rect.yMin;
  330. let rx = rect.xMax;
  331. let ry = rect.yMax; //计算圆心到四个顶点的距离
  332. let d1 = Vec2.distance(p, new Vec2(lx, ly));
  333. let d2 = Vec2.distance(p, new Vec2(lx, ry));
  334. let d3 = Vec2.distance(p, new Vec2(rx, ly));
  335. let d4 = Vec2.distance(p, new Vec2(rx, ry)); //判断是否碰撞//判断距离是否小于半径
  336. if (d1 < r || d2 < r || d3 < r || d4 < r) return true; //是否在圆角矩形的,横向矩形内
  337. if (p.x > lx - r && p.x < rx + r && p.y > ly && p.y < ry) return true; //是否在圆角矩形的,纵向矩形内
  338. if (p.x > lx && p.x < rx && p.y > ly - r && p.y < ry + r) return true; //不发生碰撞
  339. return false;
  340. }
  341. /**
  342. * 计算向量在指定平面上的投影
  343. * @param vector 被投影的向量
  344. * @param planeNormal 平面法线
  345. */
  346. static projectOnPlane(vector, planeNormal) {
  347. // 也可以直接用 Vec3 自带的平面投影函数
  348. // return Vec3.projectOnPlane(new Vec3, targetDir, planeNormal);
  349. // 使用点乘计算方向矢量在平面法线上的投影长度
  350. const projectionLength = Vec3.dot(vector, planeNormal); // 平面法线与长度相乘得到方向矢量在平面法线上的投影矢量
  351. const vectorOnPlane = tempVec3.set(planeNormal).multiplyScalar(projectionLength); // 方向矢量减去其在平面法线上的投影矢量即是其在平面上的投影矢量
  352. return Vec3.subtract(new Vec3(), vector, vectorOnPlane);
  353. }
  354. /**
  355. * 计算两个向量基于指定轴的夹角(逆时针方向为正方向,值范围 -180 ~ 180)
  356. * @param a 向量 a
  357. * @param b 向量 b
  358. * @param axis 参照轴向量(请确保是归一化的)
  359. */
  360. static signedAngle(a, b, axis) {
  361. // 将向量 a 和 b 分别投影到以 axis 为法线的平面上
  362. const aOnAxisPlane = this.projectOnPlane(a, axis);
  363. const bOnAxisPlane = this.projectOnPlane(b, axis); // 归一化处理
  364. const aNormalized = aOnAxisPlane.normalize();
  365. const bNormalized = bOnAxisPlane.normalize(); // 求出同时垂直于 a 和 b 的法向量
  366. const abNormal = Vec3.cross(new Vec3(), aNormalized, bNormalized).normalize(); // 将法向量到 axis 上的投影长度
  367. // 若投影长度为正值(+1)则表示法向量与 axis 同向(向量叉乘的右手法则)
  368. const sign = Vec3.dot(abNormal, axis); // 求出向量 a 和 b 的夹角
  369. const radian = Math.acos(Vec3.dot(aNormalized, bNormalized)); // 混合在一起!
  370. return radian * sign * this.rad2Deg;
  371. } //获取某点到某点的Y轴方向
  372. static GetYDir(from, to) {
  373. let dir = to.subtract(from);
  374. dir.y = from.y;
  375. return dir.normalize();
  376. } //向量绕Y轴转一个角度
  377. static RotateAroundAxisY(dir, angle) {
  378. dir = dir.clone();
  379. let rad = this.degreesToRadians(angle);
  380. let cos = Math.cos(rad);
  381. let sin = Math.sin(rad);
  382. dir.x = dir.x * cos + dir.z * sin;
  383. dir.z = dir.x * -sin + dir.z * cos;
  384. return dir;
  385. } //将一个向量围绕X轴旋转angle个角度
  386. static RotateAroundAxisX(dir, angle) {
  387. dir = dir.clone();
  388. let rad = this.degreesToRadians(angle);
  389. let cos = Math.cos(rad);
  390. let sin = Math.sin(rad);
  391. dir.y = dir.y * cos - dir.z * sin;
  392. dir.z = dir.y * sin + dir.z * cos;
  393. return dir;
  394. } //将一个向量围绕Z轴旋转angle个角度
  395. static RotateAroundAxisZ(dir, angle) {
  396. dir = dir.clone();
  397. let rad = this.degreesToRadians(angle);
  398. let cos = Math.cos(rad);
  399. let sin = Math.sin(rad);
  400. dir.x = dir.x * cos - dir.y * sin;
  401. dir.y = dir.x * sin + dir.y * cos;
  402. return dir;
  403. } //线段是否与矩形相交
  404. static LineRectIntersection(lineStartPoint, lineEndPoint, rectMinX, rectMaxX, rectMinY, rectMaxY) {
  405. //针对四种不同的情况,进行碰撞检测
  406. let minXLinePoint = lineEndPoint;
  407. if (lineStartPoint.x <= lineEndPoint.x) {
  408. minXLinePoint = lineStartPoint;
  409. }
  410. let maxXLinePoint = lineStartPoint;
  411. if (lineStartPoint.x <= lineEndPoint.x) {
  412. maxXLinePoint = lineEndPoint;
  413. }
  414. let minYLinePoint = lineEndPoint;
  415. if (lineStartPoint.y <= lineEndPoint.y) {
  416. minYLinePoint = lineStartPoint;
  417. }
  418. let maxYLinePoint = lineStartPoint;
  419. if (lineStartPoint.y <= lineEndPoint.y) {
  420. maxYLinePoint = lineEndPoint;
  421. }
  422. if (minXLinePoint.x <= rectMinX && rectMinX <= maxXLinePoint.x) {
  423. let m = (maxXLinePoint.y - minXLinePoint.y) / (maxXLinePoint.x - minXLinePoint.x);
  424. let intersectionY = (rectMinX - minXLinePoint.x) * m + minXLinePoint.y;
  425. if (minYLinePoint.y <= intersectionY && intersectionY <= maxYLinePoint.y && rectMinY <= intersectionY && intersectionY <= rectMaxY) {
  426. return true; //new Vec2(rectMinX, intersectionY)
  427. }
  428. }
  429. if (minXLinePoint.x <= rectMaxX && rectMaxX <= maxXLinePoint.x) {
  430. let m = (maxXLinePoint.y - minXLinePoint.y) / (maxXLinePoint.x - minXLinePoint.x);
  431. let intersectionY = (rectMaxX - minXLinePoint.x) * m + minXLinePoint.y;
  432. if (minYLinePoint.y <= intersectionY && intersectionY <= maxYLinePoint.y && rectMinY <= intersectionY && intersectionY <= rectMaxY) {
  433. return true; //new Vec2(rectMaxX, intersectionY)
  434. }
  435. }
  436. if (minYLinePoint.y <= rectMaxY && rectMaxY <= maxYLinePoint.y) {
  437. let rm = (maxYLinePoint.x - minYLinePoint.x) / (maxYLinePoint.y - minYLinePoint.y);
  438. let intersectionX = (rectMaxY - minYLinePoint.y) * rm + minYLinePoint.x;
  439. if (minXLinePoint.x <= intersectionX && intersectionX <= maxXLinePoint.x && rectMinX <= intersectionX && intersectionX <= rectMaxX) {
  440. return true; //new Vec2(intersectionX, rectMaxY)
  441. }
  442. }
  443. if (minYLinePoint.y <= rectMinY && rectMinY <= maxYLinePoint.y) {
  444. let rm = (maxYLinePoint.x - minYLinePoint.x) / (maxYLinePoint.y - minYLinePoint.y);
  445. let intersectionX = (rectMinY - minYLinePoint.y) * rm + minYLinePoint.x;
  446. if (minXLinePoint.x <= intersectionX && intersectionX <= maxXLinePoint.x && rectMinX <= intersectionX && intersectionX <= rectMaxX) {
  447. return true; //new Vec2(intersectionX, rectMinY)
  448. }
  449. }
  450. return false;
  451. }
  452. });
  453. MathUtil.zore = new Vec2(1, 0);
  454. _cclegacy._RF.pop();
  455. _crd = false;
  456. }
  457. };
  458. });
  459. //# sourceMappingURL=2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js.map