mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
Merge pull request #6469 from AlessandroSigna/groupRecording
Group recording - overlay added
This commit is contained in:
commit
8bf5e3b429
2 changed files with 27 additions and 6 deletions
|
@ -21,6 +21,12 @@
|
|||
var START_MESSAGE = "recordingStarted";
|
||||
var STOP_MESSAGE = "recordingEnded";
|
||||
var PARTICIPATING_MESSAGE = "participatingToRecording";
|
||||
var RECORDING_ICON_URL = "http://cdn.highfidelity.com/alan/production/icons/ICO_rec-active.svg";
|
||||
var NOT_RECORDING_ICON_URL = "http://cdn.highfidelity.com/alan/production/icons/ICO_rec-inactive.svg";
|
||||
var ICON_WIDTH = 60;
|
||||
var ICON_HEIGHT = 60;
|
||||
var overlay = null;
|
||||
|
||||
|
||||
function recordingEntity() {
|
||||
_this = this;
|
||||
|
@ -60,12 +66,22 @@
|
|||
enterEntity: function (entityID) {
|
||||
print("entering in the recording area");
|
||||
Messages.subscribe(MASTER_TO_CLIENTS_CHANNEL);
|
||||
overlay = Overlays.addOverlay("image", {
|
||||
imageURL: NOT_RECORDING_ICON_URL,
|
||||
width: ICON_HEIGHT,
|
||||
height: ICON_WIDTH,
|
||||
x: 275,
|
||||
y: 0,
|
||||
visible: true
|
||||
});
|
||||
},
|
||||
|
||||
leaveEntity: function (entityID) {
|
||||
print("leaving the recording area");
|
||||
_this.stopRecording();
|
||||
Messages.unsubscribe(MASTER_TO_CLIENTS_CHANNEL);
|
||||
Overlays.deleteOverlay(overlay);
|
||||
overlay = null;
|
||||
},
|
||||
|
||||
startRecording: function (entityID) {
|
||||
|
@ -74,6 +90,7 @@
|
|||
Messages.sendMessage(CLIENTS_TO_MASTER_CHANNEL, PARTICIPATING_MESSAGE); //tell to master that I'm participating
|
||||
Recording.startRecording();
|
||||
isAvatarRecording = true;
|
||||
Overlays.editOverlay(overlay, {imageURL: RECORDING_ICON_URL});
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -82,12 +99,8 @@
|
|||
print("RECORDING ENDED");
|
||||
Recording.stopRecording();
|
||||
isAvatarRecording = false;
|
||||
|
||||
var recordingFile = Window.save("Save recording to file", "./groupRecording", "Recordings (*.hfr)");
|
||||
if (!(recordingFile === "null" || recordingFile === null || recordingFile === "")) {
|
||||
Recording.saveRecording(recordingFile); //save the clip locally
|
||||
}
|
||||
Recording.saveRecordingToAsset(getClipUrl); //save the clip to the asset and link a callback to get its url
|
||||
Overlays.editOverlay(overlay, {imageURL: NOT_RECORDING_ICON_URL});
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -96,6 +109,10 @@
|
|||
_this.stopRecording();
|
||||
Messages.unsubscribe(MASTER_TO_CLIENTS_CHANNEL);
|
||||
Messages.messageReceived.disconnect(receivingMessage);
|
||||
if(overlay !== null){
|
||||
Overlays.deleteOverlay(overlay);
|
||||
overlay = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -62,6 +62,7 @@ function setupToolBar() {
|
|||
visible: true,
|
||||
}, true, isRecording);
|
||||
}
|
||||
toolBar.selectTool(recordIcon, !isRecording);
|
||||
|
||||
function mousePressEvent(event) {
|
||||
clickedOverlay = Overlays.getOverlayAtPoint({ x: event.x, y: event.y });
|
||||
|
@ -77,6 +78,7 @@ function mousePressEvent(event) {
|
|||
Messages.sendMessage(MASTER_TO_CLIENTS_CHANNEL, STOP_MESSAGE);
|
||||
isRecording = false;
|
||||
}
|
||||
toolBar.selectTool(recordIcon, !isRecording);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,10 +99,12 @@ function update(deltaTime) {
|
|||
if (waitingForPerformanceFile) {
|
||||
totalWaitingTime += deltaTime;
|
||||
if (totalWaitingTime > TIMEOUT || performanceJSON.avatarClips.length === responsesExpected) {
|
||||
print("UPLOADING PERFORMANCE FILE");
|
||||
if (performanceJSON.avatarClips.length !== 0) {
|
||||
print("UPLOADING PERFORMANCE FILE");
|
||||
//I can upload the performance file on the asset
|
||||
Assets.uploadData(JSON.stringify(performanceJSON), extension, uploadFinished);
|
||||
} else {
|
||||
print("PERFORMANCE FILE EMPTY");
|
||||
}
|
||||
//clean things after upload performance file to asset
|
||||
waitingForPerformanceFile = false;
|
||||
|
|
Loading…
Reference in a new issue