123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- import * as THREE from "three";
- import Stats from "three/examples/jsm/libs/stats.module.js";
- import Player from "./player/Player.js";
- import BoxManager from "./box/BoxManager.js";
- import { Mitt } from "./mitt.js";
- import testData from "./save.json";
- const stats = new Stats();
- export default class Scene extends Mitt {
- constructor(domElement) {
- super();
- this.domElement = domElement;
- this.scene = null;
- this.renderer = null;
- this.orthCamera = null;
- this.player = null;
- this.sceneType = 1;
- this.width = 0;
- this.height = 0;
- this.inited = false;
- this.init = () => {
- this.scene = new THREE.Scene();
- this.scene.background = new THREE.Color(0xf0f2f5);
- this.renderer = new THREE.WebGLRenderer({
- canvas: this.domElement,
- antialias: true,
- });
- this.width = this.domElement.clientWidth;
- this.height = this.domElement.clientHeight;
- this.renderRes = window.devicePixelRatio;
- this.renderer.setSize(this.width, this.height);
- this.renderer.setPixelRatio(this.renderRes);
- console.log(this.width, this.height, this.renderRes);
- this.orthCamera = new THREE.OrthographicCamera(
- -this.width / 2,
- this.width / 2,
- this.height / 2,
- -this.height / 2,
- 0.1,
- 1000
- );
- this.orthCamera.zoom = 250;
- this.orthCamera.position.set(0, 10, 0);
- this.orthCamera.lookAt(0, 0, 0);
- // this.orthCamera.setViewOffset(this.width, this.height, 0, 0);
- this.orthCamera.updateProjectionMatrix();
- //player
- this.player = new Player(this);
- //stats
- domElement.parentNode.appendChild(stats.dom);
- stats.dom.style.pointerEvents = "none";
- stats.dom.style.left = "15%";
- this.onBindEvent();
- this.inited = true;
- this.load();
- this.animate();
- };
- }
- load = (list, type, data) => {
- if (!list) return;
- console.log("scene: ", list, type, data);
- //axesHeloer
- this.clearScene();
- this.sceneType = type;
- // const axesHelper = new THREE.AxesHelper(1);
- // this.scene.add(axesHelper);
- this.boxManager = new BoxManager(this);
- this.boxManager.load(list, type);
- //light
- this.loadLight();
- this.player.load(type, data || []);
- };
- clearScene() {
- for (var i = this.scene.children.length - 1; i >= 0; i--) {
- let obj = this.scene.children[i];
- this.scene.remove(obj);
- }
- }
- clearDrawScene() {
- for (var i = this.scene.children.length - 1; i >= 0; i--) {
- let obj = this.scene.children[i];
- if (
- String(obj.name).includes("marker_") ||
- String(obj.name).includes("line_") ||
- String(obj.name).includes("line_point_") ||
- String(obj.name).includes("circle_")
- ) {
- this.scene.remove(obj);
- }
- }
- }
- deleteItemById(uuid) {
- for (var i = this.scene.children.length - 1; i >= 0; i--) {
- let obj = this.scene.children[i];
- if (obj.uuid === uuid) {
- this.scene.remove(obj);
- }
- }
- }
- loadLight = () => {
- const light = new THREE.AmbientLight(0xffffff, 1.5); // 柔和的白光
- this.scene.add(light);
- };
- setCamera = () => {};
- toHorizontal = () => {};
- toVertical = () => {};
- lockView(open) {
- if (open) {
- this.player.floorplanControls.enablePan = true;
- } else {
- this.player.floorplanControls.enablePan = false;
- }
- }
- onResize = (width, height) => {
- this.width = width !== undefined ? width : this.domElement.clientWidth;
- this.height = height !== undefined ? height : this.domElement.clientHeight;
- console.log("resize", this.width, this.height);
- (this.orthCamera.left = -this.width / 2),
- (this.orthCamera.right = this.width / 2),
- (this.orthCamera.bottom = -this.height / 2),
- (this.orthCamera.top = this.height / 2),
- this.orthCamera.updateProjectionMatrix();
- this.renderer.setSize(this.width, this.height);
- };
- render = () => {
- if (this.player) {
- this.player.update();
- this.renderer.render(this.scene, this.orthCamera);
- }
- };
- animate = () => {
- stats.begin();
- this.render();
- stats.end();
- requestAnimationFrame(this.animate);
- };
- onBindEvent = () => {
- //window.addEventListener('resize', this.onResize)
- };
- }
|