{
let objDate=moment(start_date)
let counter=0
const canvasWidth = 1080;
const canvasHeight = 800;
const canvasCenter = [canvasWidth * 0.5, canvasHeight * 0.5];
const canvas = DOM.canvas(canvasWidth, canvasHeight);
const p = new paper.PaperScope();
paper.setup(canvas);
let radiusScale = 0.0002 * scale
let distanceScale = 0.08 * scale
let sunRadius = (solarSystem.sun.radius * radiusScale) / sunScale
let sun
if (fill == "colorFill") {
let background = new p.Path.Rectangle({
size: [canvasWidth, canvasHeight],
fillColor: "#141414",
})
sun = new p.Path.Circle({
name: solarSystem.sun.name,
center: canvasCenter,
radius: sunRadius,
r: sunRadius,
fillColor: "#FA8C16",
})
} else if (fill == "imageFill") {
let background = new p.Raster({
source: await FileAttachment("wallhaven-yje37l.jpg").url(),
position: paper.view.center,
size: [canvasWidth, canvasHeight]
})
let sunSize = sunRadius * 2
sun = new p.Raster({
source: await solarSystem.sun.img,
position: paper.view.center,
size: [sunSize, sunSize]
})
sun.onLoad = (e) => {
sun.size = [sunSize, sunSize]
}
}
let date_label = new p.PointText({
name:"date_label",
point: [50,50],
content: moment(objDate).format("YYYY-MM-DD"),
fillColor: '#FFFFFF',
fontFamily: 'Courier New',
fontWeight: 'bold',
fontSize: 16,
strokeColor: "#000000",
strokeWidth: 0.4,
})
const sunText = new p.PointText({
name: solarSystem.sun.name,
point: [sun.position.x - 8, sun.position.y + sun.r + 16],
content: sun.name,
fillColor: '#FFFFFF',
fontFamily: 'Courier New',
fontWeight: 'bold',
fontSize: 16,
strokeColor: "#000000",
strokeWidth: 0.4,
})
const planets = []
for (let planet in solarSystem.planets) {
let pl = solarSystem.planets[planet]
let radius = pl.radius * radiusScale
let planetSize = pl.radius * 2 * radiusScale
let cx = sun.position.x + ((solarSystem.sun.radius * radiusScale) / sunScale) + radius + (pl.distance * distanceScale)
let cy = sun.position.y
let star = fill == "colorFill" ?
new p.Path.Circle({
name: pl.name,
center: [cx, cy],
radius: radius,
r: radius,
fillColor: "#E6F7FF",
revolutionPeriod: pl.revolutionPeriod
})
: new p.Raster({
name: pl.name,
source: await pl.img,
position: [cx, cy],
size: [planetSize, planetSize],
r: radius,
revolutionPeriod: pl.revolutionPeriod
})
star.onLoad = (e) => {
star.size = [planetSize, planetSize]
}
planets.push({
ring: new p.Path.Circle({
center: [sun.position.x, sun.position.y],
radius: cx - sun.position.x,
strokeColor: "#FFF1B8",
strokeWidth: 0.4,
}),
star: star,
text: new p.PointText({
point: [cx, cy + radius],
content: pl.name,
fillColor: '#FFFFFF',
fontFamily: 'Courier New',
fontWeight: 'bold',
fontSize: 16,
strokeColor: "#000000",
strokeWidth: 0.4,
}),
})
}
const satellites = []
for (let satellite in solarSystem.satellites) {
let s = solarSystem.satellites[satellite]
let around = planets.filter(item => item.star.name.toLowerCase() == s.around)[0].star
let radius = s.radius * radiusScale
let satelliteSize = s.radius * 2 * radiusScale
let cx = around.position.x + (around.r * radiusScale) + radius + (s.distance * distanceScale) + 4
let cy = around.position.y
satellites.push({
ring: new p.Path.Circle({
center: around.position,
radius: cx - around.position.x,
strokeColor: "#f0f0f0",
strokeWidth: 0.4,
}),
star: new p.Path.Circle({
center: [cx, cy],
radius: radius,
r: radius,
fillColor: "#E6F7FF",
revolutionPeriod: s.revolutionPeriod,
around: s.around
}),
text: new p.PointText({
point: [cx, cy + radius],
content: s.name,
fillColor: '#FFFFFF',
fontFamily: 'Courier New',
fontWeight: 'bold',
fontSize: 14,
strokeColor: "#000000",
strokeWidth: 0.4,
}),
})
}
let sunFlag = 0
paper.view.onFrame = (event) => {
if( pause % 2==0)return
if( moment(setDate(objDate,counter)) >= moment(target_date))return
counter+=1
date_label.content=setDate(objDate,counter)
if (sun.opacity > 0.8 && event.count % 3 == 0 && sunFlag == 0) {
sun.opacity -= 0.01
if (sun.opacity <= 0.8) {
sunFlag = 1
}
}
if (sun.opacity <= 1 && event.count % 3 == 0 && sunFlag == 1) {
sun.opacity += 0.01
if (sun.opacity >= 1) {
sunFlag = 0
}
}
planets.forEach(item => {
let star = item.star
let text = item.text
star.rotate(((speed) / star.revolutionPeriod), sun.position)
text.position.x = star.position.x
text.position.y = star.position.y + star.r + 10
})
satellites.forEach(item => {
let around = planets.filter(p => p.star.name.toLowerCase() == item.star.around)[0].star
let star = item.star
let ring = item.ring
let text = item.text
star.rotate((speed / star.revolutionPeriod), around.position)
star.rotate((speed / around.revolutionPeriod), sun.position)
ring.position = around.position
text.position.x = star.position.x
text.position.y = star.position.y + star.r + 6
})
}
return canvas;
}