Add files via upload

This commit is contained in:
Alezia Kurdis 2023-05-30 21:51:32 -04:00 committed by GitHub
parent d0dfa7306f
commit f00043613d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,281 +1,281 @@
"use strict"; "use strict";
// //
// appMaterialDataCreator.js // appMaterialDataCreator.js
// //
// Created by Alezia Kurdis, April 12th, 2020. // Created by Alezia Kurdis, April 12th, 2020.
// Copyright 2020 Vircadia and contributors. // Copyright 2020 Vircadia and contributors.
// Copyright 2022 Overte e.V. // Copyright 2022 Overte e.V.
// //
// A tool to generate materialData. // A tool to generate materialData.
// //
// Distributed under the Apache License, Version 2.0. // Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
// //
(function() { (function() {
var jsMainFileName = "appMaterialDataCreator.js"; var jsMainFileName = "appMaterialDataCreator.js";
var ROOT = Script.resolvePath('').split(jsMainFileName)[0]; var ROOT = Script.resolvePath('').split(jsMainFileName)[0];
var APP_NAME = "MAT-GEN"; var APP_NAME = "MAT-GEN";
var APP_URL = ROOT + "materialDataCreator.html"; var APP_URL = ROOT + "materialDataCreator.html";
var APP_ICON_INACTIVE = ROOT + "images/icon_materialDate_inactive.png"; var APP_ICON_INACTIVE = ROOT + "images/icon_materialDate_inactive.png";
var APP_ICON_ACTIVE = ROOT + "images/icon_materialDate_active.png"; var APP_ICON_ACTIVE = ROOT + "images/icon_materialDate_active.png";
var appStatus = false; var appStatus = false;
var channel = "materialDataCreator.ak.overte"; var channel = "materialDataCreator.ak.overte";
var nightmode = false; var nightmode = false;
var demoID, materialID; var demoID, materialID;
var currentMaterialRecord; var currentMaterialRecord;
var currentMaterialData; var currentMaterialData;
var currentDemoShape = "cube"; var currentDemoShape = "cube";
Script.include(["audioFeedback.js"]); Script.include(["audioFeedback.js"]);
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
tablet.screenChanged.connect(onScreenChanged); tablet.screenChanged.connect(onScreenChanged);
var button = tablet.addButton({ var button = tablet.addButton({
text: APP_NAME, text: APP_NAME,
icon: APP_ICON_INACTIVE, icon: APP_ICON_INACTIVE,
activeIcon: APP_ICON_ACTIVE activeIcon: APP_ICON_ACTIVE
}); });
function clicked(){ function clicked(){
if (appStatus === true) { if (appStatus === true) {
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived); tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
tablet.gotoHomeScreen(); tablet.gotoHomeScreen();
appStatus = false; appStatus = false;
deleteDemo(); deleteDemo();
}else{ }else{
tablet.gotoWebScreen(APP_URL); tablet.gotoWebScreen(APP_URL);
tablet.webEventReceived.connect(onMoreAppWebEventReceived); tablet.webEventReceived.connect(onMoreAppWebEventReceived);
appStatus = true; appStatus = true;
createDemo(); createDemo();
} }
button.editProperties({ button.editProperties({
isActive: appStatus isActive: appStatus
}); });
} }
button.clicked.connect(clicked); button.clicked.connect(clicked);
function createDemo() { function createDemo() {
demoID = Entities.addEntity({ demoID = Entities.addEntity({
type: "Box", type: "Box",
name: "MATERIAL DEMO", name: "MATERIAL DEMO",
dimensions: { dimensions: {
x: 1, x: 1,
y: 1, y: 1,
z: 1 z: 1
}, },
grab: { grab: {
grabbable: true grabbable: true
}, },
shape: "Cube", shape: "Cube",
position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.25, z: -5 })) position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.25, z: -5 }))
},"local"); },"local");
materialID = Entities.addEntity({ materialID = Entities.addEntity({
parentID: demoID, parentID: demoID,
parentMaterialName: "0", parentMaterialName: "0",
type: "Material", type: "Material",
name: "untitled", name: "untitled",
materialURL: "materialData", materialURL: "materialData",
priority: 1, priority: 1,
materialData: "{\"materials\":{}}", materialData: "{\"materials\":{}}",
position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.25, z: -3 })) position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.25, z: -3 }))
},"local"); },"local");
} }
function updateDemo(matData) { function updateDemo(matData) {
var data = JSON.parse(matData); var data = JSON.parse(matData);
var materialName = data.materials[0].name; var materialName = data.materials[0].name;
Entities.editEntity(materialID, { Entities.editEntity(materialID, {
name: materialName, name: materialName,
materialData: matData materialData: matData
}); });
} }
function deleteDemo() { function deleteDemo() {
Entities.deleteEntity(materialID); Entities.deleteEntity(materialID);
Entities.deleteEntity(demoID); Entities.deleteEntity(demoID);
} }
function onMoreAppWebEventReceived(message) { function onMoreAppWebEventReceived(message) {
eventObj = JSON.parse(message); var eventObj = JSON.parse(message);
if ( eventObj.channel === channel) { if ( eventObj.channel === channel) {
if ( eventObj.action === "updateMaterialData") { if ( eventObj.action === "updateMaterialData") {
currentMaterialRecord = eventObj.materialRecord; currentMaterialRecord = eventObj.materialRecord;
currentMaterialData = eventObj.materialData; currentMaterialData = eventObj.materialData;
updateDemo(eventObj.materialData); updateDemo(eventObj.materialData);
} }
if ( eventObj.action === "changeDemoShape") { if ( eventObj.action === "changeDemoShape") {
changeDemoShape(eventObj.shape); changeDemoShape(eventObj.shape);
} }
if ( eventObj.action === "createMaterialEntity") { if ( eventObj.action === "createMaterialEntity") {
var newMaterialEntityId = Entities.addEntity({ var newMaterialEntityId = Entities.addEntity({
parentMaterialName: "0", parentMaterialName: "0",
type: "Material", type: "Material",
name: currentMaterialRecord.name, name: currentMaterialRecord.name,
materialURL: "materialData", materialURL: "materialData",
priority: 1, priority: 1,
materialData: currentMaterialData, materialData: currentMaterialData,
position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.25, z: -2 })) position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.25, z: -2 }))
},"domain"); },"domain");
if (newMaterialEntityId !== Uuid.NULL) { if (newMaterialEntityId !== Uuid.NULL) {
audioFeedback.confirmation(); audioFeedback.confirmation();
} }
} }
if ( eventObj.action === "exportMaterialAsJson") { if ( eventObj.action === "exportMaterialAsJson") {
Window.saveFileChanged.connect(onFileSaveChanged); Window.saveFileChanged.connect(onFileSaveChanged);
Window.saveAsync("Select where to save", "", "*.json"); Window.saveAsync("Select where to save", "", "*.json");
} }
if ( eventObj.action === "teleportToServerless") { if ( eventObj.action === "teleportToServerless") {
deleteDemo(); deleteDemo();
nightmode = false; nightmode = false;
Window.location = ROOT + "serverless.json?version=" + Math.floor(Math.random() * 32000); Window.location = ROOT + "serverless.json?version=" + Math.floor(Math.random() * 32000);
Window.domainChanged.connect(onDomainChanged); Window.domainChanged.connect(onDomainChanged);
} }
if ( eventObj.action === "toggleDayNight") { if ( eventObj.action === "toggleDayNight") {
var nightZoneID = Entities.findEntitiesByName("NIGHT_ZONE_MAT-GEN", MyAvatar.position, 200, true); var nightZoneID = Entities.findEntitiesByName("NIGHT_ZONE_MAT-GEN", MyAvatar.position, 200, true);
var dayZoneID = Entities.findEntitiesByName("DAY_ZONE_MAT-GEN", MyAvatar.position, 200, true); var dayZoneID = Entities.findEntitiesByName("DAY_ZONE_MAT-GEN", MyAvatar.position, 200, true);
var blueSpotID = Entities.findEntitiesByName("BLUE_NIGHT_SPOT", MyAvatar.position, 200, true); var blueSpotID = Entities.findEntitiesByName("BLUE_NIGHT_SPOT", MyAvatar.position, 200, true);
if (nightmode === false) { if (nightmode === false) {
//Set Night //Set Night
Entities.editEntity(nightZoneID[0],{"visible": true}); Entities.editEntity(nightZoneID[0],{"visible": true});
Entities.editEntity(blueSpotID[0],{"visible": true}); Entities.editEntity(blueSpotID[0],{"visible": true});
Entities.editEntity(dayZoneID[0],{"visible": false}); Entities.editEntity(dayZoneID[0],{"visible": false});
nightmode = true; nightmode = true;
} else { } else {
//Set Day //Set Day
Entities.editEntity(nightZoneID[0],{"visible": false}); Entities.editEntity(nightZoneID[0],{"visible": false});
Entities.editEntity(blueSpotID[0],{"visible": false}); Entities.editEntity(blueSpotID[0],{"visible": false});
Entities.editEntity(dayZoneID[0],{"visible": true}); Entities.editEntity(dayZoneID[0],{"visible": true});
nightmode = false; nightmode = false;
} }
} }
} }
} }
function onFileSaveChanged(filename) { function onFileSaveChanged(filename) {
Window.saveFileChanged.disconnect(onFileSaveChanged); Window.saveFileChanged.disconnect(onFileSaveChanged);
if (filename !== "") { if (filename !== "") {
var success = Clipboard.exportEntities(filename, [materialID]); var success = Clipboard.exportEntities(filename, [materialID]);
if (!success) { if (!success) {
Window.notifyEditError("Export failed."); Window.notifyEditError("Export failed.");
} }
} }
} }
function onDomainChanged(domain) { function onDomainChanged(domain) {
if (appStatus) { if (appStatus) {
tablet.gotoHomeScreen(); tablet.gotoHomeScreen();
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived); tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
deleteDemo(); deleteDemo();
} }
Window.domainChanged.disconnect(onDomainChanged); Window.domainChanged.disconnect(onDomainChanged);
} }
function onScreenChanged(type, url) { function onScreenChanged(type, url) {
if (type == "Web" && url.indexOf(APP_URL) != -1) { if (type == "Web" && url.indexOf(APP_URL) != -1) {
appStatus = true; appStatus = true;
var message = { var message = {
"channel": channel, "channel": channel,
"action": "initializeMaterial", "action": "initializeMaterial",
"material": currentMaterialRecord "material": currentMaterialRecord
}; };
Script.setTimeout(function () { Script.setTimeout(function () {
tablet.emitScriptEvent(JSON.stringify(message)); tablet.emitScriptEvent(JSON.stringify(message));
}, 1000); }, 1000);
changeDemoShape(currentDemoShape); changeDemoShape(currentDemoShape);
} else { } else {
appStatus = false; appStatus = false;
deleteDemo(); deleteDemo();
} }
button.editProperties({ button.editProperties({
isActive: appStatus isActive: appStatus
}); });
} }
function changeDemoShape(shape) { function changeDemoShape(shape) {
audioFeedback.action(); audioFeedback.action();
currentDemoShape = shape; currentDemoShape = shape;
var prop = Entities.getEntityProperties(demoID, ["position"]); var prop = Entities.getEntityProperties(demoID, ["position"]);
Entities.editEntity(materialID,{ parentID: "{00000000-0000-0000-0000-000000000000}",}); Entities.editEntity(materialID,{ parentID: "{00000000-0000-0000-0000-000000000000}",});
Entities.deleteEntity(demoID); Entities.deleteEntity(demoID);
var newDemoDefinition; var newDemoDefinition;
if (shape === "cube"){ if (shape === "cube"){
newDemoDefinition = { newDemoDefinition = {
type: "Shape", type: "Shape",
name: "MATERIAL DEMO", name: "MATERIAL DEMO",
dimensions: { dimensions: {
x: 1, x: 1,
y: 1, y: 1,
z: 1 z: 1
}, },
grab: { grab: {
grabbable: true grabbable: true
}, },
shape: "Cube", shape: "Cube",
position: prop.position position: prop.position
}; };
} }
if (shape === "sphere"){ if (shape === "sphere"){
newDemoDefinition = { newDemoDefinition = {
type: "Shape", type: "Shape",
name: "MATERIAL DEMO", name: "MATERIAL DEMO",
dimensions: { dimensions: {
x: 1, x: 1,
y: 1, y: 1,
z: 1 z: 1
}, },
grab: { grab: {
grabbable: true grabbable: true
}, },
shape: "Sphere", shape: "Sphere",
position: prop.position position: prop.position
}; };
} }
if (shape === "teapot"){ if (shape === "teapot"){
newDemoDefinition = { newDemoDefinition = {
type: "Model", type: "Model",
modelURL: ROOT + "models/Teapot_hifi.fbx", modelURL: ROOT + "models/Teapot_hifi.fbx",
name: "MATERIAL DEMO", name: "MATERIAL DEMO",
grab: { grab: {
grabbable: true grabbable: true
}, },
position: prop.position position: prop.position
}; };
} }
if (shape === "brand"){ if (shape === "brand"){
newDemoDefinition = { newDemoDefinition = {
type: "Model", type: "Model",
modelURL: ROOT + "models/brand.fbx", modelURL: ROOT + "models/brand.fbx",
name: "MATERIAL DEMO", name: "MATERIAL DEMO",
grab: { grab: {
grabbable: true grabbable: true
}, },
position: prop.position position: prop.position
}; };
} }
demoID = Entities.addEntity(newDemoDefinition, "local"); demoID = Entities.addEntity(newDemoDefinition, "local");
Entities.editEntity(materialID,{ parentID: demoID, parentMaterialName: "0",}); Entities.editEntity(materialID,{ parentID: demoID, parentMaterialName: "0",});
} }
function cleanup() { function cleanup() {
if (appStatus) { if (appStatus) {
tablet.gotoHomeScreen(); tablet.gotoHomeScreen();
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived); tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
deleteDemo(); deleteDemo();
} }
tablet.screenChanged.disconnect(onScreenChanged); tablet.screenChanged.disconnect(onScreenChanged);
tablet.removeButton(button); tablet.removeButton(button);
} }
Script.scriptEnding.connect(cleanup); Script.scriptEnding.connect(cleanup);
}()); }());