UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

89 lines (85 loc) 3.06 kB
/** * Allows to trigger pointer events. * * */ import {EventConnectionPoint, EventConnectionPointType} from '../utils/io/connections/Event'; import {BaseNodeType} from '../_Base'; import {NodeParamsConfig, ParamConfig} from '../utils/params/ParamsConfig'; import {TypedInputEventNode, EVENT_PARAM_OPTIONS} from './_BaseInput'; import {isBooleanTrue} from '../../../core/BooleanValue'; import {EventInputType} from '../../poly/registers/nodes/types/Event'; import {CoreEventEmitter, EVENT_EMITTERS} from '../../../core/event/CoreEventEmitter'; import {ONLY_POINTER_EVENT_TYPES} from '../../../core/event/PointerEventType'; import { EventContext } from '../../../core/event/EventContextType'; class PointerEventParamsConfig extends NodeParamsConfig { /** @param toggle on to allow any event to be listened to */ active = ParamConfig.BOOLEAN(true, { callback: (node: BaseNodeType) => { PointerEventNode.PARAM_CALLBACK_updateRegister(node as PointerEventNode); }, separatorAfter: true, }); /** @param set which element triggers the event */ element = ParamConfig.INTEGER(EVENT_EMITTERS.indexOf(CoreEventEmitter.CANVAS), { menu: { entries: EVENT_EMITTERS.map((name, value) => { return {name, value}; }), }, separatorAfter: true, }); /** @param toggle on to listen to click events */ pointerdown = ParamConfig.BOOLEAN(1, EVENT_PARAM_OPTIONS); /** @param toggle on to listen to pointermove events */ pointermove = ParamConfig.BOOLEAN(0, EVENT_PARAM_OPTIONS); /** @param toggle on to listen to pointerup events */ pointerup = ParamConfig.BOOLEAN(0, EVENT_PARAM_OPTIONS); /** @param requires ctrlKey */ ctrlKey = ParamConfig.BOOLEAN(0, {...EVENT_PARAM_OPTIONS, separatorBefore: true}); /** @param requires altKey */ altKey = ParamConfig.BOOLEAN(0, EVENT_PARAM_OPTIONS); /** @param requires shiftKey */ shiftKey = ParamConfig.BOOLEAN(0, EVENT_PARAM_OPTIONS); /** @param requires metaKey */ metaKey = ParamConfig.BOOLEAN(0, EVENT_PARAM_OPTIONS); } const ParamsConfig = new PointerEventParamsConfig(); export class PointerEventNode extends TypedInputEventNode<PointerEventParamsConfig> { override paramsConfig = ParamsConfig; static override type() { return EventInputType.POINTER; } protected acceptedEventTypes() { return new Set([...ONLY_POINTER_EVENT_TYPES]); } override initializeNode() { this.io.outputs.setNamedOutputConnectionPoints( ONLY_POINTER_EVENT_TYPES.map((event_type) => { return new EventConnectionPoint(event_type, EventConnectionPointType.POINTER); }) ); } override processEvent(eventContext: EventContext<MouseEvent>) { if (!this.pv.active) { return; } const event = eventContext.event; if (!event) { return; } if (event.ctrlKey != isBooleanTrue(this.pv.ctrlKey)) { return; } if (event.shiftKey != isBooleanTrue(this.pv.shiftKey)) { return; } if (event.altKey != isBooleanTrue(this.pv.altKey)) { return; } if (event.metaKey != isBooleanTrue(this.pv.metaKey)) { return; } this.dispatchEventToOutput(event.type, eventContext); } }