renderModel.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. import * as THREE from 'three'//导入three.js核心库
  2. import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls' //导入轨道控制器
  3. import { OBJLoader } from 'three/examples/jsm/loaders/OBJLoader'
  4. import { MTLLoader } from 'three/examples/jsm/loaders/MTLLoader'
  5. import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader'
  6. import { RGBELoader } from 'three/examples/jsm/loaders/RGBELoader';
  7. class motor3d {
  8. constructor(selector) {
  9. this.container = document.querySelector(selector)
  10. this.scene
  11. this.camera
  12. this.renderer
  13. this.controls
  14. this.init()
  15. this.animate()
  16. }
  17. init() {
  18. // 初始化场景
  19. this.initScene()
  20. // 初始化辅助轴
  21. this.initAxesHelper()
  22. // 初始化灯光
  23. this.initLight()
  24. // 初始化Mesh
  25. this.initMesh()
  26. // 初始化相机
  27. this.initCamera()
  28. // 初始化渲染器
  29. this.initRender()
  30. // 初始化轨道控制器
  31. this.initControls()
  32. // 监听场景大小改变,重新渲染尺寸
  33. window.addEventListener('resize', this.onWindowResize.bind(this))
  34. }
  35. initScene() {
  36. this.scene = new THREE.Scene()
  37. // this.scene.background = new THREE.Color(0xa0a0a0)
  38. this.scene.background = null;
  39. }
  40. initAxesHelper() {
  41. const axesHelper = new THREE.AxesHelper(5)
  42. this.scene.add(axesHelper)
  43. }
  44. initLight() {
  45. const hesLight = new THREE.HemisphereLight(0xffffff, 0.5)
  46. hesLight.intensity = 1
  47. this.scene.add(hesLight)
  48. const dirLight = new THREE.DirectionalLight()
  49. dirLight.position.set(10, 10, 10).normalize();
  50. this.scene.add(dirLight)
  51. }
  52. recordCameraChanges() {
  53. // 记录位置
  54. const position = this.camera.position;
  55. console.log(`Position: (${position.x}, ${position.y}, ${position.z})`);
  56. };
  57. initMesh() {
  58. this.addOBJFModel()
  59. }
  60. initCamera() {
  61. this.camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 100)
  62. // this.camera.position.set(3.5, 5.5, 1.5)
  63. // this.camera.position.set(28.07, 22.32, -12.92)
  64. // this.camera.position.set(37.3642, 24.8315, -22.6927)
  65. // this.camera.position.set(24.5564, 16.6944, -9.8434)
  66. this.camera.position.set(20.47294749946306, 25.9193717746894, -10.426531907485199)
  67. }
  68. initRender() {
  69. this.renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true })//设置抗锯齿
  70. // this.renderer.toneMapping = THREE.ACESFilmicToneMapping;
  71. // this.renderer.toneMappingExposure = 1;
  72. //设置屏幕像素比
  73. this.renderer.setPixelRatio(window.devicePixelRatio)
  74. //渲染的尺寸大小
  75. this.renderer.setSize(this.container.offsetWidth, this.container.offsetHeight)
  76. // 添加到容器
  77. this.container.appendChild(this.renderer.domElement)
  78. // 设置清除颜色的 Alpha 为 0
  79. this.renderer.setClearColor(0xffffff, 0)
  80. this.renderer.outputEncoding = THREE.sRGBEncoding;
  81. }
  82. animate() {
  83. this.renderer.setAnimationLoop(this.render.bind(this))
  84. }
  85. render() {
  86. this.renderer.render(this.scene, this.camera)
  87. }
  88. initControls() {
  89. this.controls = new OrbitControls(this.camera, this.renderer.domElement)
  90. }
  91. // 加载模型
  92. addOBJFModel(modelName) {
  93. return new Promise((resolve, reject) => {
  94. const mtlLoader = new MTLLoader()
  95. const objLoader = new OBJLoader()
  96. const gltfLoader = new GLTFLoader();
  97. gltfLoader.load('/factory.glb', (gltf) => {
  98. const model = gltf.scene;
  99. // console.log("glb 加载成功", gltf)
  100. model.position.set(-4, 10, 0); // 设置模型位置
  101. // model.rotation.set(0, Math.PI / 0, 0); // 设置模型旋转
  102. // model.scale.set(1, 0.5, 1); // 设置模型缩放
  103. this.scene.add(model);
  104. },(xhr) => {
  105. console.log(xhr);
  106. }, (error) => {
  107. console.log(error);
  108. })
  109. const rgbeLoader = new RGBELoader();
  110. rgbeLoader.load('/clarens_night_02_8k.hdr', (texture) => {
  111. texture.mapping = THREE.EquirectangularReflectionMapping;
  112. texture.minFilter = THREE.LinearFilter;
  113. texture.magFilter = THREE.LineasrFilter;
  114. // texture.format = THREE.RGBEFormat;
  115. this.scene.environment = texture;
  116. // texture.mapping = THREE.EquirectangularReflectionMapping;
  117. // texture.encoding = THREE.LinearEncoding;
  118. // this.scene.environment = texture;
  119. }, undefined, (error) => {
  120. console.error('An error happened.', error);
  121. });
  122. // mtlLoader.load('./texture.mtl', (mtl) => {
  123. // mtl.preload();
  124. // objLoader.setMaterials(mtl);
  125. // objLoader.load('./factory.obj', (obj) => {
  126. // obj.position.set(0, 10, 0);
  127. // var material = new THREE.MeshStandardMaterial({ color: '#fff' });
  128. // obj.traverse(function (child) {
  129. // console.log(child.name);
  130. // // if (child instanceof THREE.Mesh) {
  131. // // for (let i = 0; i < child.material.length; i++) {
  132. // // child.material[i].color.set(0xffffff); // 设置材质颜色为白色
  133. // // }
  134. // // child.material = material;
  135. // // if (child.material instanceof THREE.MeshStandardMaterial ||
  136. // // child.material instanceof THREE.MeshPhongMaterial) {
  137. // // child.material.color.set('#fff');
  138. // // }
  139. // // }
  140. // })
  141. // this.scene.add(obj)
  142. // resolve('模型添加成功')
  143. // })
  144. // })
  145. })
  146. }
  147. onWindowResize() {
  148. this.recordCameraChanges();
  149. this.camera.aspect = this.container.offsetWidth / this.container.offsetHeight
  150. this.camera.updateProjectionMatrix()//更新矩阵,将3d内容投射到2d画面上转换
  151. this.renderer.setSize(this.container.offsetWidth, this.container.offsetHeight)
  152. }
  153. dispose() {
  154. this.scene.dispose();
  155. this.camera.dispose();
  156. this.renderer.dispose();
  157. this.controls.dispose();
  158. window.removeEventListener('resize', this.onWindowResize);
  159. }
  160. }
  161. export default motor3d;