-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsculpt.js
1666 lines (1502 loc) · 43.2 KB
/
sculpt.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Converts sculpt lang to JS which generates GLSL
*/
import {
geometryFunctions,
mathFunctions,
glslBuiltInOneToOne,
glslBuiltInOther,
} from "../glsl/bindings.js";
import { convertFunctionToString } from "../targets/helpers.js";
import glsl from "./glslParser.js";
import { parser } from "@shaderfrog/glsl-parser";
import { sdfs } from "../glsl/sdfs.js";
import * as escodegen from "escodegen";
import * as esprima from "esprima";
function buildGeoSource(geo) {
return `
float surfaceDistance(vec3 p) {
vec3 normal = vec3(0.0,1.0,0.0);
vec3 mouseIntersect = vec3(0.0,1.0,0.0);
float d = 100.0;
vec3 op = p;
${geo}
return scope_0_d;
}`;
}
function buildColorSource(col, useLighting) {
return `
ShadedMaterial shade(vec3 p, vec3 normal) {
float d = 100.0;
vec3 op = p;
vec3 lightDirection = vec3(0.0, 1.0, 0.0);
vec3 backgroundColor = vec3(1.0, 1.0, 1.0);
vec3 mouseIntersect = vec3(0.0,1.0,0.0);
#ifdef USE_PBR
Material material = Material(vec3(1.0), vec3(1.0),0.5,0.7,1.0);
Material selectedMaterial = Material(vec3(1.0), vec3(1.0),0.5,0.7,1.0);
#else
float light = 1.0;
float occ = 1.0;
vec3 color = vec3(1.0,1.0,1.0);
vec3 selectedColor = vec3(1.0,1.0,1.0);
#endif
${col}
${useLighting ? '' : ' return ShadedMaterial(scope_0_material, scope_0_material.albedo, backgroundColor);'}
#ifdef USE_PBR
return pbrLighting(worldPos.xyz, normal, lightDirection, scope_0_material, backgroundColor);
#else
// TODO FIX or remove?
return ShadedMaterial(scope_0_material, scope_0_material.albedo*simpleLighting(p, normal, lightDirection), backgroundColor);
#endif
}`;
}
// Converts binary math operators to our own version
function replaceBinaryOp(syntaxTree) {
if (typeof syntaxTree === "object") {
for (let node in syntaxTree) {
if (syntaxTree.hasOwnProperty(node)) {
replaceBinaryOp(syntaxTree[node]);
}
}
}
// handles -variable
if (syntaxTree !== null && syntaxTree["type"] === "UnaryExpression") {
if (syntaxTree["operator"] == '-' && syntaxTree["argument"] &&
syntaxTree["argument"]["type"] == "Identifier") {
Object.assign(syntaxTree, {
"type": "CallExpression",
"callee": {
"type": "Identifier",
"name": "mult"
},
"arguments": [
{
"type": "UnaryExpression",
"operator": "-",
"argument": {
"type": "Literal",
"value": 1,
"raw": "1"
},
"prefix": true
},
{
"type": "Identifier",
"name": syntaxTree["argument"]["name"]
}
]
});
delete syntaxTree['prefix']
}
}
if (syntaxTree !== null && syntaxTree["type"] === "BinaryExpression") {
let op = syntaxTree["operator"];
if (op === "*" || op === "/" || op === "-" || op === "+") {
if (op === "*") {
syntaxTree["callee"] = { type: "Identifier", name: "mult" };
} else if (op === "/") {
syntaxTree["callee"] = { type: "Identifier", name: "divide" };
} else if (op === "-") {
syntaxTree["callee"] = { type: "Identifier", name: "sub" };
} else if (op === "+") {
syntaxTree["callee"] = { type: "Identifier", name: "add" };
}
syntaxTree["type"] = "CallExpression";
syntaxTree["arguments"] = [syntaxTree["left"], syntaxTree["right"]];
syntaxTree["operator"] = undefined;
}
}
}
function replaceOperatorOverload(syntaxTree) {
try {
if (syntaxTree && typeof syntaxTree === "object") {
for (let node in syntaxTree) {
if (syntaxTree.hasOwnProperty(node)) {
replaceOperatorOverload(syntaxTree[node]);
}
}
}
if (
syntaxTree &&
typeof syntaxTree === "object" &&
"type" in syntaxTree &&
syntaxTree.type === "ExpressionStatement" &&
"expression" in syntaxTree &&
syntaxTree.expression.type === "AssignmentExpression"
) {
let op = syntaxTree.expression.operator;
if (
op === "+=" ||
op === "-=" ||
op === "/=" ||
op === "*=" ||
op === "%="
) {
syntaxTree.expression.operator = "=";
syntaxTree.expression.right = {
type: "BinaryExpression",
left: syntaxTree.expression.left,
right: syntaxTree.expression.right,
};
if (op === "+=") {
syntaxTree.expression.right.operator = "+";
} else if (op === "-=") {
syntaxTree.expression.right.operator = "-";
} else if (op === "/=") {
syntaxTree.expression.right.operator = "/";
} else if (op === "*=") {
syntaxTree.expression.right.operator = "*";
} else if (op === "%=") {
syntaxTree.expression.right.operator = "%";
}
}
}
} catch (e) {
console.error(e);
throw e;
}
}
function replaceSliderInput(syntaxTree) {
try {
if (syntaxTree && typeof syntaxTree === "object") {
for (let node in syntaxTree) {
if (syntaxTree.hasOwnProperty(node)) {
replaceSliderInput(syntaxTree[node]);
}
}
}
if (
syntaxTree &&
typeof syntaxTree === "object" &&
"type" in syntaxTree &&
syntaxTree["type"] === "VariableDeclaration"
) {
let d = syntaxTree["declarations"][0];
let name = d.id.name;
if (
d &&
d.init &&
d.init.callee !== undefined &&
(d.init.callee.name === "input" || d.init.callee.name === "input2D")
) {
d.init.arguments.unshift({ type: "Literal", value: name, raw: name });
}
}
} catch (e) {
console.error(e);
throw e;
}
}
export function uniformsToGLSL(uniforms) {
let uniformsHeader = "";
for (let i = 0; i < uniforms.length; i++) {
let uniform = uniforms[i];
uniformsHeader += `uniform ${uniform.type} ${uniform.name};\n`;
}
return uniformsHeader;
}
export function baseUniforms() {
return [
{ name: "time", type: "float", value: 0.0 },
{ name: "opacity", type: "float", value: 1.0 },
{ name: "_scale", type: "float", value: 1.0 },
// {name:'sculptureCenter', type: 'vec3', value: [0,0,0]},
{ name: "mouse", type: "vec3", value: [0.5, 0.5, 0.5] },
{ name: "stepSize", type: "float", value: 0.85 },
{ name: "resolution", type: "vec2", value: [800, 600] },
];
}
export function bindStaticData(staticData, spCode) {
spCode = convertFunctionToString(spCode);
return (
`const staticData = JSON.parse(\`${JSON.stringify(staticData)}\`)\n` +
spCode
);
}
export function replaceMathOps(codeSrc) {
let tree = esprima.parse(codeSrc);
replaceOperatorOverload(tree);
replaceBinaryOp(tree);
replaceSliderInput(tree);
return escodegen.generate(tree);
}
export function sculptToGLSL(userProvidedSrc) {
const PI = Math.PI;
const TWO_PI = Math.PI * 2;
const TAU = TWO_PI;
let debug = false;
userProvidedSrc = replaceMathOps(userProvidedSrc);
if (debug) {
console.log("tree", tree);
}
let generatedJSFuncsSource = "";
let geoSrc = "";
let colorSrc = "";
let userGLSL = "";
let varCount = 0;
let primCount = 0;
let stateCount = 0;
let useLighting = true;
let enable2DFlag = false;
let stateStack = [];
let uniforms = baseUniforms();
let stepSizeConstant = 0.85;
let maxIterations = 300;
let maxReflections = 0;
////////////////////////////////////////////////////////////
// Generates JS from headers referenced in the bindings.js
const dimsMapping = {
float: 1,
vec2: 2,
vec3: 3,
vec4: 4,
};
function glslFunc(src) {
userGLSL += src + "\n";
const state = glsl.runParse(src, {});
if (state.errors.length) {
state.errors.forEach((err) => {
compileError(`glsl error: ${err}`);
});
}
let func = state.ast[state.ast.length - 1];
let proto = func.proto_type;
let funcName = proto.identifier;
let params = proto.parameters;
let returnType = proto.return_type.specifier.type_name;
const funcArgCount = params.length;
let boundFunc = (...args) => {
if (args.length !== funcArgCount) {
compileError(
`Incorrect number of arguments: function ${funcName} takes ${funcArgCount} and was given ${args.length}`
);
}
let expression = funcName + "(";
for (let i = 0; i < funcArgCount; i++) {
const userParam = args[i];
const requiredParam = params[i];
const reqDim = requiredParam.type.specifier.type_specifier.size;
if (reqDim === 1) {
ensureScalar(funcName, userParam);
} else {
ensureDims(funcName, reqDim, userParam);
}
expression += collapseToString(userParam);
if (i < funcArgCount - 1) expression += ", ";
}
expression += ")";
return makeVarWithDims(
expression,
proto.return_type.specifier.type_specifier.size,
false
);
};
return boundFunc;
}
function glslFuncES3(src) {
userGLSL += src + "\n";
let parsedSrc;
try {
parsedSrc = parser.parse(src);
} catch (e) {
compileError(`glsl error in glslFuncES3 when parsing: ${e}`);
}
let prototype = parsedSrc.program[parsedSrc.program.length - 1].prototype;
let funcName = prototype.header.name.identifier;
let returnType = prototype.header.returnType.specifier.specifier.token;
let params = prototype.parameters;
let checkTypes = returnType === "void" || returnType in dimsMapping;
if (!checkTypes) {
compileError(
`glsl error: glslFuncES3 currently supports binding to ${Object.keys(
dimsMapping
)} Return type was ${returnType}`
);
}
params.forEach((param) => {
let type = param.declaration.specifier.specifier.token;
checkTypes = checkTypes && type in dimsMapping;
if (debug) {
console.log("glslFunc", funcName, type, checkTypes);
}
if (!checkTypes) {
compileError(
`glsl error: glslFuncES3 currently supports binding to ${Object.keys(
dimsMapping
)} param type was ${type}`
);
}
});
const funcArgCount = params.length;
let boundFunc = (...args) => {
if (args.length !== funcArgCount) {
compileError(
`Incorrect number of arguments: function ${funcName} takes ${funcArgCount} and was given ${args.length}`
);
}
let expression = funcName + "(";
for (let i = 0; i < funcArgCount; i++) {
const userParam = args[i];
let type = params[i].declaration.specifier.specifier.token;
const reqDim = dimsMapping[type];
if (reqDim === 1) {
ensureScalar(funcName, userParam);
} else {
ensureDims(funcName, reqDim, userParam);
}
expression += collapseToString(userParam);
if (i < funcArgCount - 1) expression += ", ";
}
expression += ")";
return makeVarWithDims(expression, dimsMapping[returnType], false);
};
return boundFunc;
}
function glslSDF(src) {
let sdfFunc = glslFunc(src);
return (...args) => {
setSDF(sdfFunc(getSpace(), ...args));
};
}
////////////// DESTRUCT SDFs
let boundSDFs = {};
for (const [key, value] of Object.entries(sdfs)) {
boundSDFs[key] = glslSDF(value);
}
let { boxFrame, link, cappedTorus } = boundSDFs;
//
function box(arg_0, arg_1, arg_2) {
if (arg_1 !== undefined) {
ensureScalar("box", arg_0);
ensureScalar("box", arg_1);
ensureScalar("box", arg_2);
applyMode(
`box(${getCurrentState().p}, ${collapseToString(
arg_0
)}, ${collapseToString(arg_1)}, ${collapseToString(arg_2)})`
);
} else if (arg_0.type === "vec3") {
applyMode(`box(${getCurrentState().p}, ${collapseToString(arg_0)})`);
} else {
compileError("'box' accepts either an x, y, z, or a vec3");
}
}
function torus(arg_0, arg_1) {
overloadVec2GeomFunc("torus", arg_0, arg_1);
}
function cylinder(arg_0, arg_1) {
overloadVec2GeomFunc("cylinder", arg_0, arg_1);
}
function overloadVec2GeomFunc(funcName, arg_0, arg_1) {
if (arg_1 !== undefined) {
ensureScalar(funcName, arg_0);
ensureScalar(funcName, arg_1);
applyMode(
`${funcName}(${getCurrentState().p}, ${collapseToString(
arg_0
)}, ${collapseToString(arg_1)})`
);
} else if (arg_0.type === "vec2") {
applyMode(
`${funcName}(${getCurrentState().p}, ${collapseToString(arg_0)})`
);
} else {
compileError(`'${funcName}' accepts either an x, y or a vec2`);
}
}
let primitivesJS = "";
for (let [funcName, body] of Object.entries(geometryFunctions)) {
let argList = body["args"];
primitivesJS += "function " + funcName + "(";
for (let argIdx = 0; argIdx < argList.length; argIdx++) {
if (argIdx !== 0) primitivesJS += ", ";
primitivesJS += "arg_" + argIdx;
}
primitivesJS += ") {\n";
let argIdxB = 0;
for (let argDim of argList) {
if (argDim === 1) {
primitivesJS +=
' ensureScalar("' + funcName + '", arg_' + argIdxB + ");\n";
}
argIdxB += 1;
}
primitivesJS +=
' applyMode("' + funcName + '("+getCurrentState().p+", " + ';
for (let argIdx = 0; argIdx < argList.length; argIdx++) {
primitivesJS += "collapseToString(arg_" + argIdx + ") + ";
if (argIdx < argList.length - 1) primitivesJS += '", " + ';
}
primitivesJS += '")");\n}\n\n';
}
generatedJSFuncsSource += primitivesJS;
function generateGLSLWrapper(funcJSON) {
let wrapperSrc = "";
for (let [funcName, body] of Object.entries(funcJSON)) {
let argList = body["args"];
let returnType = body["ret"];
wrapperSrc += "function " + funcName + "(";
for (let argIdx = 0; argIdx < argList.length; argIdx++) {
if (argIdx !== 0) wrapperSrc += ", ";
wrapperSrc += "arg_" + argIdx;
}
wrapperSrc += ") {\n";
let argIdxB = 0;
for (let arg of argList) {
wrapperSrc +=
" arg_" + argIdxB + " = tryMakeNum(arg_" + argIdxB + ");\n";
argIdxB += 1;
}
// debug here
wrapperSrc += ' return new makeVarWithDims("' + funcName + '(" + ';
for (let argIdx = 0; argIdx < argList.length; argIdx++) {
wrapperSrc += "arg_" + argIdx + " + ";
if (argIdx < argList.length - 1) wrapperSrc += '", " + ';
}
wrapperSrc += '")", ' + returnType + ");\n}\n";
}
return wrapperSrc;
}
function mix(arg_0, arg_1, arg_2) {
ensureSameDims("mix", arg_0, arg_1);
if (arg_2.dims !== 1 && arg_2.dims !== arg_0.dims) {
compileError(
`'mix' third argument must be float or match dim of first args`
);
}
if (typeof arg_1 == "number" || arg_1.type == "float") {
arg_0 = tryMakeNum(arg_0);
arg_1 = tryMakeNum(arg_1);
}
arg_2 = tryMakeNum(arg_2);
return new makeVarWithDims(
`mix(${collapseToString(arg_0)}, ${collapseToString(
arg_1
)}, ${collapseToString(arg_2)})`,
arg_0.dims
);
}
function pow(arg_0, arg_1) {
if (typeof arg_1 == "number" || arg_1.type == "float") {
arg_0 = tryMakeNum(arg_0);
arg_1 = tryMakeNum(arg_1);
}
ensureSameDims("pow", arg_0, arg_1);
return new makeVarWithDims(
`pow(${collapseToString(arg_0)}, ${collapseToString(arg_1)})`,
arg_0.dims
);
}
function ensureSameDims(funcName, ...args) {
let dims = args.map((arg) => {
if (arg.type === undefined) {
return typeof arg;
//compileError("'"+funcName+"' expected a vector");
}
return arg.dim;
});
const initialDim = dims[0];
for (let i = 1; i < dims.length; i++) {
let next = dims[i];
if (initialDim !== next) {
compileError(`'${funcName}' argument dimensions do not match`);
}
}
}
let mathFunctionsJS = generateGLSLWrapper(mathFunctions);
generatedJSFuncsSource += mathFunctionsJS;
let builtInOtherJS = generateGLSLWrapper(glslBuiltInOther);
generatedJSFuncsSource += builtInOtherJS;
let builtInOneToOneJS = "";
for (let funcName of glslBuiltInOneToOne) {
builtInOneToOneJS += `function ${funcName}(x) {
x = tryMakeNum(x);
// debug here
return new makeVarWithDims("${funcName}(" + x + ")", x.dims);
}
`;
}
generatedJSFuncsSource += builtInOneToOneJS;
////////////////////////////////////////////////////////////
//End Auto Generated Code
// set step size directly
function setStepSize(val) {
if (typeof val !== "number") {
compileError(
"setStepSize accepts only a constant number. Was given: '" +
val.type +
"'"
);
}
stepSizeConstant = val;
}
// set step size on a scale 0-100
function setGeometryQuality(val) {
if (typeof val !== "number") {
compileError(
"setGeometryQuality accepts only a constant number between 0 and 100. Was given: '" +
val.type +
"'"
);
}
stepSizeConstant = 1 - 0.01 * val * 0.995;
}
function setMaxIterations(val) {
if (typeof val !== "number" || val < 0) {
compileError(
"setMaxIterations accepts only a constant number >= 0. Was given: '" +
val.type +
"'"
);
}
maxIterations = Math.round(val);
}
function setMaxReflections(val) {
if (typeof val !== "number" || val < 0) {
compileError(
"reflections accepts only a constant int >= 0. Was given: '" +
val.type +
"'"
);
}
maxReflections = Math.round(val);
}
function getCurrentState() {
return stateStack[stateStack.length - 1];
}
function getCurrentMode() {
return getCurrentState().mode;
}
function getCurrentDist() {
return getCurrentState().id + "d";
}
function getCurrentPos() {
return getCurrentState().id + "p";
}
function getMainMaterial() {
return getCurrentState().id + "material";
}
function getCurrentMaterial() {
return getCurrentState().id + "currentMaterial";
}
function appendSources(source) {
geoSrc += " " + source;
colorSrc += " " + source;
}
function appendColorSource(source) {
colorSrc += " " + source;
}
// General Variable class
function makeVar(source, type, dims, inline) {
this.type = type;
this.dims = dims;
if (inline) {
this.name = source;
} else {
let vname = "v_" + varCount;
appendSources(this.type + " " + vname + " = " + source + ";\n");
varCount += 1;
this.name = vname;
}
this.toString = function () {
return this.name;
};
return this;
}
// Need to handle cases like - vec3(v.x, 0.1, mult(0.1, time))
function float(source, inline) {
//if (typeof source !== 'string') {
source = collapseToString(source);
//}
return new makeVar(source, "float", 1, inline);
}
function vec2(source, y, inline) {
if (y === undefined) {
y = source;
}
if (typeof source !== "string") {
source =
"vec2(" + collapseToString(source) + ", " + collapseToString(y) + ")";
}
let self = new makeVar(source, "vec2", 2, inline);
let currX = new makeVarWithDims(self.name + ".x", 1, true);
let currY = new makeVarWithDims(self.name + ".y", 1, true);
let objs = { x: currX, y: currY };
applyVectorAssignmentOverload(self, objs);
return self;
}
function vec3(source, y, z, inline) {
if (y === undefined) {
y = source;
z = source;
}
if (typeof source !== "string") {
source =
"vec3(" +
collapseToString(source) +
", " +
collapseToString(y) +
", " +
collapseToString(z) +
")";
}
let self = new makeVar(source, "vec3", 3, inline);
let currX = new makeVarWithDims(self.name + ".x", 1, true);
let currY = new makeVarWithDims(self.name + ".y", 1, true);
let currZ = new makeVarWithDims(self.name + ".z", 1, true);
let objs = { x: currX, y: currY, z: currZ };
applyVectorAssignmentOverload(self, objs);
return self;
}
function vec4(source, y, z, w, inline) {
if (y === undefined && z === undefined) {
y = source;
z = source;
w = source;
}
if (typeof source !== "string") {
source =
"vec4(" +
collapseToString(source) +
", " +
collapseToString(y) +
", " +
collapseToString(z) +
", " +
collapseToString(w) +
")";
}
let self = new makeVar(source, "vec4", 4, inline);
let currX = new makeVarWithDims(self.name + ".x", 1, true);
let currY = new makeVarWithDims(self.name + ".y", 1, true);
let currZ = new makeVarWithDims(self.name + ".z", 1, true);
let currW = new makeVarWithDims(self.name + ".w", 1, true);
let objs = { x: currX, y: currY, z: currZ, w: currW };
applyVectorAssignmentOverload(self, objs);
return self;
}
// allows the user to re-assign a vector's components
function applyVectorAssignmentOverload(self, objs) {
Object.entries(objs).forEach(([key, func]) => {
Object.defineProperty(self, key, {
get: () => func,
set: (val) => appendSources(`${self.name}.${key} = ${val};\n`),
});
});
}
function makeVarWithDims(source, dims, inline) {
if (dims < 1 || dims > 4)
compileError("Tried creating variable with dim: " + dims);
if (dims === 1) return new float(source, inline);
if (dims === 2) return new vec2(source, null, inline);
if (dims === 3) return new vec3(source, null, null, inline);
if (dims === 4) return new vec4(source, null, null, null, inline);
}
// Modes enum
const modes = {
UNION: 10,
DIFFERENCE: 11,
INTERSECT: 12,
BLEND: 13,
MIXGEO: 14,
OVERWRITE: 15,
};
const additiveModes = [modes.UNION, modes.BLEND, modes.MIXGEO, modes.OVERWRITE];
const materialModes = {
NORMAL: 20, // F it let's start at 20 why not
MIXMAT: 21,
};
let time = new float("time", true);
let mouse = new vec3("mouse", null, null, true);
let normal = new vec3("normal", null, null, true);
function mouseIntersection() {
appendColorSource("mouseIntersect = mouseIntersection();\n");
return new vec3("mouseIntersect", null, null, true);
}
function getRayDirection() {
return new vec3("getRayDirection()", null, null, false);
}
function compileError(err) {
// todo: throw actual error (and color error?)
console.error(err, " char: " + geoSrc.length);
throw err;
}
function ensureScalar(funcName, val) {
let tp = typeof val;
if (typeof val !== "number" && val.type !== "float") {
compileError(
"'" +
funcName +
"'" +
" accepts only a scalar. Was given: '" +
val.type +
"'"
);
}
}
function ensureDims(funcName, size, val) {
// for now this only verifies vector dims not scalars/floats!
if (val.type === undefined) {
compileError("'" + funcName + "' expected a vector");
}
if (size !== val.dims) {
compileError(
"'" +
funcName +
"' expected a vector dim: " +
size +
", was given: " +
val.dims
);
}
}
function ensureGroupOp(funcName, a, b) {
if (typeof a !== "string" && typeof b !== "string") {
if (a.dims !== 1 && b.dims !== 1 && a.dims !== b.dims) {
compileError(
"'" +
funcName +
"'" +
" dimension mismatch. Was given: '" +
a.type +
"' and '" +
b.type +
"'"
);
}
}
}
function collapseToString(val) {
if (typeof val === "string") {
return val;
} else if (typeof val === "number") {
return val.toFixed(8);
} else {
return val.toString();
}
}
function mixMat(amount) {
getCurrentState().materialMode = materialModes.MIXMAT;
ensureScalar("mixMat", amount);
getCurrentState().matMixAmount = amount;
}
function resetMixColor() {
getCurrentState().materialMode = materialModes.NORMAL;
}
// Modes (prepend these with GEO or something to indicate they are geometry modes?)
function union() {
getCurrentState().mode = modes.UNION;
}
function difference() {
getCurrentState().mode = modes.DIFFERENCE;
}
function intersect() {
getCurrentState().mode = modes.INTERSECT;
}
function blend(amount) {
getCurrentState().mode = modes.BLEND;
ensureScalar("blend", amount);
getCurrentState().blendAmount = amount;
}
function mixGeo(amount) {
getCurrentState().mode = modes.MIXGEO;
ensureScalar("mixGeo", amount);
getCurrentState().mixAmount = amount;
}
// possible names: 'overwrite', 'set', 'replace'
function overwrite() {
getCurrentState().mode = modes.OVERWRITE;
}
function getMode() {
switch (getCurrentMode()) {
case modes.UNION:
return ["add"];
break;
case modes.DIFFERENCE:
return ["subtract"];
break;
case modes.INTERSECT:
return ["intersect"];
break;
case modes.BLEND:
return ["smoothAdd", getCurrentState().blendAmount];
break;
case modes.MIXGEO:
return ["mix", getCurrentState().mixAmount];
break;
case modes.OVERWRITE:
return ["overwrite"];
break;
default:
return ["add"];
}
}
function applyMode(prim, finalCol) {
let primName = "prim_" + primCount;
primCount += 1;
appendSources("float " + primName + " = " + prim + ";\n");
if (additiveModes.includes(getCurrentMode())) {
let selectedCC = finalCol !== undefined ? finalCol : getCurrentMaterial();
if (getCurrentMode() === modes.OVERWRITE) {
appendColorSource(
getMainMaterial() + " = " + selectedCC + ";\n"
);
} else if (getCurrentState().materialMode === materialModes.NORMAL) {
appendColorSource(
"if (" +
primName +
" < " +
getCurrentDist() +
") { " +
getMainMaterial() +
" = " +
selectedCC +
"; }\n"
);
} else if (getCurrentState().materialMode === materialModes.MIXMAT) {
appendColorSource(
getMainMaterial() +
" = blendMaterial(" +
selectedCC +
", " +
getMainMaterial() +
", " +
collapseToString(getCurrentState().matMixAmount) +
");\n"
);
}
}
let cmode = getMode();
appendSources(
getCurrentDist() +
" = " +
cmode[0] +
"( " +
primName +
", " +
getCurrentDist() +
" " +
(cmode.length > 1 ? "," + collapseToString(cmode[1]) : "") +
" );\n"
);
}
function getSpace() {
return makeVarWithDims(getCurrentState().p.name, 3);
}
function pushState() {
stateStack.push({
id: "scope_" + stateCount + "_",
mode: modes.UNION,
materialMode: materialModes.NORMAL,
matMixAmount: 0.0,
blendAmount: 0.0,
mixAmount: 0.0,
});
appendSources("float " + getCurrentDist() + " = 100.0;\n");
let lastP =
stateStack.length > 1 ? stateStack[stateStack.length - 2].id + "p" : "p";