Merge pull request #1622 from Technologicat/talkinghead-emote

add /emote support to talkinghead
This commit is contained in:
Cohee
2024-01-05 15:46:14 +02:00
committed by GitHub

View File

@@ -1109,24 +1109,38 @@ async function setExpression(character, expression, force) {
document.getElementById('expression-holder').style.display = ''; document.getElementById('expression-holder').style.display = '';
} else { } else {
// Set the talkinghead emotion to the specified expression
// TODO: For now, talkinghead emote only supported when VN mode is off; see also updateVisualNovelMode.
talkingHeadCheck().then(result => { try {
let result = await talkingHeadCheck();
if (result) { if (result) {
// Find the <img> element with id="expression-image" and class="expression" const url = new URL(getApiUrl());
const imgElement = document.querySelector('img#expression-image.expression'); url.pathname = '/api/talkinghead/set_emotion';
//console.log("searching"); await doExtrasFetch(url, {
if (imgElement && imgElement instanceof HTMLImageElement) { method: 'POST',
//console.log("setting value"); headers: {
imgElement.src = getApiUrl() + '/api/talkinghead/result_feed'; 'Content-Type': 'application/json',
} },
body: JSON.stringify({ emotion_name: expression }),
} else { });
//console.log("The fetch failed!");
} }
}); }
catch (error) {
// `set_emotion` is not present in old versions, so let it 404.
}
try {
// Find the <img> element with id="expression-image" and class="expression"
const imgElement = document.querySelector('img#expression-image.expression');
//console.log("searching");
if (imgElement && imgElement instanceof HTMLImageElement) {
//console.log("setting value");
imgElement.src = getApiUrl() + '/api/talkinghead/result_feed';
}
}
catch (error) {
//console.log("The fetch failed!");
}
} }
} }