如何用webgl(three.js)搭建一個3D庫房-第二課

来源:https://www.cnblogs.com/yeyunfei/archive/2018/04/13/8811228.html
-Advertisement-
Play Games

閑話少敘,我們接著第一課繼續講(http://www.cnblogs.com/yeyunfei/p/7899613.html),很久沒有做技術分享了。很多人問第二課有沒有,我也是抽空寫一下第二課。 第一課程提到了在庫房的基礎上添加上下架 消防 溫濕度等等控制 剛好 最近有接到一個客戶的需求 是和庫房 ...


閑話少敘,我們接著第一課繼續講(http://www.cnblogs.com/yeyunfei/p/7899613.html),很久沒有做技術分享了。很多人問第二課有沒有,我也是抽空寫一下第二課。

第一課程提到了在庫房的基礎上添加上下架 消防 溫濕度等等控制

剛好 最近有接到一個客戶的需求 是和庫房差不多的項目 只是不是庫房了 是檔案室 但是基本操控還是差不多的 也有文件上下架什麼的

那麼第二課  我們就按照客戶的需求 先做一個概述性的展現 

特此說明:為了減少網路傳輸帶寬 我特意用ScreenToGif工具 截了一些gif圖 壓縮成低幀率

有什麼需要交流的 可郵件我 [email protected]

一、需要場景進行無縫的動畫切換

 

 代碼實現

 

//應用切換庫 
<script src="js/pagetransitions.js"></script>
var PageTransitions = (function() {

	var $main = $( '#pt-main' ),
		$pages = $main.children( 'div.pt-page' ),
        $iterate = $( '.pt-touch-button' ),
		animcursor = 1,
		pagesCount = $pages.length,
        current = 1,
        precurrent=1,
		isAnimating = false,
		endCurrPage = false,
		endNextPage = false,
		animEndEventNames = {
			'WebkitAnimation' : 'webkitAnimationEnd',
			'OAnimation' : 'oAnimationEnd',
			'msAnimation' : 'MSAnimationEnd',
			'animation' : 'animationend'
		},
		// animation end event name
		animEndEventName = animEndEventNames[ Modernizr.prefixed( 'animation' ) ],
		// support css animations
		support = Modernizr.cssanimations;
	
	function init() {

		$pages.each( function() {
			var $page = $( this );
			$page.data( 'originalClassList', $page.attr( 'class' ) );
		} );

        $($(".pt-page.pt-page-1")[0]).addClass( 'pt-page-current' );
        precurrent = 1;
	 
        $iterate.on('click', function () {
            var frameindex = $(this).attr("data-frameindex");
            current = frameindex;
            console.log(frameindex);
            var _this = this;
            if (isAnimating || current == precurrent ) {
				return false;
			}
			if( animcursor > 5 ) {
				animcursor = 1;
			}
			nextPage( animcursor );
            ++animcursor;
            //setTimeout(function () {
            //    $("#frame" + $(_this).attr("data-frameindex")).attr("src", $(_this).attr("data-src"));
            //}, 500);
		} );

	}

	function nextPage( animation ) {

        if (isAnimating) {
			return false;
		}

		isAnimating = true;
		
        var $currPage = $($(".pt-page.pt-page-" + precurrent)[0]);
     

        var $nextPage = $($(".pt-page.pt-page-" +  current)[0]).addClass( 'pt-page-current' ),
			outClass = '', inClass = '';
        precurrent = current;
		switch( animation ) {

			 
			case 1:
				outClass = 'pt-page-rotateCubeLeftOut pt-page-ontop';
				inClass = 'pt-page-rotateCubeLeftIn';
				break;
			case 2:
				outClass = 'pt-page-rotateCubeRightOut pt-page-ontop';
				inClass = 'pt-page-rotateCubeRightIn';
				break;
			case 3:
				outClass = 'pt-page-rotateCubeTopOut pt-page-ontop';
				inClass = 'pt-page-rotateCubeTopIn';
				break;
			case 4:
				outClass = 'pt-page-rotateCubeBottomOut pt-page-ontop';
				inClass = 'pt-page-rotateCubeBottomIn';
				break; 
			case 5:
				outClass = 'pt-page-rotateSlideOut';
				inClass = 'pt-page-rotateSlideIn';
				break;

		}

		$currPage.addClass( outClass ).on( animEndEventName, function() {
			$currPage.off( animEndEventName );
			endCurrPage = true;
			if( endNextPage ) {
				onEndAnimation( $currPage, $nextPage );
			}
		} );

		$nextPage.addClass( inClass ).on( animEndEventName, function() {
			$nextPage.off( animEndEventName );
			endNextPage = true;
			if( endCurrPage ) {
				onEndAnimation( $currPage, $nextPage );
			}
		} );

		if( !support ) {
			onEndAnimation( $currPage, $nextPage );
		}

	}

	function onEndAnimation( $outpage, $inpage ) {
		endCurrPage = false;
		endNextPage = false;
		resetPage( $outpage, $inpage );
		isAnimating = false;
	}

	function resetPage( $outpage, $inpage ) {
		$outpage.attr( 'class', $outpage.data( 'originalClassList' ) );
		$inpage.attr( 'class', $inpage.data( 'originalClassList' ) + ' pt-page-current' );
	}

	init();

	return { init : init };

})();

  

 二、打開密集架 有過度動畫

  代碼實現

  this.loadMjjFace = function (mjjObj) {
        $.each(mjjObj.material.materials, function (_index, _obj) {
            if (_obj.opacity > 0.1) {
                _obj.opacity = 0.1;
            }
        });
        var cube = {
            "show": true,
            "uuid": "",
            "name": mjjObj.name + "_animationCube",
            "objType": "cube2",
            "length": 78,
            "width": 319,
            "height": 1,
            "x": mjjObj.position.x,
            "y": mjjObj.position.y - 99,
            "z": mjjObj.position.z,
            "style": {
                "skinColor": 16777215, "skin":
                    {
                        "skin_up": { "skinColor": 7219463, "opacity": 0.9, },
                        "skin_down": { "skinColor": 7219463, "opacity": 0.9, },
                        "skin_fore": { "skinColor": 7219463, "opacity": 0.9, },
                        "skin_behind": { "skinColor": 7219463, "opacity": 0.9, },
                        "skin_left": { "skinColor": 7219463, "opacity": 0.9, },
                        "skin_right": { "skinColor": 7219463, "opacity": 0.9, }
                    }
            }, "showSortNub": 11, "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null
        }
        var temObj = tl3DCoreObj.createObjByJson(cube);
        tl3DCoreObj.addObject(temObj);
        new TWEEN.Tween(temObj.position).to({
            y: mjjObj.position.y
        }, 2000).start();
        new TWEEN.Tween(temObj.scale).to({
            y: 199
        }, 2000).onComplete(function () {
            $.each(mjjObj.material.materials, function (_index, _obj) {
                if (_obj.opacity == 0.1) {
                    _obj.opacity = 1;
                }
            });
            tl3DCoreObj.destoryObj(mjjObj.name + "_animationCube");
        }).start();
        this.createMjjDetail(mjjObj);
    }

  

 三、對密集架的文件檔案進行上下架操作 保留操作介面

  代碼實現

//創建密集架詳情
    this.createMjjDetail = function (mjjObj) {
        var _this = this;
        var detailGroup = null;
        //獲取密集架序號
        var _groupNub = parseInt(mjjObj.name.split('_')[1]);//組序號
        var _colomnNub = parseInt(mjjObj.name.split('_')[2])//列序號
        //此處表示密集架行數 列數
        var mjjparam = null;
        var rowHeigtht = null;//每隔高度 此處200表示密集架高度
        var columlength = null;//此處320表示寬度

        if (_this.mjjDetails[_groupNub - 1] && _this.mjjDetails[_groupNub - 1][_colomnNub - 1]) {
            detailGroup = _this.mjjDetails[_groupNub - 1][_colomnNub - 1];
        } else {
             mjjparam = {
                rows: 12,
                colums: 4,
            }
             rowHeigtht = 200 / mjjparam.rows;//每隔高度 此處200表示密集架高度
             columlength = 320 / mjjparam.colums;//此處320表示寬度
            var mjjdetailGroup = {
                show: true,
                uuid: "",
                name: "mjjdetailGroup1",
                objType: "GroupObj",
                scale: { x: 1, y: 1, z: 1 },
                position: {
                    x: mjjObj.position.x,
                    y: mjjObj.position.y,
                    z: mjjObj.position.z
                },
                rotation: [{ direction: 'x', degree: 0 }],//旋轉 表示x方向0度  arb表示
                childrens: [
                ]
            }
            //創建橫向隔板
            for (var i = 0; i < mjjparam.rows - 1; i++) {
                var gb1 = {
                    "show": true,
                    "uuid": "",
                    "name": "mjjdetail_r" + (i + 1),
                    "objType": "cube2",
                    "length": 79,
                    "width": 319,
                    "height": 1,
                    "x": 0,
                    "y": 100 - (i + 1) * rowHeigtht,
                    "z": 0,
                    "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "imgurl": "../../img/3dImg/outside_lightmap.jpg" }, "skin_down": { "skinColor": 14540253 }, "skin_fore": { "skinColor": 14540253, "imgurl": "../../img/3dImg/card_panel.png" }, "skin_behind": { "skinColor": 14540253, "imgurl": "../../img/3dImg/card_panel.png" }, "skin_left": { "skinColor": 14540253 }, "skin_right": { "skinColor": 14540253 } } }, "showSortNub": 4, "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null
                };
                mjjdetailGroup.childrens.push(gb1);

            }
            //創建豎向隔板
            for (var i = 0; i < mjjparam.colums - 1; i++) {
                var gb2 = { "show": true, "uuid": "", "name": "mjjdetail_c" + (i + 1), "objType": "cube2", "length": 10, "width": 2, "height": 199, "x": 35, "y": 0, "z": 160 - ((i + 1) * columlength), "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 14540253 }, "skin_down": { "skinColor": 14540253 }, "skin_fore": { "skinColor": 0xaaaaaa }, "skin_behind": { "skinColor": 0xaaaaaa }, "skin_left": { "skinColor": 14540253, "imgurl": "../../img/3dImg/card_panel.png" }, "skin_right": { "skinColor": 14540253, "imgurl": "../../img/3dImg/card_panel.png" } } }, "showSortNub": 4, "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null };

                mjjdetailGroup.childrens.push(gb2);


                var gb3 = ({ "show": true, "uuid": "", "name": "mjjdetail_c3" + (i + 1), "objType": "cube", "length": 10, "width": 2, "height": 199, "x": 0 - 35, "y": 0, "z": 160 - ((i + 1) * columlength), "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 14540253 }, "skin_down": { "skinColor": 14540253 }, "skin_fore": { "skinColor": 0xaaaaaa }, "skin_behind": { "skinColor": 0xaaaaaa }, "skin_left": { "skinColor": 14540253, "imgurl": "../../img/3dImg/card_panel.png" }, "skin_right": { "skinColor": 14540253, "imgurl": "../../img/3dImg/card_panel.png" } } }, "showSortNub": 4, "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null });
                mjjdetailGroup.childrens.push(gb3);

            }
            detailGroup = tl3DCoreObj.createObjByJson(mjjdetailGroup);
            if (_this.mjjDetails[_groupNub - 1] == undefined) {
                _this.mjjDetails[_groupNub - 1] = [];
            }
            _this.mjjDetails[_groupNub - 1][_colomnNub - 1] = detailGroup;
            tl3DCoreObj.addObject(detailGroup);
        }
        //獲取內部實時數據
        /*
        數據格式 將有文件的格子信息 以如下形式輸出
            [
                {
                rowNo_:1,//行數
                colNo_:1,//列數
                filesNub:5//文件個數
                },

            ]
        */

        var _files = [];


        {//演示數據 獲取真實數據後可替換
            for (var i = 1; i <= mjjparam.rows;i++){
                for (var j= 1; j <= mjjparam.colums;j++) {
                    _files.push({
                        rowNo_: i,//行數
                        colNo_: j,//列數
                        filesNub:Math.floor(Math.random()*10)%5 //隨機生成演示文件個數
                    });
                }
            }
        }

        //刷新文件排布
        detailGroup.children.length = mjjparam.rows + mjjparam.colums*2-3;
        $.each(_files, function (_index,_obj) {
            if (_obj.filesNub > 0) {
                for (var w = 0; w < parseInt(Math.random() * parseInt((columlength - 2) / 22)) + 1 ; w++) {
                    var _tmfile = {
                        "show": true, "uuid": "", "name": "filebox_" + _obj.rowNo_ + "_" + _obj.colNo_ + "_w" + w, "objType": "cube", "length":70, "width": 20, "height": (rowHeigtht - 5),
                        "x": mjjObj.position.x,
                        "y": ( (_obj.rowNo_-1) * rowHeigtht + (rowHeigtht - 5) / 2 + 5),
                        "z": mjjObj.position.z + (-160 + ((_obj.colNo_ - 1) * columlength) + 22* (1 + w)),

                        "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 10382134 }, "skin_down": { "skinColor": 10382134 }, "skin_fore": { "skinColor": 9525548 }, "skin_behind": { "skinColor": 9525548 }, "skin_left": { "skinColor": 13076036 }, "skin_right": { "skinColor": 13203019 } } }, "showSortNub": 11, "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null
                    };
                    var _tmfileObj = tl3DCoreObj.createObjByJson(_tmfile);
                    detailGroup.children.push(_tmfileObj);
                }
               
            }
        });

        detailGroup.visible = false;
        detailGroup.position.x = mjjObj.position.x;
        detailGroup.position.y = mjjObj.position.y;
        detailGroup.position.z = mjjObj.position.z;
        setTimeout(function () {
            detailGroup.visible = true;
        }, 2000);

    }

  

四、快速檢索文件,並定位

  代碼實現

   //查找文件 此處查找條件可以自定義
    this.searchFile = function () {
        var _this = this;
        $("#toolbar").hide();
        //獲取到文件位置信息
        //返回類型 searchFileObj={fileName:'',mjjName:'',mjjGroup:'3',mjjnub:'2',face:'',row:'',color:'',nub:''}\
        //邊緣彈出
        layer.open({
            title: "文件查找",
            type: 1,
            offset: 'lt' //具體配置參考:offset參數項
            , content: '<div style="padding: 10px;width:250px;min-height:150px;background-color:rgba(255,255,255,0.4);">\
	<table class="table">\
	<tr><td style="text-align:right;width:80px;">類型:</td><td><input id="fsfileType" value="" /></td></tr>\
	<tr><td style="text-align:right;width:80px;">關鍵字:</td><td><input id="fskeyWord" value="" /></td></tr>\
	<tr><td style="text-align:right;width:80px;">結果:</td><td colspan=2 id="searchResuleTd"></td></tr>\
	</table></div>'
            , btn: '確認查找'
            , btnAlign: 'c' //按鈕居中
            , shade: 0 //不顯示遮罩
            , yes: function () {
                var searchFileObj = {
                    mjjGroup: Math.floor(Math.random() * 12) % 6 + 1,
                    mjjnub: Math.floor(Math.random() * 14) % 7 + 1,
                    face: Math.random()>0.5? "A":"B",
                    row: Math.floor(Math.random() * 20) % 10+1,
                    column: Math.floor(Math.random() * 20) % 8+1,
                    nub: Math.floor(Math.random() * 40) % 20 + 1
                };
                $("#searchResuleTd").html("密集架組:" + searchFileObj.mjjGroup + "組</br>"
                                        + "密集架號:" + searchFileObj.mjjnub + "號</br>"
                                        + "密集架面:" + searchFileObj.face + "面</br>"
                                        + "所在行數:" + searchFileObj.row + "行</br>"
                                        + "所在列數:" + searchFileObj.column + "列</br>"
                                        + "文檔序號:" + searchFileObj.nub + "</br>"
                                            );
                var _mjjObj = tl3DCoreObj.commonFunc.findObject("mjj_" + searchFileObj.mjjGroup + "_" + searchFileObj.mjjnub);
                _this.selectObj(_mjjObj);
                
                var newposition = {
                    x: (tl3DCoreObj.camera.position.x + _mjjObj.position.x)/2,
                    y: 600,
                    z: (tl3DCoreObj.camera.position.z+ _mjjObj.position.z) / 2
                }
                if ((tl3DCoreObj.camera.position.x - _mjjObj.position.x) * (tl3DCoreObj.camera.position.x - _mjjObj.position.x)
                    + (600 - _mjjObj.position.y) * (600 - _mjjObj.position.y)
                    + (tl3DCoreObj.camera.position.z - _mjjObj.position.z) * (tl3DCoreObj.camera.position.z - _mjjObj.position.z)
                    < 150 * 150 * 150) {
                    newposition = {
                        x: (tl3DCoreObj.camera.position.x),
                        y: 600,
                        z: (tl3DCoreObj.camera.position.z )
                    }
                }
                _this.changeCameraPosition(newposition, _mjjObj.position, 500)
            },
            end: function () {
                $("#toolbar").show();
                _this.unselectObj();
            }
        });
        $("#fsfileType").click(function () {
            $("#fsfileType").focus();
        })
        $("#fskeyWord").click(function () {
            $("#fskeyWord").focus();
        })
    }
    this.selectedObjs = null;
    this.selectObj=function (_obj) {
        var _this = this;
        if (_this.selectedObjs) {
            _this.unselectObj();
        }
        var outlineMaterial2 = new THREE.MeshBasicMaterial({ color: 0x00ff00, side: THREE.BackSide });
        var outlineMesh2 = new THREE.Mesh(_obj.geometry.clone(), outlineMaterial2);
        outlineMesh2.scale.multiplyScalar(1.05);
        outlineMesh2.position.x = _obj.position.x;
        outlineMesh2.position.y = _obj.position.y;
        outlineMesh2.position.z = _obj.position.z;
        tl3DCoreObj.scene.add(outlineMesh2);
        _this.selectedObjs = outlineMesh2;
        _this.flashObj(_obj);
    }
    this.unselectObj=function () {
        var _this = this;
        if (_this.selectedObjs) {
            tl3DCoreObj.scene.remove(_this.selectedObjs);
            _this.selectedObjs = null;
        }
    }

  

五、場景內監控攝像頭 調取實時視頻

 

 /*攝像頭部分*********************************************************************/
    this.cameraRange = [];
    //攝像頭按鈕
    this.showCamera = function () {
        var _this = this;
        if (_this.cameraRange.length <= 0) {
            var jsonobj1 = { "segmentsY": 0, "segmentsX": 6, "rotation": [{ "degree": 1.836627410320584, "direction": "x" }, { "degree": -0.01857030395023093, "direction": "y" }, { "degree": -0.10075785157596659, "direction": "z" }], "show": true, "scale": { "x": 1.1, "y": 1, "z": 0.3 }, "openEnded": false, "radiusTop": 500, "radiusBottom": 5, "showSortNub": 211, "name": "camera_range", "style": { "skinColor": 16776960, "skin": { "skin_up": { "side": 0, "skinColor": 16777215, "opacity": 0 }, "skin_side": { "imgurl": "../../img/3dImg/camarerange.png", "side": 2, "skinColor": 2746367, "opacity": 0.3 }, "skin_down": { "side": 1, "skinColor": 6881093, "opacity": 0 } } }, "position": { "x": -129.087, "y": 170.956, "z": -314.488 }, "objType": "cylinder", "height": 500 };
            var temObj1 = tl3DCoreObj.createObjByJson(jsonobj1);
            tl3DCoreObj.addObject(temObj1);
            _this.cameraRange.push(temObj1);

            var jsonobj2 = {"segmentsY": 0, "segmentsX": 6, "rotation": [{ "direction": "x", "degree":1.5415097019464317 }, { "direction": "y", "degree": -0.08611454529340022 },{ "direction": "z", "degree": -3.0382866151642487 }], "show": true, "scale": { "x": 1.1, "y": 1, "z": 0.3 }, "openEnded": false, "radiusTop": 500, "radiusBottom": 5, "showSortNub": 211,"name": "camera_range2", "style": {"skinColor": 16776960, "skin": {
                        "skin_up": { "skinColor": 16777215, "side": 0, "opacity": 0 }, "skin_down":{ "skinColor": 6881093, "side": 1, "opacity": 0 },
                        "skin_side": { "skinColor": 2746367, "side": 2, "opacity": 0.3, "imgurl": "../../img/3dImg/camarerange.png" }
                    }
                }, "position": { "x": 45.312, "y": 247.096, "z": 534.465 }, "objType": "cylinder",
                "height": 500, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null
            };
            var temObj2 = tl3DCoreObj.createObjByJson(jsonobj2);
            tl3DCoreObj.addObject(temObj2);
            _this.cameraRange.push(temObj2);

        }
        if (_this.cameraRange.length > 0) {
            $.each(_this.cameraRange, function (_index, _obj) {
                _obj.visible = true;
                _this.flashObj(_obj, 0xb2fb07);
            });
        }
        _this.changeCameraPosition({ x: -1284, y: 1787, z: -378 }, { x: -237, y: 308, z: 145 }, 1000)
    }
    //隱藏攝像頭範圍
    this.hideCamera = function () {
        var _this = this;
        if (_this.cameraRange.length > 0) {
            $.each(_this.cameraRange, function (_index, _obj) {
                _obj.visible = false;
            });
        }
    }
    //打開視屏
    this.showVideo = function (_obj) {
        var _this = this;
        layer.closeAll();
        var videoUrl = "";
        layer.open({
            title: "視頻",
            area:["555px","280px"],
            type: 1,
            content: '<video id="video" autoplay loop webkit-playsinline style="width:100%;" >\
                        <source src="../../img/3dImg/video.mp4">\
                    </video>'
        , btn: false
        , shade: 0 //不顯示遮罩
        , yes: function () {

            },
        end: function () {
            _this.hideCamera();
         }
        });
    }

  

六、消防滅火器快速定位 查找

 

/*消防按鈕部分*********************************************************************/
    //消防按鈕--滅火器定位
    this.FireControl = function () {
        var _this = this;
        _this.VirtualWalls();
        _this.hideAllMjj();
        _this.hideCamera();
        _this.removeMark();
        _this.addMark({ "x": 940, "y":200, "z": -660 });
        _this.addMark({ "x": 660, "y": 200, "z": -70 });
        _this.addMark({ "x": 660, "y": 200, "z": 400 });
        _this.addMark({ "x": -960, "y": 200, "z": -70 });
        _this.addMark({ "x": -960, "y": 200, "z": 400 });
        function markmoveUP(){
            new TWEEN.Tween(_this.marks[0].position).to({
                y:230
            }, 700).onUpdate(function () {
                var _marktPosition=this;
                $.each(_this.marks, function (_index, _obj) {
                    if (_index != 0) {
                        _obj.position.y = _marktPosition.y
                    }
                });
            }).onComplete(function () {
                if (_this.marks.length > 0) {
                    markmoveDown();
                }
            }).start();
        }
        function markmoveDown() {
            new TWEEN.Tween(_this.marks[0].position).to({
                y: 200
            }, 700).onUpdate(function () {
                var _marktPosition = this;
                $.each(_this.marks, function (_index, _obj) {
                    if (_index != 0) {
                        _obj.position.y = _marktPosition.y
                    }
                });
            }).onComplete(function () {
                if (_this.marks.length > 0) {
                    markmoveUP();
                }
            }).start();
        }
        function moveCameras() {
            _this.changeCameraPosition(
                    { "x": -270, "y": 1274, "z": -714 },
                    { "x": 209, "y": 705, "z": -750 },
                    1000,
                   function () {
                     _this.changeCameraPosition(
                           { "x": -574, "y": 1430, "z":-161 },
                           { "x": 486, "y": 134, "z": -90 },
                           2000,
                           function () {
                               _this.changeCameraPosition(
                              { "x": 196, "y": 1262, "z":340},
                              { "x": -639, "y": 277, "z":216},
                              4000,
                              function () {
                                  _this.changeCameraPosition(
                                  { "x":12, "y": 1749, "z": -2468 },
                                  { "x":61, "y": 156, "z":194 }, 1000, function () { });
                              }
                          );
                       }
                   );
                 }
                );
        }
        markmoveUP();
        moveCameras();
        $("#toolbar").hide();
        layer.open({
            title: "消防-滅火器定位",
            type: 1,
            offset: 'lt' //具體配置參考:offset參數項
       , content: '<div style="padding: 10px;width:300px;min-height:200px;background-color:rgba(255,255,255,0.4);">\
	        <table class="table">\
	        <tr><td style="text-align:right;width:80px;">序號</td><td>位置</td><td>定位</td></tr>\
	        <tr><td style="text-align:center;width:80px;">1</td><td>大門口</td><td><button onclick="tl3dCoreBusiness.changeCameraPosition({ x: -270, y: 1274, z: -714 },{ x: 209, y: 705, z: -750 },1000)">定位</button></tr>\
	        <tr><td style="text-align:center;width:80px;">2</td><td>密集架5和密集架6中間</td><td><button onclick="tl3dCoreBusiness.changeCameraPosition({ x: -574, y: 1430, z: -161 },{ x: 486, y: 134, z: -90 },1000)">定位</button></td></tr>\
	        <tr><td style="text-align:center;width:80px;">3</td><td>密集架4和密集架5中間</td><td><button onclick="tl3dCoreBusiness.changeCameraPosition({ x: -574, y: 1430, z: -161 },{ x: 486, y: 134, z: -90 },1000)">定位</button></tr>\
	        <tr><td style="text-align:center;width:80px;">4</td><td>密集架1和密集架2中間</td><td><button onclick="tl3dCoreBusiness.changeCameraPosition({ x: 196, y: 1262, z: 340},{ x: -639, y: 277, z: 216 },1000)">定位</button></tr>\
	        <tr><td style="text-align:center;width:80px;">5</td><td>密集架2和密集架3中間</td><td><button onclick="tl3dCoreBusiness.changeCameraPosition({ x: 196, y: 1262, z: 340},{ x: -639, y: 277, z: 216 },1000)">定位</button></tr>\
	        </table></div>'
       , btn:false
       , btnAlign: 'c' //按鈕居中
       , shade: 0 //不顯示遮罩
       , end: function () {
                _this.hideFireControls();
            }
        });
    }
    this.hideFireControls = function () {
        var _this = this;
        $("#toolbar").show();
        _this.EntityWalls();
        _this.showAllMjj();
        _this.removeMark();
    }

  

七、實時3D模擬消防火警 顯示火災參考情況

 

    /*煙感模擬部分*********************************************************************/
    //煙感模擬
    this.smokeSensors = [];//煙感
    this.getSmokeSensors = function () {
        var _this = this;
        if (_this.smokeSensors&&_this.smokeSensors.length == 0) {
            $.each(tl3DCoreObj.objects, function (_index, _obj) {
                if (_obj.name.indexOf("smokeSensor_") >= 0) {
                    _this.smokeSensors.push(_obj);
                }
            });
        }
    }

 

  

 

 

 

八、場景內溫度調節 並且有調節動畫 

 

    /*溫度部分*********************************************************************/
    //溫度調節模擬+雲圖
    this.changeTemplate = function () {
        var _this = this;
        $("#toolbar").hide();
        _this.hideCamera();
        _this.changeCameraPosition({ x: 540, y: 388, z: -524 }, { x: 0, y: 260, z: 130 }, 1000);
        //獲取當前濕度值
        var hvalue = 28.5;
        //隱藏所有密集架
        this.hideAllMjj();
        if (this.templates.length == 0) {
            var tps = [300, -100, 300, 500, -500, -100, -500, 500]
            for (var i = 0; i < 4; i++) {
                var _obj1 = {
                    show: true,
                    name: "thermometer",
                    objType: "Thermometer3D",
                    position: { x: tps[2 * i], y: 400, z: tps[2 * i + 1] },
                    rotation: [{ "direction": "x", "degree": 0 }],
                    scale: { "x": 2, "y": 1.5, "z": 2},
                    value: hvalue,
                }
                var temObj1 = tl3DCoreObj.createObjByJson(_obj1);
                tl3DCoreObj.addObject(temObj1);
                _this.templates.push(temObj1)
            }
        }
        for (var i = 0; i < _this.templates.length; i++) {
            _this.templates[i].position.y = 400;
            _this.templates[i].visible = true;
        }
        new TWEEN.Tween(_this.templates[0].position).to({
            y: 200
        }, 2000).onUpdate(function () {
            for (var i = 1; i < _this.templates.length; i++) {
                _this.templates[i].position.y = this.y;
            }
        }).easing(TWEEN.Easing.Elastic.Out).start();
        layer.closeAll();
        var videoUrl = "";
        layer.open({
            title: "調節溫度",
            type: 1,
            anim: 2,
            content: '<div style="padding: 10px;width:240px;height:80px;background-color:rgba(255,255,255,0.71);text-align:center;">\
                溫度:<input type="text" style="width:100px" id="template_input" value="' + hvalue + '" />%\
                </div>'
        , btn: ["調節", "關閉"]
        , shade: 0 //不顯示遮罩
        , yes: function () {
            var t = parseFloat($("#template_input").val());
            for (var i = 0; i < _this.templates.length; i++) {
                _this.templates[i].changeThermoneter(t);
            }
        },
            end: function () {
                _this.hideTemplate();
            }
        });
        var t = $("#template_input").val();
        $("#template_input").val("").focus().val(t)
    }
    this.hideTemplate = function () {
        var _this = this;
        $("#toolbar").show();
        _this.hideCamera();
        var _this = this;
        if (this.templates.length > 0) {
            for (var i = 0; i < _this.templates.length; i++) {
                _this.templates[i].position.y = 400;
                _this.templates[i].visible = false;
            }
        }
        _this.showAllMjj();
    }

 

  

 

 

九 、場景內濕度調節 有調節動畫

 

    //濕度調節模擬+雲圖
    this.humiditys = [];
    this.changehumidity = function () {
        var _this = this;
        $("#toolbar").hide();
        _this.hideCamera();
        _this.changeCameraPosition({ x: -35, y: 647, z: -1190 }, { x: -37, y: 190, z: 95 }, 1000);
        //獲取當前濕度值
        var hvalue = 28.5;
        //隱藏所有密集架
        this.hideAllMjj();
        if (this.humiditys.length == 0) {
            var humiditys = [300, -100, 300, 500, -500, -100, -500, 500]
            for (var i = 0; i < 4;i++){
                var humidity1 = {
                    show: true,
                    name: "humidity",
                    objType: "Humidity",
                    position: { x: humiditys[2 * i], y: 400, z: humiditys[2 * i+1] },
                    rotation: [{ "direction": "x", "degree": 0 }],
                    scale: { "x": 1, "y": 1, "z": 1 },
                    value: hvalue,
                }
                var temObj1 = tl3DCoreObj.createObjByJson(humidity1);
                tl3DCoreObj.addObject(temObj1);
                _this.humiditys.push(temObj1)
            }
        }
        for (var i = 0; i < _this.humiditys.length;i++){
            _this.humiditys[i].position.y = 400;
            _this.humiditys[i].visible = true;
        }
        new TWEEN.Tween(_this.humiditys[0].position).to({
            y: 200
        }, 2000).onUpdate(function () {
            for (var i = 1; i < _this.humiditys.length; i++) {
                _this.humiditys[i].position.y = this.y;
            }
        }).easing(TWEEN.Easing.Elastic.Out).start();
        layer.closeAll();
        var videoUrl = "";
        layer.open({
            title: "調節濕度",
            type: 1,
            anim: 2,
            content: '<div style="padding: 10px;width:240px;height:80px;background-color:rgba(255,255,255,0.71);text-align:center;">\
                濕度:<input type="text" style="width:100px" id="humidity_input" value="' + hvalue + '" />%\
                </div>'
        , btn: ["調節","關閉"]
        , shade: 0 //不顯示遮罩
        , yes: function () {
            var t = parseFloat($("#humidity_input").val());
            for (var i = 0; i < _this.humiditys.length; i++) {
                _this.humiditys[i].changeThermoneter(t);
            }
        },
            end: function () {
                _this.hideHumidity();
            }
        });
        var t = $("#humidity_input").val();
        $("#humidity_input").val("").focus().val(t)
    }
    this.hideHumidity = function () {
        var _this = this;
        $("#toolbar").show();
        _this.hideCamera();
        var _this = this;
        if (this.humiditys.length > 0) {
            for (var i = 0; i < _this.humiditys.length;i++){
                _this.humiditys[i].position.y = 400;
                _this.humiditys[i].visible = false;
            }
        }
        _this.showAllMjj();
    }
    this.templates = [];

  

 十、對場景內數據大屏 進行操控 屏幕切換

 

    /*大屏部分*********************************************************************/
    //獲取大屏
    this.bigScreens = [];
    this.getScreens = function () {
        var _this = this;
        if (_this.bigScreens.length == 0) {
            $.each(tl3DCoreObj.objects, function (_index, _obj) {
                if (_obj.name.indexOf("wall_bigScreen_") >= 0) {
                    _this.bigScreens.push(_obj);
                }
            });
        }
        return _this.bigScreens;
    }
    this.showBigScreenCtrls = function () {
        this.getScreens();
        $("#toolbar").hide();
        layer.open({
            title: "大屏定位-設置",
            type: 1,
            offset: 'lt' //具體配置參考:offset參數項
      , content: '<div style="padding: 10px;width:300px;min-height:200px;background-color:rgba(255,255,255,0.4);">\
	        <table class="table">\
	        <tr><td style="text-align:right;width:60px;">序號</td><td style="text-align:center;width:120px;">位置</td><td style="width:60px;">定位</td><td style="width:60px;">設置</td></tr>\
	        <tr><td style="text-align:center;width:80px;">1</td><td style="text-align:center;">一號外牆大屏</td><td><button onclick="tl3dCoreBusiness.changeCameraPosition({ x:1013, y:335, z: -456 },{ x: 328, y: -37, z: -532 },1000)">定位</button></td><td><button onclick="tl3dCoreBusiness.setSreenParams(\'wall_bigScreen_1\')">設置</button></td></tr>\
	        <tr><td style="text-align:center;width:80px;">2</td><td style="text-align:center;">二號室內大屏</td><td><button onclick="tl3dCoreBusiness.changeCameraPosition({ x: -310, y: 187, z: 452},{ x: -325, y: 147, z: 870 },1000)">定位</button></td><td><button onclick="tl3dCoreBusiness.setSreenParams(\'wall_bigScreen_2\')">設置</button></td></tr>\
	        </table></div>'
      , btn: false
      , btnAlign: 'c' //按鈕居中
      , shade: 0 //不顯示遮罩
      , end: function () {
          $("#toolbar").show();
         }
        });
    }
    this.setSreenParams = function (sreenName) {
        var _screenobj = null;
        var _this = this;
       // layer.closeAll();
        for (var i = 0; i < _this.bigScreens.length; i++) {
            if (_this.bigScreens[i].name == sreenName) {
                _screenobj = _this.bigScreens[i];
            }
        }
        var screenType = "1";//1圖片 2視頻
        var screenUrl = "../../img/3dImg/tv.jpg";
        if (_screenobj && _screenobj.screenType) {
            screenType = _screenobj.screenType
        } 
        if (_screenobj && _screenobj.screenUrl) {
            screenUrl = _screenobj.screenUrl
        }
        var layerindex=layer.open({
            title: "大屏定位-設置",
            type: 1,
            offset: 'lt' //具體配置參考:offset參數項
      , content: '<div style="padding: 10px;width:300px;min-height:100px;background-color:rgba(255,255,255,1);">\
	        <table class="table">\
	        <tr><td style="text-align:right;width:60px;">類型:</td><td>' + '<label><input name="screenTypeAndUrl" type="radio" ' + (screenType == "1" ? " checked='checked' " : "") + ' value="1" />圖片 </label>\
<label><input name="screenTypeAndUrl" type="radio" ' + (screenType == "2" ? "  checked='checked' " : "") + ' value="2" />視頻 </label> </td></tr>\
	        <tr><td style="text-align:right;width:60px;">url:</td><td><input onclick="var t = $(\'#screenUrl\').val();$(\'#screenUrl\').val(\'\').focus().val(t)" id="screenUrl" value="' + screenUrl + '" /></td></tr>\
	        </table></div>'
      , btn: ["確定","取消"]
      , btnAlign: 'c' //按鈕居中
      , shade: 0 //不顯示遮罩
      , yes: function () {
          var setScreenType = $("input:radio[name='screenTypeAndUrl']:checked").val();
          var setScreenUrl = $("#screenUrl").val();
          if (setScreenType == "1") {
              tl3DCoreObj.commonFunc.setObjSkinImg(_screenobj, 0, setScreenUrl);
          } else {
              tl3DCoreObj.commonFunc.setObjSkinVideo(_screenobj, 0, setScreenUrl, sreenName);
          }
          _screenobj.screenType = setScreenType;
          _screenobj.screenUrl = setScreenUrl;
          layer.close(layerindex);
      }
      , end: function () {
        
      }
        });
        $("#canvas-frame canvas").dblclick();
        var t = $('#screenUrl').val();$('#screenUrl').val("").focus().val(t);
    }

  

十一、對場景內通風系統進行3D操作 並且有過度動畫

 

    /*風控部分***********************************************************************/
    //風控按鈕
    this.showWindsCtrl = function () {
        var _this = this;
        $("#toolbar").hide();
        _this.changeCameraPosition({ x: 430, y: 1449, z: -2557 }, { x: 8, y: 234, z: 814 }, 1000);
        if (_this.windsISOPEN) {
            _this.openWinds();
            layer.confirm('當前風控開啟狀態,是否關閉風控按鈕?', {
                offset: 'lt' ,
                btn: ['關閉', '取消'] //按鈕
            }, function () {
                _this.closeWinds();
                layer.msg("已關閉");
                _this.windsISOPEN = false;
                $("#toolbar").show();
                layer.closeAll();
            }, function () {
                $("#toolbar").show();
                _this.hiddenIngWinds();
                layer.closeAll();
            });
        } else {
            layer.confirm('當前風控關閉狀態,是否開啟風控按鈕?', {
                offset: 'lt',
                btn: ['開啟', '取消'] //按鈕
            }, function () {
                _this.openWinds();
                layer.msg("已開啟")
                layer.closeAll();
                _this.windsISOPEN = true;
                setTimeout(function () {
                    _this.hiddenIngWinds();
                    $("#toolbar").show();
                }, 2000);
            }, function () {
                $("#toolbar").show();
                layer.closeAll();
            });
        }
    }
    this.openWinds = function () {
        var _this=this;
        var _winds = [
            { "name": "win_1_1","position": {"x": 0,"y": -100,"z": 640},"rotation": {x:0,y:0,z:0},},
            { "name": "win_1_2", "position": { "x": 0, "y": -100, "z":110 }, "rotation": { x: 0, y: 0, z: 0 }, },
            { "name": "win_1_3", "position": { "x": 0, "y": -100, "z": -400 }, "rotation": { x: 0, y: 0, z: 0 }, },
            { "name": "win_1_4", "position": { "x": -240, "y": -100, "z": -400 }, "rotation": { x: -3.141592653589793, y: 0, z: -3.141592653589793 }, },
            { "name": "win_1_5", "position": { "x": -240, "y": -100, "z": 110 }, "rotation": { x: -3.141592653589793, y: 0, z: -3.141592653589793 }, },
            { "name": "win_1_6", "position": { "x": -240, "y": -100, "z": 640 }, "rotation": { x: -3.141592653589793, y: 0, z: -3.141592653589793 }, },
        ];
        if (_this.winds.length <= 0) {
        $.each(_winds, function (_index,_obj) {
            _this.createWind(_obj.position,_obj.name,_obj.rotation);
        })
        }
        $.each(_this.winds, function (_index, _obj) {
            _obj.visible = true;
        });
    }
    this.closeWinds = function () {
        var _this = this;
        if (_this.winds.length > 0) {
            $.each(_this.winds, function (_index, _obj) {
                _obj.visible = false;
            });
        }
    }

  

 十二、對場景內空調 中央空調進行3D操作 並且有過度動畫

 

 //空調
    this.airConditionerCtls = function () {
        var _this = this;
        $("#toolbar").hide();
        //獲取到文件位置信息
        //邊緣彈出
        layer.open({
            title: "空調控制",
            type: 1,
            offset: 'lt' //具體配置參考:offset參數項
            , content: '<div style="padding: 10px;width:300px;min-height:120px;background-color:rgba(255,255,255,0.4);">\
	<table class="table">\
	<tr><td style="text-align:center;width:80px;">空調</td><td style="text-align:center;width:200px;">操作</td></tr>\
	<tr><td style="text-align:left;width:80px;">立櫃空調</td><td style="text-align:center;">\
        <button id="LGAC_btn1" onclick="tl3dCoreBusiness.changeCameraPosition({x: -98, y: 356, z: 407},{x: -75, y: 121, z: 762},1000)">定位</button>\
        <button id="LGAC_btn2" onclick="tl3dCoreBusiness.openLSAirconditioner(\'aircondition_57\')">開啟</button>\
        <button id="LGAC_btn3" onclick="tl3dCoreBusiness.closeLSAirconditioner(\'aircondition_57\')">關閉</button>\
    </td></tr>\
	<tr><td style="text-align:left;width:80px;">中央空調</td><td style="text-align:center;">\
        <button onclick="tl3dCoreBusiness.showCenterAirConditioner()" id="centerAC_btn1">定位</button>\
        <button onclick="tl3dCoreBusiness.openCenterAirConditioner()" id="centerAC_btn2">開啟</button>\
        <button onclick="tl3dCoreBusiness.closeCenterAirConditioner()" id="centerAC_btn3">關閉</button>\
    </td></tr>\
	</table></div>'
            , btn: false
            , btnAlign: 'c' //按鈕居中
            , shade: 0 //不顯示遮罩
            , end: function () {
                $("#toolbar").show();
                _this.hideCenterAirConditioner();
                _this.hideLSAirconditioner();
            }
        });

    }
    this.LGAirConditions = [];
    //開啟立式空調
    this.openLSAirconditioner = function (airConName) {
        var tempAirWind=null;
        var _this = this;
        var aircondition = tl3DCoreObj.commonFunc.findObject(airConName);
        if (this.LGAirConditions && this.LGAirConditions.length > 0) {
            $.each(this.LGAirConditions, function (_index, _obj) {
                if (_obj.name == airConName + "_wind_1") {
                    tempAirWind = _obj;
                }
            });
        }
        //{x: -82.581, y: 92.342, z: 743.966}
        if (tempAirWind == null) {
        var lgairwin = {
            "show": true, "uuid": "",
            "name":airConName+"_wind_1",// "lgAirC_wind_1",
            "objType": "flowTube",
            "points": [{ "x": 0, "y": 200, "z": 0 }, { "x": 0, "y": 150, "z": -60 }, { "x": 0, "y": 150, "z": -200 }],
            "position": { "x": aircondition.position.x, "y": aircondition.position.y - 122, "z": aircondition.position.z - 13 },
            "scale": { "x": 1, "y": 1, "z": 1 },
            "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }],
            "style": { "skinColor": 16772846, "imgurl": "../../img/3dImg/right2wind.png", "opacity": 1, "canvasSkin": { "cwidth": 1024, "cheight": 128, "cwNub": 16, "chNub": 8, "cMarginW": 0.2, "cMarginH": 0.2, "speed": 8, "fps": 40, "direction": "w", "forward": "f", "side": 1, "run": true, "bgcolor": "rgba(255, 227, 248, 0.02)" } }, "segments": 64, "radialSegments": 2, "closed": false, "radius": 20, "showSortNub": 196, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null
        }
        var temObj1 = tl3DCoreObj.createObjByJson(lgairwin);
        tl3DCoreObj.addObject(temObj1);
        _this.LGAirConditions.push(temObj1);
        tempAirWind = temObj1;
        }
        if (tempAirWind) {
            tempAirWind.visible = true;
        }
    }
    //關閉立式空調
    this.closeLSAirconditioner = function (airConName,isCloseAll) {
        var _this = this;
        if (this.LGAirConditions && this.LGAirConditions.length > 0) {
            $.each(this.LGAirConditions, function (_index, _obj) {
                if (_obj.name == airConName + "_wind_1") {
                    _obj.visible = false;
                }
                if (isCloseAll) {
                    _obj.visible = false;
                }
            });
        }
    }
    //隱藏立式空調風口動畫
    this.hideLSAirconditioner = function () {
        var _this = this;
        if (this.LGAirConditions && this.LGAirConditions.length > 0) {
            $.each(this.LGAirConditions, function (_index, _obj) {
                    _obj.visible = false;
            });
        }
    }
    //開啟中央空調
    this.centerAirConditionerDevs = [];
    //顯示中央空調設備
    this.showCenterAirConditioner = function () {
        var _this = this;
        if (_this.centerAirConditionerDevs.length <= 0) {
        var centerAirCondition = [
            { "show": true, "uuid": "", "name": "center_air_conditioning_2_2", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": -80.785, "y": 370.664, "z": -456.654, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_2_3", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": -80.785, "y": 370.664, "z": 518.684, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_2_1", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": -80.785, "y": 370.664, "z": 48.478, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_1_1", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": -605.659, "y": 370.664, "z": 48.478, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_1_2", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": -605.659, "y": 370.664, "z": -467.654, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_1_3", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": -605.659, "y": 370.664, "z": 553.501, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_3_1", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": 442.379, "y": 370.664, "z": 48.478, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_3_2", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": 442.379, "y": 370.664, "z": -461.396, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_3_3", "objType": "cube2", "length": 78, "width": 78, "height": 40, "x": 442.379, "y": 370.664, "z": 526.744, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 16777215, "side": 1, "opacity": 0 }, "skin_down": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 1, "opacity": 0.3 }, "skin_right": { "skinColor": 16777215, "side": 1, "opacity": 0.3 } } }, "showSortNub": 7, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "cacWind_1", "objType": "flowTube", "points": [{ "x": 0, "y": 0, "z": 1500 }, { "x": 0, "y": 0, "z": 0 }], "position": { "x": -70.779, "y": 419.052, "z": -751.968 }, "scale": { "x": 1, "y": 1, "z": 1 }, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "style": { "skinColor": 16772846, "imgurl": "../../img/3dImg/right2wind.png", "opacity": 1, "canvasSkin": { "cwidth": 1024, "cheight": 128, "cwNub": 32, "chNub": 8, "cMarginW": 0.2, "cMarginH": 0.2, "speed": 3, "fps": 40, "direction": "w", "forward": "f", "side": 2, "run": true, "bgcolor": "rgba(4, 4, 4, 0.098)" } }, "segments": 4, "radialSegments": 4, "closed": false, "radius": 40, "showSortNub": 16, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "cacWind_3", "objType": "flowTube", "points": [{ "x": 0, "y": 0, "z": 1500 }, { "x": 0, "y": 0, "z": 0 }], "position": { "x": 443.302, "y": 419.052, "z": -751.968 }, "scale": { "x": 1, "y": 1, "z": 1 }, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "style": { "skinColor": 16772846, "imgurl": "../../img/3dImg/right2wind.png", "opacity": 1, "canvasSkin": { "cwidth": 1024, "cheight": 128, "cwNub": 32, "chNub": 8, "cMarginW": 0.2, "cMarginH": 0.2, "speed": 3, "fps": 40, "direction": "w", "forward": "f", "side": 2, "run": true, "bgcolor": "rgba(4, 4, 4, 0.098)" } }, "segments": 4, "radialSegments": 4, "closed": false, "radius": 40, "showSortNub": 16, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "cacWind_2", "objType": "flowTube", "points": [{ "x": 0, "y": 0, "z": 1500 }, { "x": 0, "y": 0, "z": 0 }], "position": { "x": -604.569, "y": 419.052, "z": -751.968 }, "scale": { "x": 1, "y": 1, "z": 1 }, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "style": { "skinColor": 16772846, "imgurl": "../../img/3dImg/right2wind.png", "opacity": 1, "canvasSkin": { "cwidth": 1024, "cheight": 128, "cwNub": 32, "chNub": 8, "cMarginW": 0.2, "cMarginH": 0.2, "speed": 3, "fps": 40, "direction": "w", "forward": "f", "side": 2, "run": true, "bgcolor": "rgba(4, 4, 4, 0.098)" } }, "segments": 4, "radialSegments": 4, "closed": false, "radius": 40, "showSortNub": 16, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_1", "objType": "cube2", "length": 80, "width": 1500, "height": 80, "x": 444.17, "y": 426.022, "z": 0, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 7895160, "side": 0, "opacity": 0.4 }, "skin_down": { "skinColor": 7895160, "side": 0, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 0, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 0, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 0, "opacity": 0 }, "skin_right": { "skinColor": 16777215, "side": 0, "opacity": 0 } } }, "showSortNub": 196, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_2", "objType": "cube2", "length": 80, "width": 1500, "height": 80, "x": -76.111, "y": 419.507, "z": 0, "style": { "skinColor": 16777215, "skin": { "skin_up": { "skinColor": 7895160, "side": 0, "opacity": 0.4 }, "skin_down": { "skinColor": 7895160, "side": 0, "opacity": 0.3 }, "skin_fore": { "skinColor": 16777215, "side": 0, "opacity": 0.3 }, "skin_behind": { "skinColor": 16777215, "side": 0, "opacity": 0.3 }, "skin_left": { "skinColor": 16777215, "side": 0, "opacity": 0 }, "skin_right": { "skinColor": 16777215, "side": 0, "opacity": 0 } } }, "showSortNub": 196, "customType1": "", "customType2": "", "animation": null, "dbclickEvents": null, "rotation": [{ "direction": "x", "degree": 0 }, { "direction": "y", "degree": 0 }, { "direction": "z", "degree": 0 }], "thick": null, "scale": { "x": 1, "y": 1, "z": 1 }, "BindDevId": null, "BindDevName": null, "devInfo": null, "BindMeteId": null, "BindMeteName": null }, { "show": true, "uuid": "", "name": "center_air_conditioning_3", "objType": "cube2", "length": 80, "width": 1500, "height": 80

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.1游標的概念 游標(Cursor)它使用戶可逐行訪問由SQL Server返回的結果集。使用游標(cursor)的一個主要的原因就是把集合操作轉換成單個記錄處理方式。用SQL語言從資料庫中檢索數據後,結果放在記憶體的一塊區域中,且結果往往是一個含有多個記錄的集合。游標機制允許用戶在SQL serv ...
  • 當年忠貞為國酬,何曾怕斷頭? 如今天下紅遍,江山靠誰守? 業未就,身軀倦,鬢已秋。 你我之輩,忍將夙願,付與東流? 資料庫結構如下: 倉庫(倉庫號, 城市, 面積) 訂購單(職工號, 供應商號, 訂購單號, 訂購日期) 供應商(供應商號, 供應商名, 地址) 職工(倉庫號, 職工號, 工資) 具體數 ...
  • 在設置標題欄時常常遇到修改標題、修改返回按鈕標題、增加一些按鈕等需求,實現過程中一般會把UINavigationController、UINavigationBar、navigationItem及self.navigationController.navigationItem之間概念會混淆。 概念描 ...
  • 概述 在我們在進行自定義View的相關開發中,當我們更改了當前View的狀態,比如大小,位置等,我們需要重新刷新整個界面,保證顯示最新的狀態。在Android中,讓當前的視圖重繪有兩種方式,invalidate和requestLayout,今天我們看看這兩種方式的原理以及區別。 分析 invalid ...
  • 網上現在MVC、MVP以及MVVM的講解一搜一籮筐,根據了網上大多數的文章,根據我的思考習慣進行了總結。 MVC介紹及分析: 各層的職責如下所示: Models: 數據層,負責數據的處理和獲取的數據介面層。 Views: 展示層(GUI),對於 iOS 來說所有以 UI 開頭的類基本都屬於這層,界面 ...
  • ExternalAccessory 使用文檔 "項目下載地址" 前言 公司希望通過串口通信的方式實現蘋果手機與公司產品進行通信,通過Lighting介面,也就是蘋果的數據線。蘋果的API ExternalAccessory就是來解決這個問題的。
  • 先貼一下工具類的代碼!可直接複製粘貼 現在一個圓形圖片已經完成了90%,接下來就是佈局文件,在這裡我只寫了一個簡單的佈局 最後需要在Activity中載入!找到對應的佈局即可 紫色的標記是需要聲明圖片為自己定義的RoundImageView.java文件的位置 紅色標註的需要聲明對應的RoundIm ...
  • Demo鏈接 預設是豎屏掃描,但是當我們在清單文件中配置橫屏顯示的時候: 這時候掃描,會發現掃描效果變形,方向不對。 可按以下步驟進行修改: 1、修改CameraConfigurationManager.java中的setDesiredCameraParameters函數, camera.setDi ...
一周排行
    -Advertisement-
    Play Games
  • 示例項目結構 在 Visual Studio 中創建一個 WinForms 應用程式後,項目結構如下所示: MyWinFormsApp/ │ ├───Properties/ │ └───Settings.settings │ ├───bin/ │ ├───Debug/ │ └───Release/ ...
  • [STAThread] 特性用於需要與 COM 組件交互的應用程式,尤其是依賴單線程模型(如 Windows Forms 應用程式)的組件。在 STA 模式下,線程擁有自己的消息迴圈,這對於處理用戶界面和某些 COM 組件是必要的。 [STAThread] static void Main(stri ...
  • 在WinForm中使用全局異常捕獲處理 在WinForm應用程式中,全局異常捕獲是確保程式穩定性的關鍵。通過在Program類的Main方法中設置全局異常處理,可以有效地捕獲並處理未預見的異常,從而避免程式崩潰。 註冊全局異常事件 [STAThread] static void Main() { / ...
  • 前言 給大家推薦一款開源的 Winform 控制項庫,可以幫助我們開發更加美觀、漂亮的 WinForm 界面。 項目介紹 SunnyUI.NET 是一個基於 .NET Framework 4.0+、.NET 6、.NET 7 和 .NET 8 的 WinForm 開源控制項庫,同時也提供了工具類庫、擴展 ...
  • 說明 該文章是屬於OverallAuth2.0系列文章,每周更新一篇該系列文章(從0到1完成系統開發)。 該系統文章,我會儘量說的非常詳細,做到不管新手、老手都能看懂。 說明:OverallAuth2.0 是一個簡單、易懂、功能強大的許可權+可視化流程管理系統。 有興趣的朋友,請關註我吧(*^▽^*) ...
  • 一、下載安裝 1.下載git 必須先下載並安裝git,再TortoiseGit下載安裝 git安裝參考教程:https://blog.csdn.net/mukes/article/details/115693833 2.TortoiseGit下載與安裝 TortoiseGit,Git客戶端,32/6 ...
  • 前言 在項目開發過程中,理解數據結構和演算法如同掌握蓋房子的秘訣。演算法不僅能幫助我們編寫高效、優質的代碼,還能解決項目中遇到的各種難題。 給大家推薦一個支持C#的開源免費、新手友好的數據結構與演算法入門教程:Hello演算法。 項目介紹 《Hello Algo》是一本開源免費、新手友好的數據結構與演算法入門 ...
  • 1.生成單個Proto.bat內容 @rem Copyright 2016, Google Inc. @rem All rights reserved. @rem @rem Redistribution and use in source and binary forms, with or with ...
  • 一:背景 1. 講故事 前段時間有位朋友找到我,說他的窗體程式在客戶這邊出現了卡死,讓我幫忙看下怎麼回事?dump也生成了,既然有dump了那就上 windbg 分析吧。 二:WinDbg 分析 1. 為什麼會卡死 窗體程式的卡死,入口門檻很低,後續往下分析就不一定了,不管怎麼說先用 !clrsta ...
  • 前言 人工智慧時代,人臉識別技術已成為安全驗證、身份識別和用戶交互的關鍵工具。 給大家推薦一款.NET 開源提供了強大的人臉識別 API,工具不僅易於集成,還具備高效處理能力。 本文將介紹一款如何利用這些API,為我們的項目添加智能識別的亮點。 項目介紹 GitHub 上擁有 1.2k 星標的 C# ...