-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblack_ops_mod_tools_installer.py
177 lines (132 loc) · 6.58 KB
/
black_ops_mod_tools_installer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import os
import sys
import time
import shutil
import zipfile
import requests
import subprocess
from colorama import init, Fore, Style
init()
urls = {
"mod_tools_file": "https://www.dropbox.com/scl/fi/fatp8vhnc6roed9iarc70/black_ops_one_mod_tool_files.zip?rlkey=eqgpda0ymp7bjr15laptbs8xu&st=sufknfp6&dl=1",
"game_mod": "https://github.com/Nukem9/LinkerMod/releases/download/v1.3.2/game_mod.zip",
"linker_mod": "https://github.com/Nukem9/LinkerMod/releases/download/v1.0.0-r/LinkerMod-1.0.0.zip",
"end_message": "https://ia800201.us.archive.org/24/items/black_ops_mod_tools_installer_files/End_Message.txt",
"shippuden_map_maker": "https://www.dropbox.com/scl/fi/2p6b2cz0qrx016i1dk5r1/shippuden_map_maker.zip?rlkey=govvk420tcrjnaafygzcj81o5&st=1u148a0h&dl=1"
}
process_name = 'BlackOps.exe'
if getattr(sys, 'frozen', False):
script_dir = os.path.dirname(sys.executable)
else:
script_dir = os.path.dirname(os.path.abspath(__file__))
temp_dir = f'{script_dir}/temp'
if not os.path.exists(temp_dir):
os.makedirs(temp_dir)
os.chdir(temp_dir)
def download_file(url, dest):
try:
response = requests.get(url, stream=True)
response.raise_for_status()
with open(dest, 'wb') as f:
for chunk in response.iter_content(chunk_size=8192):
f.write(chunk)
print(f'Downloaded {dest}')
except requests.exceptions.RequestException as e:
print(f'Failed to download {url}: {e}')
def extract_zip(file_path, extract_to):
try:
with zipfile.ZipFile(file_path, 'r') as zip_ref:
zip_ref.extractall(extract_to)
print(f'Extracted {file_path} to {extract_to}')
except zipfile.BadZipFile as e:
print(f'Failed to extract {file_path}: {e}')
def print_intro():
print(Fore.GREEN + Style.BRIGHT + """
# # ###
## ## # # ##### # # # #### ## # ### ####
# # # # # # # # # # # # # # # # #
# # # # # ###### # # # # # # ####
# # # # # # # # ###### # #
# # # # # # # # # # # # # #
# # # # # # # #### # # ###### ####
##### #### # # #### ##### ##### #### #### # #### # # # #### ##### ## # # ###### #####
# # # # ## ## # # # # # # # # # # # # ## # # # # # # # # # #
##### # # # ## # # # # # # # # # # # #### # # # # #### # # # # # ##### # #
# # # # # # # # # # # # # # # # # # # # # # # ###### # # # #####
# # # # # # # # # # # # # # # # # # # # ## # # # # # # # # # #
##### #### # # #### ##### # #### #### ###### #### # # # #### # # # ###### ###### ###### # #
""")
print(Fore.GREEN + Style.BRIGHT + """
This tool installs the following:
- Game_mod
- Linker_mod
- Assets_wip_0.1.0
- Ville's various mod tools fixes, the latest from Jan 2, 2024
- FTG Remastered BO map source example
- Shippuden Map Maker
- SteamCMD
- It will also run the setup.bat, converter, and clean up unneeded files
Important Notes:
- Having Bgamer installed can replace key files, if you are having issues check this first
- Some errors/warning when the converter is ran is normal, you can ignore them.
- Don't run the converter yourself unless you're absolutely sure.
- rerunning this bat will rerun the converter. Backup projects first if you're worried.
- It has the potential to delete files you may want to keep.
- Installing older mod fixes over this will likely cause problems.
- The Launcher.exe must be ran as administrator or else errors may occur.
- Your Install will approximately 15gb or so depending on dlc owned.
- If this window gets stuck, try clicking on it, then hitting enter.
- If that doesn't work close it and run it again.
- If you haven't already placed this bat in your BO + Mod Tools install (next to your BlackOps.exe) close this window and do so before continuing.
""")
input("Enter 'start' to continue: ")
def download_setup_files():
print('\nDownloading necessary files...')
download_file(urls['mod_tools_file'], 'black_ops_one_mod_tool_files.zip')
download_file(urls['shippuden_map_maker'], 'shippuden_map_maker.zip')
download_file(urls['game_mod'], 'game_mod.zip')
download_file(urls['linker_mod'], 'LinkerMod-1.0.0.zip')
download_file(urls['end_message'], 'End_Message.txt')
def extract_file_set_one():
print('\nExtracting files...')
extract_zip("game_mod.zip", script_dir)
extract_zip("LinkerMod-1.0.0.zip", script_dir)
def extract_file_set_two():
extract_zip('black_ops_one_mod_tool_files.zip', script_dir)
extract_zip('shippuden_map_maker.zip', script_dir)
def run_setup_bat():
setup_bat_path = f'{script_dir}/bin/scripts/setup.bat'
subprocess.run(setup_bat_path, cwd=os.path.dirname(setup_bat_path))
def run_converter():
converter_path = f'{script_dir}/bin/converter.exe'
subprocess.run(f'{converter_path} -nopause -n -nospam', cwd=f'{script_dir}/bin')
def print_complete_message():
with open(f'{temp_dir}/End_Message.txt', 'r') as f:
print(f.read())
print('\nInstallation complete. Exiting in 30 seconds...')
time.sleep(30)
def open_game():
black_ops_path = f'{script_dir}/{process_name}'
subprocess.run(black_ops_path)
time.sleep(45)
def close_game():
subprocess.run(f'taskkill /F /IM {process_name}')
def file_cleanup():
try:
os.chdir(script_dir)
shutil.rmtree(temp_dir)
except Exception as e:
print(f"Failed to remove temp directory: {e}")
def main():
print_intro()
download_setup_files()
extract_file_set_one()
open_game()
close_game()
run_setup_bat()
run_converter()
extract_file_set_two()
print_complete_message()
file_cleanup()
if __name__ == '__main__':
main()