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
|
#!/usr/bin/python3
# encoding=utf-8
#
# Copyright © 2015 Alexandre Detiste <alexandre@detiste.be>
# SPDX-License-Identifier: GPL-2.0-or-later
# fake lgogdownloader to symlink in ~/bin
import argparse
import subprocess
print('FAKE LGOGDOWNLOADER:')
parser = argparse.ArgumentParser(prog='lgogdownloader',
description='Fake lgogdownloader.')
parser.add_argument('--download', action='store_true')
parser.add_argument('--no-extra', action='store_true')
parser.add_argument('--directory', metavar='DIR')
parser.add_argument('--subdir-game', type=str)
parser.add_argument('--platform', type=str)
parser.add_argument('--include', type=str)
parser.add_argument('--language', type=str)
parser.add_argument('--game', type=str)
args = parser.parse_args()
assert args.directory, 'Must specify --directory'
assert args.game, 'Must specify --game'
game = args.game.lstrip('^').rstrip('$')
archives = {
'descent#en': ['setup_descent_2.1.0.8.exe'],
'legend_of_kyrandia#en': ['setup_legend_of_kyrandia_2.1.0.14.exe'],
'legend_of_kyrandia#de': ['setup_legend_of_kyrandia_german_2.1.0.14.exe'],
'legend_of_kyrandia#fr': ['setup_legend_of_kyrandia_french_2.1.0.14.exe'],
'loom#en': ['setup_loom_2.0.0.4.exe'],
'rise_of_the_triad__dark_war#en': ['setup_rise_of_the_triad_2.0.0.5.exe'],
'space_quest_5_the_next_mutation': ['setup_space_quest5_2.1.0.15.exe'],
'the_feeble_files#en': ['setup_the_feeble_files_2.0.0.5.exe',
'setup_the_feeble_files_2.0.0.5-1.bin',
'setup_the_feeble_files_2.0.0.5-2.bin'],
'toonstruck#en': ['gog_toonstruck_2.0.0.4.sh'],
'wolfenstein_3d#en': ['setup_wolfenstein3d_2.0.0.4.exe'],
'wolfenstein_spear_of_destiny#en': ['setup_spear_of_destiny_2.0.0.6.exe'],
}.get(game + '#' + (args.language or 'en'))
if archives is None:
exit('Unknown game %s' % game)
for archive in archives:
try:
locate = subprocess.check_output(['locate', '-e', archive], text=True)
except subprocess.CalledProcessError:
exit('Archive %s not found in "locate" database' % archive)
for file in locate.splitlines():
if file.endswith(archive):
break
else:
exit('Archive %s not found in "locate" database' % archive)
subprocess.check_call(['ln', '-s', '-v', file, args.directory])
|