887 lines
25 KiB
Vue

<template>
<div class="row">
<div class="col-1"></div>
<div class="col-8 q-pt-md">
<div
ref="div"
style="width: 100%; background-color: aquamarine; height: 100%"
>
<div style="position: absolute">
<vue3ResizeDrag
:isActive="isactivearray[0]"
v-if="isshowarray[0]"
:w="30"
:h="20"
:x="point_postion[0].x"
:y="point_postion[0].y"
@mousedown="isactivearray[0] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 0)"
><span>v1</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[1]"
v-if="isshowarray[1]"
:w="30"
:h="20"
:x="point_postion[1].x"
:y="point_postion[1].y"
@mousedown="isactivearray[1] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 1)"
><span>v2</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[2]"
v-if="isshowarray[2]"
:w="30"
:h="20"
:x="point_postion[2].x"
:y="point_postion[2].y"
@mousedown="isactivearray[2] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 2)"
><span>v3</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[3]"
v-if="isshowarray[3]"
:w="30"
:h="20"
:x="point_postion[3].x"
:y="point_postion[3].y"
@mousedown="isactivearray[3] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 3)"
><span>v4</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[4]"
v-if="isshowarray[4]"
:w="30"
:h="20"
:x="point_postion[4].x"
:y="point_postion[4].y"
@mousedown="isactivearray[4] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 4)"
><span>v5</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[5]"
v-if="isshowarray[5]"
:w="30"
:h="20"
:x="point_postion[5].x"
:y="point_postion[5].y"
@mousedown="isactivearray[5] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 5)"
><span>h1</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[6]"
v-if="isshowarray[6]"
:w="30"
:h="20"
:x="point_postion[6].x"
:y="point_postion[6].y"
@mousedown="isactivearray[6] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 6)"
><span>h2</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[7]"
v-if="isshowarray[7]"
:w="30"
:h="20"
:x="point_postion[7].x"
:y="point_postion[7].y"
@mousedown="isactivearray[7] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 7)"
><span>h3</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[8]"
v-if="isshowarray[8]"
:w="30"
:h="20"
:x="point_postion[8].x"
:y="point_postion[8].y"
@mousedown="isactivearray[8] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 8)"
><span>h4</span>
</vue3ResizeDrag>
<vue3ResizeDrag
:isActive="isactivearray[9]"
v-if="isshowarray[9]"
:w="35"
:h="20"
:x="point_postion[9].x"
:y="point_postion[9].y"
@mousedown="isactivearray[9] = true"
:isResizable="false"
@moveHandler="moveHandler($event, 9)"
><span>h5</span>
</vue3ResizeDrag>
</div>
</div>
</div>
<div class="col-3 q-pt-md">
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-2"></div>
<div class="col-8">
<q-input
@focus="isactivearray[0] = false"
filled
type="number"
class="q-pt-md"
:dense="true"
v-model="value[0].y"
label="y"
lazy-rules
/>
<q-btn
color="white"
@click="reset(0)"
text-color="black"
:label="$t('reset') + ' v1'"
/>
</div>
</div>
</div>
<div class="col-12">
<div class="row">
<div class="col-2"></div>
<div class="col-8">
<q-input
@focus="isactivearray[1] = false"
filled
type="number"
class="q-pt-md"
:dense="true"
v-model="value[1].y"
label="y"
lazy-rules
/>
<q-btn
color="white"
@click="reset(1)"
text-color="black"
:label="$t('reset') + ' v2'"
/>
</div>
</div>
</div>
<div class="col-12">
<div class="row">
<div class="col-2"></div>
<div class="col-8">
<q-input
@focus="isactivearray[2] = false"
filled
type="number"
class="q-pt-md"
:dense="true"
v-model="value[2].y"
label="y"
lazy-rules
/>
<q-btn
color="white"
@click="reset(2)"
text-color="black"
:label="$t('reset') + ' v3'"
/>
</div>
</div>
</div>
<div class="col-12">
<div class="row">
<div class="col-2"></div>
<div class="col-8">
<q-input
@focus="isactivearray[3] = false"
filled
type="number"
class="q-pt-md"
:dense="true"
v-model="value[3].y"
label="y"
lazy-rules
/>
<q-btn
color="white"
@click="reset(3)"
text-color="black"
:label="$t('reset') + ' v4'"
/>
</div>
</div>
</div>
<div class="col-12">
<div class="row">
<div class="col-2"></div>
<div class="col-8">
<q-input
@focus="isactivearray[4] = false"
filled
type="number"
class="q-pt-md"
:dense="true"
v-model="value[4].y"
label="y"
lazy-rules
/>
<q-btn
color="white"
@click="reset(4)"
text-color="black"
:label="$t('reset') + ' v5'"
/>
</div>
</div>
</div>
</div>
</div>
<div class="col-1"></div>
<div class="col-11">
<div class="row">
<div class="col-1">
<q-input
filled
@focus="isactivearray[5] = false"
type="number"
class="q-pt-md"
:dense="true"
v-model="value[5].x"
label="x"
lazy-rules
/>
<q-btn
color="white"
@click="reset(5)"
text-color="black"
:label="$t('reset') + ' h1'"
/>
</div>
<div class="col-1"></div>
<div class="col-1">
<q-input
filled
@focus="isactivearray[6] = false"
type="number"
class="q-pt-md"
:dense="true"
v-model="value[6].x"
label="x"
lazy-rules
/>
<q-btn
color="white"
@click="reset(6)"
text-color="black"
:label="$t('reset') + ' h2'"
/>
</div>
<div class="col-1"></div>
<div class="col-1">
<q-input
filled
@focus="isactivearray[7] = false"
type="number"
class="q-pt-md"
:dense="true"
v-model="value[7].x"
label="x"
lazy-rules
/>
<q-btn
color="white"
@click="reset(7)"
text-color="black"
:label="$t('reset') + ' h3'"
/>
</div>
<div class="col-1"></div>
<div class="col-1">
<q-input
filled
@focus="isactivearray[8] = false"
type="number"
class="q-pt-md"
:dense="true"
v-model="value[8].x"
label="x"
lazy-rules
/>
<q-btn
color="white"
@click="reset(8)"
text-color="black"
:label="$t('reset') + ' h4'"
/>
</div>
<div class="col-1"></div>
<div class="col-1">
<q-input
filled
@focus="isactivearray[9] = false"
type="number"
class="q-pt-md"
:dense="true"
v-model="value[9].x"
label="x"
lazy-rules
/>
<q-btn
color="white"
@click="reset(9)"
text-color="black"
:label="$t('reset') + ' h5'"
/>
</div>
<div class="col-1"></div>
<div class="col-1 q-pt-xl">
<q-btn
color="white"
@click="resetall"
text-color="black"
:label="$t('resetall')"
/>
</div>
</div>
</div>
</div>
</template>
<style scoped></style>
<script lang="ts">
import {
defineComponent,
ref,
watch,
computed,
defineProps,
withDefaults,
reactive,
onMounted,
onBeforeUnmount,
} from "vue";
import { useStore } from "src/store";
import { useI18n } from "vue-i18n";
import vue3ResizeDrag from "/src/third_lib/vue3-resize-drag/components/vue3-resize-drag/index.vue";
import GlobalData from "src/common/GlobalData";
export default defineComponent({
name: "ComponentDensityCorrection",
components: {
vue3ResizeDrag,
},
setup() {
let $store = useStore();
let $t = useI18n();
const value = reactive([
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
{ x: 0, y: 0, number: 0 },
]);
let model = ref(null);
const div = ref();
const isshowarray = ref([
true,
true,
true,
true,
true,
true,
true,
true,
true,
true,
]);
const isactivearray = ref([
true,
true,
true,
true,
true,
true,
true,
true,
true,
true,
]);
const default_location: any = reactive([
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
]);
let options = ref(["10", "20", "30", "40", "50"]);
let config = JSON.parse($store.state.fusion_configuration).projectors[0];
let Proportion = ref({ x: 0, y: 0 });
const configselsect = computed(() => {
return $store.state.selected_projector;
});
//用于计算当前投影仪的索引
let serverconfig = JSON.parse($store.state.fusion_configuration);
const selectedprojector = computed(() => {
return (
$store.getters.GetTheCurrentlySelectedCamera[0] * serverconfig.col +
$store.getters.GetTheCurrentlySelectedCamera[1]
);
});
const set_cache: any = ref([]);
const ste_status = ref(0);
//为了加载 缓存的配置时 同步点的位置
const syncpoint = () => {
for (let index = 0; index < value.length; index++) {
isactivearray.value[index] = false;
}
};
const use_set_cache = () => {
if (set_cache.value[selectedprojector.value] != null) {
let tmp = JSON.parse(set_cache.value[selectedprojector.value]);
deepcopy(value, tmp);
syncpoint();
}
};
const deepcopy = (o1: any, o2: any) => {
for (let k in o2) {
if (typeof o2[k] === "object") {
o1[k] = {};
deepcopy(o1[k], o2[k]);
} else {
o1[k] = o2[k];
}
}
};
const save_set_cache = () => {
set_cache.value[selectedprojector.value] = JSON.stringify(value);
};
onBeforeUnmount(() => {
sessionStorage.DensityCorrection = JSON.stringify(set_cache.value);
});
watch(
() => configselsect,
(newVal, oldVal) => {
let tmp = JSON.parse($store.state.fusion_configuration);
let fortmp = null;
let i;
for (i of tmp.projectors) {
if (
i.col === $store.getters.GetTheCurrentlySelectedCamera[1] &&
i.row === $store.getters.GetTheCurrentlySelectedCamera[0]
) {
fortmp = JSON.parse(JSON.stringify(i));
}
}
ste_status.value = 1;
config = JSON.parse(JSON.stringify(fortmp));
use_server_config();
use_set_cache();
setTimeout(() => {
ste_status.value = 0;
}, 100);
syncpoint();
},
{ deep: true }
);
const initialization = () => {
ste_status.value = 1;
for (let index = 0; index < config.hor_density.length; index++) {
value[index].x = config.ver_density[index].x;
value[index].y = config.ver_density[index].y;
value[index].number = config.ver_density[index].number;
value[index + 5].x = config.hor_density[index].x;
value[index + 5].y = config.hor_density[index].y;
value[index + 5].number = config.hor_density[index].number;
}
if (
sessionStorage.DensityCorrection &&
sessionStorage.DensityCorrection.length > 0
) {
set_cache.value = JSON.parse(sessionStorage.DensityCorrection);
use_set_cache();
} else {
}
syncpoint();
setTimeout(() => {
ste_status.value = 0;
}, 100);
};
const resetall = () => {
for (
let index = 0;
index < config.hor_density.length + config.ver_density.length;
index++
) {
reset(index);
}
};
const reset = (index: number) => {
if (index > 4) {
value[index].x = config.hor_density[index - 5].def_x;
value[index].y = config.hor_density[index - 5].def_y;
set?.SetBlendingHorDensity(
$store.getters.GetTheCurrentlySelectedCamera[0],
$store.getters.GetTheCurrentlySelectedCamera[1],
index - 5 + 1,
Number(value[index].x)
);
} else {
value[index].x = config.ver_density[index].def_x;
value[index].y = config.ver_density[index].def_y;
set?.SetBlendingVerDensity(
$store.getters.GetTheCurrentlySelectedCamera[0],
$store.getters.GetTheCurrentlySelectedCamera[1],
index + 1,
Number(value[index].y)
);
}
point_postion[index].y = default_location[index].y;
point_postion[index].x = default_location[index].x;
isshowarray.value[index] = false;
setTimeout(() => {
isshowarray.value[index] = true;
}, 100);
};
const point_postion: any = reactive([
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
{ x: 0, y: 0 },
]);
let set = GlobalData.getInstance().getCurrentClient();
const save = () => {
set?.SaveBlendingConfig("");
setTimeout(() => {
set?.GetBlendingConfig("").then((res) => {
$store.commit("setfusion_configuration", res?.config);
});
}, 1000);
};
const moveHandler = ($event: any, index: number) => {
let x = 0;
let y = 0;
switch (index) {
case 0:
case 1:
case 2:
case 3:
case 4:
x =
config.width / 2 +
Math.ceil(
($event.left - default_location[index].x) * Proportion.value.x
);
y =
config.height -
(config.height / 4) * index -
Math.ceil(
($event.top - default_location[index].y) * Proportion.value.y
);
break;
case 5:
case 6:
case 7:
case 8:
case 9:
x = Math.ceil($event.left * Proportion.value.x);
y =
config.height / 2 -
Math.ceil(
($event.top - default_location[index].y) * Proportion.value.y
);
break;
default:
}
value[index].x = x > config.width ? config.width : x && x < 0 ? 0 : x;
value[index].y = y > config.height ? config.height : y && y < 0 ? 0 : y;
save_set_cache();
};
const use_server_config = () => {
for (let index = 0; index < config.hor_density.length; index++) {
value[index].x = config.ver_density[index].x;
value[index].y = config.ver_density[index].y;
value[index].number = config.ver_density[index].number;
value[index + 5].x = config.hor_density[index].x;
value[index + 5].y = config.hor_density[index].y;
value[index + 5].number = config.hor_density[index].number;
}
};
onMounted(() => {
initialization();
Proportion.value.x = config.width / (div.value.offsetWidth - 25);
Proportion.value.y = config.height / (div.value.offsetHeight - 25);
let Width = (div.value.offsetWidth - 25) / 4;
let Height = (div.value.offsetHeight - 25) / 4;
for (
let index = 0;
index < config.hor_density.length + config.ver_density.length;
index++
) {
if (index < 5) {
point_postion[index].y = default_location[index].y = Height * index;
point_postion[index].x = default_location[index].x = Width * 2;
} else {
point_postion[index].y = default_location[index].y = Height * 2;
point_postion[index].x = default_location[index].x =
Width * (index - 5);
}
}
});
//窗口变动重新渲染
onMounted(() => {
window.onresize = () => {
return (() => {
initialization();
Proportion.value.x = config.width / (div.value.offsetWidth - 25);
Proportion.value.y = config.height / (div.value.offsetHeight - 25);
let Width = (div.value.offsetWidth - 25) / 4;
let Height = (div.value.offsetHeight - 25) / 4;
for (
let index = 0;
index < config.hor_density.length + config.ver_density.length;
index++
) {
if (index < 5) {
point_postion[index].y = default_location[index].y =
Height * index;
point_postion[index].x = default_location[index].x = Width * 2;
} else {
point_postion[index].y = default_location[index].y = Height * 2;
point_postion[index].x = default_location[index].x =
Width * (index - 5);
}
}
})();
};
});
const setdianposin = (index: number, x: number, y: number) => {
point_postion[index].x = x;
point_postion[index].y = y;
isshowarray.value[index] = false;
isactivearray.value[index] = false;
setTimeout(() => {
isshowarray.value[index] = true;
}, 100);
};
watch(
() => value[0],
(newVal, oldVal) => {
send_configuration(1, newVal.y, newVal.number);
if (!isactivearray.value[0]) {
let x = default_location[0].x;
let y = Math.ceil((config.height - newVal.y) / Proportion.value.y);
setdianposin(0, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[1],
(newVal, oldVal) => {
send_configuration(2, newVal.y, newVal.number);
if (!isactivearray.value[1]) {
let x = default_location[1].x;
let y = Math.ceil((config.height - newVal.y) / Proportion.value.y);
setdianposin(1, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[2],
(newVal, oldVal) => {
send_configuration(3, newVal.y, newVal.number);
if (!isactivearray.value[2]) {
let x = Math.ceil(newVal.x / Proportion.value.x);
let y = Math.ceil((config.height - newVal.y) / Proportion.value.y);
setdianposin(2, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[3],
(newVal, oldVal) => {
send_configuration(4, newVal.y, newVal.number);
if (!isactivearray.value[3]) {
let x = default_location[3].x;
let y = Math.ceil((config.height - newVal.y) / Proportion.value.y);
setdianposin(3, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[4],
(newVal, oldVal) => {
send_configuration(5, newVal.y, newVal.number);
if (!isactivearray.value[4]) {
let x = default_location[4].x;
let y = Math.ceil((config.height - newVal.y) / Proportion.value.y);
setdianposin(4, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[5],
(newVal, oldVal) => {
send_configuration(6, newVal.x, newVal.number);
if (!isactivearray.value[5]) {
let x = Math.ceil(newVal.x / Proportion.value.x);
let y = default_location[5].y;
setdianposin(5, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[6],
(newVal, oldVal) => {
send_configuration(7, newVal.x, newVal.number);
if (!isactivearray.value[6]) {
let x = Math.ceil(newVal.x / Proportion.value.x);
let y = default_location[6].y;
setdianposin(6, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[7],
(newVal, oldVal) => {
send_configuration(8, newVal.x, newVal.number);
if (!isactivearray.value[7]) {
let x = Math.ceil(newVal.x / Proportion.value.x);
let y = default_location[7].y;
setdianposin(7, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[8],
(newVal, oldVal) => {
send_configuration(9, newVal.x, newVal.number);
if (!isactivearray.value[8]) {
let x = Math.ceil(newVal.x / Proportion.value.x);
let y = default_location[8].y;
setdianposin(8, x, y);
}
save_set_cache();
},
{ deep: true }
);
watch(
() => value[9],
(newVal, oldVal) => {
send_configuration(10, newVal.x, newVal.number);
if (!isactivearray.value[9]) {
let x = Math.ceil(newVal.x / Proportion.value.x);
let y = default_location[9].y;
setdianposin(9, x, y);
}
save_set_cache();
},
{ deep: true }
);
const send_configuration = (
index: number,
value: number,
number: number
) => {
if (ste_status.value == 0) {
if (index <= 5) {
set?.SetBlendingVerDensity(
$store.getters.GetTheCurrentlySelectedCamera[0],
$store.getters.GetTheCurrentlySelectedCamera[1],
index,
Number(value)
);
} else {
set?.SetBlendingHorDensity(
$store.getters.GetTheCurrentlySelectedCamera[0],
$store.getters.GetTheCurrentlySelectedCamera[1],
index - 5,
Number(value)
);
}
}
save_set_cache();
};
initialization();
return {
model,
options,
value,
reset,
resetall,
point_postion,
moveHandler,
div,
isshowarray,
isactivearray,
save,
};
},
});
</script>