gametools-global-mapping 0.1.17__py3-none-any.whl

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,20 @@
1
+ global_mapping/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ global_mapping/battlebit.py,sha256=PQ7ZMQPlq07iaxIi_TzgVM6VIBxcyf_hq6ZUgkwmyAk,708
3
+ global_mapping/battlelog.py,sha256=QGEbUnXAb4_YMic3fMv0wYKs5Jb4DN4FQ-b2ZlLuXIY,3591
4
+ global_mapping/bf1.py,sha256=qCSCyAP_CzNNHyp3FnEtvJ1pAtQwU9sSQW6SIrEezLw,25614
5
+ global_mapping/bf1942.py,sha256=cLV4Fw3RQjVX5s9AY1pUd-dD9M3EZRKyF2xeuXyUSRo,281
6
+ global_mapping/bf2.py,sha256=msfbpUOkjdVzjGz7RwMu05fZbcxvjvu4hC0DcBrwlHg,1068
7
+ global_mapping/bf2042.py,sha256=X90wNcDSoUxg4OK51rIDXKbRudEoDwl9HsvidAauGJs,70557
8
+ global_mapping/bf2142.py,sha256=DGqs6ekUDW39j4sHeDo8xNJeJ0d6U1PPV8vRu53zDEE,789
9
+ global_mapping/bf3.py,sha256=Ex-eAZh7cjcur1GgNxkDK2PSo517kT6ELyQ-RbK0LC4,11228
10
+ global_mapping/bf4.py,sha256=xGonculIIQS9JJVhHg5R5RlAhh8hSIxJcPaM6u_RIDo,12577
11
+ global_mapping/bf5.py,sha256=VUn5bnPQKm4Hj9WeZ26LV3ZOzHxXwDEHWCi_ZNdOBGE,44264
12
+ global_mapping/bf6.py,sha256=MORCnu9yIRSK9lohpM27rRLw8hqA8FMgX7XSA-58mdU,4474
13
+ global_mapping/bfbc2.py,sha256=nKORJaGJepBq-p52u2eHFiQSTf928Krg7FwwWLjE2PM,5836
14
+ global_mapping/bfh.py,sha256=K4myVHZ3hAygcGBs3LsdnU1xbNFBDTF-bU9jrYEilO8,6326
15
+ global_mapping/bfvietnam.py,sha256=tYqwMfhT_Rse-GkKTiqxanvfVtozNi3HW20xp8UntvQ,646
16
+ global_mapping/marne.py,sha256=FGk-1kacl2MzYnOlVWkvKiICBi4Y2EOHBr8s1-nAO9s,4873
17
+ global_mapping/other.py,sha256=Zr-jl06ymz8WNJ6lUsEQWNycUwddLtgGqUMduH0cmRo,2213
18
+ gametools_global_mapping-0.1.17.dist-info/METADATA,sha256=npsENLdoBcSS3hlHiCYPwEkZi3ArZhnPd_rySG3_3es,576
19
+ gametools_global_mapping-0.1.17.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
20
+ gametools_global_mapping-0.1.17.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.1.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
File without changes
@@ -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
+ }