2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Rufus: The Reliable USB Formatting Utility
|
|
|
|
* Localization functions, a.k.a. "Everybody is doing it wrong but me!"
|
2015-01-01 23:39:28 +00:00
|
|
|
* Copyright © 2013-2015 Pete Batard <pete@akeo.ie>
|
2013-10-15 21:58:27 +00:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Memory leaks detection - define _CRTDBG_MAP_ALLOC as preprocessor macro */
|
|
|
|
#ifdef _CRTDBG_MAP_ALLOC
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "rufus.h"
|
|
|
|
#include "resource.h"
|
|
|
|
#include "msapi_utf8.h"
|
|
|
|
#include "localization.h"
|
|
|
|
#include "localization_data.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* List of supported locale commands, with their parameter syntax:
|
|
|
|
* c control ID (no space, no quotes)
|
|
|
|
* s: quoted string
|
|
|
|
* i: 32 bit signed integer
|
|
|
|
* u: 32 bit unsigned CSV list
|
|
|
|
* Remember to update the size of the array in localization.h when adding/removing elements
|
|
|
|
*/
|
|
|
|
const loc_parse parse_cmd[9] = {
|
|
|
|
// Translation name and Windows LCIDs it should apply to
|
|
|
|
{ 'l', LC_LOCALE, "ssu" }, // l "en_US" "English (US)" 0x0009,0x1009
|
|
|
|
// Base translation to add on top of (eg. "English (UK)" can be used to build on top of "English (US)"
|
|
|
|
{ 'b', LC_BASE, "s" }, // b "en_US"
|
|
|
|
// Version to use for the localization commandset and API
|
2013-10-30 20:28:56 +00:00
|
|
|
{ 'v', LC_VERSION, "u" }, // v 1.0.2
|
2013-10-15 21:58:27 +00:00
|
|
|
// Translate the text control associated with an ID
|
|
|
|
{ 't', LC_TEXT, "cs" }, // t IDC_CONTROL "Translation"
|
|
|
|
// Set the section/dialog to which the next commands should apply
|
|
|
|
{ 'g', LC_GROUP, "c" }, // g IDD_DIALOG
|
|
|
|
// Resize a dialog (dx dy pixel increment)
|
|
|
|
{ 's', LC_SIZE, "cii" }, // s IDC_CONTROL +10 +10
|
|
|
|
// Move a dialog (dx dy pixed displacement)
|
|
|
|
{ 'm', LC_MOVE, "cii" }, // m IDC_CONTROL -5 0
|
|
|
|
// Set the font to use for the text controls that follow
|
|
|
|
// Use f "Default" 0 to reset the font
|
|
|
|
{ 'f', LC_FONT, "si" }, // f "MS Dialog" 10
|
2014-01-24 02:46:06 +00:00
|
|
|
// Set translations attributes such as right-to-left, numerals to use, etc
|
|
|
|
{ 'a', LC_ATTRIBUTES, "s" }, // a "ra"
|
2013-10-15 21:58:27 +00:00
|
|
|
};
|
|
|
|
|
2014-05-17 23:37:01 +00:00
|
|
|
/* Hash table for reused translation commands */
|
|
|
|
static htab_table htab_loc = HTAB_EMPTY;
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/* Globals */
|
|
|
|
int loc_line_nr;
|
|
|
|
struct list_head locale_list = {NULL, NULL};
|
2013-11-01 19:17:46 +00:00
|
|
|
char *loc_filename = NULL, *embedded_loc_filename = "embedded.loc";
|
2015-02-22 01:14:00 +00:00
|
|
|
static BOOL localization_initialized = FALSE;
|
2013-10-15 21:58:27 +00:00
|
|
|
|
2013-12-18 01:20:44 +00:00
|
|
|
/* Message table */
|
2015-01-01 23:39:28 +00:00
|
|
|
char* default_msg_table[MSG_MAX-MSG_000] = {"%s", 0};
|
|
|
|
char* current_msg_table[MSG_MAX-MSG_000] = {"%s", 0};
|
2013-12-19 23:56:40 +00:00
|
|
|
char** msg_table = NULL;
|
2013-12-18 01:20:44 +00:00
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
static void mtab_destroy(BOOL reinit)
|
2013-12-18 01:20:44 +00:00
|
|
|
{
|
|
|
|
size_t j;
|
2015-01-01 23:39:28 +00:00
|
|
|
for (j=1; j<MSG_MAX-MSG_000; j++) {
|
2013-12-19 23:56:40 +00:00
|
|
|
safe_free(current_msg_table[j]);
|
|
|
|
if (!reinit)
|
|
|
|
safe_free(default_msg_table[j]);
|
2013-12-18 01:20:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Add a localization command to a dialog/section
|
|
|
|
*/
|
|
|
|
void add_dialog_command(int index, loc_cmd* lcmd)
|
|
|
|
{
|
2013-10-18 22:08:49 +00:00
|
|
|
char str[128];
|
2014-05-17 23:37:01 +00:00
|
|
|
loc_cmd* htab_lcmd;
|
2013-10-18 22:08:49 +00:00
|
|
|
uint32_t i;
|
2013-11-23 22:05:34 +00:00
|
|
|
if ((lcmd == NULL) || (lcmd->txt[0] == NULL) || (index < 0) || (index >= ARRAYSIZE(loc_dlg))) {
|
2013-10-18 22:08:49 +00:00
|
|
|
uprintf("localization: invalid parameter for add_dialog_command\n");
|
2013-10-15 21:58:27 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-10-18 22:08:49 +00:00
|
|
|
|
|
|
|
// A dialog command must be unique, so we use a hash to identify any
|
|
|
|
// command that may already have been populated, and ensure it is replaced
|
|
|
|
// with the new one.
|
2013-10-19 14:48:22 +00:00
|
|
|
// Two dialogs may have different "m IDC_CONTROL" lines, and also
|
|
|
|
// "m IDC_CONTROL" and "t IDC_CONTROL" are separate, so we compute two more
|
|
|
|
// unique identifiers for dialog and command at the beginning of our string
|
|
|
|
str[0] = index + 0x30;
|
|
|
|
str[1] = lcmd->command + 0x30;
|
|
|
|
safe_strcpy(&str[2], sizeof(str)-2, lcmd->txt[0]);
|
2014-05-17 23:37:01 +00:00
|
|
|
i = htab_hash(str, &htab_loc);
|
2013-10-18 22:08:49 +00:00
|
|
|
if (i != 0) {
|
2014-05-17 23:37:01 +00:00
|
|
|
htab_lcmd = (loc_cmd*)(htab_loc.table[i].data);
|
|
|
|
if (htab_lcmd != NULL) {
|
|
|
|
list_del(&(htab_lcmd->list));
|
|
|
|
free_loc_cmd(htab_lcmd);
|
2013-10-18 22:08:49 +00:00
|
|
|
}
|
2014-05-17 23:37:01 +00:00
|
|
|
htab_loc.table[i].data = (void*)lcmd;
|
2013-10-18 22:08:49 +00:00
|
|
|
}
|
2013-10-15 21:58:27 +00:00
|
|
|
list_add(&lcmd->list, &loc_dlg[index].list);
|
|
|
|
}
|
|
|
|
|
2013-12-18 01:20:44 +00:00
|
|
|
/*
|
|
|
|
* Add a translated message to a direct lookup table
|
|
|
|
*/
|
|
|
|
void add_message_command(loc_cmd* lcmd)
|
|
|
|
{
|
|
|
|
if (lcmd == NULL) {
|
|
|
|
uprintf("localization: invalid parameter for add_message_command\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((lcmd->ctrl_id <= MSG_000) || (lcmd->ctrl_id >= MSG_MAX)) {
|
|
|
|
uprintf("localization: invalid MSG_ index\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
safe_free(msg_table[lcmd->ctrl_id-MSG_000]);
|
|
|
|
msg_table[lcmd->ctrl_id-MSG_000] = lcmd->txt[1];
|
|
|
|
lcmd->txt[1] = NULL; // String would be freed after this call otherwise
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
void free_loc_cmd(loc_cmd* lcmd)
|
|
|
|
{
|
|
|
|
if (lcmd == NULL)
|
|
|
|
return;
|
|
|
|
safe_free(lcmd->txt[0]);
|
|
|
|
safe_free(lcmd->txt[1]);
|
|
|
|
safe_free(lcmd->unum);
|
|
|
|
free(lcmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_dialog_list(void)
|
|
|
|
{
|
|
|
|
size_t i = 0;
|
|
|
|
loc_cmd *lcmd, *next;
|
|
|
|
|
|
|
|
for (i=0; i<ARRAYSIZE(loc_dlg); i++) {
|
|
|
|
if (list_empty(&loc_dlg[i].list))
|
|
|
|
continue;
|
|
|
|
list_for_each_entry_safe(lcmd, next, &loc_dlg[i].list, loc_cmd, list) {
|
|
|
|
list_del(&lcmd->list);
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_locale_list(void)
|
|
|
|
{
|
|
|
|
loc_cmd *lcmd, *next;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(lcmd, next, &locale_list, loc_cmd, list) {
|
|
|
|
list_del(&lcmd->list);
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Init/destroy our various localization lists
|
2013-10-24 21:57:34 +00:00
|
|
|
* keep the locale list and filename on reinit
|
2013-10-15 21:58:27 +00:00
|
|
|
*/
|
2013-10-24 21:57:34 +00:00
|
|
|
void _init_localization(BOOL reinit) {
|
2013-10-15 21:58:27 +00:00
|
|
|
size_t i;
|
|
|
|
for (i=0; i<ARRAYSIZE(loc_dlg); i++)
|
|
|
|
list_init(&loc_dlg[i].list);
|
2013-12-19 23:56:40 +00:00
|
|
|
if (!reinit)
|
2013-10-24 21:57:34 +00:00
|
|
|
list_init(&locale_list);
|
2014-05-17 23:37:01 +00:00
|
|
|
htab_create(LOC_HTAB_SIZE, &htab_loc);
|
2015-02-22 01:14:00 +00:00
|
|
|
localization_initialized = TRUE;
|
2013-10-15 21:58:27 +00:00
|
|
|
}
|
|
|
|
|
2013-10-24 21:57:34 +00:00
|
|
|
void _exit_localization(BOOL reinit) {
|
2015-02-22 01:14:00 +00:00
|
|
|
if (!localization_initialized)
|
|
|
|
return;
|
2013-10-24 21:57:34 +00:00
|
|
|
if (!reinit) {
|
|
|
|
free_locale_list();
|
|
|
|
if (loc_filename != embedded_loc_filename)
|
|
|
|
safe_free(loc_filename);
|
|
|
|
}
|
2013-10-15 21:58:27 +00:00
|
|
|
free_dialog_list();
|
2013-12-19 23:56:40 +00:00
|
|
|
mtab_destroy(reinit);
|
2014-05-17 23:37:01 +00:00
|
|
|
htab_destroy(&htab_loc);
|
2013-10-15 21:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Validate and store localization command data
|
|
|
|
*/
|
|
|
|
BOOL dispatch_loc_cmd(loc_cmd* lcmd)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
static int dlg_index = 0;
|
|
|
|
loc_cmd* base_locale = NULL;
|
2013-12-18 01:20:44 +00:00
|
|
|
const char* msg_prefix = "MSG_";
|
2013-10-15 21:58:27 +00:00
|
|
|
|
|
|
|
if (lcmd == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (lcmd->command <= LC_TEXT) {
|
|
|
|
// Any command up to LC_TEXT takes a control ID in text[0]
|
2013-12-18 01:20:44 +00:00
|
|
|
if (safe_strncmp(lcmd->txt[0], msg_prefix, 4) == 0) {
|
2013-12-22 20:48:57 +00:00
|
|
|
// The unneeded NULL check is to silence a VS warning
|
|
|
|
if ((lcmd->txt[0] == NULL) || (lcmd->command != LC_TEXT)) {
|
2013-12-19 23:56:40 +00:00
|
|
|
luprint("only the [t]ext command can be applied to a message (MSG_###)\n");
|
2013-12-18 01:20:44 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
// Try to convert the numeric part of a MSG_#### to a numeric
|
2013-12-22 20:48:57 +00:00
|
|
|
lcmd->ctrl_id = MSG_000 + atoi(&(lcmd->txt[0][4]));
|
2013-12-18 01:20:44 +00:00
|
|
|
if (lcmd->ctrl_id == MSG_000) {
|
|
|
|
// Conversion could not be performed
|
|
|
|
luprintf("failed to convert the numeric value in '%'\n", lcmd->txt[0]);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
add_message_command(lcmd);
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-10-15 21:58:27 +00:00
|
|
|
for (i=0; i<ARRAYSIZE(control_id); i++) {
|
|
|
|
if (safe_strcmp(lcmd->txt[0], control_id[i].name) == 0) {
|
|
|
|
lcmd->ctrl_id = control_id[i].id;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (lcmd->ctrl_id < 0) {
|
|
|
|
luprintf("unknown control '%s'\n", lcmd->txt[0]);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
// Don't process UI commands when we're dealing with the default
|
|
|
|
if (msg_table == default_msg_table) {
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
switch(lcmd->command) {
|
|
|
|
// NB: For commands that take an ID, ctrl_id is always a valid index at this stage
|
|
|
|
case LC_TEXT:
|
|
|
|
case LC_MOVE:
|
|
|
|
case LC_SIZE:
|
|
|
|
add_dialog_command(dlg_index, lcmd);
|
|
|
|
break;
|
|
|
|
case LC_GROUP:
|
|
|
|
if ((lcmd->ctrl_id-IDD_DIALOG) > ARRAYSIZE(loc_dlg)) {
|
|
|
|
luprintf("'%s' is not a group ID\n", lcmd->txt[0]);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
dlg_index = lcmd->ctrl_id - IDD_DIALOG;
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
break;
|
|
|
|
case LC_BASE:
|
2013-10-17 19:12:16 +00:00
|
|
|
base_locale = get_locale_from_name(lcmd->txt[0], FALSE);
|
2013-10-15 21:58:27 +00:00
|
|
|
if (base_locale != NULL) {
|
2013-10-17 19:12:16 +00:00
|
|
|
uprintf("localization: using locale base '%s'\n", lcmd->txt[0]);
|
2013-12-19 23:56:40 +00:00
|
|
|
get_loc_data_file(NULL, base_locale);
|
2013-10-15 21:58:27 +00:00
|
|
|
} else {
|
2013-10-17 19:12:16 +00:00
|
|
|
luprintf("locale base '%s' not found - ignoring", lcmd->txt[0]);
|
2013-10-15 21:58:27 +00:00
|
|
|
}
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
err:
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Apply stored localization commands to a specific dialog
|
|
|
|
* If hDlg is NULL, apply the commands against an active Window
|
|
|
|
*/
|
|
|
|
void apply_localization(int dlg_id, HWND hDlg)
|
|
|
|
{
|
|
|
|
loc_cmd* lcmd;
|
|
|
|
HWND hCtrl = NULL;
|
|
|
|
int id_start = IDD_DIALOG, id_end = IDD_DIALOG + ARRAYSIZE(loc_dlg);
|
|
|
|
|
|
|
|
if ((dlg_id >= id_start) && (dlg_id < id_end)) {
|
|
|
|
// If we have a valid dialog_id, just process that one dialog
|
|
|
|
id_start = dlg_id;
|
|
|
|
id_end = dlg_id + 1;
|
|
|
|
if (hDlg != NULL) {
|
|
|
|
loc_dlg[dlg_id-IDD_DIALOG].hDlg = hDlg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (dlg_id = id_start; dlg_id < id_end; dlg_id++) {
|
|
|
|
hDlg = loc_dlg[dlg_id-IDD_DIALOG].hDlg;
|
|
|
|
if ((!IsWindow(hDlg)) || (list_empty(&loc_dlg[dlg_id-IDD_DIALOG].list)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
list_for_each_entry(lcmd, &loc_dlg[dlg_id-IDD_DIALOG].list, loc_cmd, list) {
|
2013-12-18 01:20:44 +00:00
|
|
|
if (lcmd->command <= LC_TEXT) {
|
2013-10-15 21:58:27 +00:00
|
|
|
if (lcmd->ctrl_id == dlg_id) {
|
|
|
|
if ((dlg_id == IDD_DIALOG) && (lcmd->txt[1] != NULL) && (lcmd->txt[1][0] != 0)) {
|
|
|
|
loc_line_nr = lcmd->line_nr;
|
|
|
|
luprint("operation forbidden (main dialog title cannot be changed)");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
hCtrl = hDlg;
|
2013-10-17 19:42:03 +00:00
|
|
|
if (dlg_id == IDD_DIALOG)
|
|
|
|
hDlg = NULL;
|
2013-10-15 21:58:27 +00:00
|
|
|
} else {
|
|
|
|
hCtrl = GetDlgItem(hDlg, lcmd->ctrl_id);
|
|
|
|
}
|
2015-01-24 02:30:42 +00:00
|
|
|
if ((hCtrl == NULL) && (hDlg != NULL)) {
|
2013-10-15 21:58:27 +00:00
|
|
|
loc_line_nr = lcmd->line_nr;
|
|
|
|
luprintf("control '%s' is not part of dialog '%s'\n",
|
|
|
|
lcmd->txt[0], control_id[dlg_id-IDD_DIALOG].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(lcmd->command) {
|
|
|
|
case LC_TEXT:
|
|
|
|
if (hCtrl != NULL) {
|
|
|
|
if ((lcmd->txt[1] != NULL) && (lcmd->txt[1][0] != 0))
|
|
|
|
SetWindowTextU(hCtrl, lcmd->txt[1]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LC_MOVE:
|
|
|
|
if (hCtrl != NULL) {
|
|
|
|
ResizeMoveCtrl(hDlg, hCtrl, lcmd->num[0], lcmd->num[1], 0, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LC_SIZE:
|
|
|
|
if (hCtrl != NULL) {
|
|
|
|
ResizeMoveCtrl(hDlg, hCtrl, 0, 0, lcmd->num[0], lcmd->num[1]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function should be called when a localized dialog is destroyed
|
|
|
|
* NB: we can't use isWindow() against our existing HWND to avoid this call
|
|
|
|
* as handles are recycled.
|
|
|
|
*/
|
|
|
|
void reset_localization(int dlg_id)
|
|
|
|
{
|
|
|
|
loc_dlg[dlg_id-IDD_DIALOG].hDlg = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Produce a formatted localized message.
|
|
|
|
* Like printf, this call takes a variable number of argument, and uses
|
|
|
|
* the message ID to identify the formatted message to use.
|
|
|
|
* Uses a rolling list of buffers to allow concurrency
|
|
|
|
* TODO: use dynamic realloc'd buffer in case LOC_MESSAGE_SIZE is not enough
|
|
|
|
*/
|
|
|
|
char* lmprintf(int msg_id, ...)
|
|
|
|
{
|
|
|
|
static int buf_id = 0;
|
|
|
|
static char buf[LOC_MESSAGE_NB][LOC_MESSAGE_SIZE];
|
|
|
|
char *format = NULL;
|
|
|
|
va_list args;
|
|
|
|
buf_id %= LOC_MESSAGE_NB;
|
|
|
|
buf[buf_id][0] = 0;
|
2013-12-18 01:20:44 +00:00
|
|
|
|
|
|
|
if ((msg_id > MSG_000) && (msg_id < MSG_MAX)) {
|
|
|
|
format = msg_table[msg_id - MSG_000];
|
2013-10-15 21:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (format == NULL) {
|
|
|
|
safe_sprintf(buf[buf_id], LOC_MESSAGE_SIZE-1, "MSG_%03d UNTRANSLATED", msg_id - MSG_000);
|
|
|
|
} else {
|
|
|
|
va_start(args, msg_id);
|
|
|
|
safe_vsnprintf(buf[buf_id], LOC_MESSAGE_SIZE-1, format, args);
|
|
|
|
va_end(args);
|
|
|
|
buf[buf_id][LOC_MESSAGE_SIZE-1] = '\0';
|
|
|
|
}
|
|
|
|
return buf[buf_id++];
|
|
|
|
}
|
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
/*
|
2015-01-08 00:22:56 +00:00
|
|
|
* The following calls help display a localized message on the info field or status bar as well as its
|
|
|
|
* _English_ counterpart in the log (if debug is set).
|
|
|
|
* If duration is non zero, that message is displayed for at least duration ms, regardless of
|
|
|
|
* any other incoming message. After that time, the display reverts to the last non-timeout message.
|
2013-12-19 23:56:40 +00:00
|
|
|
*/
|
2015-01-08 00:22:56 +00:00
|
|
|
// TODO: handle a timeout message overriding a timeout message
|
|
|
|
#define MSG_LEN 256
|
|
|
|
#define MSG_STATUS 0
|
|
|
|
#define MSG_INFO 1
|
|
|
|
#define MSG_LOW_PRI 0
|
|
|
|
#define MSG_HIGH_PRI 1
|
2015-01-16 01:51:24 +00:00
|
|
|
char szMessage[2][2][MSG_LEN] = { {"", ""}, {"", ""} };
|
2015-01-08 00:22:56 +00:00
|
|
|
char* szStatusMessage = szMessage[MSG_STATUS][MSG_HIGH_PRI];
|
2013-12-19 23:56:40 +00:00
|
|
|
static BOOL bStatusTimerArmed = FALSE;
|
2015-01-08 00:22:56 +00:00
|
|
|
|
2015-01-16 01:51:24 +00:00
|
|
|
static void __inline OutputMessage(BOOL info, char* msg)
|
2013-12-19 23:56:40 +00:00
|
|
|
{
|
2015-01-08 00:22:56 +00:00
|
|
|
if (info)
|
|
|
|
SetWindowTextU(hInfo, msg);
|
|
|
|
else
|
|
|
|
SendMessageLU(GetDlgItem(hMainDialog, IDC_STATUS), SB_SETTEXTW, SBT_OWNERDRAW, msg);
|
2013-12-19 23:56:40 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 00:22:56 +00:00
|
|
|
static void CALLBACK PrintMessageTimeout(HWND hWnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
|
2015-01-01 23:39:28 +00:00
|
|
|
{
|
|
|
|
bStatusTimerArmed = FALSE;
|
2015-01-08 00:22:56 +00:00
|
|
|
// We're going to print high priority message, so restore our pointer
|
|
|
|
if (idEvent != TID_MESSAGE_INFO)
|
|
|
|
szStatusMessage = szMessage[MSG_STATUS][MSG_HIGH_PRI];
|
|
|
|
OutputMessage((idEvent == TID_MESSAGE_INFO), szMessage[(idEvent == TID_MESSAGE_INFO)?MSG_INFO:MSG_STATUS][MSG_HIGH_PRI]);
|
|
|
|
KillTimer(hMainDialog, idEvent);
|
2015-01-01 23:39:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrintStatusInfo(BOOL info, BOOL debug, unsigned int duration, int msg_id, ...)
|
2013-12-19 23:56:40 +00:00
|
|
|
{
|
2015-01-08 00:22:56 +00:00
|
|
|
char *format = NULL, buf[MSG_LEN];
|
|
|
|
char *msg_hi = szMessage[info?MSG_INFO:MSG_STATUS][MSG_HIGH_PRI];
|
|
|
|
char *msg_lo = szMessage[info?MSG_INFO:MSG_STATUS][MSG_LOW_PRI];
|
|
|
|
char *msg_cur = (duration > 0)?msg_lo:msg_hi;
|
2013-12-19 23:56:40 +00:00
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (msg_id < 0) {
|
2015-01-08 00:22:56 +00:00
|
|
|
// A negative msg_id clears the message
|
|
|
|
msg_hi[0] = 0;
|
|
|
|
OutputMessage(info, msg_hi);
|
2013-12-19 23:56:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-01 23:39:28 +00:00
|
|
|
if ((msg_id < MSG_000) || (msg_id >= MSG_MAX)) {
|
|
|
|
uprintf("PrintStatusInfo: invalid MSG_ID\n");
|
2013-12-19 23:56:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-08 00:22:56 +00:00
|
|
|
// We need to keep track of where szStatusMessage should point to so that ellipses work
|
|
|
|
if (!info)
|
|
|
|
szStatusMessage = szMessage[MSG_STATUS][(duration > 0)?MSG_LOW_PRI:MSG_HIGH_PRI];
|
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
format = msg_table[msg_id - MSG_000];
|
|
|
|
if (format == NULL) {
|
2015-01-08 00:22:56 +00:00
|
|
|
safe_sprintf(msg_hi, MSG_LEN, "MSG_%03d UNTRANSLATED", msg_id - MSG_000);
|
|
|
|
uprintf(msg_hi);
|
|
|
|
OutputMessage(info, msg_hi);
|
2013-12-19 23:56:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(args, msg_id);
|
2015-01-08 00:22:56 +00:00
|
|
|
safe_vsnprintf(msg_cur, MSG_LEN, format, args);
|
2013-12-19 23:56:40 +00:00
|
|
|
va_end(args);
|
2015-01-08 00:22:56 +00:00
|
|
|
msg_cur[MSG_LEN-1] = '\0';
|
2013-12-19 23:56:40 +00:00
|
|
|
|
2015-01-08 00:22:56 +00:00
|
|
|
if ((duration != 0) || (!bStatusTimerArmed))
|
|
|
|
OutputMessage(info, msg_cur);
|
2013-12-19 23:56:40 +00:00
|
|
|
|
2015-01-01 23:39:28 +00:00
|
|
|
if (duration != 0) {
|
2015-01-08 00:22:56 +00:00
|
|
|
SetTimer(hMainDialog, (info)?TID_MESSAGE_INFO:TID_MESSAGE_STATUS, duration, PrintMessageTimeout);
|
2013-12-19 23:56:40 +00:00
|
|
|
bStatusTimerArmed = TRUE;
|
|
|
|
}
|
|
|
|
|
2015-01-08 00:22:56 +00:00
|
|
|
// Because we want the log messages in English, we go through the VA business once more, but this time with default_msg_table
|
2013-12-19 23:56:40 +00:00
|
|
|
if (debug) {
|
|
|
|
format = default_msg_table[msg_id - MSG_000];
|
|
|
|
if (format == NULL) {
|
|
|
|
safe_sprintf(buf, sizeof(szStatusMessage), "(default) MSG_%03d UNTRANSLATED", msg_id - MSG_000);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
va_start(args, msg_id);
|
2015-01-08 00:22:56 +00:00
|
|
|
safe_vsnprintf(buf, MSG_LEN, format, args);
|
2013-12-19 23:56:40 +00:00
|
|
|
va_end(args);
|
2015-01-08 00:22:56 +00:00
|
|
|
buf[MSG_LEN-1] = '\0';
|
2013-12-19 23:56:40 +00:00
|
|
|
uprintf(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* These 2 functions are used to set the current locale
|
2013-10-18 22:08:49 +00:00
|
|
|
* If fallback is true, the call will fall back to use the first
|
|
|
|
* translation listed in the loc file
|
2013-10-15 21:58:27 +00:00
|
|
|
*/
|
2013-10-18 22:08:49 +00:00
|
|
|
loc_cmd* get_locale_from_lcid(int lcid, BOOL fallback)
|
2013-10-15 21:58:27 +00:00
|
|
|
{
|
|
|
|
loc_cmd* lcmd = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (list_empty(&locale_list)) {
|
|
|
|
uprintf("localization: the locale list is empty!\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_for_each_entry(lcmd, &locale_list, loc_cmd, list) {
|
|
|
|
for (i=0; i<lcmd->unum_size; i++) {
|
|
|
|
if (lcmd->unum[i] == lcid) {
|
|
|
|
return lcmd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-18 22:08:49 +00:00
|
|
|
if (!fallback)
|
|
|
|
return NULL;
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
lcmd = list_entry(locale_list.next, loc_cmd, list);
|
|
|
|
// If we couldn't find a supported locale, just pick the first one (usually English)
|
|
|
|
uprintf("localization: could not find locale for LCID: 0x%04X. Will default to '%s'\n", lcid, lcmd->txt[0]);
|
|
|
|
return lcmd;
|
|
|
|
}
|
|
|
|
|
2013-10-18 22:08:49 +00:00
|
|
|
loc_cmd* get_locale_from_name(char* locale_name, BOOL fallback)
|
2013-10-15 21:58:27 +00:00
|
|
|
{
|
|
|
|
loc_cmd* lcmd = NULL;
|
|
|
|
|
|
|
|
if (list_empty(&locale_list)) {
|
|
|
|
uprintf("localization: the locale list is empty!\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_for_each_entry(lcmd, &locale_list, loc_cmd, list) {
|
|
|
|
if (safe_strcmp(lcmd->txt[0], locale_name) == 0)
|
|
|
|
return lcmd;
|
|
|
|
}
|
|
|
|
|
2013-10-18 22:08:49 +00:00
|
|
|
if (!fallback)
|
2013-10-17 19:12:16 +00:00
|
|
|
return NULL;
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
lcmd = list_entry(locale_list.next, loc_cmd, list);
|
|
|
|
uprintf("localization: could not find locale for name '%s'. Will default to '%s'\n", locale_name, lcmd->txt[0]);
|
|
|
|
return lcmd;
|
|
|
|
}
|
2013-12-19 23:56:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This call is used to toggle the issuing of messages with the default locale
|
|
|
|
* (usually en-US) instead of the current (usually non en) one.
|
|
|
|
*/
|
|
|
|
void toggle_default_locale(void)
|
|
|
|
{
|
|
|
|
static char** old_msg_table = NULL;
|
|
|
|
|
|
|
|
if (old_msg_table == NULL) {
|
|
|
|
old_msg_table = msg_table;
|
|
|
|
msg_table = default_msg_table;
|
|
|
|
} else {
|
|
|
|
msg_table = old_msg_table;
|
|
|
|
old_msg_table = NULL;
|
|
|
|
}
|
|
|
|
}
|