时间偏移按钮
This commit is contained in:
parent
9a9d533d6e
commit
0c34c90a74
|
@ -119,4 +119,16 @@ html.base-theme {
|
||||||
.el-button + .el-button {
|
.el-button + .el-button {
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.el-button-group > .el-button + .el-button{
|
||||||
|
margin-left: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-button +.el-button-group {
|
||||||
|
margin-left: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-button-group +.el-button-group {
|
||||||
|
margin-left: 12px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,11 +85,11 @@ async function doPublish() {
|
||||||
const list = jsonModule
|
const list = jsonModule
|
||||||
publish.index = 0
|
publish.index = 0
|
||||||
function next() {
|
function next() {
|
||||||
if (!publish.pause) {
|
if (!publish.pause || (publish.pause && publish.timeTicking < 0)) {
|
||||||
publish.index += publish.timeTicking
|
publish.index += publish.timeTicking
|
||||||
if (publish.index >= list.length) publish.index = 0
|
|
||||||
else if (publish.index < 0) publish.index = list.length - 1
|
|
||||||
}
|
}
|
||||||
|
if (publish.index >= list.length) publish.index = 0
|
||||||
|
else if (publish.index < 0) publish.index = list.length - 1
|
||||||
return list[publish.index]
|
return list[publish.index]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -115,13 +115,13 @@ async function doPublish() {
|
||||||
|
|
||||||
let item = next()
|
let item = next()
|
||||||
// 判断下有没有内容,防止空指针
|
// 判断下有没有内容,防止空指针
|
||||||
if (item[0]?.content[0]) {
|
if (item[0]?.content?.[0]) {
|
||||||
// 设置时间
|
// 设置时间
|
||||||
publish.lastRawTimestamp = item[0].content[0].timeStamp
|
publish.lastRawTimestamp = item[0].content[0].timeStamp
|
||||||
// 处理暂停等操作对时间的影响
|
// 处理暂停等操作对时间的影响
|
||||||
if (!publish.rawTime) {
|
if (!publish.rawTime) {
|
||||||
if (publish.pause) publish.timeOffset += 100
|
if (publish.timeTicking < 0) publish.timeOffset += 200
|
||||||
else if (publish.timeTicking < 0) publish.timeOffset += 200
|
else if (publish.pause) publish.timeOffset += 100
|
||||||
const offset = publish.timeOffset
|
const offset = publish.timeOffset
|
||||||
publish.lastTimestamp = publish.lastRawTimestamp + publish.timeOffset
|
publish.lastTimestamp = publish.lastRawTimestamp + publish.timeOffset
|
||||||
// 由于时间发生变化,对所有车辆的时间进行替换
|
// 由于时间发生变化,对所有车辆的时间进行替换
|
||||||
|
@ -154,6 +154,12 @@ function reverse() {
|
||||||
publish.timeTicking = -1
|
publish.timeTicking = -1
|
||||||
publish.rawTime = false
|
publish.rawTime = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function move(tick: number) {
|
||||||
|
publish.rawTime = false
|
||||||
|
publish.index += tick
|
||||||
|
publish.timeOffset -= tick * 100
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -202,7 +208,7 @@ function reverse() {
|
||||||
{{ (publish.lastTime - publish.startTime) / 1000 }} 秒
|
{{ (publish.lastTime - publish.startTime) / 1000 }} 秒
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item label="数据运行时间">
|
<el-descriptions-item label="数据运行时间">
|
||||||
{{ (publish.lastTimestamp - publish.startTimestamp) / 1000 }} 秒
|
{{ (publish.lastRawTimestamp - publish.startTimestamp) / 1000 }} 秒
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item label="原始时间">
|
<el-descriptions-item label="原始时间">
|
||||||
<template v-if="publish.rawTime">正常</template>
|
<template v-if="publish.rawTime">正常</template>
|
||||||
|
@ -255,6 +261,14 @@ function reverse() {
|
||||||
<el-button v-if="!publish.pause" type="warning" @click="pause">暂停</el-button>
|
<el-button v-if="!publish.pause" type="warning" @click="pause">暂停</el-button>
|
||||||
<el-button v-else type="success" @click="publish.pause = false">继续</el-button>
|
<el-button v-else type="success" @click="publish.pause = false">继续</el-button>
|
||||||
<el-button type="danger" @mousedown="reverse" @mouseup="publish.timeTicking = 1">倒带</el-button>
|
<el-button type="danger" @mousedown="reverse" @mouseup="publish.timeTicking = 1">倒带</el-button>
|
||||||
|
<el-button-group type="info">
|
||||||
|
<el-button @click="move(-100)">后退10秒</el-button>
|
||||||
|
<el-button @click="move(-10)">后退1秒</el-button>
|
||||||
|
<el-button @click="move(-1)">后退1帧</el-button>
|
||||||
|
<el-button @click="move(1)">前进1帧</el-button>
|
||||||
|
<el-button @click="move(10)">前进1秒</el-button>
|
||||||
|
<el-button @click="move(100)">前进10秒</el-button>
|
||||||
|
</el-button-group>
|
||||||
</template>
|
</template>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user