294 lines
12 KiB
JavaScript
294 lines
12 KiB
JavaScript
import * as MODULE from "../MaterialDeck.js";
|
|
import {streamDeck} from "../MaterialDeck.js";
|
|
import {compatibleCore} from "./misc.js";
|
|
|
|
export class PlaylistControl{
|
|
constructor(){
|
|
this.active = false;
|
|
this.playlistOffset = 0;
|
|
this.trackOffset = 0;
|
|
}
|
|
|
|
async updateAll(){
|
|
if (this.active == false) return;
|
|
for (let device of streamDeck.buttonContext) {
|
|
for (let i=0; i<device.buttons.length; i++){
|
|
const data = device.buttons[i];
|
|
if (data == undefined || data.action != 'playlist') continue;
|
|
await this.update(data.settings,data.context,device.device);
|
|
}
|
|
}
|
|
}
|
|
|
|
update(settings,context,device){
|
|
if (MODULE.getPermission('PLAYLIST','PLAY') == false ) {
|
|
streamDeck.noPermission(context,device);
|
|
return;
|
|
}
|
|
this.active = true;
|
|
const mode = settings.playlistMode ? settings.playlistMode : 'playlist';
|
|
|
|
if (mode == 'playlist'){
|
|
this.updatePlaylist(settings,context,device);
|
|
}
|
|
else if (mode == 'track'){
|
|
this.updateTrack(settings,context,device);
|
|
}
|
|
else {
|
|
const src = 'modules/MaterialDeck/img/playlist/stop.png';
|
|
const background = settings.background ? settings.background : '#000000';
|
|
const ringColor = (game.playlists.playing.length > 0) ? '#00FF00' : '#000000';
|
|
const ring = (game.playlists.playing.length > 0) ? 2 : 1;
|
|
const txt = settings.displayPlaylistName ? this.getPlaylist(this.playlistOffset).name : '';
|
|
streamDeck.setIcon(context,device,src,{background:background,ring:ring,ringColor:ringColor,overlay:true});
|
|
streamDeck.setTitle(txt,context);
|
|
}
|
|
}
|
|
|
|
updatePlaylist(settings,context,device){
|
|
let name = "";
|
|
let ringColor = "#000000"
|
|
const background = settings.background ? settings.background : '#000000';
|
|
const ringOffColor = settings.offRing ? settings.offRing : '#FF0000';
|
|
const ringOnColor = settings.onRing ? settings.onRing : '#00FF00';
|
|
const playlistType = settings.playlistType ? settings.playlistType : 'playStop';
|
|
|
|
//Play/Stop
|
|
if (playlistType == 'playStop'){
|
|
let playlistNr = parseInt(settings.playlistNr);
|
|
if (isNaN(playlistNr) || playlistNr < 1) playlistNr = 1;
|
|
playlistNr--;
|
|
playlistNr += this.playlistOffset;
|
|
|
|
let playlist = this.getPlaylist(playlistNr);
|
|
if (playlist != undefined){
|
|
if (playlist.playing)
|
|
ringColor = ringOnColor;
|
|
else
|
|
ringColor = ringOffColor;
|
|
if (settings.displayName)
|
|
name = playlist.name;
|
|
}
|
|
}
|
|
//Offset
|
|
else if (playlistType == 'offset') {
|
|
let playlistOffset = parseInt(settings.offset);
|
|
if (isNaN(playlistOffset)) playlistOffset = 0;
|
|
if (playlistOffset == this.playlistOffset) ringColor = ringOnColor;
|
|
}
|
|
//Relative Offset
|
|
else if (playlistType == 'relativeOffset') {
|
|
let playlistOffset = parseInt(settings.offset);
|
|
if (isNaN(playlistOffset)) playlistOffset = 0;
|
|
let number = parseInt(this.playlistOffset + playlistOffset);
|
|
const nrOfPlaylists = parseInt(game.settings.get(MODULE.moduleName,'playlists').playlistNumber);
|
|
if (number < 0) number += nrOfPlaylists;
|
|
else if (number >= nrOfPlaylists) number -= nrOfPlaylists;
|
|
const targetPlaylist = this.getPlaylist(number);
|
|
if (targetPlaylist != undefined) name = targetPlaylist.name;
|
|
}
|
|
streamDeck.setIcon(context,device,"",{background:background,ring:2,ringColor:ringColor});
|
|
streamDeck.setTitle(name,context);
|
|
}
|
|
|
|
updateTrack(settings,context,device){
|
|
let name = "";
|
|
let ringColor = "#000000"
|
|
const background = settings.background ? settings.background : '#000000';
|
|
const ringOffColor = settings.offRing ? settings.offRing : '#FF0000';
|
|
const ringOnColor = settings.onRing ? settings.onRing : '#00FF00';
|
|
const playlistType = settings.playlistType ? settings.playlistType : 'playStop';
|
|
|
|
//Play/Stop
|
|
if (playlistType == 'playStop'){
|
|
let playlistNr = parseInt(settings.playlistNr);
|
|
if (isNaN(playlistNr) || playlistNr < 1) playlistNr = 1;
|
|
playlistNr--;
|
|
playlistNr += this.playlistOffset;
|
|
let trackNr = parseInt(settings.trackNr);
|
|
if (isNaN(trackNr) || trackNr < 1) trackNr = 1;
|
|
trackNr--;
|
|
trackNr += this.trackOffset;
|
|
|
|
let playlist = this.getPlaylist(playlistNr);
|
|
if (playlist != undefined){
|
|
let track;
|
|
if (compatibleCore("0.8.1")) track = playlist.sounds.contents[trackNr];
|
|
else track = playlist.data.sounds[trackNr];
|
|
|
|
if (track != undefined){
|
|
if (track.playing)
|
|
ringColor = ringOnColor;
|
|
else
|
|
ringColor = ringOffColor;
|
|
if (settings.displayName)
|
|
name = track.name;
|
|
}
|
|
}
|
|
}
|
|
//Offset
|
|
else if (playlistType == 'offset') {
|
|
let trackOffset = parseInt(settings.offset);
|
|
if (isNaN(trackOffset)) trackOffset = 0;
|
|
if (trackOffset == this.trackOffset) ringColor = ringOnColor;
|
|
}
|
|
//Relative Offset
|
|
else if (playlistType == 'relativeOffset') {
|
|
}
|
|
streamDeck.setIcon(context,device,"",{background:background,ring:2,ringColor:ringColor});
|
|
streamDeck.setTitle(name,context);
|
|
}
|
|
|
|
stopAll(force=false){
|
|
if (game.user.isGM == false) {
|
|
const payload = {
|
|
"msgType": "stopAllPlaylists",
|
|
"force": force
|
|
};
|
|
game.socket.emit(`module.MaterialDeck`, payload);
|
|
return;
|
|
}
|
|
if (force){
|
|
let playing = game.playlists.playing;
|
|
for (let i=0; i<playing.length; i++){
|
|
playing[i].stopAll();
|
|
}
|
|
}
|
|
else {
|
|
let playing = game.playlists.playing;
|
|
let settings = game.settings.get(MODULE.moduleName,'playlists');
|
|
let selectedPlaylists = settings.selectedPlaylist;
|
|
for (let i=0; i<playing.length; i++){
|
|
const playlistNr = selectedPlaylists.findIndex(p => p == playing[i]._id);
|
|
const mode = settings.playlistMode[playlistNr];
|
|
if (mode == 0) playing[i].stopAll();
|
|
}
|
|
}
|
|
}
|
|
|
|
getPlaylist(num){
|
|
let selectedPlaylists = game.settings.get(MODULE.moduleName,'playlists').selectedPlaylist;
|
|
if (selectedPlaylists != undefined)
|
|
return game.playlists.get(selectedPlaylists[num]);
|
|
else return undefined;
|
|
}
|
|
|
|
keyPress(settings,context,device){
|
|
if (MODULE.getPermission('PLAYLIST','PLAY') == false ) return;
|
|
let playlistNr = settings.playlistNr;
|
|
if (playlistNr == undefined || playlistNr < 1) playlistNr = 1;
|
|
playlistNr--;
|
|
playlistNr += this.playlistOffset;
|
|
let trackNr = settings.trackNr;
|
|
if (trackNr == undefined || trackNr < 1) trackNr = 1;
|
|
trackNr--;
|
|
trackNr += this.trackOffset;
|
|
|
|
const playlistMode = settings.playlistMode ? settings.playlistMode : 'playlist';
|
|
const playlistType = settings.playlistType ? settings.playlistType : 'playStop';
|
|
|
|
if (playlistMode == 'stopAll') {
|
|
this.stopAll(true);
|
|
}
|
|
else {
|
|
if (playlistType == 'playStop') {
|
|
let playlist = this.getPlaylist(playlistNr);
|
|
if (playlist != undefined){
|
|
if (playlistMode == 'playlist')
|
|
this.playPlaylist(playlist,playlistNr);
|
|
else {
|
|
let track;
|
|
if (compatibleCore("0.8.1")) track = playlist.sounds.contents[trackNr];
|
|
else track = playlist.data.sounds[trackNr];
|
|
if (track != undefined){
|
|
this.playTrack(track,playlist,playlistNr);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (playlistType == 'offset'){
|
|
if (playlistMode == 'playlist') {
|
|
this.playlistOffset = parseInt(settings.offset);
|
|
if (isNaN(this.playlistOffset)) this.playlistOffset = 0;
|
|
}
|
|
else {
|
|
this.trackOffset = parseInt(settings.offset);
|
|
if (isNaN(this.trackOffset)) this.trackOffset = 0;
|
|
}
|
|
this.updateAll();
|
|
}
|
|
else if (playlistType == 'relativeOffset'){
|
|
if (playlistMode == 'playlist') {
|
|
let playlistOffset = parseInt(settings.offset);
|
|
if (isNaN(playlistOffset)) playlistOffset = 0;
|
|
let number = parseInt(this.playlistOffset + playlistOffset);
|
|
const nrOfPlaylists = parseInt(game.settings.get(MODULE.moduleName,'playlists').playlistNumber);
|
|
if (number < 0) number += nrOfPlaylists;
|
|
else if (number >= nrOfPlaylists) number -= nrOfPlaylists;
|
|
this.playlistOffset = number;
|
|
}
|
|
else {
|
|
let value = parseInt(settings.offset);
|
|
if (isNaN(value)) return;
|
|
this.trackOffset += value;
|
|
}
|
|
this.updateAll();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
async playPlaylist(playlist,playlistNr){
|
|
if (game.user.isGM == false) {
|
|
const payload = {
|
|
"msgType": "playPlaylist",
|
|
"playlistId": playlist.id,
|
|
"playlistNr": playlistNr
|
|
};
|
|
game.socket.emit(`module.MaterialDeck`, payload);
|
|
return;
|
|
}
|
|
if (playlist.playing) {
|
|
playlist.stopAll();
|
|
return;
|
|
}
|
|
let mode = game.settings.get(MODULE.moduleName,'playlists').playlistMode[playlistNr];
|
|
if (mode == 0) {
|
|
mode = game.settings.get(MODULE.moduleName,'playlists').playMode;
|
|
if (mode == 2) await this.stopAll();
|
|
}
|
|
playlist.playAll();
|
|
}
|
|
|
|
async playTrack(track,playlist,playlistNr){
|
|
if (game.user.isGM == false) {
|
|
const payload = {
|
|
"msgType": "playTrack",
|
|
"playlistId": playlist.id,
|
|
"playlistNr": playlistNr,
|
|
"trackId": track._id
|
|
};
|
|
game.socket.emit(`module.MaterialDeck`, payload);
|
|
return;
|
|
}
|
|
let play;
|
|
if (track.playing)
|
|
play = false;
|
|
else {
|
|
play = true;
|
|
let mode = game.settings.get(MODULE.moduleName,'playlists').playlistMode[playlistNr];
|
|
if (mode == 0) {
|
|
mode = game.settings.get(MODULE.moduleName,'playlists').playMode;
|
|
if (mode == 1) await playlist.stopAll();
|
|
else if (mode == 2) await this.stopAll();
|
|
}
|
|
else if (mode == 2) await playlist.stopAll();
|
|
}
|
|
|
|
if (compatibleCore("0.8.1") && play) await playlist.playSound(track);
|
|
else if (compatibleCore("0.8.1")) await playlist.stopSound(track);
|
|
else await playlist.updateEmbeddedEntity("PlaylistSound", {_id: track._id, playing: play});
|
|
|
|
playlist.update({playing: play});
|
|
}
|
|
} |