OpenTTD Source  20240919-master-gdf0233f4c2
strgen.cpp File Reference
#include "../stdafx.h"
#include "../core/endian_func.hpp"
#include "../core/mem_func.hpp"
#include "../error_func.h"
#include "../string_func.h"
#include "../strings_type.h"
#include "../misc/getoptdata.h"
#include "../table/control_codes.h"
#include "../3rdparty/fmt/std.h"
#include "strgen.h"
#include <filesystem>
#include <fstream>
#include "../table/strgen_tables.h"
#include "../safeguards.h"

Go to the source code of this file.

Data Structures

struct  FileStringReader
 A reader that simply reads using fopen. More...
 
struct  FileWriter
 Yes, simply writing to a file. More...
 
struct  HeaderFileWriter
 
struct  LanguageFileWriter
 Class for writing a language to disk. More...
 

Macros

#define LINE_NUM_FMT(s)   "{}:{}: " s ": {}\n"
 

Functions

void StrgenWarningI (const std::string &msg)
 
void StrgenErrorI (const std::string &msg)
 
void StrgenFatalI (const std::string &msg)
 
void FatalErrorI (const std::string &msg)
 Error handling for fatal non-user errors. More...
 
bool CompareFiles (const std::filesystem::path &path1, const std::filesystem::path &path2)
 
int CDECL main (int argc, char *argv[])
 

Variables

static const OptionData _opts []
 Options of strgen. More...
 

Detailed Description

Tool to create computer readable (stand-alone) translation files.

Definition in file strgen.cpp.

Function Documentation

◆ FatalErrorI()

void FatalErrorI ( const std::string &  msg)

Error handling for fatal non-user errors.

Parameters
strthe string to print.
Note
Does NEVER return.

Error handling for fatal non-user errors.

Parameters
sFormat string.
Note
Function does not return.

Definition at line 61 of file strgen.cpp.

Variable Documentation

◆ _opts

const OptionData _opts[]
static
Initial value:
= {
{ .type = ODF_NO_VALUE, .id = 'C', .longname = "-export-commands" },
{ .type = ODF_NO_VALUE, .id = 'L', .longname = "-export-plurals" },
{ .type = ODF_NO_VALUE, .id = 'P', .longname = "-export-pragmas" },
{ .type = ODF_NO_VALUE, .id = 't', .shortname = 't', .longname = "--todo" },
{ .type = ODF_NO_VALUE, .id = 'w', .shortname = 'w', .longname = "--warning" },
{ .type = ODF_NO_VALUE, .id = 'h', .shortname = 'h', .longname = "--help" },
{ .type = ODF_NO_VALUE, .id = 'h', .shortname = '?' },
{ .type = ODF_HAS_VALUE, .id = 's', .shortname = 's', .longname = "--source_dir" },
{ .type = ODF_HAS_VALUE, .id = 'd', .shortname = 'd', .longname = "--dest_dir" },
}

Options of strgen.

Definition at line 311 of file strgen.cpp.

ODF_HAS_VALUE
@ ODF_HAS_VALUE
An option with a value.
Definition: getoptdata.h:16
ODF_NO_VALUE
@ ODF_NO_VALUE
A plain option (no value attached to it).
Definition: getoptdata.h:15