home *** CD-ROM | disk | FTP | other *** search
/ Unprotect 6 / Unprotect-6.0.iso / update / u2fix / u2patch.cpp < prev   
Encoding:
C/C++ Source or Header  |  1996-04-25  |  1.8 KB  |  55 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. const unsigned char olddata[80] =
  5.    { 0xe8, 0x52, 0xf9, 0xbb, 0x14, 0x00, 0xe8, 0x20,
  6.      0x95, 0xeb, 0x06, 0xdd, 0x3d, 0x1b, 0xff, 0x75,
  7.      0xef, 0xb0, 0x00, 0xa2, 0x4a, 0x00, 0xb0, 0x04,
  8.      0xa2, 0x49, 0x00, 0xe8, 0x83, 0x00, 0xc3, 0xeb,
  9.      0x19, 0xdd, 0x28, 0x49, 0x4e, 0x53, 0x45, 0x52,
  10.      0x54, 0x20, 0x47, 0x41, 0x4c, 0x41, 0x43, 0x54,
  11.      0x49, 0x43, 0x20, 0x44, 0x49, 0x53, 0x4b, 0x29,
  12.      0x8d, 0x00, 0xe8, 0x18, 0xf9, 0xbb, 0x14, 0x00,
  13.      0xe8, 0xe6, 0x94, 0xeb, 0x06, 0xdd, 0x3d, 0x1b,
  14.      0xff, 0x75, 0xef, 0xb0, 0x00, 0xa2, 0x4a, 0x00 };
  15.  
  16. const unsigned char newdata[80] =
  17.    { 0xe8, 0x52, 0xf9, 0xbb, 0x14, 0x00, 0xe8, 0x20,
  18.      0x95, 0xb0, 0x58, 0xe8, 0x15, 0x00, 0x90, 0x90,
  19.      0x90, 0xb0, 0x00, 0xa2, 0x4a, 0x00, 0xb0, 0x04,
  20.      0xa2, 0x49, 0x00, 0xe8, 0x83, 0x00, 0xc3, 0xeb,
  21.      0x19, 0xdd, 0x28, 0x2e, 0xa2, 0xba, 0x22, 0x2e,
  22.      0xa2, 0xcc, 0x22, 0x2e, 0xa2, 0xf7, 0x22, 0xc3,
  23.      0x00, 0x2d, 0x55, 0x44, 0x49, 0x43, 0x2d, 0x29,
  24.      0x8d, 0x00, 0xe8, 0x18, 0xf9, 0xbb, 0x14, 0x00,
  25.      0xe8, 0xe6, 0x94, 0xb0, 0x47, 0xe8, 0xdb, 0xff,
  26.      0x90, 0x90, 0x90, 0xb0, 0x00, 0xa2, 0x4a, 0x00 };
  27.  
  28. const long offset = 0x073E8;
  29.  
  30. unsigned char buffer[80];
  31.  
  32. void main(void)
  33. {
  34.    FILE *f = fopen("ultimaii.exe","r+b");
  35.  
  36.    fseek(f,offset,SEEK_SET);
  37.  
  38.    fread(buffer,1,80,f);
  39.    if (memcmp(buffer,olddata,80)==0)
  40.       {
  41.       printf("Applying the Ultima II Patch.\n");
  42.       fseek(f,offset,SEEK_SET);
  43.       fwrite(newdata,1,80,f);
  44.       }
  45.    else if (memcmp(buffer,newdata,80)==0)
  46.       printf("The Ultima II Patch has already been applied.\n");
  47.    else
  48.       printf("Unexpected data found.  Probably a different version\n"
  49.              "of Ultima II found.  Please contact the Moonstone Dragon\n"
  50.              "so this problem can be fixed.\n");
  51.  
  52.    fclose(f);
  53. };
  54.  
  55.