mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 06:44:38 +01:00
79 lines
2.9 KiB
C
79 lines
2.9 KiB
C
#pragma region Copyright (c) 2014-2016 OpenRCT2 Developers
|
|
/*****************************************************************************
|
|
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
|
|
*
|
|
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
|
|
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 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.
|
|
*
|
|
* A full copy of the GNU General Public License can be found in licence.txt
|
|
*****************************************************************************/
|
|
#pragma endregion
|
|
|
|
#ifndef LOCALISATION_H
|
|
#define LOCALISATION_H
|
|
|
|
#include "currency.h"
|
|
#include "format_codes.h"
|
|
#include "language.h"
|
|
#include "string_ids.h"
|
|
|
|
bool utf8_is_format_code(int codepoint);
|
|
bool utf8_is_colour_code(int codepoint);
|
|
bool utf8_should_use_sprite_for_codepoint(int codepoint);
|
|
int font_sprite_get_codepoint_offset(int codepoint);
|
|
int utf8_get_format_code_arg_length(int codepoint);
|
|
void utf8_remove_formatting(utf8* string);
|
|
|
|
void format_string(char *dest, rct_string_id format, void *args);
|
|
void format_string_raw(char *dest, char *src, void *args);
|
|
void format_string_to_upper(char *dest, rct_string_id format, void *args);
|
|
void generate_string_file();
|
|
void error_string_quit(int error, rct_string_id format);
|
|
utf8 *get_string_end(const utf8 *text);
|
|
size_t get_string_size(const utf8 *text);
|
|
int get_string_length(const utf8 *text);
|
|
|
|
void user_string_clear_all();
|
|
rct_string_id user_string_allocate(int base, const utf8 *text);
|
|
void user_string_free(rct_string_id id);
|
|
bool is_user_string_id(rct_string_id stringId);
|
|
|
|
utf8 *win1252_to_utf8_alloc(const char *src);
|
|
int win1252_to_utf8(utf8string dst, const char *src, size_t maxBufferLength);
|
|
|
|
int rct2_to_utf8(utf8 *dst, const char *src);
|
|
int utf8_to_rct2(char *dst, const utf8 *src);
|
|
wchar_t encoding_convert_rct2_to_unicode(wchar_t rct2str);
|
|
wchar_t encoding_convert_unicode_to_rct2(wchar_t unicode);
|
|
wchar_t encoding_convert_gb2312_to_unicode(wchar_t gb2312);
|
|
wchar_t encoding_convert_big5_to_unicode(wchar_t big5);
|
|
|
|
#define MAX_USER_STRINGS 1024
|
|
#define USER_STRING_MAX_LENGTH 32
|
|
|
|
// Real name data
|
|
extern const char real_name_initials[16];
|
|
extern const char *real_names[1024];
|
|
|
|
extern utf8 *gUserStrings;
|
|
extern uint8 gCommonFormatArgs[80];
|
|
extern uint8 gMapTooltipFormatArgs[40];
|
|
|
|
static inline void set_format_arg_body(uint8 *args, size_t offset, uintptr_t value, size_t size)
|
|
{
|
|
memcpy(args + offset, &value, size);
|
|
}
|
|
|
|
#define set_format_arg(offset, type, value) \
|
|
set_format_arg_body(gCommonFormatArgs, offset, (uintptr_t)value, sizeof(type))
|
|
|
|
#define set_map_tooltip_format_arg(offset, type, value) \
|
|
set_format_arg_body(gMapTooltipFormatArgs, offset, (uintptr_t)value, sizeof(type))
|
|
|
|
#endif
|