// SPDX-License-Identifier: GPL-3.0-or-later
// Based on nano-webgl-pow by Ben Green (numtel) <ben@latenightsketches.com>
// https://github.com/numtel/nano-webgl-pow
-// import { WorkerInterface } from '#~/pool.js'
-import { NanoPowGlFragmentShader, NanoPowGlVertexShader } from '#nano-pow/shaders/index.js'
-
-// export class NanoPowGl extends WorkerInterface {
-// static {
-// NanoPowGl.listen()
-// }
-// /**
-// * Calculates proof-of-work as described by the Nano cryptocurrency protocol.
-// *
-// * @param {any[]} data - Array of hashes and minimum thresholds
-// * @returns Promise for proof-of-work attached to original array objects
-// */
-// static async work (data: any[]): Promise<any[]> {
-// return new Promise(async (resolve, reject): Promise<void> => {
-// for (const d of data) {
-// try {
-// d.work = await this.search(d.hash, d.threshold)
-// } catch (err) {
-// reject(err)
-// }
-// }
-// resolve(data)
-// })
-// }
-export class NanoPowGl {
+import { NanoPowGlFragmentShader, NanoPowGlVertexShader } from '../shaders/index.js'
+export class NanoPowGl {
/** Used to set canvas size. Must be a multiple of 256. */
static #WORKLOAD: number = 256 * Math.max(1, Math.floor(navigator.hardwareConcurrency))
static #workBuffer: WebGLBuffer | null
static #query: WebGLQuery | null
static #pixels: Uint8Array
- // Vertex Positions, 2 triangles
+ /**Vertex Positions, 2 triangles */
static #positions = new Float32Array([
-1, -1, 0, -1, 1, 0, 1, 1, 0,
1, -1, 0, 1, 1, 0, -1, -1, 0
])
- // Texture Positions
+ /** Texture Positions */
static #uvPosArray = new Float32Array([
1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1
])
- // Compile
+ /** Compile */
static {
this.#gl = new OffscreenCanvas(this.#WORKLOAD, this.#WORKLOAD).getContext('webgl2')
if (this.#gl == null) throw new Error('WebGL 2 is required')
if (!this.#gl.getProgramParameter(this.#program, this.#gl.LINK_STATUS))
throw new Error(this.#gl.getProgramInfoLog(this.#program) ?? `Failed to link program`)
- // Construct simple 2D geometry
+ /** Construct simple 2D geometry */
this.#gl.useProgram(this.#program)
const triangleArray = this.#gl.createVertexArray()
this.#gl.bindVertexArray(triangleArray)
if (typeof threshold !== 'number') throw new TypeError(`Invalid threshold ${threshold}`)
if (this.#gl == null) throw new Error('WebGL 2 is required')
- // Set up uniform buffer object
+ /** Set up uniform buffer object */
const uboView = new DataView(new ArrayBuffer(144))
for (let i = 0; i < 64; i += 8) {
const uint32 = hash.slice(i, i + 8)
NanoPowGl.#gl.bufferSubData(NanoPowGl.#gl.UNIFORM_BUFFER, 0, uboView)
NanoPowGl.#gl.bindBuffer(NanoPowGl.#gl.UNIFORM_BUFFER, null)
- // Start drawing to calculate one nonce per pixel
+ /** Start drawing to calculate one nonce per pixel */
let nonce = null
const work = new Uint8Array(8)
while (nonce == null) {
if (this.#workBuffer == null) throw new Error('Work buffer is required to draw')
this.#gl.clear(this.#gl.COLOR_BUFFER_BIT)
- // Upload work buffer
+ /** Upload work buffer */
crypto.getRandomValues(work)
this.#gl.bindBuffer(this.#gl.UNIFORM_BUFFER, this.#workBuffer)
this.#gl.bufferSubData(this.#gl.UNIFORM_BUFFER, 0, Uint32Array.from(work))
if (this.#gl.getQueryParameter(this.#query, this.#gl.QUERY_RESULT_AVAILABLE)) {
return this.#gl.getQueryParameter(this.#query, this.#gl.QUERY_RESULT)
}
- // Query result not yet available, check again in the next frame
+ /** Query result not yet available, check again in the next frame */
return new Promise((resolve, reject): void => {
try {
requestAnimationFrame(async (): Promise<void> => {
this.#gl.readPixels(0, 0, this.#gl.drawingBufferWidth, this.#gl.drawingBufferHeight, this.#gl.RGBA, this.#gl.UNSIGNED_BYTE, this.#pixels)
for (let i = 0; i < this.#pixels.length; i += 4) {
if (this.#pixels[i] !== 0) {
- // Return the work value with the custom bits
+ /** Return the work value with the custom bits */
const hex = this.#hexify(work.subarray(4, 8)) + this.#hexify([
this.#pixels[i + 2],
this.#pixels[i + 3],
}
}
-// export default `
-// const NanoPowGlFragmentShader = ${NanoPowGlFragmentShader}
-// const NanoPowGlVertexShader = ${NanoPowGlVertexShader}
-// // const WorkerInterface = ${WorkerInterface}
-// const PowGl = ${NanoPowGl}
-// `
-
export default `
const NanoPowGlFragmentShader = \`${NanoPowGlFragmentShader}\`
const NanoPowGlVertexShader = \`${NanoPowGlVertexShader}\`
// SPDX-License-Identifier: GPL-3.0-or-later
// BLAKE2b hashing implementation derived from nano-webgl-pow by Ben Green <ben@latenightsketches.com> (https://github.com/numtel/nano-webgl-pow)
/// <reference types="@webgpu/types" />
-// import { WorkerInterface } from '#~/pool.js'
-import { NanoPowGpuComputeShader } from '#nano-pow/shaders/index.js'
+import { NanoPowGpuComputeShader } from '../shaders/index.js'
/**
* Nano proof-of-work using WebGPU.
*/
-// export class NanoPowGpu extends WorkerInterface {
-// static {
-// NanoPowGpu.listen()
-// }
-
-// /**
-// * Calculates proof-of-work as described by the Nano cryptocurrency protocol.
-// *
-// * @param {any[]} data - Array of hashes and minimum thresholds
-// * @returns Promise for proof-of-work attached to original array objects
-// */
-// static async work (data: any[]): Promise<any[]> {
-// return new Promise(async (resolve, reject): Promise<void> => {
-// for (const d of data) {
-// try {
-// d.work = await this.search(d.hash, d.threshold)
-// } catch (err) {
-// reject(err)
-// }
-// }
-// resolve(data)
-// })
-// }
-// */
export class NanoPowGpu {
// Initialize WebGPU
}
}
-// export default `
-// const NanoPowGpuComputeShader = \`${NanoPowGpuComputeShader}\`
-// const WorkerInterface = ${WorkerInterface}
-// const NanoPowGpu = ${NanoPowGpu}
-// `
-
export default `
const NanoPowGpuComputeShader = \`${NanoPowGpuComputeShader}\`
const NanoPowGpu = ${NanoPowGpu}