2024-10-09 23:18:42 -05:00
|
|
|
const canvas = document.getElementById("canvas");
|
|
|
|
const ctx = canvas.getContext("2d");
|
|
|
|
|
2024-10-16 22:30:14 -05:00
|
|
|
const canvasSize = 500;
|
2024-10-24 23:51:19 -05:00
|
|
|
let zoom = 1.0;
|
2024-10-29 22:36:15 -05:00
|
|
|
let baseGridCount = 500; // Base grid count at zoom = 1
|
|
|
|
let gridCount = baseGridCount;
|
|
|
|
let pixelSize = canvasSize / gridCount;
|
2024-10-29 21:32:06 -05:00
|
|
|
|
2024-10-29 22:36:15 -05:00
|
|
|
canvas.width = canvasSize;
|
|
|
|
canvas.height = canvasSize;
|
2024-10-29 21:32:06 -05:00
|
|
|
|
2024-10-29 22:36:15 -05:00
|
|
|
function updateGridCount() {
|
|
|
|
return Math.floor(baseGridCount / zoom); // Adjust grid count based on zoom
|
2024-10-29 21:32:06 -05:00
|
|
|
}
|
2024-10-24 23:51:19 -05:00
|
|
|
|
2024-10-29 22:36:15 -05:00
|
|
|
function updatePixelSize() {
|
|
|
|
return canvasSize / gridCount; // Update pixel size based on new grid count
|
2024-10-24 23:51:19 -05:00
|
|
|
}
|
|
|
|
|
2024-10-23 18:01:27 -05:00
|
|
|
function drawGrid() {
|
|
|
|
ctx.strokeStyle = '#000'; // Set grid line color
|
|
|
|
ctx.lineWidth = 1; // Set grid line width
|
|
|
|
// Draw horizontal lines
|
2024-10-29 22:36:15 -05:00
|
|
|
for (let i = 0; i <= gridCount; i++) {
|
|
|
|
let y = i * pixelSize;
|
2024-10-23 18:01:27 -05:00
|
|
|
ctx.beginPath();
|
|
|
|
ctx.moveTo(0, y); // Start the line at the left edge (x = 0)
|
|
|
|
ctx.lineTo(canvasSize, y); // Draw to the right edge (x = canvasSize)
|
|
|
|
ctx.stroke();
|
|
|
|
}
|
|
|
|
// Draw vertical lines
|
2024-10-29 22:36:15 -05:00
|
|
|
for (let i = 0; i <= gridCount; i++) {
|
|
|
|
let x = i * pixelSize;
|
2024-10-23 18:01:27 -05:00
|
|
|
ctx.beginPath();
|
|
|
|
ctx.moveTo(x, 0); // Start the line at the top edge (y = 0)
|
|
|
|
ctx.lineTo(x, canvasSize); // Draw to the bottom edge (y = canvasSize)
|
|
|
|
ctx.stroke();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-29 22:36:15 -05:00
|
|
|
//drawGrid();
|
2024-10-23 18:01:27 -05:00
|
|
|
|
2024-10-16 22:30:14 -05:00
|
|
|
class Point {
|
|
|
|
// new Point(x, y)
|
|
|
|
constructor(x, y) {
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
}
|
|
|
|
// Convert canvas position to data position
|
|
|
|
canvasToData() {
|
|
|
|
return new Point(
|
2024-10-29 22:36:15 -05:00
|
|
|
Math.round(this.x / canvasSize * gridCount),
|
|
|
|
Math.round(this.y / canvasSize * gridCount)
|
2024-10-16 22:30:14 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
// Convert data position to canvas position
|
|
|
|
dataToCanvas() {
|
|
|
|
return new Point(
|
2024-10-29 22:36:15 -05:00
|
|
|
this.x / gridCount * canvasSize,
|
|
|
|
this.y / gridCount * canvasSize
|
2024-10-16 22:30:14 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
// Convert to array index
|
|
|
|
index() {
|
|
|
|
return this.y * dataSize + this.x;
|
|
|
|
}
|
|
|
|
// Basic math functions
|
|
|
|
plus(otherPoint) {
|
|
|
|
return new Point(
|
|
|
|
this.x + otherPoint.x,
|
|
|
|
this.y + otherPoint.y
|
|
|
|
);
|
|
|
|
}
|
|
|
|
minus(otherPoint) {
|
|
|
|
return new Point(
|
|
|
|
this.x - otherPoint.x,
|
|
|
|
this.y - otherPoint.y
|
|
|
|
);
|
|
|
|
}
|
|
|
|
scaleBy(number) {
|
|
|
|
return new Point(
|
|
|
|
this.x * number,
|
|
|
|
this.y * number
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2024-10-16 18:41:26 -05:00
|
|
|
|
2024-10-29 21:32:06 -05:00
|
|
|
function draw(point, color) {
|
2024-10-29 22:36:15 -05:00
|
|
|
point = point.canvasToData().dataToCanvas();
|
2024-10-29 21:32:06 -05:00
|
|
|
ctx.fillStyle = color;
|
2024-10-29 22:36:15 -05:00
|
|
|
ctx.fillRect(point.x, point.y, pixelSize, pixelSize);
|
2024-10-16 18:41:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
canvas.addEventListener("mousedown", (e) => {
|
2024-10-29 22:36:15 -05:00
|
|
|
let x = e.clientX - canvas.getBoundingClientRect().left - (pixelSize / 2);
|
|
|
|
let y = e.clientY - canvas.getBoundingClientRect().top - (pixelSize / 2);
|
2024-10-29 21:32:06 -05:00
|
|
|
let color = document.getElementById("stroke").value;
|
2024-10-29 22:36:15 -05:00
|
|
|
let point = new Point(x, y);
|
2024-10-29 21:32:06 -05:00
|
|
|
draw(point, color);
|
|
|
|
});
|
|
|
|
|
|
|
|
document.getElementById("zoomIn").addEventListener("click", () => {
|
2024-10-29 22:36:15 -05:00
|
|
|
if (zoom < 100.0) {
|
|
|
|
if (zoom == 1.0){
|
|
|
|
zoom = 4.0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
zoom += 4.0;
|
|
|
|
}
|
|
|
|
gridCount = updateGridCount();
|
|
|
|
pixelSize = updatePixelSize();
|
|
|
|
console.log(zoom);
|
|
|
|
console.log(gridCount);
|
2024-10-29 21:32:06 -05:00
|
|
|
}
|
2024-10-29 22:36:15 -05:00
|
|
|
ctx.clearRect(0, 0, canvas.width, canvas.height);
|
2024-10-29 21:32:06 -05:00
|
|
|
drawGrid(); // Redraw the grid with updated zoom
|
|
|
|
});
|
|
|
|
|
|
|
|
document.getElementById("zoomOut").addEventListener("click", () => {
|
2024-10-29 22:36:15 -05:00
|
|
|
if (zoom > 1.0) {
|
|
|
|
if (zoom <= 4.0){
|
|
|
|
zoom = 1.0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
zoom -= 4.0;
|
|
|
|
}
|
|
|
|
gridCount = updateGridCount();
|
|
|
|
pixelSize = updatePixelSize();
|
|
|
|
console.log(zoom);
|
|
|
|
console.log(gridCount);
|
2024-10-29 21:32:06 -05:00
|
|
|
}
|
2024-10-29 22:36:15 -05:00
|
|
|
ctx.clearRect(0, 0, canvas.width, canvas.height);
|
2024-10-29 21:32:06 -05:00
|
|
|
drawGrid(); // Redraw the grid with updated zoom
|
2024-10-23 18:09:48 -05:00
|
|
|
});
|