Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
dba56f2c62 | |||
22e5b5898e | |||
ac388c97c1 | |||
62fed4bd73 | |||
3fa9738951 | |||
4301e68d3f | |||
7fb4a4c7db | |||
ee9e1593e1 | |||
bc9d67a88e | |||
defbf9021c | |||
33da827626 |
2
.drone.yml
Normal file
2
.drone.yml
Normal file
@ -0,0 +1,2 @@
|
||||
kind: template
|
||||
load: python-gui.starlark
|
22
README.md
Normal file
22
README.md
Normal file
@ -0,0 +1,22 @@
|
||||
# Giants Wdefs Importer
|
||||
|
||||
This tool was created to simplify the process of importing custom Wdefs for Giants 1.502.1.
|
||||
|
||||
![Image](readme-img/screenshot.png)
|
||||
|
||||
## What it does
|
||||
|
||||
This tool:
|
||||
1. Creates a backup of your game.
|
||||
2. Downloads the requested wdefs file.
|
||||
3. Modifies GiantsMain.exe to overwrite the expected CRC value (the game won't load if there is a CRC mismatch).
|
||||
4. Starts modded Giants.
|
||||
5. Reverts everything to original state after Giants is closed.
|
||||
|
||||
## Where to find modded wdefs?
|
||||
|
||||
[Check our Discord server](https://discord.gg/Avj4azU)
|
||||
|
||||
## What about cheaters?
|
||||
|
||||
Starting 1.497, Giants features a built-in anti-cheat. It works by automatically detecting mismatching clients and kicking them if they don't use the same environment as the server.
|
2
build.sh
2
build.sh
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
for ui in *.ui; do
|
||||
pyside6-uic $ui > ${ui%.*}.py
|
||||
pyside2-uic $ui > ${ui%.*}.py
|
||||
done
|
36
main.py
36
main.py
@ -1,17 +1,13 @@
|
||||
import os
|
||||
import struct
|
||||
import subprocess
|
||||
import sys
|
||||
import traceback
|
||||
from pathlib import Path
|
||||
import shutil
|
||||
import zlib
|
||||
import requests
|
||||
import threading
|
||||
|
||||
from PySide6.QtCore import QProcess
|
||||
from PySide6.QtWidgets import QApplication, QMainWindow, QFileDialog, QMessageBox, QTreeWidgetItem, QLayout, QLabel, \
|
||||
QLineEdit, QPushButton
|
||||
from PySide2.QtCore import QProcess
|
||||
from PySide2.QtWidgets import QApplication, QMainWindow, QFileDialog, QMessageBox, QPushButton
|
||||
from mainwindow import Ui_MainWindow
|
||||
|
||||
|
||||
@ -21,11 +17,10 @@ class MainWindow(QMainWindow):
|
||||
self.ui = Ui_MainWindow()
|
||||
self.ui.setupUi(self)
|
||||
self.giants_path = locate_giants_folder()
|
||||
if not self.giants_path:
|
||||
raise Exception()
|
||||
self.wdefs_path = self.giants_path / "Bin" / "wdefs.bin"
|
||||
self.giantsmain_path = self.giants_path / "GiantsMain.exe"
|
||||
|
||||
if not self.giants_path:
|
||||
self.close()
|
||||
self.ui.lineEdit.textEdited.connect(self.on_textedit_changed)
|
||||
self.ui.pushButton.clicked.connect(self.on_button_clicked)
|
||||
|
||||
@ -87,11 +82,13 @@ def start_giants_with_wdefs_bytes(wdefs_bytes: bytes, wdefs_path: Path, giantsma
|
||||
|
||||
process = QProcess(app)
|
||||
process.finished.connect(giants_finished)
|
||||
process.setWorkingDirectory(str(giantsmain_path.parent))
|
||||
btn.setText("Game started")
|
||||
if sys.platform == "win32":
|
||||
process.start(str(giantsmain_path), ["-launcher"])
|
||||
else:
|
||||
process.setWorkingDirectory(str(giantsmain_path.parent))
|
||||
# Linux only works for me because of this hardcoded value
|
||||
# if you want to use my tool, feel free to create a PR to make these values parameterized
|
||||
process.start("/home/tasty/.local/share/lutris/runners/wine/lutris-6.0-x86_64/bin/wine", ["/home/tasty/Jeux/Giants Citizen Kabuto1.498/GiantsMain.exe", "-window", "-launcher"])
|
||||
|
||||
|
||||
@ -105,7 +102,6 @@ def backup_file(file_path: Path) -> None:
|
||||
# copy and append _original to filename
|
||||
# if file already exists, skip
|
||||
dst = str(file_path.parent / file_path.stem) + "_original" + file_path.suffix
|
||||
print(dst)
|
||||
if os.path.exists(dst):
|
||||
return
|
||||
shutil.copy(file_path, dst)
|
||||
@ -142,7 +138,9 @@ def ask_giants_directory() -> Path:
|
||||
QMessageBox.information(None, "Wdefs",
|
||||
"Could not locate your Giants installation automatically.\nPlease browse to your Giants folder and select GiantsMain.exe")
|
||||
giantsmain_path, _filename = QFileDialog.getOpenFileName(None, caption="Wdefs", filter="GiantsMain.exe")
|
||||
return Path(giantsmain_path).parent
|
||||
if giantsmain_path:
|
||||
return Path(giantsmain_path).parent
|
||||
return None
|
||||
|
||||
|
||||
def crc(inp_bytes: bytes) -> int:
|
||||
@ -158,7 +156,7 @@ def new_exe_bytes(wdefs_bytes: bytes, giantsmain_path: Path) -> bytes:
|
||||
|
||||
index = content.find(CHECKSUM_1_502_0_1)
|
||||
if index < 0:
|
||||
raise Exception("Could not find wdefs checksum in embedded GiantsMain.exe. Report this to Amazed#0001")
|
||||
raise Exception("Could not find wdefs checksum in embedded GiantsMain.exe. If you are 100% sure this is unmodded Giants 1.502.1 please report this to Amazed#0001 on Discord or create an issue on the Git project.")
|
||||
else:
|
||||
content = bytearray(content)
|
||||
wdefs_crc = struct.pack("<L", crc(wdefs_bytes))
|
||||
@ -169,6 +167,12 @@ def new_exe_bytes(wdefs_bytes: bytes, giantsmain_path: Path) -> bytes:
|
||||
if __name__ == "__main__":
|
||||
app = QApplication(sys.argv)
|
||||
app.setQuitOnLastWindowClosed(True)
|
||||
window = MainWindow()
|
||||
window.show()
|
||||
sys.exit(app.exec())
|
||||
try:
|
||||
window = MainWindow()
|
||||
window.show()
|
||||
sys.exit(app.exec_())
|
||||
except SystemExit:
|
||||
sys.exit(0)
|
||||
except:
|
||||
traceback.print_exc()
|
||||
sys.exit(1)
|
||||
|
20
main.spec
20
main.spec
@ -12,7 +12,7 @@ a = Analysis(['main.py'],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=['PySide6.QtQml'],
|
||||
excludes=[],
|
||||
win_no_prefer_redirects=False,
|
||||
win_private_assemblies=False,
|
||||
cipher=block_cipher,
|
||||
@ -21,20 +21,24 @@ pyz = PYZ(a.pure, a.zipped_data,
|
||||
cipher=block_cipher)
|
||||
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
a.scripts,
|
||||
[],
|
||||
exclude_binaries=True,
|
||||
name='main',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=False,
|
||||
console=True,
|
||||
disable_windowed_traceback=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None , icon='icon.ico')
|
||||
coll = COLLECT(exe,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
name='main')
|
||||
|
@ -3,21 +3,15 @@
|
||||
################################################################################
|
||||
## Form generated from reading UI file 'mainwindow.ui'
|
||||
##
|
||||
## Created by: Qt User Interface Compiler version 6.2.2
|
||||
## Created by: Qt User Interface Compiler version 5.15.2
|
||||
##
|
||||
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||
################################################################################
|
||||
|
||||
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
|
||||
QMetaObject, QObject, QPoint, QRect,
|
||||
QSize, QTime, QUrl, Qt)
|
||||
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
|
||||
QFont, QFontDatabase, QGradient, QIcon,
|
||||
QImage, QKeySequence, QLinearGradient, QPainter,
|
||||
QPalette, QPixmap, QRadialGradient, QTransform)
|
||||
from PySide6.QtWidgets import (QApplication, QGridLayout, QLabel, QLineEdit,
|
||||
QMainWindow, QMenuBar, QPushButton, QSizePolicy,
|
||||
QWidget)
|
||||
from PySide2.QtCore import *
|
||||
from PySide2.QtGui import *
|
||||
from PySide2.QtWidgets import *
|
||||
|
||||
|
||||
class Ui_MainWindow(object):
|
||||
def setupUi(self, MainWindow):
|
||||
@ -39,6 +33,7 @@ class Ui_MainWindow(object):
|
||||
|
||||
self.pushButton = QPushButton(self.gridLayoutWidget)
|
||||
self.pushButton.setObjectName(u"pushButton")
|
||||
self.pushButton.setEnabled(False)
|
||||
|
||||
self.gridLayout.addWidget(self.pushButton, 0, 2, 1, 1)
|
||||
|
||||
|
BIN
readme-img/screenshot.png
Normal file
BIN
readme-img/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.5 KiB |
@ -1,3 +1,3 @@
|
||||
PySide6
|
||||
PySide2
|
||||
pyinstaller
|
||||
requests
|
Loading…
Reference in New Issue
Block a user