feat: 添加地面站实体创建逻辑,优化管理器功能
This commit is contained in:
@ -24,7 +24,7 @@ export class SatelliteCalculator {
|
||||
* @returns 解析成功返回 SatRec 对象,否则返回 null。
|
||||
*/
|
||||
parseTle(tle: string, satelliteId: string): null | SatRec {
|
||||
const tleLines = tle.trim().split('\n');
|
||||
const tleLines = tle.trim().split('\n') as [string, string, string];
|
||||
if (tleLines.length < 3) {
|
||||
console.error(`无效的 TLE 格式 (ID: ${satelliteId}): TLE 字符串至少需要三行`);
|
||||
return null;
|
||||
|
@ -1,5 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import type { HCesiumManagerStationState, HCesiumManagerSatelliteState } from './useHCesiumManager.types';
|
||||
import type { HCesiumManagerSatelliteState, HCesiumManagerStationState } from './useHCesiumManager.types';
|
||||
|
||||
import { useHCesiumManager } from './useHCesiumManager';
|
||||
import { useHCesiumManagerSatellite } from './useHCesiumManager.卫星';
|
||||
@ -8,8 +8,8 @@ import { useHCesiumManagerStation } from './useHCesiumManager.站点';
|
||||
import 'cesium/Build/Cesium/Widgets/widgets.css';
|
||||
|
||||
const props = defineProps<{
|
||||
groundStationState?: HCesiumManagerStationState;
|
||||
satelliteState?: HCesiumManagerSatelliteState;
|
||||
stationState?: HCesiumManagerStationState;
|
||||
}>();
|
||||
|
||||
// 1. 管理 Cesium Viewer 实例生命周期
|
||||
@ -19,8 +19,8 @@ const { hCesiumViewerManager } = useHCesiumManager('cesium-container'); // 获
|
||||
// 将实例的 getter 和 props 的 getter 传递给组合函数
|
||||
useHCesiumManagerStation(
|
||||
() => hCesiumViewerManager, // 传递 Manager 实例的 getter
|
||||
() => props.groundStationState?.stations, // 从新的 prop 中获取列表
|
||||
() => props.groundStationState?.selectedIds, // 从新的 prop 中获取选中 ID
|
||||
() => props.stationState?.stations, // 从新的 prop 中获取列表
|
||||
() => props.stationState?.selectedIds, // 从新的 prop 中获取选中 ID
|
||||
);
|
||||
|
||||
// 3. 同步卫星实体
|
||||
|
@ -25,6 +25,7 @@ export class HCesiumManager {
|
||||
|
||||
try {
|
||||
this.viewer = new Cesium.Viewer(container, VIEWER_OPTIONS_FN());
|
||||
if ($__DEV__) Object.assign(globalThis, { viewer: this.viewer });
|
||||
|
||||
configureTimeLine(this.viewer);
|
||||
|
||||
|
@ -12,9 +12,11 @@ export interface I卫星 {
|
||||
id: string; // 卫星的唯一标识符
|
||||
orbitDurationSeconds?: number; // 轨道显示时长
|
||||
showOrbit: boolean; // 是否显示完整轨道线
|
||||
showCoverage: boolean; // 控制覆盖范围显示 (必填)
|
||||
timeStepSeconds?: number; // 轨道计算步长(秒),默认为 30
|
||||
tle: string; // 包含卫星名称和两行 TLE 数据的字符串,格式如下:
|
||||
// NAME
|
||||
// TLE1
|
||||
// TLE2
|
||||
showPath: boolean; // 控制是否显示路径/轨迹 (必填)
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ import { type OrbitCalculationResult, SatelliteCalculator } from '../calculators
|
||||
|
||||
interface ManagedSatelliteEntities {
|
||||
coverageEntity?: Cesium.Entity;
|
||||
entity: Cesium.Entity;
|
||||
mainEntity: Cesium.Entity;
|
||||
orbitEntity?: Cesium.Entity;
|
||||
}
|
||||
|
||||
@ -25,29 +25,26 @@ export class HCesiumSatelliteManager {
|
||||
/**
|
||||
* 向视图中添加或更新卫星实体及其相关元素(轨道、覆盖范围)。
|
||||
* 注意:当前实现仅添加,如果已存在则警告并返回现有实体。
|
||||
* @param options - 卫星的选项参数
|
||||
* @returns 添加的卫星主实体对象,如果已存在或添加失败则返回 null 或现有实体。
|
||||
*/
|
||||
addOrUpdateSatellite(options: I卫星): Cesium.Entity | null {
|
||||
addOrUpdateSatellite(options: I卫星): undefined {
|
||||
const existingEntry = this.currentSatelliteEntities.get(options.id);
|
||||
const { id, tle, showOrbit, showCoverage } = options;
|
||||
|
||||
// --- 如果实体已存在,直接返回,不处理更新 ---
|
||||
if (existingEntry) {
|
||||
console.warn(`ID 为 "${options.id}" 的卫星实体已由管理器追踪,跳过添加。`);
|
||||
// 未来可以扩展为更新逻辑
|
||||
return existingEntry.entity;
|
||||
console.warn(`ID 为 "${options.id}" 的卫星实体已存在,跳过添加。`);
|
||||
return;
|
||||
}
|
||||
|
||||
const { id, tle, showOrbit } = options;
|
||||
|
||||
// --- 解析 TLE 和计算轨道 ---
|
||||
const satrec = this.calculator.parseTle(tle, id);
|
||||
if (!satrec) {
|
||||
return null; // 解析失败,已打印错误
|
||||
return undefined; // 解析失败,已打印错误
|
||||
}
|
||||
|
||||
const viewer = this.viewerManager.getViewer();
|
||||
if (!viewer) {
|
||||
console.error('Viewer 未初始化,无法计算轨道。');
|
||||
return null;
|
||||
return undefined;
|
||||
}
|
||||
const startTime = viewer.clock.currentTime; // 使用当前 viewer 的时间作为起点
|
||||
|
||||
@ -55,73 +52,32 @@ export class HCesiumSatelliteManager {
|
||||
|
||||
if (!orbitResult) {
|
||||
console.error(`计算卫星 ${id} 的轨道失败。`);
|
||||
return null;
|
||||
return undefined;
|
||||
}
|
||||
const { sampledPositionProperty, orbitPositions } = orbitResult;
|
||||
// --- 计算结束 ---
|
||||
|
||||
// --- 从 TLE 提取名称 ---
|
||||
const tleLines = tle.trim().split('\n');
|
||||
const name = tleLines.length > 0 ? tleLines[0].trim() : `Satellite ${id}`;
|
||||
const tleLines = tle.trim().split('\n') as [string, string, string];
|
||||
const name = tleLines[0].trim();
|
||||
// --- 提取结束 ---
|
||||
|
||||
// --- 创建实体 ---
|
||||
const randomBaseColor = Cesium.Color.fromRandom({ alpha: 1 }); // 确保 alpha 为 1
|
||||
|
||||
// 创建卫星实体
|
||||
const satelliteEntity = new Cesium.Entity({
|
||||
id,
|
||||
name,
|
||||
position: sampledPositionProperty, // 使用计算好的位置属性
|
||||
orientation: new Cesium.VelocityOrientationProperty(sampledPositionProperty),
|
||||
point: {
|
||||
pixelSize: 8,
|
||||
color: randomBaseColor,
|
||||
outlineColor: Cesium.Color.WHITE,
|
||||
outlineWidth: 1,
|
||||
},
|
||||
label: {
|
||||
text: name,
|
||||
font: '14pt sans-serif',
|
||||
style: Cesium.LabelStyle.FILL_AND_OUTLINE,
|
||||
outlineWidth: 2,
|
||||
verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
|
||||
pixelOffset: new Cesium.Cartesian2(0, -10),
|
||||
fillColor: Cesium.Color.WHITE,
|
||||
outlineColor: Cesium.Color.BLACK,
|
||||
},
|
||||
// 动态轨迹路径 (Path) - 注意:这与完整轨道线 (Polyline) 不同
|
||||
path: {
|
||||
resolution: 1,
|
||||
material: new Cesium.PolylineGlowMaterialProperty({
|
||||
glowPower: 0.15,
|
||||
color: randomBaseColor,
|
||||
}),
|
||||
width: 2,
|
||||
leadTime: (options.orbitDurationSeconds ?? 3600 * 2) / 2, // 默认1小时
|
||||
trailTime: (options.orbitDurationSeconds ?? 3600 * 2) / 2, // 默认1小时
|
||||
},
|
||||
});
|
||||
const satelliteEntity = this._createSatelliteEntity(id, name, sampledPositionProperty, randomBaseColor, options);
|
||||
|
||||
// 添加卫星地面覆盖范围
|
||||
const coverageEntity = this.createCoverageEntity(id, name, sampledPositionProperty, randomBaseColor);
|
||||
// --- 创建覆盖范围实体 (如果需要) ---
|
||||
let coverageEntity: Cesium.Entity | null | undefined;
|
||||
if (showCoverage) {
|
||||
coverageEntity = this._createCoverageEntity(id, name, sampledPositionProperty, randomBaseColor);
|
||||
}
|
||||
// --- 创建结束 ---
|
||||
|
||||
// 添加完整轨道线(如果需要)
|
||||
let orbitEntity: Cesium.Entity | undefined;
|
||||
if (showOrbit && orbitPositions.length > 1) {
|
||||
orbitEntity = new Cesium.Entity({
|
||||
id: `${id}-orbit`,
|
||||
name: `${name} 轨道`,
|
||||
polyline: {
|
||||
positions: orbitPositions,
|
||||
width: 1,
|
||||
material: new Cesium.PolylineDashMaterialProperty({
|
||||
color: randomBaseColor.withAlpha(0.5),
|
||||
dashLength: 16,
|
||||
}),
|
||||
clampToGround: false,
|
||||
},
|
||||
});
|
||||
orbitEntity = this._createOrbitEntity(id, name, orbitPositions, randomBaseColor);
|
||||
}
|
||||
// --- 创建结束 ---
|
||||
|
||||
@ -129,7 +85,7 @@ export class HCesiumSatelliteManager {
|
||||
const addedMainEntity = this.viewerManager.addEntity(satelliteEntity);
|
||||
if (!addedMainEntity) {
|
||||
console.error(`通过 ViewerManager 添加卫星主体 ID 为 "${id}" 的实体失败。`);
|
||||
return null; // 主实体添加失败则中止
|
||||
return undefined; // 主实体添加失败则中止
|
||||
}
|
||||
|
||||
let addedCoverageEntity: Cesium.Entity | null = null;
|
||||
@ -151,18 +107,63 @@ export class HCesiumSatelliteManager {
|
||||
|
||||
// 存储实体引用
|
||||
this.currentSatelliteEntities.set(id, {
|
||||
entity: addedMainEntity, // 存储实际添加成功的实体
|
||||
mainEntity: addedMainEntity, // 存储实际添加成功的实体
|
||||
orbitEntity: addedOrbitEntity ?? undefined,
|
||||
coverageEntity: addedCoverageEntity ?? undefined,
|
||||
});
|
||||
}
|
||||
|
||||
return addedMainEntity;
|
||||
/**
|
||||
* 创建卫星主体实体。
|
||||
*/
|
||||
private _createSatelliteEntity(
|
||||
id: string,
|
||||
name: string,
|
||||
sampledPositionProperty: Cesium.SampledPositionProperty,
|
||||
randomBaseColor: Cesium.Color,
|
||||
options: I卫星,
|
||||
): Cesium.Entity {
|
||||
// 动态轨迹路径 (Path) - 注意:这与完整轨道线 (Polyline) 不同
|
||||
const path: Cesium.PathGraphics.ConstructorOptions = {
|
||||
resolution: 1,
|
||||
material: new Cesium.PolylineGlowMaterialProperty({
|
||||
glowPower: 0.15,
|
||||
color: randomBaseColor,
|
||||
}),
|
||||
width: 2,
|
||||
leadTime: (options.orbitDurationSeconds ?? 3600 * 2) / 2, // 默认1小时
|
||||
trailTime: (options.orbitDurationSeconds ?? 3600 * 2) / 2, // 默认1小时
|
||||
};
|
||||
|
||||
return new Cesium.Entity({
|
||||
id,
|
||||
name,
|
||||
path: options.showPath ? path : undefined, // 根据 options.showPath 控制是否显示路径
|
||||
position: sampledPositionProperty, // 使用计算好的位置属性
|
||||
orientation: new Cesium.VelocityOrientationProperty(sampledPositionProperty),
|
||||
point: {
|
||||
pixelSize: 8,
|
||||
color: randomBaseColor,
|
||||
outlineColor: Cesium.Color.WHITE,
|
||||
outlineWidth: 1,
|
||||
},
|
||||
label: {
|
||||
text: name,
|
||||
font: '14pt sans-serif',
|
||||
style: Cesium.LabelStyle.FILL_AND_OUTLINE,
|
||||
outlineWidth: 2,
|
||||
verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
|
||||
pixelOffset: new Cesium.Cartesian2(0, -10),
|
||||
fillColor: Cesium.Color.WHITE,
|
||||
outlineColor: Cesium.Color.BLACK,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建卫星覆盖范围实体。
|
||||
*/
|
||||
private createCoverageEntity(
|
||||
private _createCoverageEntity(
|
||||
satelliteId: string,
|
||||
satelliteName: string,
|
||||
positionProperty: Cesium.SampledPositionProperty,
|
||||
@ -215,6 +216,30 @@ export class HCesiumSatelliteManager {
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建卫星轨道实体。
|
||||
*/
|
||||
private _createOrbitEntity(
|
||||
satelliteId: string,
|
||||
satelliteName: string,
|
||||
orbitPositions: Cesium.Cartesian3[],
|
||||
baseColor: Cesium.Color,
|
||||
): Cesium.Entity {
|
||||
return new Cesium.Entity({
|
||||
id: `${satelliteId}-orbit`,
|
||||
name: `${satelliteName} 轨道`,
|
||||
polyline: {
|
||||
positions: orbitPositions,
|
||||
width: 1,
|
||||
material: new Cesium.PolylineDashMaterialProperty({
|
||||
color: baseColor.withAlpha(0.5),
|
||||
dashLength: 16,
|
||||
}),
|
||||
clampToGround: false, // 轨道通常不贴地
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 从视图中移除指定的卫星实体及其相关元素 (通过 ID)。
|
||||
* @param entityId - 要移除的卫星实体的 ID。
|
||||
@ -230,7 +255,7 @@ export class HCesiumSatelliteManager {
|
||||
let allRemoved = true;
|
||||
|
||||
// 移除主体
|
||||
if (!this.viewerManager.removeEntity(satelliteData.entity)) {
|
||||
if (!this.viewerManager.removeEntity(satelliteData.mainEntity)) {
|
||||
console.warn(`尝试通过 ViewerManager 移除卫星主体 ID 为 "${entityId}" 的实体失败。`);
|
||||
allRemoved = false;
|
||||
}
|
||||
|
@ -18,19 +18,38 @@ export class HCesiumStationManager {
|
||||
* @param options - 地面站的选项参数
|
||||
* @returns 添加的实体对象,如果已存在或添加失败则返回 null 或现有实体。
|
||||
*/
|
||||
addOrUpdateStation(options: I站点): Cesium.Entity | null {
|
||||
addOrUpdateStation(options: I站点): undefined {
|
||||
const existingEntity = this.currentStationEntities.get(options.id);
|
||||
if (existingEntity) {
|
||||
console.warn(`ID 为 "${options.id}" 的地面站实体已由管理器追踪,跳过添加。`);
|
||||
// 未来可以扩展为更新逻辑
|
||||
return existingEntity;
|
||||
return;
|
||||
}
|
||||
|
||||
// 解构赋值获取站点信息
|
||||
const { height = 0, id, latitude, longitude, name, pixelSize = 10 } = options;
|
||||
const position = Cesium.Cartesian3.fromDegrees(longitude, latitude, height);
|
||||
|
||||
const groundStationEntity = new Cesium.Entity({
|
||||
const stationEntity = this._createStationEntity(id, name, position, pixelSize);
|
||||
|
||||
const addedEntity = this.viewerManager.addEntity(stationEntity);
|
||||
if (addedEntity) {
|
||||
this.currentStationEntities.set(id, addedEntity); // 添加成功后,将其存入 Map
|
||||
} else {
|
||||
console.error(`通过 ViewerManager 添加 ID 为 "${id}" 的地面站实体失败。`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建地面站点的 Cesium 实体对象。
|
||||
* 这是一个内部辅助方法,封装了实体创建的细节。
|
||||
*/
|
||||
private _createStationEntity(
|
||||
id: string,
|
||||
name: string,
|
||||
position: Cesium.Cartesian3,
|
||||
pixelSize: number,
|
||||
): Cesium.Entity {
|
||||
return new Cesium.Entity({
|
||||
id, // 使用传入的 id 作为实体的唯一标识符
|
||||
name,
|
||||
position,
|
||||
@ -49,22 +68,9 @@ export class HCesiumStationManager {
|
||||
pixelOffset: new Cesium.Cartesian2(0, -12), // 标签略微偏移到点的上方
|
||||
},
|
||||
});
|
||||
|
||||
const addedEntity = this.viewerManager.addEntity(groundStationEntity);
|
||||
if (addedEntity) {
|
||||
// 添加成功后,将其存入 Map
|
||||
this.currentStationEntities.set(id, addedEntity);
|
||||
return addedEntity;
|
||||
} else {
|
||||
console.error(`通过 ViewerManager 添加 ID 为 "${id}" 的地面站实体失败。`);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 从视图中移除指定的地面站实体 (通过 ID)。
|
||||
* @param entityId - 要移除的地面站实体的 ID。
|
||||
* @returns 如果成功移除则返回 true,否则返回 false。
|
||||
*/
|
||||
removeStation(entityId: string): boolean {
|
||||
const entityToRemove = this.currentStationEntities.get(entityId);
|
||||
|
@ -1,5 +1,3 @@
|
||||
// src/components/h-cesium-viewer/useHCesiumViewerClsSatellite.ts
|
||||
|
||||
import type { MaybeRefOrGetter } from 'vue';
|
||||
|
||||
import type { HCesiumManager } from './managers/HCesiumManager';
|
||||
|
@ -15,8 +15,7 @@ export function useHCesiumManagerStation(
|
||||
groundStationList: MaybeRefOrGetter<Array<I站点> | undefined>,
|
||||
selectedStationIds: MaybeRefOrGetter<Set<string> | undefined>,
|
||||
) {
|
||||
// GroundStationManager 实例引用
|
||||
const groundStationManager = ref<HCesiumStationManager | null>(null);
|
||||
const stationManager = ref<HCesiumStationManager | null>(null);
|
||||
|
||||
// 创建一个从 ID 到站点选项的映射,方便查找
|
||||
const stationMap = computed(() => {
|
||||
@ -37,17 +36,16 @@ export function useHCesiumManagerStation(
|
||||
// 检查 Viewer Manager 和内部 Viewer 实例是否存在
|
||||
if (!viewerManagerInstance || !viewerManagerInstance.getViewer()) {
|
||||
// 如果 viewer manager 或 viewer 实例尚未初始化或已销毁,则清理旧 manager 并返回
|
||||
groundStationManager.value?.destroy();
|
||||
groundStationManager.value = null;
|
||||
stationManager.value?.destroy();
|
||||
stationManager.value = null;
|
||||
return;
|
||||
}
|
||||
|
||||
// 确保 GroundStationManager 实例存在且与当前的 ViewerManager 关联
|
||||
if (!groundStationManager.value) {
|
||||
groundStationManager.value = new HCesiumStationManager(viewerManagerInstance);
|
||||
if (!stationManager.value) {
|
||||
stationManager.value = new HCesiumStationManager(viewerManagerInstance);
|
||||
}
|
||||
|
||||
const manager = groundStationManager.value; // 使用 manager 实例
|
||||
const manager = stationManager.value; // 使用 manager 实例
|
||||
|
||||
const selectedIdsSet = toValue(selectedStationIds) ?? new Set<string>(); // 直接获取 Set,如果为 undefined 则创建空 Set
|
||||
const currentEntityIds = new Set(manager.getCurrentStationEntities().keys()); // 从 manager 获取当前实体 ID
|
||||
@ -77,8 +75,8 @@ export function useHCesiumManagerStation(
|
||||
|
||||
// 组件卸载时确保最终清理
|
||||
onBeforeUnmount(() => {
|
||||
groundStationManager.value?.destroy();
|
||||
groundStationManager.value = null; // 明确置空
|
||||
stationManager.value?.destroy();
|
||||
stationManager.value = null; // 明确置空
|
||||
});
|
||||
|
||||
// 返回 stationMap 可能在某些场景下有用,例如调试或扩展
|
||||
|
Reference in New Issue
Block a user