2013-03-23 19:12:49 +01:00
|
|
|
/* This program is free software. It comes without any warranty, to
|
|
|
|
* the extent permitted by applicable law. You can redistribute it
|
|
|
|
* and/or modify it under the terms of the Do What The Fuck You Want
|
|
|
|
* To Public License, Version 2, as published by Sam Hocevar. See
|
2013-03-24 22:56:57 +01:00
|
|
|
* http://www.wtfpl.net/ for more details. */
|
2013-03-23 19:12:49 +01:00
|
|
|
|
|
|
|
#ifndef GLOBALCONSTANTS_H_INCLUDED
|
|
|
|
#define GLOBALCONSTANTS_H_INCLUDED
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace GlobalConstants
|
|
|
|
{
|
2017-02-17 10:14:28 +01:00
|
|
|
const int GAMEDETAILS_CACHE_VERSION = 2;
|
|
|
|
const int ZLIB_WINDOW_SIZE = 15;
|
2016-04-25 17:14:04 +02:00
|
|
|
|
2015-09-02 10:16:00 +02:00
|
|
|
struct optionsStruct {const unsigned int id; const std::string code; const std::string str; const std::string regexp;};
|
2015-08-15 03:03:19 +02:00
|
|
|
const std::string PROTOCOL_PREFIX = "gogdownloader://";
|
|
|
|
|
2013-03-23 19:12:49 +01:00
|
|
|
// Language constants
|
2015-06-15 03:23:43 +02:00
|
|
|
const unsigned int LANGUAGE_EN = 1 << 0;
|
|
|
|
const unsigned int LANGUAGE_DE = 1 << 1;
|
|
|
|
const unsigned int LANGUAGE_FR = 1 << 2;
|
|
|
|
const unsigned int LANGUAGE_PL = 1 << 3;
|
|
|
|
const unsigned int LANGUAGE_RU = 1 << 4;
|
|
|
|
const unsigned int LANGUAGE_CN = 1 << 5;
|
|
|
|
const unsigned int LANGUAGE_CZ = 1 << 6;
|
|
|
|
const unsigned int LANGUAGE_ES = 1 << 7;
|
|
|
|
const unsigned int LANGUAGE_HU = 1 << 8;
|
|
|
|
const unsigned int LANGUAGE_IT = 1 << 9;
|
|
|
|
const unsigned int LANGUAGE_JP = 1 << 10;
|
|
|
|
const unsigned int LANGUAGE_TR = 1 << 11;
|
|
|
|
const unsigned int LANGUAGE_PT = 1 << 12;
|
|
|
|
const unsigned int LANGUAGE_KO = 1 << 13;
|
|
|
|
const unsigned int LANGUAGE_NL = 1 << 14;
|
|
|
|
const unsigned int LANGUAGE_SV = 1 << 15;
|
|
|
|
const unsigned int LANGUAGE_NO = 1 << 16;
|
|
|
|
const unsigned int LANGUAGE_DA = 1 << 17;
|
|
|
|
const unsigned int LANGUAGE_FI = 1 << 18;
|
2015-06-15 03:26:51 +02:00
|
|
|
const unsigned int LANGUAGE_PT_BR = 1 << 19;
|
2015-10-06 14:44:36 +02:00
|
|
|
const unsigned int LANGUAGE_SK = 1 << 20;
|
2016-05-18 12:06:28 +02:00
|
|
|
const unsigned int LANGUAGE_BL = 1 << 21;
|
2013-03-23 19:12:49 +01:00
|
|
|
|
2015-08-29 14:03:20 +02:00
|
|
|
const std::vector<optionsStruct> LANGUAGES =
|
2013-03-23 19:12:49 +01:00
|
|
|
{
|
2015-09-02 10:16:00 +02:00
|
|
|
{ LANGUAGE_EN, "en", "English" , "en|eng|english" },
|
|
|
|
{ LANGUAGE_DE, "de", "German" , "de|deu|ger|german" },
|
|
|
|
{ LANGUAGE_FR, "fr", "French" , "fr|fra|fre|french" },
|
|
|
|
{ LANGUAGE_PL, "pl", "Polish" , "pl|pol|polish" },
|
|
|
|
{ LANGUAGE_RU, "ru", "Russian" , "ru|rus|russian" },
|
|
|
|
{ LANGUAGE_CN, "cn", "Chinese" , "cn|zh|zho|chi|chinese" },
|
|
|
|
{ LANGUAGE_CZ, "cz", "Czech" , "cz|cs|ces|cze|czech" },
|
|
|
|
{ LANGUAGE_ES, "es", "Spanish" , "es|spa|spanish" },
|
|
|
|
{ LANGUAGE_HU, "hu", "Hungarian" , "hu|hun|hungarian" },
|
|
|
|
{ LANGUAGE_IT, "it", "Italian" , "it|ita|italian" },
|
|
|
|
{ LANGUAGE_JP, "jp", "Japanese" , "jp|ja|jpn|japanese" },
|
|
|
|
{ LANGUAGE_TR, "tr", "Turkish" , "tr|tur|turkish" },
|
|
|
|
{ LANGUAGE_PT, "pt", "Portuguese", "pt|por|portuguese" },
|
|
|
|
{ LANGUAGE_KO, "ko", "Korean" , "ko|kor|korean" },
|
|
|
|
{ LANGUAGE_NL, "nl", "Dutch" , "nl|nld|dut|dutch" },
|
|
|
|
{ LANGUAGE_SV, "sv", "Swedish" , "sv|swe|swedish" },
|
|
|
|
{ LANGUAGE_NO, "no", "Norwegian" , "no|nor|norwegian" },
|
|
|
|
{ LANGUAGE_DA, "da", "Danish" , "da|dan|danish" },
|
|
|
|
{ LANGUAGE_FI, "fi", "Finnish" , "fi|fin|finnish" },
|
2015-10-06 14:44:36 +02:00
|
|
|
{ LANGUAGE_PT_BR, "br", "Brazilian Portuguese", "br|pt_br|pt-br|ptbr|brazilian_portuguese" },
|
2016-05-18 12:06:28 +02:00
|
|
|
{ LANGUAGE_SK, "sk", "Slovak" , "sk|slk|slo|slovak" },
|
|
|
|
{ LANGUAGE_BL, "bl", "Bulgarian" , "bl|bg|bul|bulgarian" }
|
2013-03-23 19:12:49 +01:00
|
|
|
};
|
|
|
|
|
2013-04-25 09:56:53 +02:00
|
|
|
// Platform constants
|
2015-06-15 03:23:43 +02:00
|
|
|
const unsigned int PLATFORM_WINDOWS = 1 << 0;
|
|
|
|
const unsigned int PLATFORM_MAC = 1 << 1;
|
|
|
|
const unsigned int PLATFORM_LINUX = 1 << 2;
|
2013-03-23 19:12:49 +01:00
|
|
|
|
2015-08-29 14:03:20 +02:00
|
|
|
const std::vector<optionsStruct> PLATFORMS =
|
2013-03-23 19:12:49 +01:00
|
|
|
{
|
2015-09-02 10:16:00 +02:00
|
|
|
{ PLATFORM_WINDOWS, "win", "Windows" , "w|win|windows" },
|
|
|
|
{ PLATFORM_MAC, "mac", "Mac" , "m|mac|osx" },
|
|
|
|
{ PLATFORM_LINUX, "linux", "Linux" , "l|lin|linux" }
|
2013-03-23 19:12:49 +01:00
|
|
|
};
|
2016-02-20 21:55:52 +01:00
|
|
|
}
|
2013-03-23 19:12:49 +01:00
|
|
|
|
|
|
|
#endif // GLOBALCONSTANTS_H_INCLUDED
|