mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 01:53:45 +02:00
Add files via upload
This commit is contained in:
parent
099baed8cc
commit
287b8d1481
4 changed files with 33 additions and 6 deletions
|
@ -15,7 +15,9 @@
|
||||||
|
|
||||||
var APP_NAME = "FLY-AV";
|
var APP_NAME = "FLY-AV";
|
||||||
var APP_URL = ROOT + "flyAvatar.html";
|
var APP_URL = ROOT + "flyAvatar.html";
|
||||||
var APP_ICON_INACTIVE = ROOT + "icon_inactive.png";
|
var APP_ICON_INACTIVE_ON = ROOT + "icon_inactive_on.png";
|
||||||
|
var APP_ICON_INACTIVE_OFF = ROOT + "icon_inactive_off.png";
|
||||||
|
var inactiveIcon = APP_ICON_INACTIVE_ON;
|
||||||
var APP_ICON_ACTIVE = ROOT + "icon_active.png"; // BLACK on
|
var APP_ICON_ACTIVE = ROOT + "icon_active.png"; // BLACK on
|
||||||
var ICON_CAPTION_COLOR = "#FFFFFF";
|
var ICON_CAPTION_COLOR = "#FFFFFF";
|
||||||
var appStatus = false;
|
var appStatus = false;
|
||||||
|
@ -23,6 +25,8 @@
|
||||||
var timestamp = 0;
|
var timestamp = 0;
|
||||||
var INTERCALL_DELAY = 200; //0.3 sec
|
var INTERCALL_DELAY = 200; //0.3 sec
|
||||||
var FLY_AVATAR_SETTING_KEY = "overte.application.more.flyAvatar.avatarUrl";
|
var FLY_AVATAR_SETTING_KEY = "overte.application.more.flyAvatar.avatarUrl";
|
||||||
|
var FLY_AVATAR_SWITCH_SETTING_KEY = "overte.application.more.flyAvatar.switch";
|
||||||
|
var flyAvatarSwitch = true;
|
||||||
var flyAvatarUrl = "";
|
var flyAvatarUrl = "";
|
||||||
var originalAvatarUrl = "";
|
var originalAvatarUrl = "";
|
||||||
var isFlying = false;
|
var isFlying = false;
|
||||||
|
@ -35,7 +39,7 @@
|
||||||
|
|
||||||
var button = tablet.addButton({
|
var button = tablet.addButton({
|
||||||
text: APP_NAME,
|
text: APP_NAME,
|
||||||
icon: APP_ICON_INACTIVE,
|
icon: APP_ICON_INACTIVE_ON,
|
||||||
activeIcon: APP_ICON_ACTIVE,
|
activeIcon: APP_ICON_ACTIVE,
|
||||||
captionColor: ICON_CAPTION_COLOR
|
captionColor: ICON_CAPTION_COLOR
|
||||||
});
|
});
|
||||||
|
@ -50,7 +54,7 @@
|
||||||
appStatus = false;
|
appStatus = false;
|
||||||
}else{
|
}else{
|
||||||
//Launching the Application UI.
|
//Launching the Application UI.
|
||||||
tablet.gotoWebScreen(APP_URL); // <== Data can be transmitted at opening of teh UI by using GET method, through paramater in the URL. + "?parameter=value"
|
tablet.gotoWebScreen(APP_URL);
|
||||||
tablet.webEventReceived.connect(onAppWebEventReceived);
|
tablet.webEventReceived.connect(onAppWebEventReceived);
|
||||||
colorCaption = "#000000";
|
colorCaption = "#000000";
|
||||||
appStatus = true;
|
appStatus = true;
|
||||||
|
@ -79,8 +83,16 @@
|
||||||
sendCurrentFlyAvatarUrlToUI();
|
sendCurrentFlyAvatarUrlToUI();
|
||||||
} else if (instruction.action === "UPDATE_URL") {
|
} else if (instruction.action === "UPDATE_URL") {
|
||||||
flyAvatarUrl = instruction.url;
|
flyAvatarUrl = instruction.url;
|
||||||
|
flyAvatarSwitch = instruction.mainSwitch;
|
||||||
Settings.setValue( FLY_AVATAR_SETTING_KEY, flyAvatarUrl);
|
Settings.setValue( FLY_AVATAR_SETTING_KEY, flyAvatarUrl);
|
||||||
|
Settings.setValue( FLY_AVATAR_SWITCH_SETTING_KEY, flyAvatarSwitch);
|
||||||
updateAvatar();
|
updateAvatar();
|
||||||
|
if (flyAvatarSwitch) {
|
||||||
|
inactiveIcon = APP_ICON_INACTIVE_ON;
|
||||||
|
} else {
|
||||||
|
inactiveIcon = APP_ICON_INACTIVE_OFF;
|
||||||
|
}
|
||||||
|
button.editProperties({icon: inactiveIcon});
|
||||||
} else if (instruction.action === "SELF_UNINSTALL" && (n - timestamp) > INTERCALL_DELAY) { //<== This is a good practice to add a "Uninstall this app" button for rarely used app. (toolbar has a limit in size)
|
} else if (instruction.action === "SELF_UNINSTALL" && (n - timestamp) > INTERCALL_DELAY) { //<== This is a good practice to add a "Uninstall this app" button for rarely used app. (toolbar has a limit in size)
|
||||||
d = new Date();
|
d = new Date();
|
||||||
timestamp = d.getTime();
|
timestamp = d.getTime();
|
||||||
|
@ -91,7 +103,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateAvatar() {
|
function updateAvatar() {
|
||||||
if (MyAvatar.isFlying()) {
|
if (MyAvatar.isFlying() && flyAvatarSwitch) {
|
||||||
MyAvatar.useFullAvatarURL(flyAvatarUrl);
|
MyAvatar.useFullAvatarURL(flyAvatarUrl);
|
||||||
} else {
|
} else {
|
||||||
if (MyAvatar.skeletonModelURL === flyAvatarUrl) {
|
if (MyAvatar.skeletonModelURL === flyAvatarUrl) {
|
||||||
|
@ -124,7 +136,8 @@
|
||||||
var message = {
|
var message = {
|
||||||
"channel": channel,
|
"channel": channel,
|
||||||
"action": "FLY-AVATAR-URL",
|
"action": "FLY-AVATAR-URL",
|
||||||
"url": flyAvatarUrl
|
"url": flyAvatarUrl,
|
||||||
|
"mainSwitch": flyAvatarSwitch
|
||||||
};
|
};
|
||||||
tablet.emitScriptEvent(JSON.stringify(message));
|
tablet.emitScriptEvent(JSON.stringify(message));
|
||||||
}
|
}
|
||||||
|
@ -159,5 +172,12 @@
|
||||||
Script.scriptEnding.connect(cleanup);
|
Script.scriptEnding.connect(cleanup);
|
||||||
originalAvatarUrl = MyAvatar.skeletonModelURL;
|
originalAvatarUrl = MyAvatar.skeletonModelURL;
|
||||||
flyAvatarUrl = Settings.getValue( FLY_AVATAR_SETTING_KEY, "" );
|
flyAvatarUrl = Settings.getValue( FLY_AVATAR_SETTING_KEY, "" );
|
||||||
|
flyAvatarSwitch = Settings.getValue( FLY_AVATAR_SWITCH_SETTING_KEY, true );
|
||||||
|
if (flyAvatarSwitch) {
|
||||||
|
inactiveIcon = APP_ICON_INACTIVE_ON;
|
||||||
|
} else {
|
||||||
|
inactiveIcon = APP_ICON_INACTIVE_OFF;
|
||||||
|
}
|
||||||
|
button.editProperties({icon: inactiveIcon});
|
||||||
Script.update.connect(myTimer);
|
Script.update.connect(myTimer);
|
||||||
}());
|
}());
|
||||||
|
|
|
@ -21,12 +21,15 @@
|
||||||
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
||||||
var ROOTPATH = currentPath.replace(thisPageName, "");
|
var ROOTPATH = currentPath.replace(thisPageName, "");
|
||||||
var flyAvatarUrl = "";
|
var flyAvatarUrl = "";
|
||||||
|
var flyAvatarSwitch = true;
|
||||||
|
|
||||||
EventBridge.scriptEventReceived.connect(function(message){
|
EventBridge.scriptEventReceived.connect(function(message){
|
||||||
messageObj = JSON.parse(message);
|
messageObj = JSON.parse(message);
|
||||||
if (messageObj.channel === channel) {
|
if (messageObj.channel === channel) {
|
||||||
if (messageObj.action === "FLY-AVATAR-URL") {
|
if (messageObj.action === "FLY-AVATAR-URL") {
|
||||||
flyAvatarUrl = messageObj.url;
|
flyAvatarUrl = messageObj.url;
|
||||||
|
flyAvatarSwitch = messageObj.mainSwitch;
|
||||||
|
document.getElementById("mainSwitch").checked = flyAvatarSwitch;
|
||||||
document.getElementById("avatarUrl").value = flyAvatarUrl;
|
document.getElementById("avatarUrl").value = flyAvatarUrl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -99,6 +102,8 @@
|
||||||
|
|
||||||
<h1>FLY AVATAR</h1>
|
<h1>FLY AVATAR</h1>
|
||||||
<div id="formContainer"><br><br>
|
<div id="formContainer"><br><br>
|
||||||
|
<input type="checkbox" id="mainSwitch" name="mainSwitch" value="true" oninput = "updateAvatarUrl();"><label for="mainSwitch"> Replace avatar when flying.</label>
|
||||||
|
<br><br>
|
||||||
Avatar Url to use while flying:<br>
|
Avatar Url to use while flying:<br>
|
||||||
<input type = "text" id="avatarUrl" oninput = "updateAvatarUrl();"><br>
|
<input type = "text" id="avatarUrl" oninput = "updateAvatarUrl();"><br>
|
||||||
</div><hr>
|
</div><hr>
|
||||||
|
@ -121,10 +126,12 @@
|
||||||
|
|
||||||
function updateAvatarUrl() {
|
function updateAvatarUrl() {
|
||||||
flyAvatarUrl = document.getElementById("avatarUrl").value;
|
flyAvatarUrl = document.getElementById("avatarUrl").value;
|
||||||
|
flyAvatarSwitch = document.getElementById("mainSwitch").checked;
|
||||||
var message = {
|
var message = {
|
||||||
"channel": channel,
|
"channel": channel,
|
||||||
"action": "UPDATE_URL",
|
"action": "UPDATE_URL",
|
||||||
"url": flyAvatarUrl
|
"url": flyAvatarUrl,
|
||||||
|
"mainSwitch": flyAvatarSwitch
|
||||||
};
|
};
|
||||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||||
}
|
}
|
||||||
|
|
BIN
applications/flyAvatar/icon_inactive_off.png
Normal file
BIN
applications/flyAvatar/icon_inactive_off.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
applications/flyAvatar/icon_inactive_on.png
Normal file
BIN
applications/flyAvatar/icon_inactive_on.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Loading…
Reference in a new issue