Add static coordinates of galaxies
This commit is contained in:
parent
b51200f3e8
commit
2f96c08da3
|
@ -10,6 +10,10 @@ export type Galaxy = {
|
||||||
_id: ObjectId,
|
_id: ObjectId,
|
||||||
name: string,
|
name: string,
|
||||||
sectors: Array<Sector>
|
sectors: Array<Sector>
|
||||||
|
coords: {
|
||||||
|
x: number,
|
||||||
|
y: number
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Sector = {
|
export type Sector = {
|
||||||
|
@ -56,7 +60,8 @@ class LocationManager {
|
||||||
const galaxyObject: Galaxy = {
|
const galaxyObject: Galaxy = {
|
||||||
_id: galaxy._id,
|
_id: galaxy._id,
|
||||||
name: galaxy.name,
|
name: galaxy.name,
|
||||||
sectors: []
|
sectors: [],
|
||||||
|
coords: galaxy.coords
|
||||||
};
|
};
|
||||||
|
|
||||||
for(const sectorId of galaxy.sectors) {
|
for(const sectorId of galaxy.sectors) {
|
||||||
|
|
|
@ -20,9 +20,9 @@ const galaxies = allGalaxies.map(galaxy => {
|
||||||
numericId: i++,
|
numericId: i++,
|
||||||
name: galaxy.name,
|
name: galaxy.name,
|
||||||
style: {
|
style: {
|
||||||
left: 0,
|
left: galaxy.coords.x,
|
||||||
top: 0,
|
top: galaxy.coords.y,
|
||||||
color: "red"
|
color: "white"
|
||||||
},
|
},
|
||||||
sectors: galaxy.sectors.map(sector => {
|
sectors: galaxy.sectors.map(sector => {
|
||||||
return {
|
return {
|
||||||
|
@ -32,23 +32,6 @@ const galaxies = allGalaxies.map(galaxy => {
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
for(const galaxy of galaxies) {
|
|
||||||
for(let i = 0; i < 100; i++) {
|
|
||||||
galaxy.style.left = Math.random() * 1200 + 20;
|
|
||||||
galaxy.style.top = Math.random() * 380 + 20;
|
|
||||||
const overlap = galaxies.slice(0, galaxy.numericId).some(otherGalaxy => {
|
|
||||||
const dx = galaxy.style.left - otherGalaxy.style.left;
|
|
||||||
const dy = galaxy.style.top - otherGalaxy.style.top;
|
|
||||||
const distance = Math.sqrt(dx * dx + dy * dy);
|
|
||||||
return distance < 100;
|
|
||||||
});
|
|
||||||
if(!overlap) {
|
|
||||||
galaxy.style.color = "white"
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Galaxy view">
|
<Layout title="Galaxy view">
|
||||||
|
|
|
@ -4,4 +4,8 @@ export default interface DBGalaxy {
|
||||||
_id: ObjectId;
|
_id: ObjectId;
|
||||||
name: string;
|
name: string;
|
||||||
sectors: Array<ObjectId>;
|
sectors: Array<ObjectId>;
|
||||||
|
coords: {
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue