gametools-global-mapping 0.1.17__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of gametools-global-mapping might be problematic. Click here for more details.

@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.3
2
+ Name: gametools-global-mapping
3
+ Version: 0.1.17
4
+ Summary: A repo that contains all mapping required by GameTools
5
+ License: MIT
6
+ Author: p0lygun
7
+ Author-email: solankivibhakar82@gmail.com
8
+ Requires-Python: >=3.12,<4.0
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Requires-Dist: requests (>=2.31.0,<3.0.0)
14
+ Description-Content-Type: text/markdown
15
+
16
+ A module that contains all mapping required by Game Tools
@@ -0,0 +1 @@
1
+ A module that contains all mapping required by Game Tools
@@ -0,0 +1,31 @@
1
+ MODES = {
2
+ "CONQ": "Conquest",
3
+ "FRONTLINE": "Frontlines",
4
+ "RUSH": "Rush",
5
+ "DOMI": "Domination",
6
+ "TDM": "Teamdeathmatch",
7
+ "GunGameFFA": "Gungame free-for-all",
8
+ "INFCONQ": "Infantry Conquest",
9
+ "FFA": "Free-for-all",
10
+ "GunGameTeam": "Gungame team",
11
+ "ELI": "Elimination",
12
+ }
13
+ SMALLMODES = {
14
+ "CONQ": "CQ",
15
+ "FRONTLINE": "FL",
16
+ "RUSH": "RS",
17
+ "DOMI": "DM",
18
+ "TDM": "TDM",
19
+ "INFCONQ": "IQ",
20
+ "GunGameFFA": "GGF",
21
+ "FFA": "FFA",
22
+ "GunGameTeam": "GGT",
23
+ "ELI": "ELI",
24
+ }
25
+ REGIONS = {
26
+ "Europe_Central": "Europe",
27
+ "America_Central": "America",
28
+ "Japan_Central": "Japan",
29
+ "Australia_Central": "Australia",
30
+ "Brazil_Central": "Brazil",
31
+ }
@@ -0,0 +1,159 @@
1
+ BF3_KIT = {1: "Assault", 2: "Engineer", 8: "Recon", 32: "Support"}
2
+ BF4_KIT = {
3
+ 1: "Assault",
4
+ 2: "Engineer",
5
+ 32: "Support",
6
+ 8: "Recon",
7
+ 2048: "Commander",
8
+ }
9
+ BFH_KIT = {
10
+ 2048: "Commander",
11
+ 4096: "Enforcer",
12
+ 8192: "Mechanic",
13
+ 16384: "Operator",
14
+ 32768: "Professional",
15
+ }
16
+ GAMEMODE = {
17
+ 1: "CONQUEST",
18
+ 2: "RUSH",
19
+ 4: "SQRUSH",
20
+ 8: "SQDM",
21
+ 16: "ONSLAUGHT",
22
+ 32: "TEAMDEATHMATCH",
23
+ 64: "CONQUESTLARGE",
24
+ 128: "CONQUESTASSAULTLARGE",
25
+ 256: "CONQUESTASSAULTSMALL",
26
+ 512: "GUNMASTER",
27
+ 1024: "DOMINATION",
28
+ 2048: "TEAMDEATHMATCHC",
29
+ 4096: "TEAMDEATHMATCH_FIRETEAM",
30
+ 8192: "COMBATMISSION",
31
+ 16384: "SECTORCONTROL",
32
+ 32768: "FIRETEAM_SURVIVOR",
33
+ 65536: "SPORT",
34
+ 131072: "TANKSUPERIORITY",
35
+ 262144: "OBJECTIVERAID",
36
+ 524288: "CAPTURETHEFLAG",
37
+ 1048576: "BOMBSQUAD",
38
+ 2097152: "OBLITERATION",
39
+ 4194304: "SCAVENGER",
40
+ 8388608: "AIRSUPERIORITY",
41
+ 16777216: "ELIMINATION",
42
+ 33554432: "CARRIERASSAULT",
43
+ 67108864: "CARRIERASSAULTLARGE",
44
+ 134217728: "CARRIERASSAULTSMALL",
45
+ 34359738368: "CHAINLINK",
46
+ 268435456: "BLOODMONEY",
47
+ 2147483648: "HEIST",
48
+ 4294967296: "HOTWIRE",
49
+ 8589934592: "HIT",
50
+ 17179869184: "HOSTAGE",
51
+ 536870912: "TURFWARSMALL",
52
+ 1073741824: "TURFWARLARGE",
53
+ 68719476736: "CONQUESTLADDER",
54
+ 137438953472: "SQUADOBLITERATION",
55
+ 274877906944: "BOUNTYHUNTER",
56
+ 549755813888: "SQUADHEIST",
57
+ }
58
+ GAMES = ["bfh", "bf4", "bf3"]
59
+ GAME_NUMBERS = {
60
+ "bfbc2": 1,
61
+ "bf3": 2,
62
+ "bf1942": 4,
63
+ "bf1943": 8,
64
+ "bfvietnam": 16,
65
+ "bf2": 32,
66
+ "bf2142": 64,
67
+ "bfbc": 128,
68
+ "bfheroes": 256,
69
+ "bfmc": 512,
70
+ "bfp4f": 1024,
71
+ "bf4": 2048,
72
+ "mohw": 4096,
73
+ "bfh": 8192,
74
+ }
75
+ PLATFORM_NUMBERS = {
76
+ "pc": 1,
77
+ "xbox360": 2,
78
+ "ps3": 4,
79
+ "xbox": 8,
80
+ "ps2": 16,
81
+ "ps4": 32,
82
+ "xboxone": 64,
83
+ "cem_ea_id": 1,
84
+ }
85
+ REGIONS = {
86
+ 1: "NAm",
87
+ 2: "SAm",
88
+ 4: "AU",
89
+ 8: "Africa",
90
+ 16: "EU",
91
+ 32: "Asia",
92
+ 64: "OC",
93
+ }
94
+ SMALLMODE = {
95
+ 1: "CQ",
96
+ 2: "RS",
97
+ 4: "SQR",
98
+ 8: "SQM",
99
+ 16: "OS",
100
+ 32: "TDM",
101
+ 64: "CQL",
102
+ 128: "CAL",
103
+ 256: "CAS",
104
+ 512: "GM",
105
+ 1024: "DM",
106
+ 2048: "TDC",
107
+ 4096: "TDF",
108
+ 8192: "CM",
109
+ 16384: "SC",
110
+ 32768: "FTS",
111
+ 65536: "SPRT",
112
+ 131072: "TS",
113
+ 262144: "ORD",
114
+ 524288: "CTF",
115
+ 1048576: "BSQ",
116
+ 2097152: "OBL",
117
+ 4194304: "SCA",
118
+ 8388608: "AS",
119
+ 16777216: "EL",
120
+ 33554432: "CA",
121
+ 67108864: "CAL",
122
+ 134217728: "CAS",
123
+ 34359738368: "CL",
124
+ 268435456: "BM",
125
+ 2147483648: "HST",
126
+ 4294967296: "HW",
127
+ 8589934592: "HIT",
128
+ 17179869184: "HSTG",
129
+ 536870912: "TWS",
130
+ 1073741824: "TWL",
131
+ 68719476736: "QL",
132
+ 137438953472: "SOB",
133
+ }
134
+ STATS_TEMPLATES = {
135
+ "overviewpopulatestats": "profile.bf3overviewstats",
136
+ "weaponspopulatestats": "profile.bf3weaponsstats",
137
+ "vehiclespopulatestats": "profile.bf3vehiclesstats",
138
+ "warsawdetailedstatspopulate": "profile.warsawdetailedstatspopulate",
139
+ "warsawoverviewpopulate": "profile.warsawoverviewpopulate",
140
+ "warsawweaponspopulatestats": "profile.warsawweaponsstats",
141
+ "warsawvehiclespopulatestats": "profile.warsawvehiclesstats",
142
+ "bfhoverviewpopulate": "profile.bfhoverviewpopulate",
143
+ "bfhweaponspopulatestats": "profile.bfhweaponsstats",
144
+ "bfhvehiclespopulatestats": "profile.bfhvehiclesstats",
145
+ }
146
+ SLOTS = {
147
+ 16: "Full",
148
+ 1: "1-5",
149
+ 2: "6-10",
150
+ 4: "10+",
151
+ 8: "Empty",
152
+ }
153
+ TO_BATTLELOG_PLATFORMS = {
154
+ "pc": "cem_ea_id",
155
+ "psn": "ps3",
156
+ "ps4": "ps3",
157
+ "xboxone": "xbox",
158
+ "xbox": "xbox",
159
+ }