123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465 |
- <template>
- <header>
- <div v-if="project">项目 - {{ project.name }}</div>
- </header>
- <article>
- <main>
- <div class="split" v-if="source">
- <iframe ref="sourceFrame" :src="`smart-laser.html?m=${source.num}&dev`" frameborder="0" @load="onLoadSource"></iframe>
- <div class="tools">
- <div class="item-mode">
- <div class="iconfont icon-show_roaming_normal" :class="{ active: mode == 0 }" @click="onModeChange(0)"></div>
- <div class="iconfont icon-show_more" :class="{ active: mode == 1 }" @click="onModeChange(1)"></div>
- </div>
- <div class="item-date" v-if="target">
- <span class="prev" @click="onPrevDate('source')"><i class="iconfont icon-show_back"></i></span>
- <span @click="onPickDate('source')">{{ source.date }}</span>
- <span class="next" @click="onNextDate('source')"><i class="iconfont icon-show_back"></i></span>
- </div>
- </div>
- </div>
- <div class="split" v-if="target">
- <iframe ref="targetFrame" :src="`smart-bim.html?m=${target.num}`" frameborder="0" @load="onLoadTarget"></iframe>
- </div>
- <div class="tools" v-if="source">
- <div class="item-date" v-if="!target">
- <span class="prev" @click="onPrevDate()"><i class="iconfont icon-show_back"></i></span>
- <span @click="onPickDate('all')">{{ source.date }}</span>
- <span class="next" @click="onNextDate()"><i class="iconfont icon-show_back"></i></span>
- </div>
- <div class="item-split" @click="onCompare">
- <i class="iconfont icon-size-o"></i>
- </div>
- </div>
- <div class="popup" v-if="source && datepickName">
- <div>
- <span @click="onPickClose"><i class="iconfont icon-close"></i></span>
- <datepicker :inline="true" :value="datepickValue" :highlighted="highlighted" @selected="onSelected"></datepicker>
- </div>
- </div>
- </main>
- </article>
- </template>
- <script setup>
- import Datepicker from 'vuejs3-datepicker'
- import { ref, onActivated, onDeactivated, reactive, onMounted, computed } from 'vue'
- import ConvertViews from '@/utils/ConvertViews'
-
- let sourceApp = null, sourceSceneName
- let targetApp = null
- const views = new ConvertViews()
- const datepickName = ref(null)
- const datepickValue = ref(null)
- const sourceFrame = ref(null)
- const targetFrame = ref(null)
- const mode = ref(0)
- const source = ref(null)
- const target = ref(null)
- const project = ref(null)
- const projects = reactive([{ pid: '001', name: '五楼办公区', num: 'SS-t-bFMqa1dqUU', date: '2022-09-01' }])
- const scenes = reactive([
- { pid: '001', num: 'SS-t-bFMqa1dqUU', date: '2022-09-01' },
- { pid: '001', num: 'SS-t-xp9BDKfzhR', date: '2022-09-03' },
- { pid: '001', num: 'SS-t-lc5OWhZPaC', date: '2022-09-05' },
- { pid: '001', num: 'SS-t-Y6gLRFwxE5', date: '2022-09-10' },
- ])
- const highlighted = computed(() => {
- let dates = []
- if (datepickName.value) {
- dates = scenes.map(item => item.date.toDate())
- }
- return {
- dates: dates,
- }
- })
- let getView = ()=>{
- let camera = sourceApp.viewer.mainViewport.camera
- return {
- position : camera.position,
- quaternion : camera.quaternion,
- fov : camera.fov
- }
- }
- const initConvertView = () => {
- if(sourceApp && targetApp/* && this.sourceSceneName != sourceApp.Potree.settings.number*/){//存在且和当前不同
- views.init(sourceApp, targetApp , sourceApp.viewer.inputHandler.domElement, 'laser', getView(),
- sourceApp.viewer.images360.panos.slice(0,2).map(e=>e.position))
- }
- }
- const onLoadSource = () => {
- sourceApp = sourceFrame.value.contentWindow
- sourceApp.loaded.then(sdk => {
- if (mode.value != 0) {
- sdk.scene.changeMode(mode.value)
- }
-
- window.viewer1 = sourceApp.viewer
- initConvertView()
- sourceSceneName = sourceApp.Potree.settings.number
- sourceApp.viewer.addEventListener('camera_changed', e => {
- targetApp && views.receive( getView() )
- })
-
- })
- }
- const onLoadTarget = () => {
-
- targetApp = targetFrame.value.contentWindow
- targetApp.loader.then(viewer=>{
- //console.log(viewer.getViewer().camera)
- window.viewer2 = targetApp.viewer
- initConvertView()
- })
-
-
-
-
- // targetApp.Scene.on('loaded', () => {
- // targetApp.Camera.setCompassDisplay(false)
- // targetApp.Connect.sync.start()
- // targetApp.VRScreenSYNC = false
- // console.log('targetApp.Scene loaded')
- // views.bind({ targetApp })
- // sourceApp && sourceApp.Connect.sync.sync()
- // })
- // targetApp.Connect.sync.on('data', data => {
- // if (sourceApp) {
- // views.applyDiff(sourceApp, data)
- // sourceApp.Connect.sync.receive(data)
- // }
- // })
- }
- const onModeChange = targetMode => {
- if (sourceApp) {
- sourceApp.loaded.then(sdk => sdk.scene.changeMode(targetMode))
- mode.value = targetMode
- }
- }
- const onPickDate = name => {
- if (name == 'target') {
- datepickValue.value = target.value.date.toDate()
- } else {
- datepickValue.value = source.value.date.toDate()
- }
- datepickName.value = name
- }
- const onPickClose = () => {
- datepickName.value = null
- datepickValue.value = null
- }
- const onSelected = payload => {
- if (!payload) {
- return
- }
- var date = payload.format('YYYY-mm-dd')
- var dates = highlighted.value.dates.map(item => item.format('YYYY-mm-dd'))
- if (dates.indexOf(date) != -1) {
- var find = scenes.find(c => c.date == date)
- if (find) {
- if (datepickName.value) {
- if (datepickName.value == 'all' || datepickName.value == 'source') {
- if (find.num != source.value.num) {
- source.value = find
- }
- } else if (datepickName.value == 'target') {
- if (find.num != target.value.num) {
- target.value = find
- }
- }
- } else {
- if (find.num != source.value.num) {
- source.value = find
- }
- }
- }
- }
- datepickName.value = null
- }
- const onCompare = () => {
- if (target.value) {
- target.value = null
- targetApp = null
- views.clear()
- return
- }
- let index = scenes.findIndex(item => item.num == source.value.num)
- if (index == -1) {
- return
- }
- if (++index > scenes.length - 1) {
- index = 0
- }
- target.value = scenes[index]
- }
- const onPrevDate = name => {
- let scene = null
- if (!name || name == 'source') {
- scene = source
- } else {
- scene = target
- }
- let index = scenes.findIndex(item => item.num == scene.value.num)
- if (index == -1) {
- return
- }
- if (--index == -1) {
- index = scenes.length - 1
- }
- // if (name) {
- // if (name == 'source') {
- // if (scenes[index].num == target.value.num) {
- // index--
- // }
- // } else {
- // if (scenes[index].num == source.value.num) {
- // index--
- // }
- // }
- // }
- // if (index == -1) {
- // index = scenes.length - 1
- // }
- scene.value = scenes[index]
- }
- const onNextDate = name => {
- let scene = null
- if (!name || name == 'source') {
- scene = source
- } else {
- scene = target
- }
- let index = scenes.findIndex(item => item.num == scene.value.num)
- if (index == -1) {
- return
- }
- if (++index > scenes.length - 1) {
- index = 0
- }
- // if (name) {
- // if (name == 'source') {
- // if (scenes[index].num == target.value.num) {
- // index++
- // }
- // } else {
- // if (scenes[index].num == source.value.num) {
- // index++
- // }
- // }
- // }
- // if (index > scenes.length - 1) {
- // index = 0
- // }
- scene.value = scenes[index]
- }
- onMounted(() => {
- project.value = projects[0]
- if (project.value) {
- source.value = scenes[2] //scenes.find(item => item.num == project.value.num)
- }
- })
- </script>
- <style lang="scss" scoped>
- header {
- height: 60px;
- background-color: rgba(0, 0, 0, 0.8);
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 18px;
- }
- article {
- display: flex;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- aside {
- width: 160px;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.8);
- h4 {
- font-size: 16px;
- text-align: center;
- }
- ul {
- margin-top: 20px;
- }
- li {
- margin: 0;
- padding: 0;
- font-size: 16px;
- margin-left: 20px;
- cursor: pointer;
- &:hover,
- &.active {
- color: #00c8af;
- }
- }
- }
- main {
- flex: 1;
- width: 100%;
- height: 100%;
- position: relative;
- display: flex;
- &.full {
- .split {
- width: 50%;
- }
- }
- iframe {
- position: absolute;
- left: 0;
- top: 0;
- z-index: 1000;
- width: 100%;
- height: 100%;
- }
- .split {
- width: 100%;
- height: 100%;
- overflow: hidden;
- position: relative;
- .tools {
- width: 100%;
- padding-left: 20px;
- padding-right: 20px;
- justify-content: space-between;
- left: 0;
- transform: none;
- .item-mode {
- display: flex;
- align-items: center;
- justify-content: space-around;
- height: 34px;
- border-radius: 17px;
- background-color: rgba(0, 0, 0, 0.3);
- > div {
- position: relative;
- margin-left: 20px;
- margin-right: 20px;
- cursor: pointer;
- &.active {
- color: #00c8af;
- }
- }
- i {
- font-size: 18px;
- }
- }
- }
- }
- .tools {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: 10px;
- z-index: 1000;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #fff;
- i {
- font-size: 18px;
- }
- .item-date {
- position: relative;
- height: 34px;
- border-radius: 17px;
- background-color: rgba(0, 0, 0, 0.3);
- padding: 0 30px;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: 10px;
- margin-right: 10px;
- span {
- cursor: pointer;
- }
- .prev,
- .next {
- position: absolute;
- left: 5px;
- }
- .next {
- left: auto;
- right: 5px;
- transform: rotate(180deg);
- }
- }
- .item-split {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 34px;
- height: 34px;
- border-radius: 50%;
- background-color: rgba(0, 0, 0, 0.3);
- cursor: pointer;
- }
- }
- .popup {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 1000;
- display: flex;
- align-items: center;
- justify-content: center;
- > div {
- position: relative;
- color: #444;
- span {
- position: absolute;
- right: -20px;
- top: -20px;
- cursor: pointer;
- background-color: rgba(0, 0, 0, 0.3);
- width: 24px;
- height: 24px;
- border-radius: 50%;
- z-index: 1000;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #fff;
- }
- i {
- font-size: 12px;
- }
- }
- }
- }
- </style>
- <style lang="scss">
- #app {
- background-color: rgba(0, 0, 0, 0.8);
- display: flex;
- flex-direction: column;
- }
- .vuejs3-datepicker__calendar-topbar {
- display: none !important;
- }
- .highlighted {
- background: #4ebde1 !important;
- }
- .selected {
- background: #00c8af !important;
- }
- </style>
|