Worker version
This commit is contained in:
parent
14546dd854
commit
af1cefc71c
24
nginx.conf
24
nginx.conf
@ -29,17 +29,17 @@ http {
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
}
|
||||
# server {
|
||||
# listen 80;
|
||||
# server_name ws.localhost;
|
||||
# # add_header 'Access-Control-Allow-Origin' 'http://socket' always;
|
||||
server {
|
||||
listen 80;
|
||||
server_name math.localhost;
|
||||
# add_header 'Access-Control-Allow-Origin' 'http://math' always;
|
||||
|
||||
# location / {
|
||||
# proxy_pass http://socket:9091;
|
||||
# proxy_set_header Host $host;
|
||||
# proxy_set_header X-Real-IP $remote_addr;
|
||||
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
# proxy_set_header X-Forwarded-Proto $scheme;
|
||||
# }
|
||||
# }
|
||||
location / {
|
||||
proxy_pass http://math:10000;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
22
src/usn-frontend/src/app/components/Player/Model.tsx
Normal file
22
src/usn-frontend/src/app/components/Player/Model.tsx
Normal file
@ -0,0 +1,22 @@
|
||||
import { SimDrone } from "../Threejs/Models"
|
||||
|
||||
// IPlayerSimulationPart - часть симуляции
|
||||
// export interface IPlayerSimulationPart {
|
||||
// Timestamp?: number // Временная метка
|
||||
// CGS?: [] // базовые станции - DTO
|
||||
// UAV?: SimDrone[] // беспилотные аппараты - DTO
|
||||
// }
|
||||
|
||||
export interface Drone {
|
||||
connected_to: string | null;
|
||||
frequency: number;
|
||||
name: string;
|
||||
position: [number, number, number];
|
||||
rssi: number | null;
|
||||
}
|
||||
|
||||
export interface IPlayerSimulationPart {
|
||||
[key: string]: {
|
||||
[droneName: string]: Drone;
|
||||
};
|
||||
}
|
@ -3,6 +3,7 @@ import { Canvas } from '@react-three/fiber';
|
||||
import { OrbitControls, useGLTF, Line, Text } from '@react-three/drei';
|
||||
import React, { useState, useEffect, useRef } from 'react';
|
||||
import { Drone, BaseStation, SimDrone } from '../Threejs/Models';
|
||||
import { IPlayerSimulationPart } from './Model';
|
||||
|
||||
|
||||
interface Player {
|
||||
@ -10,7 +11,7 @@ interface Player {
|
||||
TimeEnd: number; // Время окончания
|
||||
TimeStep: number; // временной шаг
|
||||
onTimeUpdate?: (currentTime: number) => void; // callback для возврата текущего времени
|
||||
simulationEndedValues?: object
|
||||
simulationEndedValues?: IPlayerSimulationPart
|
||||
}
|
||||
|
||||
const InitPlayer: React.FC<Player> = ({ Click, TimeStep, TimeEnd, onTimeUpdate, simulationEndedValues }) => {
|
||||
@ -20,36 +21,20 @@ const InitPlayer: React.FC<Player> = ({ Click, TimeStep, TimeEnd, onTimeUpdate,
|
||||
const [isDropdownOpen, setIsDropdownOpen] = useState(false); // состояние выпадающей панели
|
||||
const [TimestampEnd, setTimestampEnd] = useState<number>();
|
||||
const [TimestampStep, setTimestampStep] = useState<number>();
|
||||
const [Simulations, setSimulations] = useState<IPlayerSimulationPart[]>();
|
||||
const [Simulations, setSimulations] = useState<IPlayerSimulationPart>();
|
||||
|
||||
const ParseSimulationResponse = (simulationResponse: any): IPlayerSimulationPart[] => {
|
||||
const parsedParts: IPlayerSimulationPart[] = Object.keys(simulationResponse).map((timestamp) => {
|
||||
const drones = Object.values(simulationResponse[timestamp]).map((drone: any) => ({
|
||||
connected_to: drone.connected_to,
|
||||
position: drone.position as [number, number, number],
|
||||
rssi: drone.rssi,
|
||||
name: drone.name,
|
||||
frequency: drone.frequency,
|
||||
}));
|
||||
|
||||
return {
|
||||
Timestamp: parseInt(timestamp, 10),
|
||||
UAV: drones,
|
||||
};
|
||||
});
|
||||
|
||||
return parsedParts;
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
let interval: NodeJS.Timeout | null = null;
|
||||
if (simulationEndedValues) {
|
||||
console.log("TODO: parse this pls")
|
||||
setSimulations(simulationEndedValues);
|
||||
// console.log(simulationEndedValues);
|
||||
console.log(simulationEndedValues)
|
||||
setTimestampStep(1)
|
||||
setTimestampEnd(299)
|
||||
} else {
|
||||
fetch("/tests/test_results.json")
|
||||
.then(simulationResponse => simulationResponse.json().then(val => {
|
||||
let parts = ParseSimulationResponse(val)
|
||||
setSimulations(parts)
|
||||
setTimestampStep(1)
|
||||
setTimestampEnd(100)
|
||||
}))
|
||||
@ -79,7 +64,7 @@ const InitPlayer: React.FC<Player> = ({ Click, TimeStep, TimeEnd, onTimeUpdate,
|
||||
clearInterval(interval);
|
||||
}
|
||||
};
|
||||
}, [isPlaying, TimeStep, TimeEnd, playbackSpeed, onTimeUpdate]);
|
||||
}, [isPlaying, TimeStep, TimeEnd, playbackSpeed, onTimeUpdate, simulationEndedValues]);
|
||||
|
||||
const handlePlayPause = () => {
|
||||
setIsPlaying(!isPlaying);
|
||||
@ -99,7 +84,7 @@ const InitPlayer: React.FC<Player> = ({ Click, TimeStep, TimeEnd, onTimeUpdate,
|
||||
|
||||
return (
|
||||
<div className="bg-slate-600 p-4 rounded-md w-full max-w-5xl mx-auto">
|
||||
<PlayerTsInstance/>
|
||||
<PlayerTsInstance Simulations={Simulations}/>
|
||||
<div className="flex items-center space-x-4">
|
||||
<a href='/pages/simulations'
|
||||
className={`text-white p-2 rounded-md bg-green-600`}
|
||||
@ -128,7 +113,7 @@ const InitPlayer: React.FC<Player> = ({ Click, TimeStep, TimeEnd, onTimeUpdate,
|
||||
className="w-full"
|
||||
/>
|
||||
<div className="text-white mt-2">
|
||||
Текущее время: {currentTime}s / {TimeEnd}s
|
||||
Текущее время: {currentTime}s / 299s
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-4 relative">
|
||||
@ -159,159 +144,131 @@ const InitPlayer: React.FC<Player> = ({ Click, TimeStep, TimeEnd, onTimeUpdate,
|
||||
);
|
||||
};
|
||||
|
||||
// IPlayerSimulationPart - часть симуляции
|
||||
interface IPlayerSimulationPart {
|
||||
Timestamp?: number // Временная метка
|
||||
CGS?: [] // базовые станции - DTO
|
||||
UAV?: SimDrone[] // беспилотные аппараты - DTO
|
||||
}
|
||||
|
||||
// IPlayerTsInstance - объект плеера
|
||||
interface IPlayerTsInstance {
|
||||
TimestampEnd?: number
|
||||
TimestampStep?: number
|
||||
Simulations?: IPlayerSimulationPart[]
|
||||
Simulations?: IPlayerSimulationPart
|
||||
//// IPlayerSimulationPart - часть симуляции
|
||||
// interface Drone {
|
||||
// connected_to: string | null;
|
||||
// frequency: number;
|
||||
// name: string;
|
||||
// position: [number, number, number];
|
||||
// rssi: number | null;
|
||||
// }
|
||||
|
||||
// interface IPlayerSimulationPart {
|
||||
// [key: string]: {
|
||||
// [droneName: string]: Drone;
|
||||
// };
|
||||
// }
|
||||
}
|
||||
|
||||
const PlayerTsInstance : React.FC<IPlayerTsInstance> = ({
|
||||
TimestampEnd,
|
||||
TimestampStep,
|
||||
Simulations
|
||||
const PlayerTsInstance: React.FC<IPlayerTsInstance> = ({
|
||||
TimestampEnd = 299, // Конечная временная метка
|
||||
TimestampStep = 1, // Шаг временной метки
|
||||
Simulations,
|
||||
}) => {
|
||||
const [currentTimestamp, setCurrentTimestamp] = useState(0);
|
||||
const [drones, setDrones] = useState<Drone[]>([]);
|
||||
const [baseStations, setBaseStations] = useState<BaseStation[]>([]);
|
||||
const [selectedObject, setSelectedObject] = useState<{ type: 'drone' | 'baseStation'; id: number } | null>(null);
|
||||
const orbitControlsRef = useRef<any>(null); // Reference to OrbitControls
|
||||
|
||||
const addDrone = (drone?: Drone) => {
|
||||
setDrones((prev) => [
|
||||
...prev,
|
||||
drone || {
|
||||
id: prev.length,
|
||||
name: `Drone ${prev.length + 1}`,
|
||||
position: [Math.random() * 10, 5, Math.random() * 10],
|
||||
frequency: Math.random() * 100 + 400, // Example frequency range between 400-500
|
||||
signalRadius: Math.random() * 5 + 5, // Example signal radius between 5-10
|
||||
},
|
||||
]);
|
||||
};
|
||||
const [isPlaying, setIsPlaying] = useState(false); // Флаг для управления анимацией
|
||||
|
||||
const addBaseStation = (baseStation?: BaseStation) => {
|
||||
setBaseStations((prev) => [
|
||||
...prev,
|
||||
baseStation || {
|
||||
id: prev.length,
|
||||
name: `Base Station ${prev.length + 1}`,
|
||||
position: [Math.random() * 10, -1, Math.random() * 10],
|
||||
frequency: Math.random() * 100 + 400, // Example frequency range between 400-500
|
||||
signalRadius: Math.random() * 5 + 5, // Example signal radius between 5-10
|
||||
antennaDirection: [0, 1, 0],
|
||||
},
|
||||
]);
|
||||
};
|
||||
const intervalRef = useRef<NodeJS.Timeout | null>(null);
|
||||
|
||||
|
||||
|
||||
const handleObjectClick = (type: 'drone' | 'baseStation', id: number) => {
|
||||
setSelectedObject({ type, id });
|
||||
focusOnObject(type, id);
|
||||
};
|
||||
useEffect(() => {
|
||||
// Инициализация объектов на начальной метке времени
|
||||
if (Simulations) {
|
||||
updateObjects(currentTimestamp);
|
||||
}
|
||||
}, [Simulations, currentTimestamp]);
|
||||
|
||||
const focusOnObject = (type: 'drone' | 'baseStation', id: number) => {
|
||||
const object = type === 'drone' ? drones.find((d) => d.id === id) : baseStations.find((b) => b.id === id);
|
||||
if (object && orbitControlsRef.current) {
|
||||
orbitControlsRef.current.target.set(...object.position);
|
||||
const updateObjects = (timestamp: number) => {
|
||||
if (!Simulations) return;
|
||||
|
||||
const simulationStep = Simulations[timestamp];
|
||||
if (simulationStep) {
|
||||
const updatedDrones = Object.values(simulationStep).map((drone) => ({
|
||||
...drone,
|
||||
}));
|
||||
// @ts-ignore
|
||||
setDrones(updatedDrones);
|
||||
}
|
||||
};
|
||||
|
||||
const selectNextObject = (direction: 'next' | 'prev') => {
|
||||
if (!selectedObject) return;
|
||||
const startSimulation = () => {
|
||||
if (!Simulations || isPlaying) return;
|
||||
|
||||
const currentList = selectedObject.type === 'drone' ? drones : baseStations;
|
||||
const currentIndex = currentList.findIndex((obj) => obj.id === selectedObject.id);
|
||||
const newIndex = direction === 'next'
|
||||
? (currentIndex + 1) % currentList.length
|
||||
: (currentIndex - 1 + currentList.length) % currentList.length;
|
||||
setSelectedObject({ type: selectedObject.type, id: currentList[newIndex].id });
|
||||
focusOnObject(selectedObject.type, currentList[newIndex].id);
|
||||
setIsPlaying(true);
|
||||
intervalRef.current = setInterval(() => {
|
||||
setCurrentTimestamp((prev) => {
|
||||
const nextTimestamp = prev + TimestampStep;
|
||||
if (nextTimestamp >= TimestampEnd) {
|
||||
clearInterval(intervalRef.current!);
|
||||
setIsPlaying(false);
|
||||
return prev; // Остановим на последней метке
|
||||
}
|
||||
return nextTimestamp;
|
||||
});
|
||||
}, 100); // Интервал обновления в миллисекундах
|
||||
};
|
||||
|
||||
const stopSimulation = () => {
|
||||
if (intervalRef.current) {
|
||||
clearInterval(intervalRef.current);
|
||||
}
|
||||
setIsPlaying(false);
|
||||
};
|
||||
|
||||
const resetSimulation = () => {
|
||||
stopSimulation();
|
||||
setCurrentTimestamp(0);
|
||||
if (Simulations) updateObjects(0); // Сброс объектов к начальной метке
|
||||
};
|
||||
|
||||
return (
|
||||
<div className='mt-20'>
|
||||
<div className="mt-20">
|
||||
<div style={{ height: '550px' }} />
|
||||
<div className='border border-blue-500 bg-blue-500 flex justify-center items-start'>
|
||||
<Canvas
|
||||
style={{ height: '550px', width: '1100px' }}
|
||||
shadows
|
||||
>
|
||||
<div className="border border-blue-500 bg-blue-500 flex justify-center items-start">
|
||||
<Canvas style={{ height: '550px', width: '1100px' }} shadows>
|
||||
<ambientLight intensity={0.5} />
|
||||
<directionalLight position={[5, 10, 5]} intensity={1} castShadow />
|
||||
<pointLight position={[10, 10, 10]} intensity={0.8} />
|
||||
<spotLight position={[-10, 15, 10]} angle={0.3} intensity={0.7} castShadow />
|
||||
<OrbitControls ref={orbitControlsRef} />
|
||||
<OrbitControls />
|
||||
<MapModel />
|
||||
{baseStations.map((baseStation) => (
|
||||
<BaseStationModel
|
||||
key={baseStation.id}
|
||||
onClick={() => handleObjectClick('baseStation', baseStation.id)}
|
||||
isSelected={selectedObject?.type === 'baseStation' && selectedObject.id === baseStation.id}
|
||||
position={baseStation.position}
|
||||
// @ts-ignore
|
||||
baseStationName={baseStation.name}
|
||||
/>
|
||||
))}
|
||||
{drones.map((drone) => (
|
||||
// @ts-ignore
|
||||
<DroneModel
|
||||
key={drone.id}
|
||||
key={drone.name}
|
||||
position={drone.position}
|
||||
droneName={drone.name}
|
||||
onClick={() => handleObjectClick('drone', drone.id)}
|
||||
isSelected={selectedObject?.type === 'drone' && selectedObject.id === drone.id}
|
||||
/>
|
||||
))}
|
||||
{drones.flatMap((drone) => (
|
||||
baseStations.map((baseStation) => {
|
||||
const distance = Math.sqrt(
|
||||
Math.pow(drone.position[0] - baseStation.position[0], 2) +
|
||||
Math.pow(drone.position[1] - baseStation.position[1], 2) +
|
||||
Math.pow(drone.position[2] - baseStation.position[2], 2)
|
||||
);
|
||||
|
||||
if (distance <= drone.signalRadius && distance <= baseStation.signalRadius) {
|
||||
return (
|
||||
<Line
|
||||
key={`link-${drone.id}-${baseStation.id}`}
|
||||
points={[drone.position, baseStation.position]}
|
||||
color="yellow"
|
||||
lineWidth={Math.min(drone.frequency, baseStation.frequency) / 200} // Adjust line width based on frequency
|
||||
dashed={false}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
})
|
||||
))}
|
||||
{baseStations.map((baseStation) => (
|
||||
baseStation.signalRadius > 0 && (
|
||||
<mesh key={`signal-${baseStation.id}`} position={baseStation.position}>
|
||||
<sphereGeometry args={[baseStation.signalRadius, 32, 32]} />
|
||||
<meshBasicMaterial color="red" opacity={0.3} transparent />
|
||||
</mesh>
|
||||
)
|
||||
))}
|
||||
{drones.map((drone) => (
|
||||
drone.signalRadius > 0 && (
|
||||
<mesh key={`signal-${drone.id}`} position={drone.position}>
|
||||
<sphereGeometry args={[drone.signalRadius, 32, 32]} />
|
||||
<meshBasicMaterial color="green" opacity={0.3} transparent />
|
||||
</mesh>
|
||||
)
|
||||
))}
|
||||
</Canvas>
|
||||
</div>
|
||||
|
||||
<div className='col-auto row-auto m-auto items-center'>
|
||||
<button onClick={() => selectNextObject('prev')} className="p-2 m-2 bg-yellow-500 text-white rounded transition duration-300 ease-in-out transform hover:scale-105 focus:scale-95"><</button>
|
||||
<button onClick={() => selectNextObject('next')} className="p-2 m-2 bg-yellow-500 text-white rounded transition duration-300 ease-in-out transform hover:scale-105 focus:scale-95">></button>
|
||||
<div className="col-auto row-auto m-auto items-center">
|
||||
<button onClick={startSimulation} disabled={isPlaying} className="p-2 m-2 bg-green-500 text-white rounded">
|
||||
Start
|
||||
</button>
|
||||
<button onClick={stopSimulation} className="p-2 m-2 bg-red-500 text-white rounded">
|
||||
Stop
|
||||
</button>
|
||||
<button onClick={resetSimulation} className="p-2 m-2 bg-gray-500 text-white rounded">
|
||||
Reset
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@ -344,6 +301,10 @@ const DroneModel = ({ position, droneName, onClick, isSelected }: { position: [n
|
||||
<meshBasicMaterial color="red" wireframe />
|
||||
</mesh>
|
||||
)}
|
||||
<mesh position={position}>
|
||||
<sphereGeometry args={[1, 16, 16]} />
|
||||
<meshBasicMaterial color="red" wireframe />
|
||||
</mesh>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
@ -1,4 +1,5 @@
|
||||
"use client";
|
||||
import { IPlayerSimulationPart } from '@/app/components/Player/Model';
|
||||
import InitPlayer from '@/app/components/Player/Player';
|
||||
import { BaseStation, Drone } from '@/app/components/Threejs/Models';
|
||||
import ThreeJsInstance from '@/app/components/Threejs/ThreeJsInstance';
|
||||
@ -8,7 +9,7 @@ import React, { useEffect, useState } from 'react';
|
||||
const Simulations: React.FC = () => {
|
||||
const [activeSimulationWindow, setActiveSimulationWindow] = useState(false);
|
||||
const [mathServer, setMathServer] = useState("");
|
||||
const [simulationDto, setSimulationDto] = useState({});
|
||||
const [simulationDto, setSimulationDto] = useState<IPlayerSimulationPart>();
|
||||
|
||||
const ActiveSimulation = (value: boolean, Drones : Drone[], CGS: BaseStation[]) => {
|
||||
// Используя mathServer - отправляем массив данных
|
||||
@ -20,7 +21,7 @@ const Simulations: React.FC = () => {
|
||||
position: drone.position,
|
||||
freq: drone.frequency,
|
||||
radius: drone.signalRadius,
|
||||
endpoints: [[0, 0, 1], [10, 0, 1]], // TODO: статические значения
|
||||
endpoints: [[0, 5, 1], [10, 5, 1]], // TODO: статические значения
|
||||
speed: 1 // TODO: можно изменить при необходимости
|
||||
}));
|
||||
|
||||
@ -43,25 +44,40 @@ const Simulations: React.FC = () => {
|
||||
sendToMathServer(simulationData);
|
||||
// Устанавливает окно симуляции
|
||||
setActiveSimulationWindow(value);
|
||||
};
|
||||
};
|
||||
// Пример функции для отправки данных
|
||||
const sendToMathServer = (data: object) => {
|
||||
console.log("Sending simulation data:", JSON.stringify(data, null, 2));
|
||||
// Реализовать отправку данных, например, через fetch
|
||||
fetch(mathServer, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
}).then(
|
||||
out => console.log(out)
|
||||
// TODO: setup to end
|
||||
|
||||
|
||||
const myHeaders = new Headers();
|
||||
myHeaders.append("Content-Type", "application/json");
|
||||
|
||||
const requestOptions : RequestInit = {
|
||||
method: "POST",
|
||||
headers: myHeaders,
|
||||
body: JSON.stringify(data),
|
||||
redirect: "follow"
|
||||
};
|
||||
fetch(mathServer, requestOptions).then(
|
||||
// TODO: setup to end
|
||||
out => {
|
||||
if (out.status == 200){
|
||||
// console.log(out.json())
|
||||
const val = out.json() as Promise<IPlayerSimulationPart>
|
||||
val.then(v => {
|
||||
setSimulationDto(v)
|
||||
console.log(v)
|
||||
});
|
||||
} else {
|
||||
console.log(out)
|
||||
}
|
||||
}
|
||||
);
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
setMathServer("http://localhost:10000/simulation/forceRunCalc/")
|
||||
setMathServer("http://localhost:10000/simulation/forceRunCalc")
|
||||
}, [])
|
||||
|
||||
return (
|
||||
@ -74,7 +90,7 @@ const Simulations: React.FC = () => {
|
||||
Click={() => {}}
|
||||
TimeEnd={100}
|
||||
TimeStep={1}
|
||||
// simulationEndedValues={null} // TODO: SET AFTER SIMULATION REALY COMPLETE
|
||||
simulationEndedValues={simulationDto} // TODO: SET AFTER SIMULATION REALY COMPLETE
|
||||
/>
|
||||
</div> : <ThreeJsInstance
|
||||
Click={ActiveSimulation}
|
||||
|
Loading…
Reference in New Issue
Block a user