* Copyright 2020 Hu Zheng <huzheng001@gmail.com>
*
* This file is part of StarDict.
*
* StarDict is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* StarDict is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with StarDict. If not, see <http://www.gnu.org/licenses/>.
*/
#include "stardict_espeak_ng.h"
#include <espeak-ng/speak_lib.h>
#include <glib/gi18n.h>
#include <cstring>
static const StarDictPluginSystemInfo *plugin_info = NULL;
static std::string voice_engine;
static std::string get_cfg_filename()
{
#ifdef _WIN32
std::string res = g_get_user_config_dir();
res += G_DIR_SEPARATOR_S "StarDict" G_DIR_SEPARATOR_S "espeak-ng.cfg";
#else
std::string res;
gchar *tmp = g_build_filename(g_get_home_dir(), ".stardict", NULL);
res=tmp;
g_free(tmp);
res += G_DIR_SEPARATOR_S "espeak-ng.cfg";
#endif
return res;
}
static void saytext(const char *text)
{
espeak_Synth(text, strlen(text)+1, 0, POS_CHARACTER, 0, espeakCHARS_UTF8, NULL, NULL);
}
static void on_test_tts_button_clicked(GtkWidget *widget, GtkEntry *entry)
{
const char *word = gtk_entry_get_text(entry);
saytext(word);
}
static void on_tts_combobox_changed(GtkComboBox *widget, gpointer data)
{
gint index = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
if (index == 0) {
voice_engine.clear();
} else {
const espeak_VOICE **voices = espeak_ListVoices(NULL);
voice_engine = voices[index -1]->name;
}
if (voice_engine.empty()) {
espeak_SetVoiceByName("english");
} else {
espeak_SetVoiceByName(voice_engine.c_str());
}
gchar *data1 = g_strdup_printf("[espeak-ng]\nvoice=%s\n", voice_engine.c_str());
std::string res = get_cfg_filename();
g_file_set_contents(res.c_str(), data1, -1, NULL);
g_free(data1);
}
static void configure()
{
GtkWidget *window = gtk_dialog_new_with_buttons(_("Espeak-ng TTS configuration"), GTK_WINDOW(plugin_info->pluginwin), GTK_DIALOG_MODAL, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL);
#if GTK_MAJOR_VERSION >= 3
GtkWidget *vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL,10);
#else
GtkWidget *vbox = gtk_vbox_new(FALSE, 10);
#endif
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area(GTK_DIALOG(window))), vbox);
#if GTK_MAJOR_VERSION >= 3
GtkWidget *hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5);
#else
GtkWidget *hbox = gtk_hbox_new(FALSE, 5);
#endif
gtk_box_pack_start(GTK_BOX(vbox), hbox, false, false, 0);
GtkWidget *label = gtk_label_new(_("Voice type:"));
gtk_box_pack_start(GTK_BOX(hbox), label, false, false, 0);
GtkWidget *combobox = gtk_combo_box_text_new();
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), _("Default"));
gint old_index = 0;
const espeak_VOICE **voices = espeak_ListVoices(NULL);
size_t i = 0;
while (voices[i]) {
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), voices[i]->name);
if (old_index == 0 && voice_engine == voices[i]->name) {
old_index = i + 1;
}
i++;
}
gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), old_index);
g_signal_connect (G_OBJECT (combobox), "changed", G_CALLBACK (on_tts_combobox_changed), NULL);
gtk_box_pack_start(GTK_BOX(hbox), combobox, false, false, 0);
#if GTK_MAJOR_VERSION >= 3
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5);
#else
hbox = gtk_hbox_new(FALSE, 5);
#endif
gtk_box_pack_start(GTK_BOX(vbox), hbox, false, false, 0);
GtkWidget *entry = gtk_entry_new();
gtk_entry_set_text(GTK_ENTRY(entry), "This is the test text");
gtk_box_pack_start(GTK_BOX(hbox), entry, true, true, 0);
GtkWidget *button = gtk_button_new_with_label(_("Test"));
gtk_box_pack_start(GTK_BOX(hbox), button, false, false, 0);
g_signal_connect(G_OBJECT(button),"clicked", G_CALLBACK(on_test_tts_button_clicked), GTK_ENTRY(entry));
gtk_widget_show_all(vbox);
gtk_dialog_run(GTK_DIALOG(window));
gtk_widget_destroy (window);
}
bool stardict_plugin_init(StarDictPlugInObject *obj)
{
g_debug(_("Loading Espeak-ng plug-in..."));
if (strcmp(obj->version_str, PLUGIN_SYSTEM_VERSION)!=0) {
g_print(_("Error: Espeak-ng plugin version doesn't match!\n"));
return true;
}
obj->type = StarDictPlugInType_TTS;
obj->info_xml = g_strdup_printf("<plugin_info><name>%s</name><version>1.0</version><short_desc>%s</short_desc><long_desc>%s</long_desc><author>Hu Zheng <huzheng001@gmail.com></author><website>http://stardict-4.sourceforge.net</website></plugin_info>", _("Espeak-ng"), _("Espeak-ng TTS."), _("Pronounce words by Espeak-ng TTS engine."));
obj->configure_func = configure;
plugin_info = obj->plugin_info;
return false;
}
void stardict_plugin_exit(void)
{
espeak_Terminate();
}
bool stardict_tts_plugin_init(StarDictTtsPlugInObject *obj)
{
if(EE_INTERNAL_ERROR == espeak_Initialize(AUDIO_OUTPUT_PLAYBACK, 0, NULL, 0))
return true;
std::string res = get_cfg_filename();
gchar *str;
if (!g_file_test(res.c_str(), G_FILE_TEST_EXISTS)) {
str = NULL;
g_file_set_contents(res.c_str(), "[espeak-ng]\nvoice=\n", -1, NULL);
} else {
GKeyFile *keyfile = g_key_file_new();
g_key_file_load_from_file(keyfile, res.c_str(), G_KEY_FILE_NONE, NULL);
str = g_key_file_get_string(keyfile, "espeak-ng", "voice", NULL);
g_key_file_free(keyfile);
}
if (str) {
voice_engine = str;
g_free(str);
}
if (!voice_engine.empty()) {
espeak_SetVoiceByName(voice_engine.c_str());
}
obj->saytext_func = saytext;
obj->tts_name = _("Espeak-ng TTS");
g_print(_("Espeak-ng plug-in \033[31m[loaded]\033[0m.\n"));
return false;
}