mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 21:22:00 +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_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 ICON_CAPTION_COLOR = "#FFFFFF";
|
||||
var appStatus = false;
|
||||
|
@ -23,6 +25,8 @@
|
|||
var timestamp = 0;
|
||||
var INTERCALL_DELAY = 200; //0.3 sec
|
||||
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 originalAvatarUrl = "";
|
||||
var isFlying = false;
|
||||
|
@ -35,7 +39,7 @@
|
|||
|
||||
var button = tablet.addButton({
|
||||
text: APP_NAME,
|
||||
icon: APP_ICON_INACTIVE,
|
||||
icon: APP_ICON_INACTIVE_ON,
|
||||
activeIcon: APP_ICON_ACTIVE,
|
||||
captionColor: ICON_CAPTION_COLOR
|
||||
});
|
||||
|
@ -50,7 +54,7 @@
|
|||
appStatus = false;
|
||||
}else{
|
||||
//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);
|
||||
colorCaption = "#000000";
|
||||
appStatus = true;
|
||||
|
@ -79,8 +83,16 @@
|
|||
sendCurrentFlyAvatarUrlToUI();
|
||||
} else if (instruction.action === "UPDATE_URL") {
|
||||
flyAvatarUrl = instruction.url;
|
||||
flyAvatarSwitch = instruction.mainSwitch;
|
||||
Settings.setValue( FLY_AVATAR_SETTING_KEY, flyAvatarUrl);
|
||||
Settings.setValue( FLY_AVATAR_SWITCH_SETTING_KEY, flyAvatarSwitch);
|
||||
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)
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
|
@ -91,7 +103,7 @@
|
|||
}
|
||||
|
||||
function updateAvatar() {
|
||||
if (MyAvatar.isFlying()) {
|
||||
if (MyAvatar.isFlying() && flyAvatarSwitch) {
|
||||
MyAvatar.useFullAvatarURL(flyAvatarUrl);
|
||||
} else {
|
||||
if (MyAvatar.skeletonModelURL === flyAvatarUrl) {
|
||||
|
@ -124,7 +136,8 @@
|
|||
var message = {
|
||||
"channel": channel,
|
||||
"action": "FLY-AVATAR-URL",
|
||||
"url": flyAvatarUrl
|
||||
"url": flyAvatarUrl,
|
||||
"mainSwitch": flyAvatarSwitch
|
||||
};
|
||||
tablet.emitScriptEvent(JSON.stringify(message));
|
||||
}
|
||||
|
@ -159,5 +172,12 @@
|
|||
Script.scriptEnding.connect(cleanup);
|
||||
originalAvatarUrl = MyAvatar.skeletonModelURL;
|
||||
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);
|
||||
}());
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
||||
var ROOTPATH = currentPath.replace(thisPageName, "");
|
||||
var flyAvatarUrl = "";
|
||||
var flyAvatarSwitch = true;
|
||||
|
||||
EventBridge.scriptEventReceived.connect(function(message){
|
||||
messageObj = JSON.parse(message);
|
||||
if (messageObj.channel === channel) {
|
||||
if (messageObj.action === "FLY-AVATAR-URL") {
|
||||
flyAvatarUrl = messageObj.url;
|
||||
flyAvatarSwitch = messageObj.mainSwitch;
|
||||
document.getElementById("mainSwitch").checked = flyAvatarSwitch;
|
||||
document.getElementById("avatarUrl").value = flyAvatarUrl;
|
||||
}
|
||||
}
|
||||
|
@ -99,6 +102,8 @@
|
|||
|
||||
<h1>FLY AVATAR</h1>
|
||||
<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>
|
||||
<input type = "text" id="avatarUrl" oninput = "updateAvatarUrl();"><br>
|
||||
</div><hr>
|
||||
|
@ -121,10 +126,12 @@
|
|||
|
||||
function updateAvatarUrl() {
|
||||
flyAvatarUrl = document.getElementById("avatarUrl").value;
|
||||
flyAvatarSwitch = document.getElementById("mainSwitch").checked;
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "UPDATE_URL",
|
||||
"url": flyAvatarUrl
|
||||
"url": flyAvatarUrl,
|
||||
"mainSwitch": flyAvatarSwitch
|
||||
};
|
||||
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