/** * Generated by Verge3D Puzzles v.2.12.3 * Mon Jun 17 2019 08:31:37 GMT+0200 (Mitteleuropäische Sommerzeit) * Do not edit this file - your changes may get overridden when Puzzles are saved. * Refer to https://www.soft8soft.com/docs/manual/en/introduction/Using-JavaScript.html * for information on how to add your own JavaScript to Verge3D apps. */ "use strict"; (function() { // global variables/constants used by puzzles' functions var _pGlob = {}; _pGlob.objCache = {}; _pGlob.fadeAnnotations = true; _pGlob.objClickCallbacks = []; _pGlob.pickedObject = ''; _pGlob.objHoverCallbacks = []; _pGlob.hoveredObject = ''; _pGlob.objMovementInfos = {}; _pGlob.objDragOverCallbacks = []; _pGlob.objDragOverInfoByBlock = {} _pGlob.dragMoveOrigins = {}; _pGlob.dragScaleOrigins = {}; _pGlob.mediaElements = {}; _pGlob.loadedFiles = {}; _pGlob.loadedFile = ''; _pGlob.animMixerCallbacks = []; _pGlob.arHitPoint = new v3d.Vector3(0, 0, 0); _pGlob.states = []; _pGlob.percentage = 0; _pGlob.animateParamUpdate = null; _pGlob.openedFile = ''; _pGlob.xrSessionAcquired = false; _pGlob.xrSessionCallbacks = []; _pGlob.screenCoords = new v3d.Vector2(); _pGlob.AXIS_X = new v3d.Vector3(1, 0, 0); _pGlob.AXIS_Y = new v3d.Vector3(0, 1, 0); _pGlob.AXIS_Z = new v3d.Vector3(0, 0, 1); _pGlob.MIN_DRAG_SCALE = 10e-4; _pGlob.vec2Tmp = new v3d.Vector2(); _pGlob.vec2Tmp2 = new v3d.Vector2(); _pGlob.vec3Tmp = new v3d.Vector3(); _pGlob.vec3Tmp2 = new v3d.Vector3(); _pGlob.quatTmp = new v3d.Quaternion(); _pGlob.quatTmp2 = new v3d.Quaternion(); _pGlob.mat4Tmp = new v3d.Matrix4(); _pGlob.planeTmp = new v3d.Plane(); _pGlob.raycasterTmp = new v3d.Raycaster(); _pGlob.timers = {}; var _pPhysics = {}; _pPhysics.syncList = []; // internal info _pPhysics.collisionData = []; // goes to collision callback _pPhysics.collisionInfo = { objectA: '', objectB: '', distance: 0, positionOnA: [0, 0, 0], positionOnB: [0, 0, 0], normalOnB: [0, 0, 0] }; var PL = v3d.PL = v3d.PL || {}; PL.legacyMode = false; PL.execInitPuzzles = function() { var _initGlob = {}; _initGlob.percentage = 0; _initGlob.output = { initOptions: { fadeAnnotations: true, useBkgTransp: false, preserveDrawBuf: false, useCompAssets: false, useFullscreen: true, useCustomPreloader: false, preloaderStartCb: function() {}, preloaderProgressCb: function() {}, preloaderEndCb: function() {}, } } return _initGlob.output; } PL.init = function(appInstance, initOptions) { initOptions = initOptions || {}; if ('fadeAnnotations' in initOptions) { _pGlob.fadeAnnotations = initOptions.fadeAnnotations; } var p, d, f; // utility function envoked by almost all V3D-specific puzzles // process object input, which can be either single obj or array of objects, or a group function retrieveObjectNames(objNames) { var acc = []; retrieveObjectNamesAcc(objNames, acc); return acc; } function retrieveObjectNamesAcc(currObjNames, acc) { if (typeof currObjNames == "string") { acc.push(currObjNames); } else if (Array.isArray(currObjNames) && currObjNames[0] == "GROUP") { var newObj = getObjectNamesByGroupName(currObjNames[1]); for (var i = 0; i < newObj.length; i++) acc.push(newObj[i]); } else if (Array.isArray(currObjNames) && currObjNames[0] == "ALL_OBJECTS") { var newObj = getAllObjectNames(); for (var i = 0; i < newObj.length; i++) acc.push(newObj[i]); } else if (Array.isArray(currObjNames)) { for (var i = 0; i < currObjNames.length; i++) retrieveObjectNamesAcc(currObjNames[i], acc); } } // utility function envoked by almost all V3D-specific puzzles // find first occurence of the object by its name function getObjectByName(objName) { var objFound; var runTime = typeof _pGlob != "undefined"; objFound = runTime ? _pGlob.objCache[objName] : null; if (objFound && objFound.name == objName) return objFound; appInstance.scene.traverse(function(obj) { if (!objFound && notIgnoredObj(obj) && (obj.name == objName)) { objFound = obj; if (runTime) _pGlob.objCache[objName] = objFound; } }); return objFound; } // utility function envoked by almost all V3D-specific puzzles // retrieve all objects which belong to the group function getObjectNamesByGroupName(targetGroupName) { var objNameList = []; appInstance.scene.traverse(function(obj){ if (notIgnoredObj(obj)) { var groupNames = obj.groupNames; if (!groupNames) return; for (var i = 0; i < groupNames.length; i++) { var groupName = groupNames[i]; if (groupName == targetGroupName) { objNameList.push(obj.name); } } } }); return objNameList; } // utility function envoked by almost all V3D-specific puzzles // filter off some non-mesh types function notIgnoredObj(obj) { return (obj.type != "Scene" && obj.type != "AmbientLight" && obj.name != "" && !(obj.isMesh && obj.isMaterialGeneratedMesh)); } // utility function envoked by almost all V3D-specific puzzles // retrieve all objects on the scene function getAllObjectNames() { var objNameList = []; appInstance.scene.traverse(function(obj) { if (notIgnoredObj(obj)) objNameList.push(obj.name) }); return objNameList; } function swizzleValueSign(newAxis, value) { newAxis = newAxis.toLowerCase(); if (newAxis == 'z') { if (typeof value == 'number') return -value else if (typeof value == 'string' && value != '' && value != "''" && value != '""') return String(-Number(value)); else return value; } else return value; } function swizzleVec3(vec, isScale) { var dest = [] dest[0] = vec[0]; dest[1] = vec[2]; dest[2] = isScale ? vec[1] : swizzleValueSign('z', vec[1]) return dest; } // show and hide puzzles function changeVis(objNames, bool) { objNames = retrieveObjectNames(objNames); if (!objNames) return; for (var i = 0; i < objNames.length; i++) { var objName = objNames[i] if (!objName) continue; var obj = getObjectByName(objName); if (!obj) continue; obj.visible = bool; } } // utility function used by the whenClicked, whenHovered and whenDraggedOver puzzles function initObjectPicking(callback, eventType, mouseDownUseTouchStart) { var elem = appInstance.container; elem.addEventListener(eventType, pickListener); if (eventType == "mousedown") { var touchEventName = mouseDownUseTouchStart ? "touchstart" : "touchend"; elem.addEventListener(touchEventName, pickListener); } var raycaster = new v3d.Raycaster(); function pickListener(event) { event.preventDefault(); var xNorm = 0, yNorm = 0; if (event instanceof MouseEvent) { xNorm = event.offsetX / elem.clientWidth; yNorm = event.offsetY / elem.clientHeight; } else if (event instanceof TouchEvent) { var rect = elem.getBoundingClientRect(); xNorm = (event.changedTouches[0].clientX - rect.left) / rect.width; yNorm = (event.changedTouches[0].clientY - rect.top) / rect.height; } _pGlob.screenCoords.x = xNorm * 2 - 1; _pGlob.screenCoords.y = -yNorm * 2 + 1; raycaster.setFromCamera(_pGlob.screenCoords, appInstance.camera); var objList = []; appInstance.scene.traverse(function(obj){objList.push(obj);}); var intersects = raycaster.intersectObjects(objList); if (intersects.length > 0) { var obj = intersects[0].object; callback(obj, event); } else { callback(null, event); } } } // utility function used by the whenDraggedOver puzzles function fireObjectPickingCallbacks(objName, source, index, cbParam) { for (var i = 0; i < source.length; i++) { var cb = source[i]; if (objectsIncludeObj([cb[0]], objName)) { cb[index](cbParam); } } } function objectsIncludeObj(objNames, testedObjName) { if (!testedObjName) return false; for (var i = 0; i < objNames.length; i++) { if (testedObjName == objNames[i]) { return true; } else { // also check children which are auto-generated for multi-material objects var obj = getObjectByName(objNames[i]); if (obj && obj.type == "Group") { for (var j = 0; j < obj.children.length; j++) { if (testedObjName == obj.children[j].name) { return true; } } } } } return false; } // utility function used by the whenClicked, whenHovered and whenDraggedOver puzzles function getPickedObjectName(obj) { // auto-generated from a multi-material object, use parent name instead if (obj.isMesh && obj.isMaterialGeneratedMesh && obj.parent) { return obj.parent.name; } else { return obj.name; } } // whenClicked puzzle initObjectPicking(function(obj) { // save the object for the pickedObject block _pGlob.pickedObject = obj ? getPickedObjectName(obj) : ''; _pGlob.objClickCallbacks.forEach(function(el) { var isPicked = obj && objectsIncludeObj(el.objNames, getPickedObjectName(obj)); el.callbacks[isPicked ? 0 : 1](); }); }, 'mousedown'); // whenClicked puzzle function registerOnClick(objNames, cbDo, cbIfMissedDo) { objNames = retrieveObjectNames(objNames) || []; var objNamesFiltered = objNames.filter(function(name) { return name; }); _pGlob.objClickCallbacks.push({ objNames: objNamesFiltered, callbacks: [cbDo, cbIfMissedDo] }); } changeVis(["GROUP", "2pOrb"], false); changeVis(["GROUP", "3d2Orb"], false); changeVis(["GROUP", "3dOrb"], false); changeVis(["GROUP", "4d2Orb"], false); changeVis(["GROUP", "4dOrb"], false); changeVis(["GROUP", "4f2Orb"], false); changeVis(["GROUP", "4fOrb"], false); changeVis(["GROUP", "5pOrb"], false); changeVis(["GROUP", "Achsen4"], false); p = 0; d = 0; f = 0; registerOnClick("sign_pOrb", function() { if (p == 0) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "2pOrb"], true); changeVis(["GROUP", "Achsen3"], true); p = 1; } else if (p == 1) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "5pOrb"], true); changeVis(["GROUP", "Achsen3"], true); p = 0; } }, function() {}); registerOnClick("sign_fOrb", function() { if (f == 0) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "4fOrb"], true); changeVis(["GROUP", "Achsen3"], true); changeVis(["GROUP", "Achsen4"], true); f = 1; } else if (f == 1) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "4f2Orb"], true); f = 0; } }, function() {}); registerOnClick("sign_sOrb", function() { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "sOrb"], true); changeVis(["GROUP", "Achsen3"], true); }, function() {}); registerOnClick("sign_dOrb", function() { if (d == 0) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "3dOrb"], true); changeVis(["GROUP", "Achsen3"], true); d = 1; } else if (d == 1) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "3d2Orb"], true); d = 2; } else if (d == 2) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "4dOrb"], true); changeVis(["GROUP", "Achsen3"], true); d = 3; } else if (d == 3) { changeVis(["GROUP", "Hidden"], false); changeVis(["GROUP", "4d2Orb"], true); d = 0; } }, function() {}); } // end of PL.init function if (window.v3dApp) { // backwards compatibility for old player projects PL.legacyMode = true; PL.init(window.v3dApp); } })(); // end of closure /* ================================ end of code ============================= */