mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-24 23:34:37 +01:00
70 lines
2.5 KiB
C++
70 lines
2.5 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2020 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "../management/Marketing.h"
|
|
#include "Currency.h"
|
|
#include "Date.h"
|
|
#include "FormatCodes.h"
|
|
#include "Language.h"
|
|
#include "StringIds.h"
|
|
|
|
#include <string>
|
|
|
|
std::string format_string(rct_string_id format, const void* args);
|
|
void format_string(char* dest, size_t size, rct_string_id format, const void* args);
|
|
void format_string_to_upper(char* dest, size_t size, rct_string_id format, const void* args);
|
|
void generate_string_file();
|
|
|
|
/**
|
|
* Formats sizeBytes into buf as a human readable text, e.x.: "1024 MB"
|
|
*/
|
|
void format_readable_size(char* buf, size_t bufSize, uint64_t sizeBytes);
|
|
|
|
/**
|
|
* Formats sizeBytesPerSec into buf as a human readable text, e.x.: "1024 MB/sec"
|
|
*/
|
|
void format_readable_speed(char* buf, size_t bufSize, uint64_t sizeBytesPerSec);
|
|
|
|
utf8* get_string_end(const utf8* text);
|
|
size_t get_string_size(const utf8* text);
|
|
|
|
// The maximum number of characters allowed for string/money conversions (anything above will risk integer overflow issues)
|
|
#define MONEY_STRING_MAXLENGTH 14
|
|
money32 string_to_money(const char* string_to_monetise);
|
|
void money_to_string(money32 amount, char* buffer_to_put_value_to, size_t buffer_len, bool forceDecimals);
|
|
|
|
bool is_user_string_id(rct_string_id stringId);
|
|
|
|
#define MAX_USER_STRINGS 1024
|
|
#define USER_STRING_MAX_LENGTH 32
|
|
|
|
#define USER_STRING_START 0x8000
|
|
#define USER_STRING_END 0x8FFF
|
|
#define REAL_NAME_START 0xA000
|
|
#define REAL_NAME_END 0xDFFF
|
|
|
|
// Real name data
|
|
extern const char real_name_initials[16];
|
|
extern const char* real_names[1024];
|
|
|
|
extern thread_local char gCommonStringFormatBuffer[512];
|
|
extern bool gDebugStringFormatting;
|
|
|
|
extern const rct_string_id SpeedNames[5];
|
|
extern const rct_string_id ObjectiveNames[12];
|
|
extern const rct_string_id ResearchFundingLevelNames[4];
|
|
extern const rct_string_id MarketingCampaignNames[ADVERTISING_CAMPAIGN_COUNT][3];
|
|
extern const rct_string_id RideInspectionIntervalNames[];
|
|
extern const rct_string_id PeepThoughts[174];
|
|
extern const rct_string_id DateDayNames[31];
|
|
extern const rct_string_id DateGameMonthNames[MONTH_COUNT];
|
|
extern const rct_string_id DateGameShortMonthNames[MONTH_COUNT];
|