我正在编辑一个名为 TF2idle 的程序,可以在这里看到:http://facepunch.com/showthread.php?t= 1161862
我正在添加一个按钮来对使用他可用的人的来源选择的任何帐户进行碎片整理。
我在 python 文件中发现这是所有魔法发生的地方,也是我需要编辑以添加我的 Defrag 按钮的地方。
第 136 - 142 和 328-337 行是我自己添加的。这些行如下:
startDefragIcon = QtGui.QIcon()
startDefragIcon.addPixmap(QtGui.QPixmap(returnResourcePath('images/defrag.png')), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.startDefragAction = self.mainwindow.htoolBar.addAction(startDefragIcon, 'Defrag Accounts')
QtCore.QObject.connect(self.startDefragAction, QtCore.SIGNAL('triggered()'), curry(self.startUpAccounts, action='start_Defrag'))
和
if action == 'start_Defrag':
command = r'"%s/Steam.exe" -login %s %s' % (sandbox_install, username, password)
if easy_sandbox_mode == 'yes' and self.settings.get_option('Account-' + account, 'sandbox_install') == '':
self.commandthread.addSandbox('TF2Idle' + username)
self.createdSandboxes.append(username)
command = r'"%s/Start.exe" /box:%s %s' % (sandboxielocation, 'TF2Idle' + username, command)
else:
command = r'"%s/Start.exe" /box:%s %s' % (sandboxielocation, sandboxname, command)
#Right here add script to launch steam://defrag/440
程序可以对帐户进行碎片整理的一种方法是启动“steam://defrag/440”,它会自动执行。例如,我可以在我的谷歌浏览器地址栏中输入该地址,它会告诉 Steam 对 ID 为 440 的程序进行碎片整理,即 TF2。
问题是,我不知道如何将其添加到脚本中。我正在考虑添加一个 BAT 文件,其中包含“steam://defrag/440”,并添加一行将在第 336 行启动所述 BAT 文件。
我希望这里有人知道我如何做到这一点。
第二个问题是我不知道在我完成编辑后如何将所有这些源文件转换为 .EXE。我知道这对我来说都是先进的,但如果我想上大学学习计算机科学,我必须开始学习,而且这真的会帮助许多使用这个工具的用户。