No Description

ips.py 1.3KB

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