atlas/web/_js/main/main.js

543 lines
13 KiB
JavaScript

/*!
* The 2022 r/place Atlas
* Copyright (c) 2017 Roland Rytz <roland@draemm.li>
* Copyright (c) 2022 Place Atlas contributors
* Licensed under AGPL-3.0 (https://2022.place-atlas.stefanocoding.me/license.txt)
*/
const innerContainer = document.getElementById("innerContainer")
const container = document.getElementById("container")
const highlightCanvas = document.getElementById("highlightCanvas")
const imageCanvas = document.getElementById('image')
const highlightContext = highlightCanvas.getContext("2d")
highlightCanvas.width = canvasSize.x
highlightCanvas.height = canvasSize.y
imageCanvas.width = canvasSize.x
imageCanvas.height = canvasSize.y
let zoom = 1
if (window.devicePixelRatio) {
zoom = 1 / window.devicePixelRatio
}
const maxZoom = 128
const minZoom = 0.1
let zoomOrigin = [0, 0]
let scaleZoomOrigin = [0, 0]
let dragging = false
let lastPosition = [0, 0]
const viewportSize = [0, 0]
// TODO Probably merge both functions
function applyView() {
//console.log(zoomOrigin, scaleZoomOrigin)
//console.log(scaleZoomOrigin[0])
scaleZoomOrigin[0] = Math.max(-canvasCenter.x, Math.min(canvasCenter.x, scaleZoomOrigin[0]))
scaleZoomOrigin[1] = Math.max(-canvasCenter.y, Math.min(canvasCenter.y, scaleZoomOrigin[1]))
zoomOrigin = [scaleZoomOrigin[0] * zoom, scaleZoomOrigin[1] * zoom]
innerContainer.style.height = (~~(zoom * canvasSize.x)) + "px"
innerContainer.style.width = (~~(zoom * canvasSize.y)) + "px"
innerContainer.style.left = ~~(container.clientWidth / 2 - innerContainer.clientWidth / 2 + zoomOrigin[0] + container.offsetLeft) + "px"
innerContainer.style.top = ~~(container.clientHeight / 2 - innerContainer.clientHeight / 2 + zoomOrigin[1] + container.offsetTop) + "px"
}
function setView(x, y, zoomN = zoom) {
zoom = zoomN
scaleZoomOrigin = [
canvasCenter.x - x,
canvasCenter.y - y
]
applyView()
}
let atlas = null
window.atlas = atlas
let atlasAll = null
window.atlasAll = atlasAll
if (document.location.host !== prodDomain) document.body.dataset.dev = ""
init()
async function init() {
const args = window.location.search
const params = new URLSearchParams(args)
// For Reviewing Reddit Changes
// const atlasRef = '../tools/temp-atlas.json'
const atlasRef = params.get('atlas') || './atlas.json'
const atlasResp = await fetch(atlasRef)
atlas = await atlasResp.json()
atlas.sort((a, b) => a.center[1] - b.center[1])
atlasAll = updateAtlasAll(atlas)
let mode = "view"
if (args) {
mode = params.get("mode") || "view"
// Backwards compatibility for old links using "search" id arg
if (params.has('id') && mode !== 'draw') {
const id = params.get('id')
params.delete('id')
const newLocation = new URL(window.location)
newLocation.hash = id
newLocation.search = params
window.history.replaceState({}, '', newLocation)
}
}
const hash = window.location.hash.substring(1)
const [, period] = hash.split('/')
if (period) {
const [, targetPeriod, targetVariation] = parsePeriod(period)
await updateTime(targetPeriod, targetVariation, true)
} else {
await updateTime(currentPeriod, currentVariation, true)
}
//console.log(document.documentElement.clientWidth, document.documentElement.clientHeight)
zoomOrigin = [0, 0]
applyView()
let initialPinchDistance = 0
let initialPinchZoom = 0
let initialPinchZoomOrigin = [0, 0]
let desiredZoom
let zoomAnimationFrame
document.body.dataset.mode = mode
initGlobal()
if (mode !== "draw") initViewGlobal()
if (mode === "draw") {
initDraw()
} else if (mode === "about") {
window.location = "./about.html"
} else if (mode === "overlap") {
if (initOverlap) {
initOverlap()
}
} else if (mode === "explore") {
initExplore()
} else if (mode.startsWith("diff")) {
try {
const liveAtlasRef = params.get('liveatlas') || `https://${prodDomain}/atlas.json`
const liveAtlasResp = await fetch(liveAtlasRef)
let liveAtlas = await liveAtlasResp.json()
liveAtlas = updateAtlasAll(liveAtlas)
const liveAtlasReduced = liveAtlas.reduce(function (a, c) {
a[c.id] = c
return a
}, {})
// Mark added/edited entries
atlasAll = atlasAll.map(function (entry) {
if (liveAtlasReduced[entry.id] === undefined) {
entry.diff = "add"
} else if (JSON.stringify(entry) !== JSON.stringify(liveAtlasReduced[entry.id])) {
entry.diff = "edit"
}
return entry
})
// Mark removed entries
const atlasReduced = atlasAll.reduce(function (a, c) {
a[c.id] = c
return a
}, {})
const removedEntries = liveAtlas.filter(entry =>
atlasReduced[entry.id] === undefined
).map(entry => {
entry.diff = "delete"
return entry
})
atlasAll.push(...removedEntries)
if (mode.includes("only")) {
atlasAll = atlasAll.filter(function (entry) {
return typeof entry.diff === "string"
})
}
} catch (error) {
console.warn("Diff mode failed to load, reverting to normal view.", error)
} finally {
await updateTime()
if (initOverlap && mode.includes("overlap")) {
initOverlap()
} else {
initView()
}
}
} else {
initView()
}
document.getElementById("loading").classList.add("d-none")
document.getElementById("zoomInButton").addEventListener("click", function () {
/*if(zoomAnimationFrame){
window.cancelAnimationFrame(zoomAnimationFrame)
}*/
const x = container.clientWidth / 2
const y = container.clientHeight / 2
initialPinchZoomOrigin = [
scaleZoomOrigin[0],
scaleZoomOrigin[1]
]
initialPinchZoom = zoom
lastPosition = [x, y]
zoom *= 2
zoom = Math.max(minZoom, Math.min(maxZoom, zoom))
applyZoom(x, y, zoom)
})
document.getElementById("zoomOutButton").addEventListener("click", function () {
/*if(zoomAnimationFrame){
window.cancelAnimationFrame(zoomAnimationFrame)
}*/
const x = container.clientWidth / 2
const y = container.clientHeight / 2
initialPinchZoomOrigin = [
scaleZoomOrigin[0],
scaleZoomOrigin[1]
]
initialPinchZoom = zoom
lastPosition = [x, y]
zoom /= 2
zoom = Math.max(minZoom, Math.min(maxZoom, zoom))
applyZoom(x, y, zoom)
})
document.getElementById("zoomResetButton").addEventListener("click", function () {
zoom = 1
zoomOrigin = [0, 0]
scaleZoomOrigin = [0, 0]
updateLines()
applyView()
})
container.addEventListener("dblclick", e => {
/*if(zoomAnimationFrame){
window.cancelAnimationFrame(zoomAnimationFrame)
}*/
const x = e.clientX - container.offsetLeft
const y = e.clientY - container.offsetTop
initialPinchZoomOrigin = [
scaleZoomOrigin[0],
scaleZoomOrigin[1]
]
initialPinchZoom = zoom
lastPosition = [x, y]
if (e.ctrlKey) zoom /= 2
else zoom *= 2
zoom = Math.max(minZoom, Math.min(maxZoom, zoom))
applyZoom(x, y, zoom)
e.preventDefault()
})
container.addEventListener("wheel", e => {
/*if(zoomAnimationFrame){
window.cancelAnimationFrame(zoomAnimationFrame)
}*/
const x = e.clientX - container.offsetLeft
const y = e.clientY - container.offsetTop
initialPinchZoomOrigin = [
scaleZoomOrigin[0],
scaleZoomOrigin[1]
]
initialPinchZoom = zoom
lastPosition = [x, y]
// Check if we are zooming by pixels
// https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaMode
if (e.deltaMode === 0) {
// Scale the pixel delta by the current zoom factor
// We want to zoom faster when closer, and slower when further
// This creates a smoother experience
zoom -= e.deltaY * (0.001 * zoom)
} else {
if (e.deltaY > 0) zoom /= 2
else if (e.deltaY < 0) zoom *= 2
}
zoom = Math.max(minZoom, Math.min(maxZoom, zoom))
applyZoom(x, y, zoom)
}, { passive: true })
/*function setDesiredZoom(x, y, target){
zoom = (zoom*2 + target)/3
//console.log(zoom)
if(Math.abs(1 - zoom/target) <= 0.01){
zoom = target
}
applyZoom(x, y, zoom)
if(zoom != target){
zoomAnimationFrame = window.requestAnimationFrame(function(){
setDesiredZoom(x, y, target)
})
}
}*/
container.addEventListener("mousedown", e => {
mousedown(e.clientX, e.clientY)
e.preventDefault()
})
container.addEventListener("touchstart", e => {
if (e.touches.length === 2) {
e.preventDefault()
}
touchstart(e)
}, { passive: true })
function mousedown(x, y) {
lastPosition = [x, y]
dragging = true
}
function touchstart(e) {
if (e.touches.length === 1) {
mousedown(e.touches[0].clientX, e.touches[0].clientY)
} else if (e.touches.length === 2) {
initialPinchDistance = Math.sqrt(
Math.pow(e.touches[0].clientX - e.touches[1].clientX, 2)
+ Math.pow(e.touches[0].clientY - e.touches[1].clientY, 2)
)
initialPinchZoom = zoom
initialPinchZoomOrigin = [
scaleZoomOrigin[0],
scaleZoomOrigin[1]
]
mousedown(
(e.touches[0].clientX + e.touches[1].clientX) / 2,
(e.touches[0].clientY + e.touches[1].clientY) / 2
)
}
}
window.addEventListener("mousemove", e => {
updateLines()
mousemove(e.clientX, e.clientY)
if (dragging) {
e.preventDefault()
}
})
window.addEventListener("touchmove", e => {
if (e.touches.length === 2 || e.scale > 1) {
e.preventDefault()
}
touchmove(e)
},
{ passive: false }
)
function mousemove(x, y) {
if (!dragging) return
container.style.cursor = "move"
const deltaX = x - lastPosition[0]
const deltaY = y - lastPosition[1]
lastPosition = [x, y]
zoomOrigin[0] += deltaX
zoomOrigin[1] += deltaY
scaleZoomOrigin[0] += deltaX / zoom
scaleZoomOrigin[1] += deltaY / zoom
updateLines()
applyView()
}
function touchmove(e) {
updateLines()
if (e.touches.length === 1) {
mousemove(e.touches[0].clientX, e.touches[0].clientY)
} else if (e.touches.length === 2) {
const newPinchDistance = Math.sqrt(
Math.pow(e.touches[0].clientX - e.touches[1].clientX, 2)
+ Math.pow(e.touches[0].clientY - e.touches[1].clientY, 2)
)
zoom = initialPinchZoom * newPinchDistance / initialPinchDistance
const x = (e.touches[0].clientX + e.touches[1].clientX) / 2 - container.offsetLeft
const y = (e.touches[0].clientY + e.touches[1].clientY) / 2 - container.offsetTop
applyZoom(x, y, zoom)
}
}
function applyZoom(x, y, zoom) {
const deltaX = x - lastPosition[0]
const deltaY = y - lastPosition[1]
const pinchTranslateX = (x - container.clientWidth / 2 - deltaX)
const pinchTranslateY = (y - container.clientHeight / 2 - deltaY)
scaleZoomOrigin[0] = initialPinchZoomOrigin[0] + deltaX / zoom + pinchTranslateX / zoom - pinchTranslateX / initialPinchZoom
scaleZoomOrigin[1] = initialPinchZoomOrigin[1] + deltaY / zoom + pinchTranslateY / zoom - pinchTranslateY / initialPinchZoom
zoomOrigin[0] = scaleZoomOrigin[0] * zoom
zoomOrigin[1] = scaleZoomOrigin[1] * zoom
applyView()
updateLines()
}
window.addEventListener("mouseup", e => {
if (hovered.length > 0) {
container.style.cursor = "pointer"
} else if (drawing === true) {
container.style.cursor = "crosshair"
} else {
container.style.cursor = "default"
}
if (dragging) {
e.preventDefault()
}
mouseup(e.clientX, e.clientY)
})
window.addEventListener("touchend", touchend)
function mouseup(x, y) {
if (dragging) {
dragging = false
}
}
function touchend(e) {
if (e.touches.length === 0) {
mouseup()
setTimeout(() => updateLines(), 0)
} else if (e.touches.length === 1) {
initialPinchZoom = zoom
lastPosition = [e.touches[0].clientX, e.touches[0].clientY]
}
}
window.addEventListener("resize", function () {
//console.log(document.documentElement.clientWidth, document.documentElement.clientHeight)
applyView()
})
document.body.dataset.initDone = ''
}
function updateAtlasAll(atlas = atlasAll) {
for (const index in atlas) {
const entry = atlas[index]
entry._index = index
const currentLinks = entry.links
entry.links = {
website: [],
subreddit: [],
discord: [],
wiki: [],
...currentLinks
}
const currentPath = entry.path
const currentCenter = entry.center
for (const key in currentPath) {
currentPath[key] = currentPath[key].map(point => point.map(int => int + 0.5))
}
for (const key in currentCenter) {
currentCenter[key] = currentCenter[key].map(int => int + 0.5)
}
entry.path = currentPath
entry.center = currentCenter
}
return atlas
}
// Announcement system
const announcementEl = document.querySelector("#headerAnnouncement")
const announcementButton = announcementEl.querySelector('[role=button]')
const announcementText = announcementEl.querySelector('p').textContent.trim()
if (announcementText && announcementText !== window.localStorage.getItem('announcement-closed')) {
announcementButton.click()
document.querySelector('#objectsList').style.marginTop = '2.8rem'
}
announcementEl.querySelector('[role=button]').addEventListener('click', () => {
window.localStorage.setItem('announcement-closed', announcementText)
document.querySelector('#objectsList').style.marginTop = '0'
})