Set volume per language

This commit is contained in:
Ruben van de Ven 2019-05-12 14:54:37 +02:00
parent 81aeb6be27
commit cd7a948787
5 changed files with 85 additions and 15 deletions

View file

@ -103,6 +103,9 @@ class Message(object):
if not 'vol' in msg.params:
# prevent clipping on some Lyrebird tracks
msg.params['vol'] = .8
msg.params['vol'] = float(msg.params['vol'])
return msg
def parseForVariables(self):
@ -937,12 +940,23 @@ class Diversion(object):
return True
class Configuration(object):
id = 'configuration'
volume = 1
@classmethod
def initFromJson(configClass, data, story):
config = Configuration()
config.__dict__.update(data)
return config
storyClasses = {
'Msg': Message,
'Direction': Direction,
'Condition': Condition,
'Diversion': Diversion,
'Configuration': Configuration,
}
@ -1158,6 +1172,8 @@ class Story(object):
self.diversions = [el for el in self.elements.values() if type(el) == Diversion]
self.interruptionDiversions = [el for el in self.elements.values() if type(el) == Diversion and el.type == 'interrupt']
configurations = [el for el in self.elements.values() if type(el) == Configuration]
self.configuration = configurations[0] if len(configurations) else Configuration()
if currentId:
self.currentMessage = self.get(currentId)
@ -1537,12 +1553,15 @@ class Story(object):
self.logger.exception(e)
duration = 10 # some default duration to have something to fall back to
params = message.getParams().copy()
params['vol'] = params['vol'] * self.configuration.volume if 'vol' in params else self.configuration.volume
# self.hugvey.google.pause() # pause STT to avoid text events while decision is made
self.hugvey.sendCommand({
'action': 'play',
'file': fn,
'id': message.id,
'params': message.getParams(),
'params': params,
'duration': duration
})

View file

@ -44,13 +44,14 @@ img.icon {
flex-direction: row;
height: 100vh;
width: 100vw; }
#interface #audioFiles {
#interface #audioFiles, #interface #configuration {
position: absolute;
top: 10%;
left: 10%;
right: 10%;
bottom: 10%;
background: #ccc; }
top: 30%;
left: 30%;
right: 30%;
bottom: 30%;
background: #ccc;
overflow: auto; }
#status {
display: flex;
@ -105,7 +106,7 @@ img.icon {
bottom: 3px;
right: 3px; }
#status .hugvey .light input {
width: 2em; }
width: 3.2em; }
#status .hugvey .stats .count {
display: inline-block;
margin-right: 10px; }

View file

@ -81,6 +81,7 @@
<div id="btn-addMsg" class="btn">Create message</div>
<div id="btn-diversions" class="btn">View Diversions</div>
<div id="btn-audio" class="btn">View Audio Files</div>
<div id="btn-config" class="btn">Configuration</div>
</div>
<div id="msg"></div>
<svg id='graph' viewbox="-640 -512 1280 1024"

View file

@ -301,6 +301,7 @@ class Graph {
document.getElementById( 'btn-addMsg' ).addEventListener( 'click', function( e ) { graph.createMsg(); } );
document.getElementById( 'btn-diversions' ).addEventListener( 'click', function( e ) { graph.showDiversions(); } );
document.getElementById( 'btn-audio' ).addEventListener( 'click', function( e ) { graph.showAudioFiles(); } );
document.getElementById( 'btn-config' ).addEventListener( 'click', function( e ) { graph.showConfiguration(); } );
}
clickMsg( msg ) {
@ -343,6 +344,10 @@ class Graph {
return `http://localhost:8888/voice?text=${encodeURIComponent(msg['text'])}&variable=${isVariable}&lang=${lang}&filename=0`;
}
getConfig() {
}
getNumericId(prefix) {
let id, i = 0;
let hasId= function(a, id) {
@ -854,6 +859,42 @@ class Graph {
document.getElementById("interface").appendChild(audioFilesEl);
}
showConfiguration( ) {
let configEl = crel('div',{
'id':'configuration'
},
crel(
'div',
{
'class':'btn btn-close',
'on': {
'click': function() {
configEl.parentNode.removeChild(configEl)
}
}
},
'close'
),
crel('h2', `Language based settings for ${this.language_code}`),
crel(
'label',
'volume',
crel('input', {
'type': 'number',
'step': 0.05,
'on': {
'change': function(e){
panopticon.graph.configuration['volume'] = parseFloat(e.target.value)
}
},
'value': this.configuration.hasOwnProperty('volume') ? this.configuration.volume : 1
})
)
);
document.getElementById("interface").appendChild(configEl);
}
showMsg( msg ) {
let msgEl = document.getElementById( 'msg' );
msgEl.innerHTML = "";
@ -1654,7 +1695,7 @@ class Graph {
getJsonString() {
// recreate array to have the right order of items.
this.data = [...this.messages, ...this.conditions,
this.data = [this.configuration, ...this.messages, ...this.conditions,
...this.directions, ...this.diversions]
let d = [];
// let toRemove = ['sourceX', 'sourceY', 'targetX', 'targetY', 'x', 'y', 'vx', 'vy']
@ -1736,6 +1777,12 @@ class Graph {
this.conditions = this.data.filter(( node ) => node['@type'] == 'Condition' );
this.diversions = this.data.filter(( node ) => node['@type'] == 'Diversion' );
let configurations = this.data.filter(( node ) => node['@type'] == 'Configuration' );
this.configuration = configurations.length > 0 ? configurations[0] : {
"@id": "config",
"@type": "Configuration"
};
document.getElementById('current_lang').innerHTML = "";
document.getElementById('current_lang').appendChild(crel('span', {
'class': 'flag-icon ' + this.language_code

View file

@ -64,14 +64,16 @@ img.icon{
&.showStatus{
}
#audioFiles {
#audioFiles, #configuration {
position: absolute;
top: 10%;
left: 10%;
right: 10%;
bottom: 10%;
top: 30%;
left: 30%;
right: 30%;
bottom: 30%;
background: #ccc;
overflow:auto;
}
}
#status{