269 lines
16 KiB
JavaScript
269 lines
16 KiB
JavaScript
/**
|
|
* Static, simple definitions like strings, hashes, enums
|
|
*/
|
|
(function(context,$) {
|
|
|
|
"use strict";
|
|
|
|
context.JK = context.JK || {};
|
|
var logger = context.JK.logger;
|
|
|
|
context.JK.OS = {
|
|
WIN32: "Win32",
|
|
OSX: "MacOSX",
|
|
UNIX: "Unix"
|
|
};
|
|
|
|
context.JK.ASSIGNMENT = {
|
|
CHAT: -2,
|
|
OUTPUT: -1,
|
|
UNASSIGNED: 0,
|
|
TRACK1: 1,
|
|
TRACK2: 2
|
|
};
|
|
|
|
context.JK.VOICE_CHAT = {
|
|
NO_CHAT: "0",
|
|
CHAT: "1"
|
|
};
|
|
|
|
context.JK.EVENTS = {
|
|
DIALOG_CLOSED : 'dialog_closed'
|
|
}
|
|
|
|
context.JK.ALERT_NAMES = {
|
|
NO_EVENT : 0,
|
|
BACKEND_ERROR : 1, //generic error - eg P2P message error
|
|
BACKEND_MIXER_CHANGE : 2, //event that controls have been regenerated
|
|
|
|
//network related
|
|
PACKET_JTR : 3,
|
|
PACKET_LOSS : 4,
|
|
PACKET_LATE : 5,
|
|
|
|
JTR_QUEUE_DEPTH : 6,
|
|
|
|
NETWORK_JTR : 7,
|
|
NETWORK_PING : 8,
|
|
|
|
BITRATE_THROTTLE_WARN : 9,
|
|
BANDWIDTH_LOW : 10,
|
|
|
|
//IO related events
|
|
INPUT_IO_RATE : 11,
|
|
INPUT_IO_JTR : 12,
|
|
OUTPUT_IO_RATE : 13,
|
|
OUTPUT_IO_JTR : 14,
|
|
|
|
// CPU load related
|
|
CPU_LOAD : 15,
|
|
DECODE_VIOLATIONS : 16,
|
|
|
|
LAST_THRESHOLD : 17,
|
|
|
|
WIFI_NETWORK_ALERT : 18, //user or peer is using wifi
|
|
NO_VALID_AUDIO_CONFIG : 19, // alert the user to popup a config
|
|
AUDIO_DEVICE_NOT_PRESENT : 20, // the audio device is not connected
|
|
RECORD_PLAYBACK_STATE : 21, // record/playback events have occurred
|
|
RUN_UPDATE_CHECK_BACKGROUND : 22, //this is auto check - do
|
|
RUN_UPDATE_CHECK_INTERACTIVE : 23, //this is initiated by user
|
|
STUN_EVENT : 24, // system completed stun test... come get the result
|
|
DEAD_USER_WARN_EVENT : 25, //the backend is not receiving audio from this peer
|
|
DEAD_USER_REMOVE_EVENT : 26, //the backend is removing the user from session as no audio is coming from this peer
|
|
WINDOW_CLOSE_BACKGROUND_MODE : 27, //the user has closed the window and the client is now in background mode
|
|
WINDOW_OPEN_FOREGROUND_MODE : 28, //the user has opened the window and the client is now in forground mode/
|
|
SESSION_LIVEBROADCAST_FAIL : 29, //error of some sort - so can't broadcast
|
|
SESSION_LIVEBROADCAST_ACTIVE : 30, //active
|
|
SESSION_LIVEBROADCAST_STOPPED : 31, //stopped by server/user
|
|
SESSION_LIVEBROADCAST_PINNED : 32, //node pinned by user
|
|
SESSION_LIVEBROADCAST_UNPINNED : 33, //node unpinned by user
|
|
BACKEND_STATUS_MSG : 34, //status/informational message
|
|
LOCAL_NETWORK_VARIANCE_HIGH : 35,//the ping time via a hairpin for the user network is unnaturally high or variable.
|
|
//indicates problem with user computer stack or network itself (wifi, antivirus etc)
|
|
LOCAL_NETWORK_LATENCY_HIGH : 36,
|
|
RECORDING_CLOSE : 37, //update and remove tracks from front-end
|
|
PEER_REPORTS_NO_AUDIO_RECV : 38, //letting front-end know audio is not being received from a user in session
|
|
LAST_ALERT : 39
|
|
}
|
|
// recreate eThresholdType enum from MixerDialog.h
|
|
context.JK.ALERT_TYPES = {
|
|
0: {"title": "", "message": ""}, // NO_EVENT,
|
|
1: {"title": "", "message": ""}, // BACKEND_ERROR: generic error - eg P2P message error
|
|
2: {"title": "", "message": ""}, // BACKEND_MIXER_CHANGE, - event that controls have been regenerated
|
|
3: {"title": "High Packet Jitter", "message": "Your network connection is currently experiencing packet jitter at a level that is too high to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // PACKET_JTR,
|
|
4: {"title": "High Packet Loss", "message": "Your network connection is currently experiencing packet loss at a rate that is too high to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>." }, // PACKET_LOSS
|
|
5: {"title": "High Packet Late", "message": "Your network connection is currently experiencing packet loss at a rate that is too high to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // PACKET_LATE,
|
|
6: {"title": "Large Jitter Queue", "message": "Your network connection is currently experiencing packet jitter at a level that is too high to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // JTR_QUEUE_DEPTH,
|
|
7: {"title": "High Network Jitter", "message": "Your network connection is currently experiencing network jitter at a level that is too high to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // NETWORK_JTR,
|
|
8: {"title": "High Session Latency", "message": "The latency of your audio device combined with your Internet connection has become high enough to impact your session quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>." }, // NETWORK_PING,
|
|
9: {"title": "Bandwidth Throttled", "message": "The available bandwidth on your network has diminished, and this may impact your audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // BITRATE_THROTTLE_WARN,
|
|
10:{"title": "Low Bandwidth", "message": "The available bandwidth on your network has become too low, and this may impact your audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>." }, // BANDWIDTH_LOW
|
|
|
|
// IO related events
|
|
11:{"title": "Variable Input Rate", "message": "The input rate of your audio device is varying too much to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>." }, // INPUT_IO_RATE
|
|
12:{"title": "High Input Jitter", "message": "The input rate of your audio device is varying too much to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // INPUT_IO_JTR,
|
|
13:{"title": "Variable Output Rate", "message": "The output rate of your audio device is varying too much to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>." }, // OUTPUT_IO_RATE
|
|
14:{"title": "High Output Jitter", "message": "The output rate of your audio device is varying too much to deliver good audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // OUTPUT_IO_JTR,
|
|
|
|
// CPU load related
|
|
15: { "title": "CPU Utilization High", "message": "The CPU of your computer is unable to keep up with the current processing load, and this may impact your audio quality. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>." }, // CPU_LOAD
|
|
16: {"title": "Decode Violations", "message": ""}, // DECODE_VIOLATIONS,
|
|
17: {"title": "", "message": ""}, // LAST_THRESHOLD
|
|
18: {"title": "Wifi Alert", "message": ""}, // WIFI_NETWORK_ALERT, //user or peer is using wifi
|
|
19: {"title": "No Audio Configuration", "message": "You cannot join the session because you do not have a valid audio configuration."}, // NO_VALID_AUDIO_CONFIG,
|
|
20: {"title": "Audio Device Not Present", "message": ""}, // AUDIO_DEVICE_NOT_PRESENT, // the audio device is not connected
|
|
21: {"title": "", "message": ""}, // RECORD_PLAYBACK_STATE, // record/playback events have occurred
|
|
22: {"title": "", "message": ""}, // RUN_UPDATE_CHECK_BACKGROUND, //this is auto check - do
|
|
23: {"title": "", "message": ""}, // RUN_UPDATE_CHECK_INTERACTIVE, //this is initiated by user
|
|
24: {"title": "", "message": ""}, // STUN_EVENT, // system completed stun test... come get the result
|
|
25: {"title": "No Audio", "message": "Your system is no longer transmitting audio. Other session members are unable to hear you."}, // DEAD_USER_WARN_EVENT, //the backend is not receiving audio from this peer
|
|
26: {"title": "No Audio", "message": "Your system is no longer transmitting audio. Other session members are unable to hear you."}, // DEAD_USER_REMOVE_EVENT, //the backend is removing the user from session as no audio is coming from this peer
|
|
27: {"title": "", "message": ""}, // WINDOW_CLOSE_BACKGROUND_MODE, //the user has closed the window and the client is now in background mode
|
|
28: {"title": "", "message": ""}, // WINDOW_OPEN_FOREGROUND_MODE, //the user has opened the window and the client is now in forground mode/
|
|
|
|
29: {"title": "Failed to Broadcast", "message": ""}, // SESSION_LIVEBROADCAST_FAIL, //error of some sort - so can't broadcast
|
|
30: {"title": "", "message": ""}, // SESSION_LIVEBROADCAST_ACTIVE, //active
|
|
31: {"title": "", "message": ""}, // SESSION_LIVEBROADCAST_STOPPED, //stopped by server/user
|
|
32: {"title": "Client Pinned", "message": "This client will be the source of a broadcast."}, // SESSION_LIVEBROADCAST_PINNED, //node pinned by user
|
|
33: {"title": "Client No Longer Pinned", "message": "This client is no longer designated as the source of the broadcast."}, // SESSION_LIVEBROADCAST_UNPINNED, //node unpinned by user
|
|
|
|
34: {"title": "", "message": ""}, // BACKEND_STATUS_MSG, //status/informational message
|
|
35: {"title": "LAN Unpredictable", "message": "Your local network is adding considerable variance to transmit times. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // LOCAL_NETWORK_VARIANCE_HIGH,//the ping time via a hairpin for the user network is unnaturally high or variable.
|
|
|
|
//indicates problem with user computer stack or network itself (wifi, antivirus etc)
|
|
36: {"title": "LAN High Latency", "message": "Your local network is adding considerable latency. For troubleshooting tips, <a href='https://jamkazam.desk.com/customer/portal/articles/1288778-troubleshoot-session-quality-problems'>click here</a>."}, // LOCAL_NETWORK_LATENCY_HIGH,
|
|
37: {"title": "", "message": ""}, // RECORDING_CLOSE, //update and remove tracks from front-end
|
|
38: {"title": "No Audio Sent", "message": ""}, // PEER_REPORTS_NO_AUDIO_RECV, //update and remove tracks from front-end
|
|
39: {"title": "", "message": ""} // LAST_ALERT
|
|
};
|
|
|
|
// add the alert's name to the ALERT_TYPES structure
|
|
context._.each(context.JK.ALERT_NAMES, function(alert_code, alert_name) {
|
|
var alert_data = context.JK.ALERT_TYPES[alert_code];
|
|
alert_data.name = alert_name;
|
|
})
|
|
|
|
context.JK.MAX_TRACKS = 6;
|
|
context.JK.MAX_OUTPUTS = 2;
|
|
|
|
// TODO: store these client_id values in instruments table, or store
|
|
// server_id as the client_id to prevent maintenance nightmares. As it's
|
|
// set up now, we will have to deploy each time we add new instruments.
|
|
context.JK.server_to_client_instrument_map = {
|
|
"Acoustic Guitar": { "client_id": 10, "server_id": "acoustic guitar" },
|
|
"Bass Guitar": { "client_id": 20, "server_id": "bass guitar" },
|
|
"Computer": { "client_id": 30, "server_id": "computer" },
|
|
"Drums": { "client_id": 40, "server_id": "drums" },
|
|
"Electric Guitar": { "client_id": 50, "server_id": "electric guitar" },
|
|
"Keyboard": { "client_id": 60, "server_id": "keyboard" },
|
|
"Piano": { "client_id": 61, "server_id": "piano" },
|
|
"Upright Bass": { "client_id": 62, "server_id": "upright bass" },
|
|
"Voice": { "client_id": 70, "server_id": "voice" },
|
|
"Flute": { "client_id": 80, "server_id": "flute" },
|
|
"Clarinet": { "client_id": 90, "server_id": "clarinet" },
|
|
"Saxophone": { "client_id": 100, "server_id": "saxophone" },
|
|
"Trumpet": { "client_id": 110, "server_id": "trumpet" },
|
|
"Violin": { "client_id": 120, "server_id": "violin" },
|
|
"Trombone": { "client_id": 130, "server_id": "trombone" },
|
|
"Banjo": { "client_id": 140, "server_id": "banjo" },
|
|
"Harmonica": { "client_id": 150, "server_id": "harmonica" },
|
|
"Accordion": { "client_id": 160, "server_id": "accordion" },
|
|
"French Horn": { "client_id": 170, "server_id": "french horn" },
|
|
"Euphonium": { "client_id": 180, "server_id": "euphonium" },
|
|
"Tuba": { "client_id": 190, "server_id": "tuba" },
|
|
"Oboe": { "client_id": 200, "server_id": "oboe" },
|
|
"Ukulele": { "client_id": 210, "server_id": "ukulele" },
|
|
"Cello": { "client_id": 220, "server_id": "cello" },
|
|
"Viola": { "client_id": 230, "server_id": "viola" },
|
|
"Mandolin": { "client_id": 240, "server_id": "mandolin" },
|
|
"Other": { "client_id": 250, "server_id": "other" }
|
|
};
|
|
|
|
context.JK.client_to_server_instrument_map = {
|
|
10: { "server_id": "acoustic guitar" },
|
|
20: { "server_id": "bass guitar" },
|
|
30: { "server_id": "computer" },
|
|
40: { "server_id": "drums" },
|
|
50: { "server_id": "electric guitar" },
|
|
60: { "server_id": "keyboard" },
|
|
61: { "server_id": "piano"} ,
|
|
62: { "server_id": "upright bass"} ,
|
|
70: { "server_id": "voice" },
|
|
80: { "server_id": "flute" },
|
|
90: { "server_id": "clarinet" },
|
|
100: { "server_id": "saxophone" },
|
|
110: { "server_id": "trumpet" },
|
|
120: { "server_id": "violin" },
|
|
130: { "server_id": "trombone" },
|
|
140: { "server_id": "banjo" },
|
|
150: { "server_id": "harmonica" },
|
|
160: { "server_id": "accordion" },
|
|
170: { "server_id": "french horn" },
|
|
180: { "server_id": "euphonium" },
|
|
190: { "server_id": "tuba" },
|
|
200: { "server_id": "oboe" },
|
|
210: { "server_id": "ukulele" },
|
|
220: { "server_id": "cello" },
|
|
230: { "server_id": "viola" },
|
|
240: { "server_id": "mandolin" },
|
|
250: { "server_id": "other" }
|
|
};
|
|
|
|
context.JK.instrument_id_to_instrument = {};
|
|
|
|
(function() {
|
|
$.each(context.JK.server_to_client_instrument_map, function(key, value) {
|
|
context.JK.instrument_id_to_instrument[value.server_id] = { client_id: value.client_id, display: key }
|
|
});
|
|
})();
|
|
|
|
|
|
context.JK.entityToPrintable = {
|
|
music_session: "music session"
|
|
}
|
|
|
|
context.JK.AUDIO_DEVICE_BEHAVIOR = {
|
|
MacOSX_builtin: {
|
|
display: 'MacOSX Built-In',
|
|
shortName: 'Built-In',
|
|
videoURL: "https://www.youtube.com/watch?v=7-9PW50ygHk",
|
|
showKnobs: false,
|
|
showASIO: false
|
|
},
|
|
MacOSX_interface: {
|
|
display: 'MacOSX external interface',
|
|
shortName: 'External',
|
|
videoURL: "https://www.youtube.com/watch?v=7BLld6ogm14",
|
|
showKnobs: false,
|
|
showASIO: false
|
|
},
|
|
Win32_wdm: {
|
|
display: 'Windows WDM',
|
|
shortName : 'WDM',
|
|
videoURL: "https://www.youtube.com/watch?v=L36UBkAV14c",
|
|
showKnobs: true,
|
|
showASIO: false
|
|
},
|
|
Win32_asio: {
|
|
display: 'Windows ASIO',
|
|
shortName : 'ASIO',
|
|
videoURL: "https://www.youtube.com/watch?v=PGUmISTVVMY",
|
|
showKnobs: false,
|
|
showASIO: true
|
|
},
|
|
Win32_asio4all: {
|
|
display: 'Windows ASIO4ALL',
|
|
shortName : 'ASIO4ALL',
|
|
videoURL: "https://www.youtube.com/watch?v=PGUmISTVVMY",
|
|
showKnobs: false,
|
|
showASIO: true
|
|
},
|
|
Linux: {
|
|
display: 'Linux',
|
|
shortName : 'linux',
|
|
videoURL: undefined,
|
|
showKnobs: true,
|
|
showASIO: false
|
|
}
|
|
}
|
|
})(window,jQuery); |