three_sprite_utils.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. import * as Three from "three";
  2. var three_sprite_utils_vars = {
  3. spriteInfoStorage:[],
  4. spriteParams:null,
  5. scene_src:null,
  6. }
  7. //This array will store
  8. function SetScene(_scene_src) {
  9. three_sprite_utils_vars.scene_src = _scene_src;
  10. }
  11. export function SwitchSprite(_str, _position, attachedObject) {
  12. var sprite_tmp;
  13. sprite_tmp = findSprite(attachedObject)
  14. if(sprite_tmp == null)
  15. return CreateSprite(_str, _position, attachedObject);
  16. else{
  17. return RemoveSprite(attachedObject);
  18. }
  19. }
  20. function RemoveSprite(attachedObject) {
  21. var spriteIndex = findSpriteIndex(attachedObject);
  22. if(spriteIndex == -1)
  23. return null;
  24. three_sprite_utils_vars.scene_src.remove(three_sprite_utils_vars.spriteInfoStorage[spriteIndex]['spriteItem']);
  25. three_sprite_utils_vars.spriteInfoStorage.splice(spriteIndex, 1)
  26. // delete three_sprite_utils_vars.spriteInfoStorage[spriteIndex];
  27. return null;
  28. }
  29. function findSprite(attachedObject) {
  30. // var attachedObj_tmp;
  31. var spriteIndex = findSpriteIndex(attachedObject);
  32. if(spriteIndex == -1)
  33. return null;
  34. return three_sprite_utils_vars.spriteInfoStorage[spriteIndex]['spriteItem']
  35. // return attachedObj_tmp;
  36. }
  37. function findSpriteIndex(attachedObject) {
  38. var attachedObj_tmp;
  39. var flag = false;
  40. var i = -1;
  41. for (i = 0; i < three_sprite_utils_vars.spriteInfoStorage.length; i++) {
  42. var spriteInfo_tmp = three_sprite_utils_vars.spriteInfoStorage[i];
  43. console.log(spriteInfo_tmp);
  44. attachedObj_tmp = spriteInfo_tmp['objItem'];
  45. if(attachedObj_tmp == attachedObject){
  46. flag = true;
  47. break;
  48. return spriteInfo_tmp['spriteItem'];
  49. }
  50. }
  51. if(i == three_sprite_utils_vars.spriteInfoStorage.length){
  52. return -1;
  53. }
  54. return i;
  55. // return attachedObj_tmp;
  56. }
  57. function CreateSprite(str, _position, _obj) {
  58. var newSprite = makeTextSprite(str, {position:_position});
  59. var spriteInfoItem = {'objItem':_obj, 'spriteItem':newSprite};
  60. three_sprite_utils_vars.spriteInfoStorage.push(spriteInfoItem);
  61. return newSprite;
  62. }
  63. function makeTextSprite(message, parameters) {
  64. console.log(message)
  65. console.log(parameters)
  66. if (parameters === undefined) parameters = {};
  67. var fontface = parameters.hasOwnProperty("fontface") ?
  68. parameters["fontface"] : "Arial";
  69. /* 字体大小 */
  70. var fontsize = parameters.hasOwnProperty("fontsize") ?
  71. parameters["fontsize"] : 72;
  72. /* 边框厚度 */
  73. var borderThickness = parameters.hasOwnProperty("borderThickness") ?
  74. parameters["borderThickness"] : 5;
  75. /* 边框颜色 */
  76. var borderColor = parameters.hasOwnProperty("borderColor") ?
  77. parameters["borderColor"] : { r: 90, g: 90, b: 90, a: 1.0 };
  78. /* 背景颜色 */
  79. var backgroundColor = parameters.hasOwnProperty("backgroundColor") ?
  80. parameters["backgroundColor"] : { r: 255, g: 255, b: 255, a: 1.0 };
  81. var position = parameters.hasOwnProperty("position") ?
  82. parameters["position"] : { x: 0, y: 0, z: 0 };
  83. /* 创建画布 */
  84. var canvas = document.createElement('canvas');
  85. var context = canvas.getContext('2d');
  86. /* 字体加粗 */
  87. context.font = "Bold " + fontsize + "px " + fontface;
  88. /* 获取文字的大小数据,高度取决于文字的大小 */
  89. var metrics = context.measureText(message);
  90. var textWidth = metrics.width;
  91. /* 背景颜色 */
  92. context.fillStyle = "rgba(" + backgroundColor.r + "," + backgroundColor.g + ","
  93. + backgroundColor.b + "," + backgroundColor.a + ")";
  94. /* 边框的颜色 */
  95. context.strokeStyle = "rgba(" + borderColor.r + "," + borderColor.g + ","
  96. + borderColor.b + "," + borderColor.a + ")";
  97. context.lineWidth = borderThickness;
  98. /* 绘制圆角矩形 */
  99. roundRect(context, borderThickness / 2, borderThickness / 2, textWidth + borderThickness, fontsize * 1.4 + borderThickness, 6);
  100. // normRect(context, 0, 0, textWidth, fontsize)
  101. /* 字体颜色 */
  102. context.fillStyle = "rgba(222, 111, 0, 1)";
  103. context.fillText(message, borderThickness, fontsize + borderThickness);
  104. /* 画布内容用于纹理贴图 */
  105. var texture = new Three.Texture(canvas);
  106. texture.needsUpdate = true;
  107. var spriteMaterial = new Three.SpriteMaterial({ map: texture });
  108. var sprite = new Three.Sprite(spriteMaterial);
  109. console.log(sprite.spriteMaterial);
  110. /* 缩放比例 */
  111. sprite.position.set(parameters.position.x, parameters.position.y, parameters.position.z);
  112. sprite.scale.set(10,10,10);
  113. return sprite;
  114. }
  115. function normRect(ctx, x, y, w, h) {
  116. ctx.beginPath();
  117. // ctx.moveTo(x, y);
  118. // ctx.lineTo(x, y - 2*h);
  119. // ctx.lineTo(x + 2*w, y - 2*h);
  120. // ctx.lineTo(x + 2*w, y);
  121. // ctx.lineTo(x, y);
  122. ctx.moveTo(x, y);
  123. ctx.lineTo(x, y + 2 * h);
  124. ctx.lineTo(x - 2 * w, y + 2 * h);
  125. ctx.lineTo(x - 2 * w, y);
  126. ctx.lineTo(x, y);
  127. ctx.closePath();
  128. ctx.fill();
  129. // ctx.stroke();
  130. }
  131. function roundRect(ctx, x, y, w, h, r) {
  132. ctx.beginPath();
  133. ctx.moveTo(x + r, y);
  134. ctx.lineTo(x + w - r, y);
  135. ctx.quadraticCurveTo(x + w, y, x + w, y + r);
  136. ctx.lineTo(x + w, y + h - r);
  137. ctx.quadraticCurveTo(x + w, y + h, x + w - r, y + h);
  138. ctx.lineTo(x + r, y + h);
  139. ctx.quadraticCurveTo(x, y + h, x, y + h - r);
  140. ctx.lineTo(x, y + r);
  141. ctx.quadraticCurveTo(x, y, x + r, y);
  142. ctx.closePath();
  143. ctx.fill();
  144. ctx.stroke();
  145. }