@babylonjs/viewer
Version:
The Babylon Viewer aims to simplify a specific but common Babylon.js use case: loading, viewing, and interacting with a 3D model.
75 lines (71 loc) • 3.14 kB
JavaScript
import { c as FlowGraphExecutionBlockWithOutSignal, g as getNumericValue } from './KHR_interactivity-CEwUaqxQ.esm.js';
import { R as RichTypeAny, d as RichTypeNumber, j as RichTypeFlowGraphInteger, F as FlowGraphInteger } from './declarationMapper-CqO08-WM.esm.js';
import { u as RegisterClass } from './index-MZPybX0H.esm.js';
import './objectModelMapping-De5EKNEZ.esm.js';
import './spotLight.pure-CRdZC6Ci.esm.js';
/** This file must only contain pure code and pure imports */
/**
* Block that executes an action in a loop.
*/
class FlowGraphForLoopBlock extends FlowGraphExecutionBlockWithOutSignal {
constructor(config) {
super(config);
this.startIndex = this.registerDataInput("startIndex", RichTypeAny, 0);
this.endIndex = this.registerDataInput("endIndex", RichTypeAny);
this.step = this.registerDataInput("step", RichTypeNumber, 1);
this.index = this.registerDataOutput("index", RichTypeFlowGraphInteger, new FlowGraphInteger(getNumericValue(config?.initialIndex ?? 0)));
this.executionFlow = this._registerSignalOutput("executionFlow");
this.completed = this._registerSignalOutput("completed");
this._unregisterSignalOutput("out");
}
/**
* @internal
*/
_execute(context) {
const index = getNumericValue(this.startIndex.getValue(context));
const step = this.step.getValue(context);
let endIndex = getNumericValue(this.endIndex.getValue(context));
for (let i = index; i < endIndex; i += step) {
this.index.setValue(new FlowGraphInteger(i), context);
this.executionFlow._activateSignal(context);
endIndex = getNumericValue(this.endIndex.getValue(context));
if (i > FlowGraphForLoopBlock.MaxLoopIterations * step) {
break;
}
}
if (this.config?.incrementIndexWhenLoopDone) {
this.index.setValue(new FlowGraphInteger(getNumericValue(this.index.getValue(context)) + step), context);
}
this.completed._activateSignal(context);
}
/**
* @returns class name of the block.
*/
getClassName() {
return "FlowGraphForLoopBlock" /* FlowGraphBlockNames.ForLoop */;
}
}
/**
* The maximum number of iterations allowed for the loop.
* If the loop exceeds this number, it will stop. This number is configurable to avoid infinite loops.
*/
FlowGraphForLoopBlock.MaxLoopIterations = 1000;
let _Registered = false;
/**
* Register side effects for flowGraphForLoopBlock.
* Safe to call multiple times; only the first call has an effect.
*/
function RegisterFlowGraphForLoopBlock() {
if (_Registered) {
return;
}
_Registered = true;
RegisterClass("FlowGraphForLoopBlock" /* FlowGraphBlockNames.ForLoop */, FlowGraphForLoopBlock);
}
/**
* Re-exports pure implementation and applies runtime side effects.
* Import flowGraphForLoopBlock.pure for tree-shakeable, side-effect-free usage.
*/
RegisterFlowGraphForLoopBlock();
export { FlowGraphForLoopBlock, RegisterFlowGraphForLoopBlock };
//# sourceMappingURL=flowGraphForLoopBlock-4gyEJvwq.esm.js.map