Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b6597f235e | |||
| e213475de5 | |||
| dc31ec1cb6 | |||
| e24fa92a84 | |||
| d1cc7875a8 |
+1
-4
@@ -4,15 +4,12 @@ const { FuseV1Options, FuseVersion } = require('@electron/fuses');
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
packagerConfig: {
|
packagerConfig: {
|
||||||
asar: true,
|
asar: true,
|
||||||
icon: './mainicon',
|
|
||||||
},
|
},
|
||||||
rebuildConfig: {},
|
rebuildConfig: {},
|
||||||
makers: [
|
makers: [
|
||||||
{
|
{
|
||||||
name: '@electron-forge/maker-squirrel',
|
name: '@electron-forge/maker-squirrel',
|
||||||
config: {
|
config: {},
|
||||||
setupIcon: './mainicon.ico',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '@electron-forge/maker-zip',
|
name: '@electron-forge/maker-zip',
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 264 KiB |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px"><path d="M 24 4 C 20.704135 4 18 6.7041348 18 10 L 11.746094 10 A 1.50015 1.50015 0 0 0 11.476562 9.9785156 A 1.50015 1.50015 0 0 0 11.259766 10 L 7.5 10 A 1.50015 1.50015 0 1 0 7.5 13 L 10 13 L 10 38.5 C 10 41.519774 12.480226 44 15.5 44 L 32.5 44 C 35.519774 44 38 41.519774 38 38.5 L 38 13 L 40.5 13 A 1.50015 1.50015 0 1 0 40.5 10 L 36.746094 10 A 1.50015 1.50015 0 0 0 36.259766 10 L 30 10 C 30 6.7041348 27.295865 4 24 4 z M 24 7 C 25.674135 7 27 8.3258652 27 10 L 21 10 C 21 8.3258652 22.325865 7 24 7 z M 13 13 L 35 13 L 35 38.5 C 35 39.898226 33.898226 41 32.5 41 L 15.5 41 C 14.101774 41 13 39.898226 13 38.5 L 13 13 z M 20.476562 17.978516 A 1.50015 1.50015 0 0 0 19 19.5 L 19 34.5 A 1.50015 1.50015 0 1 0 22 34.5 L 22 19.5 A 1.50015 1.50015 0 0 0 20.476562 17.978516 z M 27.476562 17.978516 A 1.50015 1.50015 0 0 0 26 19.5 L 26 34.5 A 1.50015 1.50015 0 1 0 29 34.5 L 29 19.5 A 1.50015 1.50015 0 0 0 27.476562 17.978516 z"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.0 KiB |
+62
-41
@@ -1,7 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import {ref, onMounted, h} from "vue";
|
import { ref, onMounted, h } from "vue";
|
||||||
import izitoast from "@/shared/izitoast";
|
import izitoast from "@/shared/izitoast";
|
||||||
import {useEventListener} from "@vueuse/core";
|
import { useEventListener } from "@vueuse/core";
|
||||||
import MyDialog from "@/components/MyDialog.vue";
|
import MyDialog from "@/components/MyDialog.vue";
|
||||||
import MyDropMenu from "@/components/MyDropMenu.vue";
|
import MyDropMenu from "@/components/MyDropMenu.vue";
|
||||||
import copyToclipboard from "@/shared/copyToclipboard";
|
import copyToclipboard from "@/shared/copyToclipboard";
|
||||||
@@ -14,7 +14,7 @@ import Preview from "@/components/UI/svg/Preview.vue";
|
|||||||
import Save from "@/components/UI/svg/Save.vue";
|
import Save from "@/components/UI/svg/Save.vue";
|
||||||
import Trash from "@/components/UI/svg/Trash.vue";
|
import Trash from "@/components/UI/svg/Trash.vue";
|
||||||
import Back from "@/components/UI/svg/Back.vue";
|
import Back from "@/components/UI/svg/Back.vue";
|
||||||
|
import { NTooltip } from 'naive-ui'
|
||||||
|
|
||||||
const numbers = ref([]); // Инициализируем массив с пустыми строками
|
const numbers = ref([]); // Инициализируем массив с пустыми строками
|
||||||
const clickCount = ref(1); // Счетчик нажатий
|
const clickCount = ref(1); // Счетчик нажатий
|
||||||
@@ -60,7 +60,8 @@ function setNumber(item) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function openPreview() {
|
function openPreview(event) {
|
||||||
|
event.currentTarget.blur()
|
||||||
generateCode()
|
generateCode()
|
||||||
if (!listOfTrips.value.length) {
|
if (!listOfTrips.value.length) {
|
||||||
izitoast.error({
|
izitoast.error({
|
||||||
@@ -72,8 +73,9 @@ function openPreview() {
|
|||||||
isCodeViewVisible.value = true;
|
isCodeViewVisible.value = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function saveResult() {
|
function saveResult(event) {
|
||||||
isModalVisible.value = true;
|
isModalVisible.value = true;
|
||||||
|
event.currentTarget.blur()
|
||||||
generateCode()
|
generateCode()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -94,18 +96,18 @@ function generateCode() {
|
|||||||
let textOfCode = color
|
let textOfCode = color
|
||||||
textOfCode = textOfCode.split('<<separator>>')
|
textOfCode = textOfCode.split('<<separator>>')
|
||||||
colorDetectClass.value = textOfCode[0]
|
colorDetectClass.value = textOfCode[0]
|
||||||
colorDetectCode.value += `\t${textOfCode[1].trim()}\n`;
|
colorDetectCode.value += ` ${textOfCode[1].trim()}\n`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isUsedQR) {
|
if (isUsedQR) {
|
||||||
let textOfCode = qr
|
let textOfCode = qr
|
||||||
textOfCode = textOfCode.split('<<separator>>')
|
textOfCode = textOfCode.split('<<separator>>')
|
||||||
QRDetectClass.value = textOfCode[0]
|
QRDetectClass.value = textOfCode[0]
|
||||||
QRDetectCode.value += `\t${textOfCode[1].trim()}\n`;
|
QRDetectCode.value += ` ${textOfCode[1].trim()}\n`;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const item of listOfTrips.value) {
|
for (const item of listOfTrips.value) {
|
||||||
mainCode.value += `\tnavigate_wait(${item.x}, ${item.y})\n`;
|
mainCode.value += ` navigate_wait(${item.x}, ${item.y})\n`;
|
||||||
if (item.isPlatform) {
|
if (item.isPlatform) {
|
||||||
mainCode.value += colorDetectCode.value + '\n'
|
mainCode.value += colorDetectCode.value + '\n'
|
||||||
}
|
}
|
||||||
@@ -127,7 +129,8 @@ function generateCode() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function cancel() {
|
function cancel(event) {
|
||||||
|
event.currentTarget.blur()
|
||||||
if (clickCount.value === 1) {
|
if (clickCount.value === 1) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -139,7 +142,8 @@ function cancel() {
|
|||||||
clickCount.value--;
|
clickCount.value--;
|
||||||
}
|
}
|
||||||
|
|
||||||
function cleanResult() {
|
function cleanResult(event) {
|
||||||
|
event.currentTarget.blur()
|
||||||
clickCount.value = 1;
|
clickCount.value = 1;
|
||||||
numbers.value.forEach(item => {
|
numbers.value.forEach(item => {
|
||||||
item.isPlatform = false;
|
item.isPlatform = false;
|
||||||
@@ -184,7 +188,7 @@ function copyAndToast(text) {
|
|||||||
function handleDownloadBtn() {
|
function handleDownloadBtn() {
|
||||||
// Создание файла
|
// Создание файла
|
||||||
const downloadUrl = ref('');
|
const downloadUrl = ref('');
|
||||||
const blob = new Blob([finallyText.value], {type: 'text/plain'});
|
const blob = new Blob([finallyText.value], { type: 'text/plain' });
|
||||||
downloadUrl.value = URL.createObjectURL(blob);
|
downloadUrl.value = URL.createObjectURL(blob);
|
||||||
// Задержка для избежания ошибок в некоторых браузерах
|
// Задержка для избежания ошибок в некоторых браузерах
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
@@ -300,7 +304,7 @@ function onContextMenu(e, item) {
|
|||||||
{
|
{
|
||||||
label: "Удалить",
|
label: "Удалить",
|
||||||
onClick: () => deletePlatform(item),
|
onClick: () => deletePlatform(item),
|
||||||
icon: createIcon('icons/trash.svg'),
|
icon: h(Trash),
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -316,14 +320,14 @@ function onContextMenu(e, item) {
|
|||||||
{
|
{
|
||||||
label: "Удалить",
|
label: "Удалить",
|
||||||
onClick: () => deleteQR(item),
|
onClick: () => deleteQR(item),
|
||||||
icon: createIcon('icons/trash.svg')
|
icon: h(Trash)
|
||||||
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Удалить",
|
label: "Удалить",
|
||||||
icon: createIcon('icons/trash.svg'),
|
icon: h(Trash),
|
||||||
onClick: () => deletePointMap(item),
|
onClick: () => deletePointMap(item),
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
@@ -341,12 +345,32 @@ function onContextMenu(e, item) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<Save @click="saveResult"/>
|
<n-tooltip trigger="hover">
|
||||||
<Trash @click="cleanResult"/>
|
<template #trigger>
|
||||||
<Back @click="cancel"/>
|
<Save @click="saveResult" />
|
||||||
<Preview @click="openPreview"/>
|
</template>
|
||||||
|
Сохранить
|
||||||
|
</n-tooltip>
|
||||||
|
<n-tooltip trigger="hover">
|
||||||
|
<template #trigger>
|
||||||
|
<Trash @click="cleanResult" />
|
||||||
|
</template>
|
||||||
|
Удалить
|
||||||
|
</n-tooltip>
|
||||||
|
<n-tooltip trigger="hover">
|
||||||
|
<template #trigger>
|
||||||
|
<Back @click="cancel" />
|
||||||
|
</template>
|
||||||
|
Отменить
|
||||||
|
</n-tooltip>
|
||||||
|
<n-tooltip trigger="hover">
|
||||||
|
<template #trigger>
|
||||||
|
<Preview @click="openPreview" />
|
||||||
|
</template>
|
||||||
|
Превью
|
||||||
|
</n-tooltip>
|
||||||
</div>
|
</div>
|
||||||
<MyDropMenu ref="dropMenu"/>
|
<MyDropMenu ref="dropMenu" />
|
||||||
<MyDialog v-model:show="isModalVisible" class="dialogWindow" :is-success=Boolean(listOfTrips.length)>
|
<MyDialog v-model:show="isModalVisible" class="dialogWindow" :is-success=Boolean(listOfTrips.length)>
|
||||||
<template #header>
|
<template #header>
|
||||||
<strong v-if="listOfTrips.length">Код готов!</strong>
|
<strong v-if="listOfTrips.length">Код готов!</strong>
|
||||||
@@ -356,14 +380,16 @@ function onContextMenu(e, item) {
|
|||||||
<p v-if="listOfTrips.length">Скопируйте или скачайте ваш код</p>
|
<p v-if="listOfTrips.length">Скопируйте или скачайте ваш код</p>
|
||||||
<p v-else>Выстройте маршрут перед сохранением кода.</p>
|
<p v-else>Выстройте маршрут перед сохранением кода.</p>
|
||||||
</main>
|
</main>
|
||||||
<template v-if="listOfTrips.length" #footer>
|
<template #footer>
|
||||||
|
<div v-if="listOfTrips.length">
|
||||||
<button @click="isCodeViewVisible = true">Предпросмотр</button>
|
<button @click="isCodeViewVisible = true">Предпросмотр</button>
|
||||||
<button @click="handleDownloadBtn">Скачать код</button>
|
<button @click="handleDownloadBtn">Скачать код</button>
|
||||||
<button @click="copyAndToast(finallyText)">Скопировать код</button>
|
<button @click="copyAndToast(finallyText)">Скопировать код</button>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</MyDialog>
|
</MyDialog>
|
||||||
</div>
|
</div>
|
||||||
<CodeView v-model:show="isCodeViewVisible" :code="finallyText" :show="isCodeViewVisible"/>
|
<CodeView v-model:show="isCodeViewVisible" :code="finallyText" :show="isCodeViewVisible" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@@ -373,16 +399,15 @@ function onContextMenu(e, item) {
|
|||||||
|
|
||||||
html {
|
html {
|
||||||
background-image: radial-gradient(#23aae3e2, #222222);
|
background-image: radial-gradient(#23aae3e2, #222222);
|
||||||
font-size: 18px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
font-size: 18px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--side: 8vh;
|
--side: 75px;
|
||||||
--sizeActions: 5vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wraper {
|
.wraper {
|
||||||
@@ -395,40 +420,36 @@ body {
|
|||||||
display: grid;
|
display: grid;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
grid-template-columns: repeat(10, var(--side));
|
grid-template-columns: repeat(10, var(--side));
|
||||||
grid-template-rows: repeat(10, var(--side));
|
|
||||||
gap: 5px;
|
gap: 5px;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.square {
|
.square {
|
||||||
width: 100%;
|
width: var(--side);
|
||||||
height: 100%;
|
height: var(--side);
|
||||||
text-align: center;
|
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
border: 3px solid #ffffff;
|
border: 3px solid rgb(251, 251, 251);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
|
|
||||||
background-blend-mode: multiply;
|
background-blend-mode: multiply;
|
||||||
background-color: #ffffff;
|
background-color: transparent;
|
||||||
transition: background-color 0.3s ease;
|
transition: background-color 0.3s ease;
|
||||||
|
|
||||||
color: #2267fce2;
|
color: white;
|
||||||
text-shadow: -1px -1px 0 #fff,
|
text-shadow: -1px -1px 0 black,
|
||||||
1px -1px 0 #fff,
|
1px -1px 0 black,
|
||||||
-1px 1px 0 #fff,
|
-1px 1px 0 black,
|
||||||
1px 1px 0 #fff;
|
1px 1px 0 black;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 1.1rem;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.square:hover {
|
.square:hover {
|
||||||
background-color: #949494;
|
background-color: rgb(166, 162, 162);
|
||||||
}
|
}
|
||||||
|
|
||||||
.square:active {
|
.square:active {
|
||||||
background-color: #747474;
|
background-color: rgb(164, 162, 162);
|
||||||
}
|
}
|
||||||
|
|
||||||
.square::-webkit-scrollbar {
|
.square::-webkit-scrollbar {
|
||||||
@@ -456,8 +477,8 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.actions svg {
|
.actions svg {
|
||||||
width: var(--sizeActions);
|
width: 40px;
|
||||||
height: var(--sizeActions);
|
height: 40px;
|
||||||
transition: color 0.4s;
|
transition: color 0.4s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -18,13 +18,13 @@ const props = defineProps({
|
|||||||
<div class="code-view" v-if="show">
|
<div class="code-view" v-if="show">
|
||||||
<CustomButton
|
<CustomButton
|
||||||
@click.stop="$emit('update:show', false)">
|
@click.stop="$emit('update:show', false)">
|
||||||
Вернуться к генерации маршрута
|
Вернуться к сохранению сгенерированного кода
|
||||||
</CustomButton>
|
</CustomButton>
|
||||||
<CodeBlock :code="code" />
|
<CodeBlock :code="code" />
|
||||||
|
|
||||||
<CustomButton
|
<CustomButton
|
||||||
@click.stop="$emit('update:show', false)">
|
@click.stop="$emit('update:show', false)">
|
||||||
Вернуться к генерации маршрута
|
Вернуться к сохранению сгенерированного кода
|
||||||
</CustomButton>
|
</CustomButton>
|
||||||
<MovementButtons/>
|
<MovementButtons/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -80,9 +80,9 @@ useEventListener("keydown", handleKeydown);
|
|||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 55%;
|
max-width: 500px;
|
||||||
|
width: 90%;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-header,
|
.modal-header,
|
||||||
@@ -110,17 +110,16 @@ useEventListener("keydown", handleKeydown);
|
|||||||
}
|
}
|
||||||
|
|
||||||
.modal-footer {
|
.modal-footer {
|
||||||
|
justify-content: flex-end;
|
||||||
border-top: 1px solid white;
|
border-top: 1px solid white;
|
||||||
display: flex;
|
|
||||||
gap: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-footer button {
|
.modal-footer button {
|
||||||
width: 33%;
|
justify-content: flex-end;
|
||||||
border-top: 1px solid white;
|
border-top: 1px solid white;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
color: black;
|
color: black;
|
||||||
font-size: 20px;
|
font-size: 15px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -99,8 +99,8 @@ defineExpose({open: () => (isOpen.value = true), close: closeMenu});
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
min-width: 40px;
|
width: 40px;
|
||||||
min-height: 30px;
|
height: 30px;
|
||||||
background: rgba(255, 255, 255, 0.508);
|
background: rgba(255, 255, 255, 0.508);
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -109,18 +109,12 @@ defineExpose({open: () => (isOpen.value = true), close: closeMenu});
|
|||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 3rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-content {
|
.menu-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
padding-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-content button{
|
|
||||||
font-size: 1.2rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.line {
|
.line {
|
||||||
|
|||||||
@@ -17,6 +17,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.cls-1{fill:none;}
|
.cls-1{
|
||||||
|
fill:none;
|
||||||
|
}
|
||||||
|
#Layer_2 {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -41,7 +41,7 @@ def emergency_stop():
|
|||||||
|
|
||||||
"""Функция экстренной остановки, срабатывает при нажатии Ctrl + C"""
|
"""Функция экстренной остановки, срабатывает при нажатии Ctrl + C"""
|
||||||
|
|
||||||
print("\n" + "="*50)
|
print("="*50)
|
||||||
print("EMERGENCY STOP ACTIVATED!")
|
print("EMERGENCY STOP ACTIVATED!")
|
||||||
print("="*50)
|
print("="*50)
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ def signal_handler(sig, frame):
|
|||||||
"""Перехват Ctrl+C: вместо аварийного завершения программы
|
"""Перехват Ctrl+C: вместо аварийного завершения программы
|
||||||
выполняет безопасную посадку дрона."""
|
выполняет безопасную посадку дрона."""
|
||||||
|
|
||||||
print("\nCtrl+C detected - Emergency stop!")
|
print("Ctrl+C detected - Emergency stop!")
|
||||||
emergency_stop()
|
emergency_stop()
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user