mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-13 11:40:35 +00:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
66 lines
1.4 KiB
TypeScript
66 lines
1.4 KiB
TypeScript
import QRMath from './QRMath';
|
|
|
|
class QRPolynomial {
|
|
private num: number[];
|
|
|
|
constructor (num: number[], shift: number) {
|
|
if (num.length === undefined) {
|
|
throw new Error(num.length + '/' + shift);
|
|
}
|
|
|
|
let offset = 0;
|
|
|
|
while (offset < num.length && num[offset] === 0) {
|
|
offset++;
|
|
}
|
|
|
|
this.num = new Array(num.length - offset + shift);
|
|
for (let i = 0; i < num.length - offset; i++) {
|
|
this.num[i] = num[i + offset]!;
|
|
}
|
|
}
|
|
|
|
get (index: number): number {
|
|
return this.num[index]!;
|
|
}
|
|
|
|
getLength (): number {
|
|
return this.num.length;
|
|
}
|
|
|
|
multiply (e: QRPolynomial): QRPolynomial {
|
|
const num = new Array(this.getLength() + e.getLength() - 1);
|
|
|
|
for (let i = 0; i < this.getLength(); i++) {
|
|
for (let j = 0; j < e.getLength(); j++) {
|
|
num[i + j] ^= QRMath.gexp(QRMath.glog(this.get(i)) + QRMath.glog(e.get(j)));
|
|
}
|
|
}
|
|
|
|
return new QRPolynomial(num, 0);
|
|
}
|
|
|
|
mod (e: QRPolynomial): QRPolynomial {
|
|
if (this.getLength() - e.getLength() < 0) {
|
|
return this;
|
|
}
|
|
|
|
const ratio = QRMath.glog(this.get(0)) - QRMath.glog(e.get(0));
|
|
|
|
const num = new Array(this.getLength());
|
|
|
|
for (let i = 0; i < this.getLength(); i++) {
|
|
num[i] = this.get(i);
|
|
}
|
|
|
|
for (let x = 0; x < e.getLength(); x++) {
|
|
num[x] ^= QRMath.gexp(QRMath.glog(e.get(x)) + ratio);
|
|
}
|
|
|
|
// recursive call
|
|
return new QRPolynomial(num, 0).mod(e);
|
|
}
|
|
}
|
|
|
|
export default QRPolynomial;
|