|
|
@@ -57,9 +57,10 @@ ConfigVariableInt patchfile_zone_size
|
|
|
|
|
|
ConfigVariableBool keep_temporary_files
|
|
|
("keep-temporary-files", false,
|
|
|
- "Set this true to keep around the temporary files from downloading, "
|
|
|
- "decompressing, and patching, or false (the default) to delete "
|
|
|
- "these. Mainly useful for debugging when the process goes wrong.");
|
|
|
+ PRC_DESC("Set this true to keep around the temporary files from "
|
|
|
+ "downloading, decompressing, and patching, or false (the "
|
|
|
+ "default) to delete these. Mainly useful for debugging "
|
|
|
+ "when the process goes wrong."));
|
|
|
|
|
|
ConfigVariableDouble average_frame_rate_interval
|
|
|
("average-frame-rate-interval", 1.0);
|
|
|
@@ -73,61 +74,61 @@ ConfigVariableDouble max_dt
|
|
|
|
|
|
ConfigVariableDouble sleep_precision
|
|
|
("sleep-precision", 0.01,
|
|
|
- "This is the accuracy within which we can expect select() to return "
|
|
|
- "precisely. That is, if we use select() to request a timeout of 1.0 "
|
|
|
- "seconds, we can expect to actually sleep for somewhere between 1.0 "
|
|
|
- "and 1.0 + sleep-precision seconds.");
|
|
|
+ PRC_DESC("This is the accuracy within which we can expect select() to "
|
|
|
+ "return precisely. That is, if we use select() to request a "
|
|
|
+ "timeout of 1.0 seconds, we can expect to actually sleep for "
|
|
|
+ "somewhere between 1.0 and 1.0 + sleep-precision seconds."));
|
|
|
|
|
|
ConfigVariableString encryption_algorithm
|
|
|
("encryption-algorithm", "bf-cbc",
|
|
|
- "This defines the OpenSSL encryption algorithm which is used to "
|
|
|
- "encrypt any streams created by the current runtime. The default is "
|
|
|
- "Blowfish; the complete set of available algorithms is defined by "
|
|
|
- "the current version of OpenSSL. This value is used only to control "
|
|
|
- "encryption; the correct algorithm will automatically be selected on "
|
|
|
- "decryption.");
|
|
|
+ PRC_DESC("This defines the OpenSSL encryption algorithm which is used to "
|
|
|
+ "encrypt any streams created by the current runtime. The default is "
|
|
|
+ "Blowfish; the complete set of available algorithms is defined by "
|
|
|
+ "the current version of OpenSSL. This value is used only to control "
|
|
|
+ "encryption; the correct algorithm will automatically be selected on "
|
|
|
+ "decryption."));
|
|
|
|
|
|
ConfigVariableInt encryption_key_length
|
|
|
("encryption-key-length", 0,
|
|
|
- "This defines the key length, in bits, for the selected encryption "
|
|
|
- "algorithm. Some algorithms have a variable key length. Specifying "
|
|
|
- "a value of 0 here means to use the default key length for the "
|
|
|
- "algorithm as defined by OpenSSL. This value is used only to "
|
|
|
- "control encryption; the correct key length will automatically be "
|
|
|
- "selected on decryption.");
|
|
|
+ PRC_DESC("This defines the key length, in bits, for the selected encryption "
|
|
|
+ "algorithm. Some algorithms have a variable key length. Specifying "
|
|
|
+ "a value of 0 here means to use the default key length for the "
|
|
|
+ "algorithm as defined by OpenSSL. This value is used only to "
|
|
|
+ "control encryption; the correct key length will automatically be "
|
|
|
+ "selected on decryption."));
|
|
|
|
|
|
ConfigVariableInt encryption_iteration_count
|
|
|
("encryption-iteration-count", 100000,
|
|
|
- "This defines the number of times a password is hashed to generate a "
|
|
|
- "key when encrypting. Its purpose is to make it computationally "
|
|
|
- "more expensive for an attacker to search the key space "
|
|
|
- "exhaustively. This should be a multiple of 1,000 and should not "
|
|
|
- "exceed about 65 million; the value 0 indicates just one application "
|
|
|
- "of the hashing algorithm. This value is used only to control "
|
|
|
- "encryption; the correct count will automatically be selected on "
|
|
|
- "decryption.");
|
|
|
+ PRC_DESC("This defines the number of times a password is hashed to generate a "
|
|
|
+ "key when encrypting. Its purpose is to make it computationally "
|
|
|
+ "more expensive for an attacker to search the key space "
|
|
|
+ "exhaustively. This should be a multiple of 1,000 and should not "
|
|
|
+ "exceed about 65 million; the value 0 indicates just one application "
|
|
|
+ "of the hashing algorithm. This value is used only to control "
|
|
|
+ "encryption; the correct count will automatically be selected on "
|
|
|
+ "decryption."));
|
|
|
|
|
|
ConfigVariableInt multifile_encryption_iteration_count
|
|
|
("multifile-encryption-iteration-count", 0,
|
|
|
- "This is a special value of encryption-iteration-count used to encrypt "
|
|
|
- "subfiles within a multifile. It has a default value of 0 (just one "
|
|
|
- "application), on the assumption that the files from a multifile must "
|
|
|
- "be loaded quickly, without paying the cost of an expensive hash on "
|
|
|
- "each subfile in order to decrypt it.");
|
|
|
+ PRC_DESC("This is a special value of encryption-iteration-count used to encrypt "
|
|
|
+ "subfiles within a multifile. It has a default value of 0 (just one "
|
|
|
+ "application), on the assumption that the files from a multifile must "
|
|
|
+ "be loaded quickly, without paying the cost of an expensive hash on "
|
|
|
+ "each subfile in order to decrypt it."));
|
|
|
|
|
|
ConfigVariableBool use_vfs
|
|
|
("use-vfs", true,
|
|
|
- "Set this true to use the VirtualFileSystem mechanism for loading "
|
|
|
- "models, etc. Since the VirtualFileSystem maps to the same as the "
|
|
|
- "actual file system by default, there is probably no reason to set "
|
|
|
- "this false, except for testing or if you mistrust the new code.");
|
|
|
+ PRC_DESC("Set this true to use the VirtualFileSystem mechanism for loading "
|
|
|
+ "models, etc. Since the VirtualFileSystem maps to the same as the "
|
|
|
+ "actual file system by default, there is probably no reason to set "
|
|
|
+ "this false, except for testing or if you mistrust the new code."));
|
|
|
|
|
|
ConfigVariableBool collect_tcp
|
|
|
("collect-tcp", false,
|
|
|
- "Set this true to enable accumulation of several small consecutive "
|
|
|
- "TCP datagrams into one large datagram before sending it, to reduce "
|
|
|
- "overhead from the TCP/IP protocol. See "
|
|
|
- "Connection::set_collect_tcp() or SocketStream::set_collect_tcp().");
|
|
|
+ PRC_DESC("Set this true to enable accumulation of several small consecutive "
|
|
|
+ "TCP datagrams into one large datagram before sending it, to reduce "
|
|
|
+ "overhead from the TCP/IP protocol. See "
|
|
|
+ "Connection::set_collect_tcp() or SocketStream::set_collect_tcp()."));
|
|
|
|
|
|
ConfigVariableDouble collect_tcp_interval
|
|
|
("collect-tcp-interval", 0.2);
|
|
|
@@ -172,13 +173,13 @@ get_leak_memory() {
|
|
|
if (leak_memory == (ConfigVariableBool *)NULL) {
|
|
|
leak_memory = new ConfigVariableBool
|
|
|
("leak-memory", false,
|
|
|
- "Set leak-memory true to disable the actual deletion of "
|
|
|
- "ReferenceCount-derived objects. This is sometimes useful to track "
|
|
|
- "a reference counting bug, since the formerly deleted objects will "
|
|
|
- "still remain (with a reference count of -100) without being "
|
|
|
- "overwritten with a newly-allocated object, and the assertion tests "
|
|
|
- "in ReferenceCount may more accurately detect the first instance of "
|
|
|
- "an error.");
|
|
|
+ PRC_DESC("Set leak-memory true to disable the actual deletion of "
|
|
|
+ "ReferenceCount-derived objects. This is sometimes useful to track "
|
|
|
+ "a reference counting bug, since the formerly deleted objects will "
|
|
|
+ "still remain (with a reference count of -100) without being "
|
|
|
+ "overwritten with a newly-allocated object, and the assertion tests "
|
|
|
+ "in ReferenceCount may more accurately detect the first instance of "
|
|
|
+ "an error."));
|
|
|
}
|
|
|
|
|
|
return *leak_memory;
|
|
|
@@ -191,13 +192,13 @@ get_never_destruct() {
|
|
|
if (never_destruct == (ConfigVariableBool *)NULL) {
|
|
|
never_destruct = new ConfigVariableBool
|
|
|
("never-destruct", false,
|
|
|
- "never-destruct is similar to leak-memory, except that not "
|
|
|
- "only will memory not be freed, but the destructor will not even be "
|
|
|
- "called (on ReferenceCount objects, at least). This will leak gobs "
|
|
|
- "of memory, but ensures that every pointer to a ReferenceCount "
|
|
|
- "object will always be valid, and may be useful for tracking down "
|
|
|
- "certain kinds of errors. "
|
|
|
- "never-destruct is only respected if leak-memory is true.");
|
|
|
+ PRC_DESC("never-destruct is similar to leak-memory, except that not "
|
|
|
+ "only will memory not be freed, but the destructor will not even be "
|
|
|
+ "called (on ReferenceCount objects, at least). This will leak gobs "
|
|
|
+ "of memory, but ensures that every pointer to a ReferenceCount "
|
|
|
+ "object will always be valid, and may be useful for tracking down "
|
|
|
+ "certain kinds of errors. "
|
|
|
+ "never-destruct is only respected if leak-memory is true."));
|
|
|
}
|
|
|
|
|
|
return *never_destruct;
|
|
|
@@ -210,8 +211,8 @@ get_use_high_res_clock() {
|
|
|
if (use_high_res_clock == (ConfigVariableBool *)NULL) {
|
|
|
use_high_res_clock = new ConfigVariableBool
|
|
|
("use-high-res-clock", true,
|
|
|
- "Set this to false to avoid using the high-precision clock, even if "
|
|
|
- "it is available.");
|
|
|
+ PRC_DESC("Set this to false to avoid using the high-precision clock, even if "
|
|
|
+ "it is available."));
|
|
|
}
|
|
|
|
|
|
return *use_high_res_clock;
|
|
|
@@ -224,9 +225,9 @@ get_paranoid_clock() {
|
|
|
if (paranoid_clock == (ConfigVariableBool *)NULL) {
|
|
|
paranoid_clock = new ConfigVariableBool
|
|
|
("paranoid-clock", false,
|
|
|
- "Set this to true to double-check the results of the high-resolution "
|
|
|
- "clock against the system clock. This has no effect if NDEBUG is "
|
|
|
- "defined.");
|
|
|
+ PRC_DESC("Set this to true to double-check the results of the high-resolution "
|
|
|
+ "clock against the system clock. This has no effect if NDEBUG is "
|
|
|
+ "defined."));
|
|
|
}
|
|
|
|
|
|
return *paranoid_clock;
|
|
|
@@ -239,9 +240,9 @@ get_paranoid_inheritance() {
|
|
|
if (paranoid_inheritance == (ConfigVariableBool *)NULL) {
|
|
|
paranoid_inheritance = new ConfigVariableBool
|
|
|
("paranoid-inheritance", true,
|
|
|
- "Set this to true to double-check the test for inheritance of "
|
|
|
- "TypeHandles, e.g. via is_of_type(). This has no effect if NDEBUG "
|
|
|
- "is defined.");
|
|
|
+ PRC_DESC("Set this to true to double-check the test for inheritance of "
|
|
|
+ "TypeHandles, e.g. via is_of_type(). This has no effect if NDEBUG "
|
|
|
+ "is defined."));
|
|
|
}
|
|
|
|
|
|
return *paranoid_inheritance;
|
|
|
@@ -254,9 +255,9 @@ get_verify_dcast() {
|
|
|
if (verify_dcast == (ConfigVariableBool *)NULL) {
|
|
|
verify_dcast = new ConfigVariableBool
|
|
|
("verify-dcast", true,
|
|
|
- "Set this to true to verify that every attempted DCAST operation in "
|
|
|
- "fact references the correct type, or false otherwise. This has no "
|
|
|
- "effect if NDEBUG is defined, in which case it is never tested.");
|
|
|
+ PRC_DESC("Set this to true to verify that every attempted DCAST operation in "
|
|
|
+ "fact references the correct type, or false otherwise. This has no "
|
|
|
+ "effect if NDEBUG is defined, in which case it is never tested."));
|
|
|
}
|
|
|
|
|
|
return *verify_dcast;
|
|
|
@@ -268,4 +269,3 @@ ConfigExpress &
|
|
|
get_config_express() {
|
|
|
return config_express;
|
|
|
}
|
|
|
-
|