From bce4ea24d25f7262f0d3f976d84b69a8b9c81d47 Mon Sep 17 00:00:00 2001 From: alizardguy Date: Mon, 21 Aug 2023 17:59:57 -0700 Subject: [PATCH 1/4] Added ScaleMe applet Added the app "SCALEME" --- applications/metadata.js | 13 ++- applications/scaleMe/icons/active.png | Bin 0 -> 776 bytes applications/scaleMe/icons/inactive.png | Bin 0 -> 814 bytes applications/scaleMe/index.html | 148 ++++++++++++++++++++++++ applications/scaleMe/scaleMe.js | 90 ++++++++++++++ 5 files changed, 249 insertions(+), 2 deletions(-) create mode 100644 applications/scaleMe/icons/active.png create mode 100644 applications/scaleMe/icons/inactive.png create mode 100644 applications/scaleMe/index.html create mode 100644 applications/scaleMe/scaleMe.js diff --git a/applications/metadata.js b/applications/metadata.js index 7db03cf..bd6da31 100644 --- a/applications/metadata.js +++ b/applications/metadata.js @@ -196,7 +196,7 @@ var metadata = { "applications": "description": "Necessary tools for exploration: a COMPASS and a VR FLASHLIGHT.", "jsfile": "survivalKit/app-survivalKit.js", "icon": "survivalKit/icon_inactive.png", - "caption": "SURVIVAL" + "caption": "SURVIVAL" }, { "isActive": true, @@ -224,6 +224,15 @@ var metadata = { "applications": "jsfile": "expozer/app-expozer.js", "icon": "expozer/images/appicon_i.png", "caption": "EXPOZER" + }, + { + "isActive": true, + "directory": "scaleMe", + "name": "SCALEME", + "description": "A simple app for changing the player scale.", + "jsfile": "scaleMe/scaleMe.js", + "icon": "scaleMe/icons/inactive.png", + "caption": "SCALEME" } ] -}; +}; \ No newline at end of file diff --git a/applications/scaleMe/icons/active.png b/applications/scaleMe/icons/active.png new file mode 100644 index 0000000000000000000000000000000000000000..c2a12bfc843e3453e96c2aeebc40b56b21475486 GIT binary patch literal 776 zcmV+j1NZ!iP)UP&mDT0#1!a_8Kr9uRY;}F?Kk+Vs? zo#nMwTW)C~*Vzez)s+?pB3Nu;afNUo2wN;mz~gS$TZzS+VY2JqX5&thiR=$TnD8?5 z{+W+AAA$dbD;1QXfS14tFsPusQrH8=K&r0~Kv1VcMTvm~E8sI$&;;lqHRUZ4aD;XE z9dI9b4Lk-qSb<}t#=If`4zUjQ5Xa54ANoE-YAePHPIS6f6!O(mV1#_}82GNA9U!#? zB6c4UYHTB{*rSYXrG&tlcHjljMZWlm<$XXQB8I@Je(w%45Tr;mtejBa2Z*4!;QMX; z-Z!0A)I6%KI|2nRoY;_qLOS;VY5N16_Bwvd6EYjov)35gx4cF%8`T$GiR(fyyUq~U z1-5c*ws0H-%MkJeXyw?nkjU?hGK5@pY_}3+2>H08-Io%|c1j4Gv%IsP(~uze7MQYF z#BU^?G=?s+CNYAhI^8X!uuElRnn58=EkgQEpAuq7l|(dbYBEoV)WA=qS#|1l=idnU zd%pFHhKyEO`Yax`4(fEOC=nMAzbOssFBjE@X0!qgb>KklmD1 zokup$!mK0YJ#x%;19%EN0*;Y|(=vzJ$Z_>Ca1D5-^BCzoYoUYG#svAgJBSc-xY^cr z3Yis;keRPJw%*t8p5eiIULnnDf?dk)U{8A!#Q6l-(|Ujv>*db_0rq4z1-=5$fmg_i zFw)N&^E*et>{55AFO%-$xqx{h?B5Nw{t)1b4jy#m#_$Jya`Ic>6QrvE0000+FPpRmv0r30S1CNFf9S!6F8AzwI-UEa?7 zes|}+`SC`&MKu5|U=5g0&1GVkfKvwe0<=@}stlk56oG)Bq!(w7o`lT`Pa>dv1-K&$DV<{{)%CHmL zZyj^3cNJ`&*5EfT80=}4p&iq2)GuN|e7}O}g`{>&-?6(^E=RHqGjdaxXoxLjLFKDM zkEs^&Xbjs2F&)Pi@^uW`qnM7PPU9`uKgy-oBS|}w_9YdP9!h#4>4}*yWLdTy)Bi1Q zF^z~Zla0~F#952MM)V44!dU`RmKpJ$v?q)a!X8 z*)>9#kVOX7-onTixV^6Df!OIgJYap^S7rge18;#3xRP~l_dKTiIEM)em%4}c^Vpke s0mI<(aSk6dd1_u0!xBRCHs(^{KX0;Vm_NRG`v3p{07*qoM6N<$f~>ZB + + + + Scale Me + + + + + + +
+

Scale Me App

+
+ +
+

Scale Slider

+ +
+ + +
+

Preset Scales

+
    +
  • +
  • +
  • +
  • +
  • +
  • +
+
+ + + + \ No newline at end of file diff --git a/applications/scaleMe/scaleMe.js b/applications/scaleMe/scaleMe.js new file mode 100644 index 0000000..1958267 --- /dev/null +++ b/applications/scaleMe/scaleMe.js @@ -0,0 +1,90 @@ +// +// scaleMe.js +// By: alizardguy +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// +(function (){ + var jsMainFileName = "scaleMe.js"; + var ROOT = Script.resolvePath('').split(jsMainFileName)[0]; + + var APP_NAME = "SCALEME"; + var APP_URL = ROOT + "index.html"; + var APP_ICON_ACTIVE = ROOT + "icons/active.png"; + var APP_ICON_INACTIVE = ROOT + "icons/inactive.png"; + var appStatus = false; + var channel = "overte.application.more.zardsscaleme"; + var timestamp = 0; + var INTERCALL_DELAY = 200; //0.3 sec + + var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); + + tablet.screenChanged.connect(onScreenChanged); + + var button = tablet.addButton({ + text: APP_NAME, + icon: APP_ICON_INACTIVE, + activeIcon: APP_ICON_ACTIVE + }); + + + function clicked(){ + if (appStatus === true) { + tablet.webEventReceived.disconnect(onAppWebEventReceived); + tablet.gotoHomeScreen(); + appStatus = false; + }else{ + //Launching the Application UI. + tablet.gotoWebScreen(APP_URL); + tablet.webEventReceived.connect(onAppWebEventReceived); + appStatus = true; + } + + button.editProperties({ + isActive: appStatus + }); + } + + button.clicked.connect(clicked); + + //Receive message from the HTML UI + function onAppWebEventReceived(message) { + if (typeof message === "string") { + var d = new Date(); + var n = d.getTime(); + var instruction = JSON.parse(message); + if (instruction.channel === channel) { + if (instruction.action === "SCALE") { //<== Use this for action trigger the UI script processing. (whithout delay) + MyAvatar.setAvatarScale(instruction.amount); + } + } + } + } + + function onScreenChanged(type, url) { + if (type === "Web" && url.indexOf(APP_URL) !== -1) { + appStatus = true; + + } else { + appStatus = false; + } + + button.editProperties({ + isActive: appStatus + }); + } + + function cleanup() { + + if (appStatus) { + tablet.gotoHomeScreen(); + tablet.webEventReceived.disconnect(onAppWebEventReceived); + } + + tablet.screenChanged.disconnect(onScreenChanged); + tablet.removeButton(button); + } + + Script.scriptEnding.connect(cleanup); +}()); \ No newline at end of file From 32439432d53043814533ea156260e3d09222daaf Mon Sep 17 00:00:00 2001 From: alizardguy Date: Mon, 21 Aug 2023 18:22:06 -0700 Subject: [PATCH 2/4] removed unneeded vars --- applications/scaleMe/scaleMe.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/applications/scaleMe/scaleMe.js b/applications/scaleMe/scaleMe.js index 1958267..1bb1fb6 100644 --- a/applications/scaleMe/scaleMe.js +++ b/applications/scaleMe/scaleMe.js @@ -15,8 +15,6 @@ var APP_ICON_INACTIVE = ROOT + "icons/inactive.png"; var appStatus = false; var channel = "overte.application.more.zardsscaleme"; - var timestamp = 0; - var INTERCALL_DELAY = 200; //0.3 sec var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); From 95d0900e24340018707c1c48618d6ab69f87d1b6 Mon Sep 17 00:00:00 2001 From: alizardguy Date: Tue, 22 Aug 2023 10:22:08 -0700 Subject: [PATCH 3/4] Removed unused variable and added "use strict" --- applications/scaleMe/scaleMe.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/applications/scaleMe/scaleMe.js b/applications/scaleMe/scaleMe.js index 1bb1fb6..944401a 100644 --- a/applications/scaleMe/scaleMe.js +++ b/applications/scaleMe/scaleMe.js @@ -1,10 +1,9 @@ // -// scaleMe.js -// By: alizardguy -// // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // +"use strict"; + (function (){ var jsMainFileName = "scaleMe.js"; var ROOT = Script.resolvePath('').split(jsMainFileName)[0]; @@ -49,8 +48,6 @@ //Receive message from the HTML UI function onAppWebEventReceived(message) { if (typeof message === "string") { - var d = new Date(); - var n = d.getTime(); var instruction = JSON.parse(message); if (instruction.channel === channel) { if (instruction.action === "SCALE") { //<== Use this for action trigger the UI script processing. (whithout delay) From 1e077fd86a75a2e9e11cb2785c205dd78a80e086 Mon Sep 17 00:00:00 2001 From: alizardguy Date: Tue, 22 Aug 2023 10:26:16 -0700 Subject: [PATCH 4/4] Added copyright --- applications/scaleMe/scaleMe.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/applications/scaleMe/scaleMe.js b/applications/scaleMe/scaleMe.js index 944401a..887a96d 100644 --- a/applications/scaleMe/scaleMe.js +++ b/applications/scaleMe/scaleMe.js @@ -1,6 +1,8 @@ // +// scaleMe.js // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// Copyright 2023 alizardguy // "use strict";