-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit bb03213
Showing
8 changed files
with
659 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
.hypothesis/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
|
||
# Flask instance folder | ||
instance/ | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# IPython Notebook | ||
.ipynb_checkpoints | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# /setup.py is only used by py2exe | ||
/setup.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Copyright (c) 2016 Sumit Chahal | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# CS CZ Map Installer | ||
|
||
A simple, cross-platform GUI app that installs maps in Counter Strike/Counter | ||
Strike: Condition Zero games. | ||
|
||
CS CZ Map Installer uses [PySide 1.2.4][pyside_link]. | ||
|
||
## Beta | ||
|
||
Note that CS CZ Map Installer is still in beta, which means you should expect | ||
bugs and not blame me if it blows up your computer. :3 | ||
|
||
## License | ||
[MIT](../blob/master/LICENSE) | ||
|
||
[pyside_link]: https://pypi.python.org/pypi/PySide/1.2.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import sys | ||
|
||
from PySide import QtGui | ||
|
||
from .mainwindow import MainWindow | ||
|
||
QtGui.QApplication.setApplicationName('CS:CZ Map Installer') | ||
QtGui.QApplication.setApplicationVersion('0.1') | ||
|
||
def run(): | ||
app = QtGui.QApplication(sys.argv) | ||
ex = MainWindow() | ||
return app.exec_() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
""" | ||
This module contains the frequently used QMessageBox classes. | ||
""" | ||
|
||
import sys | ||
from PySide import QtGui | ||
from PySide.QtGui import QMessageBox | ||
|
||
class ErrorDialog(QMessageBox): | ||
"""The error dialog""" | ||
|
||
def __init__(self, text): | ||
"""Initialize the dialog with text""" | ||
super().__init__() | ||
|
||
#self.setGeometry(300, 300, 400, 300) | ||
self.setWindowTitle('Error') | ||
self.setIcon(QMessageBox.Critical) | ||
self.setText(text) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,238 @@ | ||
""" | ||
This module contains the MainWindow class responsible for rendering | ||
the main window of the application. | ||
""" | ||
|
||
import sys | ||
import os | ||
|
||
from PySide import QtGui | ||
from PySide.QtGui import QMessageBox | ||
|
||
from .dialogs import ErrorDialog | ||
from . import mapinstaller | ||
|
||
class MainWindow(QtGui.QMainWindow): | ||
""" | ||
The MainWindow class, responsible for rendering the main window of the | ||
application | ||
""" | ||
|
||
def __init__(self): | ||
"""Initialize class""" | ||
super().__init__() | ||
|
||
self.appname = QtGui.QApplication.applicationName() | ||
self.initUI() | ||
|
||
def initUI(self): | ||
"""Set up the window""" | ||
self.createMenus() | ||
centralWidget = QtGui.QWidget() | ||
|
||
mapPath = QtGui.QLabel('Map folder:') | ||
self.mapPathEdit = QtGui.QLineEdit() | ||
mapPathButton = QtGui.QPushButton('Select') | ||
mapPathButton.clicked.connect(self.mapPathSelect) | ||
|
||
gamePath = QtGui.QLabel('Game path:') | ||
self.gamePathEdit = QtGui.QLineEdit() | ||
gamePathButton = QtGui.QPushButton('Select') | ||
gamePathButton.clicked.connect(self.gamePathSelect) | ||
|
||
game = QtGui.QLabel('Game:') | ||
self.gameDropDown = QtGui.QComboBox() | ||
self.gameDropDown.addItem('Condition Zero') | ||
self.gameDropDown.addItem('Counter Strike') | ||
|
||
installButton = QtGui.QPushButton('&Install map') | ||
installButton.clicked.connect(self.installAction) | ||
|
||
layout = QtGui.QGridLayout() | ||
layout.setSpacing(10) | ||
|
||
layout.addWidget(mapPath, 0, 0) | ||
layout.addWidget(self.mapPathEdit, 0, 1) | ||
layout.addWidget(mapPathButton, 0, 2) | ||
|
||
layout.addWidget(gamePath, 1, 0) | ||
layout.addWidget(self.gamePathEdit, 1, 1) | ||
layout.addWidget(gamePathButton, 1, 2) | ||
|
||
layout.addWidget(game, 2, 0) | ||
layout.addWidget(self.gameDropDown, 2, 1) | ||
layout.addWidget(installButton, 2, 2) | ||
|
||
centralWidget.setLayout(layout) | ||
|
||
self.prefillPaths() | ||
self.setCentralWidget(centralWidget) | ||
self.setFixedSize(500, 0) | ||
self.setWindowTitle(self.appname) | ||
self.show() | ||
|
||
def installMapProgress(self, mapPath, gamePath, gameType, replace=False): | ||
"""Install map, showing a dialog box when finished""" | ||
try: | ||
mapinstaller.install_map(mapPath, gamePath, gameType, replace=replace) | ||
self.dialog = QMessageBox() | ||
self.dialog.setIcon(QMessageBox.Information) | ||
self.dialog.setWindowTitle('Success') | ||
self.dialog.setText('Installing map finished successfully.') | ||
self.dialog.exec_() | ||
except mapinstaller.SameDirectoryError: | ||
self.dialog = ErrorDialog('Entered map path and game path refer' | ||
' to the same directory.') | ||
self.dialog.exec_() | ||
except mapinstaller.InvalidGameDirectoryError: | ||
self.dialog = ErrorDialog(('Given game directory is not a valid {0}' | ||
' installation ("{0}" not found).').format(gameType)) | ||
self.dialog.exec_() | ||
except mapinstaller.InvalidMapDirectoryError: | ||
self.dialog = ErrorDialog('Invalid map directory.') | ||
self.dialog.exec_() | ||
|
||
def installAction(self): | ||
"""The handler for the "Install Map" click button""" | ||
gamePath = self.gamePathEdit.text() | ||
mapPath = self.mapPathEdit.text() | ||
game = self.gameDropDown.currentText() | ||
gameIndex = self.gameDropDown.currentIndex() | ||
|
||
gameType = 'czero' | ||
if gameIndex == 0: | ||
gameType = 'czero' | ||
elif gameIndex == 1: | ||
gameType = 'cstrike' | ||
|
||
if not os.path.isdir(gamePath) or not os.path.isdir(mapPath): | ||
self.dialog = ErrorDialog('Please enter a valid directory path') | ||
self.dialog.exec_() | ||
return | ||
|
||
try: | ||
comparison = mapinstaller.compare_dirs(mapPath, gamePath, gameType) | ||
if comparison is not None: | ||
file1 = comparison[0] | ||
file2 = comparison[1] | ||
|
||
self.dialog = QMessageBox() | ||
|
||
replaceButton = self.dialog.addButton('Replace', | ||
QMessageBox.YesRole) | ||
skipButton = self.dialog.addButton('Skip', | ||
QMessageBox.NoRole) | ||
cancelButton = self.dialog.addButton(QMessageBox.Cancel) | ||
self.dialog.setIcon(QMessageBox.Question) | ||
self.dialog.setWindowTitle('Replace files?') | ||
text = 'Some files in {0} overlap with files in {1}' | ||
text += '\nDo you want to replace these files in {0}' | ||
text += ' or skip them?' | ||
self.dialog.setText(text.format(gamePath, mapPath)) | ||
self.dialog.exec_() | ||
clicked = self.dialog.clickedButton() | ||
if clicked == replaceButton: | ||
self.installMapProgress(mapPath, gamePath, gameType, | ||
replace=True) | ||
elif clicked == skipButton: | ||
self.installMapProgress(mapPath, gamePath, gameType) | ||
elif clicked == cancelButton: | ||
self.dialog = QMessageBox() | ||
self.dialog.setIcon(QMessageBox.Warning) | ||
self.dialog.setWindowTitle('Canceled') | ||
self.dialog.setText('Operation canceled') | ||
self.dialog.exec_() | ||
return | ||
else: | ||
self.installMapProgress(mapPath, gamePath, gameType) | ||
except mapinstaller.SameDirectoryError: | ||
self.dialog = ErrorDialog('Entered map path and game path refer' | ||
' to the same directory.') | ||
self.dialog.exec_() | ||
|
||
def prefillPaths(self): | ||
""" | ||
Pre-fill gamePath and mapPath with values found from | ||
mapinstaller.get_game_path() | ||
""" | ||
if sys.platform.startswith('linux') or sys.platform == 'darwin': | ||
# Linux and OS/X | ||
home = os.path.expanduser('~') | ||
paths = (home + '/.wine/drive_c/Program Files (x86)', | ||
home + '/.wine/drive_c/Program Files', | ||
home) | ||
self.mapPathEdit.setText(home) | ||
self.gamePathEdit.setText(mapinstaller.get_game_path(paths) or '') | ||
|
||
elif sys.platform == 'win32': | ||
# Windows | ||
drive = os.getenv('SystemDrive') or 'C:' | ||
paths = [] | ||
paths.append(drive + r'\Program Files (x86)') | ||
paths.append(drive + r'\Program Files') | ||
paths.append(drive) | ||
self.mapPathEdit.setText(drive + '\\') | ||
self.gamePathEdit.setText(mapinstaller.get_game_path(paths)) | ||
|
||
def mapPathSelect(self): | ||
"""Handle click on Select Map Path button""" | ||
directoryPath = QtGui.QFileDialog.getExistingDirectory(self, | ||
'Select map directory', self.mapPathEdit.text()) | ||
if directoryPath: | ||
self.mapPathEdit.setText(directoryPath) | ||
|
||
def gamePathSelect(self): | ||
"""Handle click on Select Game Path button""" | ||
directoryPath = QtGui.QFileDialog.getExistingDirectory(self, | ||
'Select game directory', self.gamePathEdit.text()) | ||
if directoryPath: | ||
self.gamePathEdit.setText(directoryPath) | ||
|
||
def createMenus(self): | ||
"""Create menus in MainWindow""" | ||
# Create menubar | ||
menubar = self.menuBar() | ||
|
||
# Actions | ||
exitAction = QtGui.QAction('&Exit', self) | ||
exitAction.setStatusTip('Exit application') | ||
exitAction.triggered.connect(self.close) | ||
|
||
aboutAction = QtGui.QAction('&About ' + self.appname, self) | ||
aboutAction.setStatusTip('About ' + self.appname) | ||
aboutAction.triggered.connect(self.launchAboutDialog) | ||
|
||
# Menus | ||
fileMenu = menubar.addMenu('&File') | ||
fileMenu.addAction(exitAction) | ||
|
||
helpMenu = menubar.addMenu('&Help') | ||
helpMenu.addAction(aboutAction) | ||
|
||
def launchAboutDialog(self): | ||
"""Launch the About dialog""" | ||
appName = QtGui.QApplication.applicationName() | ||
appVersion = QtGui.QApplication.applicationVersion() | ||
title = 'About {}'.format(appName) | ||
text = '''<p style="font-size: 16px; font-weight: bold;"> | ||
{0} | ||
</p> | ||
<p>Version {1}</p> | ||
<p> | ||
{0} was made by | ||
<a href="https://github.com/smtchahal">Sumit Chahal</a>. | ||
It is available under the MIT License (see | ||
<a | ||
href="https://github.com/smtchahal/cs-cz-map-installer/blob/master/LICENSE">full | ||
licensing terms</a>). Source code is available on | ||
<a | ||
href="https://github.com/smtchahal/cs-cz-map-installer">GitHub</a>. | ||
</p> | ||
<p> | ||
{0} uses <a | ||
href="https://pypi.python.org/pypi/PySide/1.2.4">PySide | ||
1.2.4</a>. | ||
'''.format(appName, appVersion) | ||
QMessageBox.about(self, title, text) | ||
#self.dialog = AboutDialog() | ||
#self.dialog.exec_() |
Oops, something went wrong.