* Copyright 2011 kubtek <kubtek@mail.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_festival.h"
#include <festival/festival.h>
#include <glib/gi18n.h>
static const StarDictPluginSystemInfo *plugin_info = NULL;
static IAppDirs* gpAppDirs = NULL;
static std::string voice_engine;
static std::string build_path(const std::string& path1, const std::string& path2)
{
std::string res;
res.reserve(path1.length() + 1 + path2.length());
res = path1;
if(!res.empty() && res[res.length()-1] != G_DIR_SEPARATOR)
res += G_DIR_SEPARATOR_S;
if(!path2.empty() && path2[0] == G_DIR_SEPARATOR)
res.append(path2, 1, std::string::npos);
else
res.append(path2);
return res;
}
static std::string get_cfg_filename()
{
return build_path(gpAppDirs->get_user_config_dir(), "festival.cfg");
}
static void saytext(const char *text)
{
festival_say_text(text);
}
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 == 1)
voice_engine = "voice_kal_diphone";
else if (index == 2)
voice_engine = "voice_ked_diphone";
else if (index == 3)
voice_engine = "voice_cmu_us_jmk_arctic_hts";
else if (index == 4)
voice_engine = "voice_cmu_us_bdl_arctic_hts";
else if (index == 5)
voice_engine = "voice_cmu_us_awb_arctic_hts";
else if (index == 6)
voice_engine = "voice_cmu_us_slt_arctic_hts";
else
voice_engine.clear();
if (!voice_engine.empty()) {
std::string command = "(";
command += voice_engine;
command += ")";
festival_eval_command(command.c_str());
}
gchar *data1 = g_strdup_printf("[festival]\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(_("Festival 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"));
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), "Male1-kal");
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), "Male2-ked");
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), "Male3-jmk");
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), "Male4-bdl");
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), "Male5-awb");
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combobox), "Female1-slt");
gint old_index;
if (voice_engine == "voice_kal_diphone")
old_index = 1;
else if (voice_engine == "voice_ked_diphone")
old_index = 2;
else if (voice_engine == "voice_cmu_us_jmk_arctic_hts")
old_index = 3;
else if (voice_engine == "voice_cmu_us_bdl_arctic_hts")
old_index = 4;
else if (voice_engine == "voice_cmu_us_awb_arctic_hts")
old_index = 5;
else if (voice_engine == "voice_cmu_us_slt_arctic_hts")
old_index = 6;
else
old_index = 0;
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, IAppDirs* appDirs)
{
g_debug(_("Loading Festival plug-in..."));
if (strcmp(obj->version_str, PLUGIN_SYSTEM_VERSION)!=0) {
g_print(_("Error: Festival 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>", _("Festival"), _("Festival TTS."), _("Pronounce words by Festival TTS engine."));
obj->configure_func = configure;
plugin_info = obj->plugin_info;
gpAppDirs = appDirs;
return false;
}
void stardict_plugin_exit(void)
{
gpAppDirs = NULL;
}
bool stardict_tts_plugin_init(StarDictTtsPlugInObject *obj)
{
festival_initialize(1, 210000);
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(), "[festival]\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, "festival", "voice", NULL);
g_key_file_free(keyfile);
}
if (str) {
voice_engine = str;
g_free(str);
}
if (!voice_engine.empty()) {
std::string command = "(";
command += voice_engine;
command += ")";
festival_eval_command(command.c_str());
}
obj->saytext_func = saytext;
obj->tts_name = _("Festival TTS");
g_print(_("Festival plug-in \033[31m[loaded]\033[0m.\n"));
return false;
}