Files
shoot-miniprograms/src/util.js

235 lines
6.0 KiB
JavaScript
Raw Normal View History

2025-06-22 15:04:10 +08:00
export const debounce = (fn, delay = 300) => {
let timer = null;
return async (...args) => {
if (timer) clearTimeout(timer);
return new Promise((resolve) => {
timer = setTimeout(async () => {
try {
const result = await fn(...args);
resolve(result);
} finally {
timer = null;
}
}, delay);
});
};
};
2025-06-21 12:59:59 +08:00
export function renderScores(ctx, arrows = []) {
let rowIndex = 0;
arrows.forEach((item, i) => {
rowIndex = i;
2025-06-21 21:40:31 +08:00
if (arrows.length >= 36 && i < 36) {
2025-06-21 12:59:59 +08:00
ctx.drawImage(
"../static/score-bg.png",
2025-06-21 21:40:31 +08:00
18 + (i % 9) * 30,
290 + Math.ceil((i + 1) / 9) * 30,
27,
27,
"center"
2025-06-21 12:59:59 +08:00
);
renderText(
ctx,
item.ring,
2025-06-21 21:40:31 +08:00
18,
2025-06-21 12:59:59 +08:00
"#fed847",
2025-06-21 21:40:31 +08:00
31 + (i % 9) * 30,
310 + Math.ceil((i + 1) / 9) * 30,
2025-06-21 12:59:59 +08:00
"center"
);
2025-06-21 21:40:31 +08:00
} else if (arrows.length >= 12 && i < 12) {
if (i > 5) rowIndex = i - 6;
2025-06-21 12:59:59 +08:00
ctx.drawImage(
"../static/score-bg.png",
2025-06-21 21:40:31 +08:00
16 + rowIndex * 46,
i > 5 ? 366 : 320,
40,
40
2025-06-21 12:59:59 +08:00
);
renderText(
ctx,
item.ring,
2025-06-21 21:40:31 +08:00
25,
2025-06-21 12:59:59 +08:00
"#fed847",
2025-06-21 21:40:31 +08:00
36 + rowIndex * 46,
i > 5 ? 395 : 349,
2025-06-21 12:59:59 +08:00
"center"
);
}
});
}
2025-06-21 03:34:10 +08:00
export function renderLine(ctx, from) {
ctx.beginPath();
ctx.lineWidth = 1;
ctx.strokeStyle = "rgba(255, 255, 255, 0.3)";
const length = 35;
ctx.moveTo(from, 293);
ctx.lineTo(from + length, 293);
ctx.stroke();
}
2025-06-21 12:59:59 +08:00
export function renderText(ctx, text, size, color, x, y, textAlign = "left") {
2025-06-21 03:34:10 +08:00
ctx.setFontSize(size);
ctx.setFillStyle(color);
2025-06-21 12:59:59 +08:00
ctx.setTextAlign(textAlign);
2025-06-21 03:34:10 +08:00
ctx.fillText(text, x, y);
}
export function renderRankTitle(ctx, text) {
2025-06-21 22:22:19 +08:00
const fontSize = 8;
2025-06-21 03:34:10 +08:00
const textWidth = ctx.measureText(text).width;
const padding = 8; // 文字与背景边缘的间距
const radius = 10; // 圆角半径
2025-06-21 12:59:59 +08:00
const textX = 85;
2025-06-21 22:22:19 +08:00
const textY = 52;
const x = textX - padding - 12; // 文字 x 坐标减去内边距
2025-06-21 03:34:10 +08:00
const y = textY - fontSize - padding / 2 + 1; // 文字 y 坐标减去字体大小和内边距
2025-06-21 22:22:19 +08:00
const width = textWidth + padding * 2 - 24; // 背景宽度
const height = fontSize + padding; // 背景高度
2025-06-21 03:34:10 +08:00
// 开始绘制圆角矩形
ctx.beginPath();
ctx.moveTo(x + radius, y);
// 上边框
ctx.lineTo(x + width - radius, y);
ctx.arcTo(x + width, y, x + width, y + radius, radius);
// 右边框
ctx.lineTo(x + width, y + height - radius);
ctx.arcTo(x + width, y + height, x + width - radius, y + height, radius);
// 下边框
ctx.lineTo(x + radius, y + height);
ctx.arcTo(x, y + height, x, y + height - radius, radius);
// 左边框
ctx.lineTo(x, y + radius);
ctx.arcTo(x, y, x + radius, y, radius);
// 设置背景颜色并填充
ctx.fillStyle = "#5F51FF";
ctx.fill();
ctx.setFontSize(fontSize);
ctx.setFillStyle("rgba(255, 255, 255, 0.9)");
ctx.fillText(text, textX, textY); // 绘制文字
}
2025-06-21 12:59:59 +08:00
export const drawRoundImage = async (
ctx,
imgPath,
x,
y,
width,
height,
radius
) => {
ctx.save();
// 创建圆角路径
ctx.beginPath();
ctx.moveTo(x + radius, y);
// 右上角
ctx.lineTo(x + width - radius, y);
ctx.arcTo(x + width, y, x + width, y + radius, radius);
// 右下角
ctx.lineTo(x + width, y + height - radius);
ctx.arcTo(x + width, y + height, x + width - radius, y + height, radius);
// 左下角
ctx.lineTo(x + radius, y + height);
ctx.arcTo(x, y + height, x, y + height - radius, radius);
// 左上角
ctx.lineTo(x, y + radius);
ctx.arcTo(x, y, x + radius, y, radius);
ctx.clip();
// 绘制图片
ctx.drawImage(imgPath, x, y, width, height);
ctx.restore();
};
2025-06-21 21:40:31 +08:00
export function generateCanvasImage(canvasId, type, user, data) {
var ctx = uni.createCanvasContext(canvasId);
const width = 303;
const height = 535;
2025-06-21 22:28:42 +08:00
ctx.drawImage("../static/share-bg.png", 0, 0, 300, 530);
2025-06-21 22:22:19 +08:00
drawRoundImage(ctx, user.avatar, 17, 20, 37, 37, 20);
ctx.drawImage("../static/avatar-frame.png", 12, 15, 47, 47);
renderText(ctx, user.nickName, 14, "#fff", 80, 32, "center");
2025-06-21 21:40:31 +08:00
renderRankTitle(ctx, user.lvlName, "center");
let titleImage = "../static/first-try-title.png";
let subTitle = "正式开启弓箭手之路";
if (type > 1) {
subTitle = `今日弓箭练习打卡 ${data.createdAt
.split(" ")[0]
.replaceAll("-", ".")}`;
}
if (type == 2) {
titleImage = "../static/practise-one-title.png";
} else if (type == 3) {
titleImage = "../static/practise-two-title.png";
}
2025-06-21 22:28:42 +08:00
ctx.drawImage(titleImage, (width - 160) / 2 - 5, 160, 160, 40);
2025-06-21 21:40:31 +08:00
const subTitleWidth = ctx.measureText(subTitle).width;
2025-06-21 22:22:19 +08:00
renderText(
ctx,
subTitle,
18,
"#fff",
2025-06-21 22:28:42 +08:00
width / 2 - subTitleWidth - (type > 1 ? 15 : 13),
2025-06-21 22:22:19 +08:00
220
);
2025-06-21 21:40:31 +08:00
renderText(ctx, "共", 16, "#fff", 124, 300);
const totalRing = data.arrows.reduce((last, next) => last + next.ring, 0);
renderText(ctx, totalRing, 16, "#fed847", totalRing < 100 ? 144 : 142, 300);
renderText(ctx, "环", 16, "#fff", 166, 300);
renderLine(ctx, 80);
renderLine(ctx, 192);
renderScores(ctx, data.arrows);
ctx.drawImage(
"../static/device-icon.png",
width * 0.06,
height * 0.87,
55,
55
);
renderText(ctx, "射灵平台", 16, "#fff", width * 0.28, height * 0.9);
renderText(
ctx,
"快加入我们一起玩吧~",
11,
"rgba(255, 255, 255, 0.5)",
width * 0.28,
height * 0.93
);
renderText(
ctx,
"后羿就是这样练成的",
11,
"rgba(255, 255, 255, 0.5)",
width * 0.28,
height * 0.96
);
ctx.drawImage("../static/qr-code.png", width * 0.75, height * 0.86, 60, 60);
ctx.draw();
}
export const wxShare = async () => {
try {
const res = await uni.canvasToTempFilePath({
canvasId: "shareCanvas",
fileType: "png", // 图片格式,可选 jpg 或 png
quality: 1, // 图片质量,取值范围为 0-1
});
wx.showShareImageMenu({
path: res.tempFilePath,
});
} catch (error) {
uni.showToast({
title: "生成图片失败",
icon: "error",
});
}
};