2016-10-07 22:05:53 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Author: PabstMirror
|
|
|
|
|
|
|
|
# Uploads ace relases to workshop
|
|
|
|
# Will slice up compats to their own folders
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.version_info[0] == 2:
|
|
|
|
print("Python 3 is required.")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import shutil
|
|
|
|
import platform
|
|
|
|
import glob
|
|
|
|
import subprocess
|
|
|
|
import hashlib
|
|
|
|
import configparser
|
|
|
|
import json
|
|
|
|
import traceback
|
|
|
|
import time
|
|
|
|
import timeit
|
|
|
|
import re
|
|
|
|
import fnmatch
|
|
|
|
|
|
|
|
if sys.platform == "win32":
|
|
|
|
import winreg
|
|
|
|
|
|
|
|
def find_bi_tools():
|
|
|
|
reg = winreg.ConnectRegistry(None, winreg.HKEY_CURRENT_USER)
|
|
|
|
try:
|
|
|
|
k = winreg.OpenKey(reg, r"Software\bohemia interactive\arma 3 tools")
|
|
|
|
arma3tools_path = winreg.QueryValueEx(k, "path")[0]
|
|
|
|
winreg.CloseKey(k)
|
|
|
|
except:
|
|
|
|
raise Exception("BadTools","Arma 3 Tools are not installed correctly or the P: drive needs to be created.")
|
|
|
|
|
|
|
|
publisher_path = os.path.join(arma3tools_path, "Publisher", "PublisherCmd.exe")
|
|
|
|
|
|
|
|
if os.path.isfile(publisher_path):
|
|
|
|
return publisher_path
|
|
|
|
else:
|
|
|
|
raise Exception("BadTools","Arma 3 Tools are not installed correctly or the P: drive needs to be created.")
|
|
|
|
|
|
|
|
|
|
|
|
def publishFolder(folder,modID,changeNotes):
|
|
|
|
cmd = [publisherTool_path, "update", "/id:{}".format(modID), "/changeNoteFile:{}".format(changeNotes), "/path:{}".format(folder)]
|
|
|
|
|
|
|
|
print ("running: {}".format(cmd))
|
|
|
|
|
|
|
|
print("")
|
|
|
|
print("Publishing folder {} to workshop ID {}".format(folder,modID))
|
|
|
|
print("")
|
|
|
|
if (not do_publish):
|
|
|
|
print("Just doing test build")
|
|
|
|
return
|
|
|
|
ret = subprocess.call(cmd)
|
|
|
|
if ret != 0:
|
|
|
|
print("publisher faild with code {}".format(ret))
|
|
|
|
raise Exception("Publisher","Publisher had problems")
|
|
|
|
|
|
|
|
|
|
|
|
#GLOBALS
|
|
|
|
release_dir = "P:\\z\\ace\\release"
|
|
|
|
project = "@ace"
|
|
|
|
publisherTool_path = find_bi_tools()
|
|
|
|
changelog_path = os.path.join(release_dir,"changelog.txt")
|
|
|
|
ace_release_dir = os.path.join(release_dir, project)
|
|
|
|
ace_optionals_dir = os.path.join(ace_release_dir, "optionals")
|
|
|
|
|
|
|
|
do_publish = True
|
|
|
|
# do_publish = False #will let you just build dirs and test without running publisher
|
|
|
|
|
|
|
|
|
|
|
|
def main(argv):
|
|
|
|
if not os.path.exists(ace_release_dir):
|
|
|
|
raise Exception("ace_release_dir not found","ACE not built or in wrong path")
|
|
|
|
if not os.path.exists(ace_optionals_dir):
|
|
|
|
raise Exception("ace_optionals_dir not found","ACE not built or in wrong path")
|
|
|
|
if not os.path.exists(publisherTool_path):
|
|
|
|
raise Exception("publisherTool_path not found","Arma Tools not found")
|
|
|
|
if not os.path.exists(changelog_path):
|
|
|
|
raise Exception("changelog_path not found","Requires changelog.txt be present in the release dir")
|
|
|
|
|
|
|
|
if do_publish:
|
|
|
|
repl = input("\nThis will publish to steam, are you positive release dir has correct files? (y/n): ")
|
|
|
|
if repl.lower() != "y":
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
2017-12-31 19:12:42 +00:00
|
|
|
|
2016-10-07 22:05:53 +00:00
|
|
|
#ACE Main - http://steamcommunity.com/sharedfiles/filedetails/?id=463939057
|
2017-03-18 13:53:56 +00:00
|
|
|
# Note: command line publisher doesn't like our file structure, just upload this one manually
|
2016-10-07 22:05:53 +00:00
|
|
|
|
2017-12-31 19:12:42 +00:00
|
|
|
|
2020-08-23 14:57:36 +00:00
|
|
|
#compat_r3f: r3 - https://steamcommunity.com/sharedfiles/filedetails/?id=2202404402
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_r3f"), "2202404402", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#compat_rh_acc: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202407118
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rh_acc"), "2202407118", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#compat_rh_de: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202407963
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rh_de"), "2202407963", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#compat_rh_m4: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202408647
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rh_m4"), "2202408647", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#compat_rh_pdw: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202409303
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rh_pdw"), "2202409303", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#ace_compat_rhs_afrf3: RHS Russians - http://steamcommunity.com/sharedfiles/filedetails/?id=773131200
|
2017-12-31 19:12:42 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_afrf3"), "773131200", changelog_path)
|
2016-10-07 22:05:53 +00:00
|
|
|
|
2020-08-23 14:57:36 +00:00
|
|
|
#ace_compat_rhs_gref3: RHS GREF - http://steamcommunity.com/sharedfiles/filedetails/?id=884966711
|
2017-12-31 19:12:42 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_gref3"), "884966711", changelog_path)
|
2017-03-18 13:53:56 +00:00
|
|
|
|
2020-08-23 14:57:36 +00:00
|
|
|
#ace_compat_rhs_saf3: RHS SAF - http://steamcommunity.com/sharedfiles/filedetails/?id=2174495332
|
2020-07-22 18:22:55 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_saf3"), "2174495332", changelog_path)
|
|
|
|
|
2020-08-23 14:57:36 +00:00
|
|
|
#ace_compat_rhs_usf3: RHS USA - http://steamcommunity.com/sharedfiles/filedetails/?id=773125288
|
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_usf3"), "773125288", changelog_path)
|
|
|
|
|
|
|
|
#compat_rksl_pm_ii: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202410630
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rksl_pm_ii"), "2202410630", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#compat_sma3_iansky: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202411104
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_sma3_iansky"), "2202411104", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#noactionmenu: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202412030
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_noactionmenu"), "2202412030", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#nocrosshair: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202412481
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_nocrosshair"), "2202412481", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#nouniformrestrictions: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202413047
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_nouniformrestrictions"), "2202413047", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#particles: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202413537
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_particles"), "2202413537", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#realisticdispersion: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202414018
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_realisticdispersion"), "2202414018", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
|
|
|
#tracers: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202414450
|
2020-08-31 14:42:04 +00:00
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_tracers"), "2202414450", changelog_path)
|
2020-08-23 14:57:36 +00:00
|
|
|
|
2021-10-21 17:23:08 +00:00
|
|
|
#ace_compat_gm: - https://steamcommunity.com/sharedfiles/filedetails/?id=2633534991
|
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_gm"), "2633534991", changelog_path)
|
|
|
|
|
|
|
|
#ace_compat_sog: - https://steamcommunity.com/sharedfiles/filedetails/?id=2633537792
|
|
|
|
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_sog"), "2633537792", changelog_path)
|
|
|
|
|
2020-08-23 14:57:36 +00:00
|
|
|
|
2016-10-07 22:05:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main(sys.argv)
|