mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-14 04:19:29 -07:00
265 lines
7.8 KiB
JavaScript
265 lines
7.8 KiB
JavaScript
/**
|
|
*
|
|
* Meant to conform to the WGSL spec:
|
|
*
|
|
* https://gpuweb.github.io/gpuweb/wgsl/#alignment-and-size
|
|
* https://gpuweb.github.io/gpuweb/wgsl/#structure-layout-rules
|
|
*
|
|
* TODO:
|
|
* - Put in own repo
|
|
* - create mocha tests
|
|
* - Document. Provide examples of the simple constructor and from WGSL
|
|
*
|
|
**/
|
|
|
|
const zero = () => 0;
|
|
const array = (n) => () => Array(n).fill(0);
|
|
|
|
const simpleTypes = {
|
|
["i32"]: [4, 4, "i32", zero],
|
|
["u32"]: [4, 4, "u32", zero],
|
|
["f32"]: [4, 4, "f32", zero],
|
|
|
|
["atomic<i32>"]: [4, 4, "i32", zero],
|
|
["atomic<u32>"]: [4, 4, "u32", zero],
|
|
["atomic<f32>"]: [4, 4, "f32", zero],
|
|
|
|
["vec2<i32>"]: [8, 8, "i32", array(2)],
|
|
["vec2<u32>"]: [8, 8, "u32", array(2)],
|
|
["vec2<f32>"]: [8, 8, "f32", array(2)],
|
|
|
|
["vec3<i32>"]: [16, 12, "i32", array(3)],
|
|
["vec3<u32>"]: [16, 12, "u32", array(3)],
|
|
["vec3<f32>"]: [16, 12, "f32", array(3)],
|
|
|
|
["vec4<i32>"]: [16, 16, "i32", array(4)],
|
|
["vec4<u32>"]: [16, 16, "u32", array(4)],
|
|
["vec4<f32>"]: [16, 16, "f32", array(4)],
|
|
|
|
["mat2x2<f32>"]: [8, 16, "f32", array(2 * 2)],
|
|
["mat3x2<f32>"]: [8, 24, "f32", array(3 * 2)],
|
|
["mat4x2<f32>"]: [8, 32, "f32", array(4 * 2)],
|
|
["mat2x3<f32>"]: [16, 32, "f32", array(2 * 3)],
|
|
["mat3x3<f32>"]: [16, 48, "f32", array(3 * 3)],
|
|
["mat4x3<f32>"]: [16, 64, "f32", array(4 * 3)],
|
|
["mat2x4<f32>"]: [16, 32, "f32", array(2 * 4)],
|
|
["mat3x4<f32>"]: [16, 48, "f32", array(3 * 4)],
|
|
["mat4x4<f32>"]: [16, 64, "f32", array(4 * 4)],
|
|
};
|
|
|
|
const getTypeData = (type, attributes, otherStructLayouts) => {
|
|
type = type.replaceAll(/\s/g, "");
|
|
if (simpleTypes[type] != null) {
|
|
let [align, size, baseType, defaultValue] = simpleTypes[type];
|
|
if (attributes.align != null) {
|
|
align = parseInt(attributes.align);
|
|
}
|
|
if (attributes.size != null) {
|
|
size = parseInt(attributes.size);
|
|
}
|
|
return {
|
|
baseType,
|
|
align,
|
|
size,
|
|
defaultValue,
|
|
};
|
|
} else if (type in otherStructLayouts) {
|
|
const innerLayout = otherStructLayouts[type];
|
|
let { align, size } = innerLayout;
|
|
if (attributes.align != null) {
|
|
align = parseInt(attributes.align);
|
|
}
|
|
if (attributes.size != null) {
|
|
size = parseInt(attributes.size);
|
|
}
|
|
return {
|
|
isStruct: true,
|
|
innerLayout,
|
|
size,
|
|
align,
|
|
defaultValue: () => makeDataForLayout(otherStructLayouts, innerLayout),
|
|
};
|
|
} else if (type.startsWith("array<")) {
|
|
const arrayMatch = type.match(/array<(.*?),?(\d+)?>$/);
|
|
const [_, innerType, fixedSize] = arrayMatch;
|
|
if (innerType == null) {
|
|
return null;
|
|
}
|
|
const elementTypeData = getTypeData(innerType, [], otherStructLayouts);
|
|
|
|
const mult = parseInt(fixedSize ?? "0");
|
|
const align = elementTypeData.align;
|
|
let stride = elementTypeData.size;
|
|
if (attributes.stride != null) {
|
|
stride = parseInt(attributes.stride);
|
|
}
|
|
const size = stride * mult;
|
|
|
|
return {
|
|
isArray: true,
|
|
isFixedSize: mult > 0,
|
|
elementTypeData,
|
|
mult,
|
|
size,
|
|
align,
|
|
stride,
|
|
defaultValue: () =>
|
|
Array(mult)
|
|
.fill()
|
|
.map((_) => elementTypeData.defaultValue()),
|
|
};
|
|
} else {
|
|
console.warn(`Unrecognized type ${type}.`);
|
|
return null;
|
|
}
|
|
};
|
|
|
|
const parseAttributes = (str) => {
|
|
const attributes = {};
|
|
for (const attr of str.split(",").filter((attr) => attr.length > 0)) {
|
|
const match = attr.match(/(\w+)(\((.*)\))?/); // foo(bar)
|
|
const [_, identifier, __, value] = match;
|
|
attributes[identifier] = value;
|
|
}
|
|
return attributes;
|
|
};
|
|
|
|
const parseStructLayout = (identifier, body, structLayouts) => {
|
|
const fields = [];
|
|
let byteOffset = 0;
|
|
const lines = body
|
|
.trim()
|
|
.split(",") // WGSL struct fields are currently delimited by commas...
|
|
.filter((s) => s.length > 0)
|
|
// ...but some commas separate elements between angle brackets, rather than between lines:
|
|
.reduce((existingLines, line, index) => {
|
|
if (index === 0) {
|
|
return [line];
|
|
}
|
|
|
|
const lastLine = existingLines[index - 1];
|
|
const angleBracketBalance = lastLine.split("<").length - lastLine.split(">").length;
|
|
if (angleBracketBalance !== 0) {
|
|
existingLines[index - 1] = `${lastLine},${line}`;
|
|
} else {
|
|
existingLines.push(line);
|
|
}
|
|
|
|
return existingLines;
|
|
}, []);
|
|
|
|
for (const line of lines) {
|
|
const fieldMatch = line.match(/(@(.*?))? ?(\w+) ?: ?(@(.*?))? ?(.*)/); // @a(...) @b(...) foo : @c(...) @d(...) bar;
|
|
const [_, __, leftAttributes, identifier, ___, rightAttributes, type] = fieldMatch;
|
|
|
|
const typeData = getTypeData(type, parseAttributes(rightAttributes ?? ""), structLayouts);
|
|
if (typeData == null) {
|
|
console.warn(`Skipping struct ${identifier}.`);
|
|
return null;
|
|
}
|
|
|
|
byteOffset = Math.ceil(byteOffset / typeData.align) * typeData.align;
|
|
fields.push({
|
|
attributes: parseAttributes(leftAttributes ?? ""),
|
|
identifier,
|
|
type,
|
|
...typeData,
|
|
byteOffset,
|
|
});
|
|
byteOffset += typeData.size;
|
|
}
|
|
|
|
const minSizeInBytes = byteOffset;
|
|
const align = Math.max(...fields.map((field) => field.align));
|
|
const size = Math.ceil(minSizeInBytes / align) * align;
|
|
return { identifier, fields, size, align };
|
|
};
|
|
|
|
const parseStructLayoutsFromShader = (wgsl) => {
|
|
wgsl = wgsl
|
|
.replace(/\s*\/\/.*$/gm, "") // remove end-of-line comments
|
|
.replace(/\/\*.*?\*\//gms, "") // remove multi-line comments
|
|
.replace(/\s+/gm, " "); // convert all contiguous whitespace to single space characters
|
|
|
|
const structLayouts = {};
|
|
const structMatches = Array.from(wgsl.matchAll(/struct (\w+) ?\{(.*?)\};/g)); // struct Foo {...}
|
|
|
|
for (const structMatch of structMatches) {
|
|
const [_, identifier, body] = structMatch;
|
|
const layout = parseStructLayout(identifier, body, structLayouts);
|
|
if (layout != null) {
|
|
structLayouts[layout.identifier] = layout;
|
|
}
|
|
}
|
|
return structLayouts;
|
|
};
|
|
|
|
const makeDataForLayout = (structLayouts, layout) => Object.fromEntries(layout.fields.map((field) => [field.identifier, field.defaultValue()]));
|
|
|
|
const writeField = (allLayouts, field, value, views, byteOffset, warnMissingFields) => {
|
|
if (value == null) {
|
|
if (warnMissingFields) {
|
|
console.warn(`Property missing from data: ${field.identifier}`);
|
|
}
|
|
return;
|
|
}
|
|
if (field.isArray) {
|
|
const count = field.isFixedSize ? field.mult : value.length;
|
|
for (let i = 0; i < count; i++) {
|
|
writeField(allLayouts, field.elementTypeData, value[i], views, byteOffset + field.stride * i, warnMissingFields);
|
|
}
|
|
} else if (field.isStruct) {
|
|
for (const innerField of field.innerLayout.fields) {
|
|
writeField(allLayouts, innerField, value[innerField.identifier], views, byteOffset + field.stride * i, warnMissingFields);
|
|
}
|
|
} else {
|
|
const view = views[field.baseType];
|
|
const array = value[Symbol.iterator] == null ? [Number(value)] : value;
|
|
view.set(array, (byteOffset + (field.byteOffset ?? 0)) / 4);
|
|
}
|
|
};
|
|
|
|
const makeGenerator = (layout, structLayouts) => {
|
|
const minSize = layout.size;
|
|
return Object.freeze({
|
|
minSize,
|
|
create: () => makeDataForLayout(structLayouts, layout),
|
|
toBuffer: (object, destination, warnMissingFields = false) => {
|
|
if (destination == null) {
|
|
let size = layout.size;
|
|
const lastField = layout.fields[layout.fields.length - 1];
|
|
if (lastField.isArray && lastField.identifier in object && !lastField.isFixedSize) {
|
|
size += lastField.stride * object[lastField.identifier].length;
|
|
}
|
|
destination = new ArrayBuffer(size);
|
|
}
|
|
|
|
const views = {
|
|
i32: new Int32Array(destination),
|
|
u32: new Uint32Array(destination),
|
|
f32: new Float32Array(destination),
|
|
};
|
|
|
|
for (const field of layout.fields) {
|
|
writeField(structLayouts, field, object[field.identifier], views, 0, warnMissingFields);
|
|
}
|
|
|
|
return destination;
|
|
},
|
|
});
|
|
};
|
|
|
|
const byteSizeOf = (simpleType) => simpleTypes[simpleType]?.[1];
|
|
|
|
const structs = Object.freeze({
|
|
from: (wgsl) => {
|
|
if (typeof wgsl !== "string") {
|
|
throw new Error("Input is not a string.");
|
|
}
|
|
const structLayouts = parseStructLayoutsFromShader(wgsl);
|
|
return Object.fromEntries(Object.entries(structLayouts).map(([identifier, layout]) => [identifier, makeGenerator(layout, structLayouts)]));
|
|
},
|
|
});
|
|
|
|
export { structs, byteSizeOf };
|