Browse Source

Initial Commit

Alex 6 years ago
commit
78fabd9441
3 changed files with 170 additions and 0 deletions
  1. 41
    0
      README.md
  2. 82
    0
      gui.py
  3. 47
    0
      ips.py

+ 41
- 0
README.md View File

@@ -0,0 +1,41 @@
1
+# OpenIPS
2
+
3
+An IPS patcher designed to be fully FOSS and cross-platform.
4
+
5
+## Requirements
6
+
7
+Python3, PyQT5 for the GUI version
8
+
9
+## Usage
10
+
11
+Either run the GUI version, or:
12
+
13
+`ips.py <patch file> <base file> <output file>`
14
+
15
+
16
+## TODO
17
+
18
+1. Implement support for IPS32
19
+2. Improve the CLI
20
+3. Add support for creating IPS patches (both IPS and IPS32)
21
+4. Maybe more?
22
+
23
+## Credits
24
+
25
+[File Formats Wiki](http://fileformats.archiveteam.org/wiki/IPS_\(binary_patch_format\))
26
+
27
+## License
28
+
29
+Copyright [2018] [Alex Taber (astronautlevel2)]
30
+
31
+Licensed under the Apache License, Version 2.0 (the "License");
32
+you may not use this project except in compliance with the License.
33
+You may obtain a copy of the License at
34
+
35
+    http://www.apache.org/licenses/LICENSE-2.0
36
+
37
+Unless required by applicable law or agreed to in writing, software
38
+distributed under the License is distributed on an "AS IS" BASIS,
39
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
40
+See the License for the specific language governing permissions and
41
+limitations under the License.

+ 82
- 0
gui.py View File

@@ -0,0 +1,82 @@
1
+#!/usr/bin/env python3
2
+
3
+from ips import perform_ips_patch
4
+from PyQt5 import QtCore, QtGui, QtWidgets
5
+
6
+import sys
7
+
8
+class ApplicationWindow(QtWidgets.QWidget):
9
+	def __init__(self):
10
+		super().__init__()
11
+		self.initUI()
12
+
13
+	def initUI(self):
14
+		self.setWindowTitle("OpenIPS Patcher")
15
+
16
+		self.base_rom_label 	= QtWidgets.QLineEdit(self)
17
+		self.base_rom_label.setReadOnly(True)
18
+
19
+		self.patch_file_label	= QtWidgets.QLineEdit(self)
20
+		self.patch_file_label.setReadOnly(True)
21
+
22
+		self.output_file_label	= QtWidgets.QLineEdit(self)
23
+		self.output_file_label.setReadOnly(True)
24
+
25
+		self.base_rom_select	= QtWidgets.QPushButton(self)
26
+		self.base_rom_select.setText("Select base rom")
27
+		self.base_rom_select.clicked.connect(self.selRomFile)
28
+
29
+		self.patch_file_select	= QtWidgets.QPushButton(self)
30
+		self.patch_file_select.setText("Select IPS Patch File")
31
+		self.patch_file_select.clicked.connect(self.selIPSFile)
32
+
33
+		self.output_file_select	= QtWidgets.QPushButton(self)
34
+		self.output_file_select.setText("Select output location")
35
+		self.output_file_select.clicked.connect(self.selSaveFile)
36
+		
37
+		self.ips32_mode			= QtWidgets.QCheckBox(self)
38
+		self.ips32_mode.setText("IPS32")
39
+		self.run_patch			= QtWidgets.QPushButton(self)
40
+		self.run_patch.setText("Apply patch")
41
+		self.run_patch.clicked.connect(self.runPatch)
42
+
43
+		grid = QtWidgets.QGridLayout()
44
+		grid.addWidget(self.base_rom_label, 0, 0)
45
+		grid.addWidget(self.base_rom_select, 0, 1)
46
+		grid.addWidget(self.patch_file_label, 1, 0)
47
+		grid.addWidget(self.patch_file_select, 1, 1)
48
+		grid.addWidget(self.output_file_label, 2, 0)
49
+		grid.addWidget(self.output_file_select, 2, 1)
50
+		grid.addWidget(self.ips32_mode, 3, 0)
51
+		grid.addWidget(self.run_patch, 3, 1)
52
+
53
+		self.setLayout(grid)
54
+		self.show()
55
+
56
+	def runPatch(self):
57
+		patch_file = open(self.patch_file_label.text(), "rb")
58
+		error = perform_ips_patch(patch_file, self.base_rom_label.text(), self.output_file_label.text(), False)
59
+		if error == 0:
60
+			QtWidgets.QErrorMessage.qtHandler().showMessage("File patched successfully!")
61
+		elif error == -1:
62
+			QtWidgets.QErrorMessage.qtHandler().showMessage("Error: Invalid IPS")
63
+
64
+	def selRomFile(self):
65
+		fileName, _ = QtWidgets.QFileDialog.getOpenFileName(self,"Select base ROM", "","All Files (*)")
66
+		if fileName:
67
+			self.base_rom_label.setText(fileName)
68
+
69
+	def selIPSFile(self):
70
+		fileName, _ = QtWidgets.QFileDialog.getOpenFileName(self,"Select IPS patch", "","IPS Files (*.ips);;All Files (*)")
71
+		if fileName:
72
+			self.patch_file_label.setText(fileName)
73
+
74
+	def selSaveFile(self):
75
+		fileName, _ = QtWidgets.QFileDialog.getSaveFileName(self,"Select Output File Location","","All Files (*)")
76
+		if fileName:
77
+			self.output_file_label.setText(fileName)
78
+
79
+if __name__ == "__main__":
80
+	app = QtWidgets.QApplication(sys.argv)
81
+	mw = ApplicationWindow()
82
+	sys.exit(app.exec_())

+ 47
- 0
ips.py View File

@@ -0,0 +1,47 @@
1
+#!/usr/bin/env python3
2
+
3
+import sys, os
4
+import shutil
5
+
6
+def perform_ips_patch(patch_file, base_file, output_file, ips32):
7
+	# IPS32 features not yet implemented
8
+	magic = patch_file.read(5)
9
+	if magic != b"PATCH":
10
+		print("Invalid ips patch!")
11
+		return -1
12
+
13
+	shutil.copyfile(base_file, output_file)
14
+	output_file = open(output_file, "rb+")
15
+
16
+	offset = patch_file.read(3)
17
+	while offset != b"EOF":
18
+		offset = (int(offset[0]) << 16) + (int(offset[1]) << 8) + int(offset[2])
19
+		length = patch_file.read(2)
20
+		length = (int(length[0]) << 8) + int(length[1])
21
+		output_file.seek(offset)
22
+		if length != 0: # Normal mode
23
+			data = patch_file.read(length)
24
+			output_file.write(data)
25
+		else: # RLE Mode
26
+			count = patch_file.read(2)
27
+			count = (int(count[0]) << 8) + int(count[1])
28
+			byte = patch_file.read(1)
29
+			output_file.write(byte * count)
30
+		offset = patch_file.read(3)
31
+	return 0
32
+
33
+
34
+if __name__ == '__main__':
35
+
36
+	if len(sys.argv) < 4:
37
+		print("Usage: ips.py <patch file> <base file> <output file> [ips32] \
38
+			\nSpecifying anything for ips32 will result in it patching as if the patch format is ips32 instead of ips")
39
+		exit()
40
+
41
+	if not (os.path.exists(sys.argv[1]) and os.path.exists(sys.argv[2])):
42
+		print("Warning: one of the input files does not exist")
43
+		exit()
44
+
45
+	patch_file	= open(sys.argv[1], "rb")
46
+
47
+	perform_ips_patch(patch_file, sys.argv[2], sys.argv[3], len(sys.argv) > 4)