Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Water Surface Rendering Fix #71

Merged
merged 4 commits into from
Nov 30, 2023
Merged

Conversation

cipherxof
Copy link
Contributor

The rendering of water surfaces in cutscenes are broken when not playing in Letterbox mode. Reflections will either be misaligned or missing completely. This issue is most obvious in the cutscenes with the Sorrow as well as at the end of the game with Eva at the WiG.

For whatever reason, the game is using the wrong values for the reflection effect viewport while in fullscreen mode. Whether this is because the reflections are still being rendered in their letterbox aspect ratio or from something else, I'm not sure.

I've provided some examples below demonstrating the issue, along with the fixed version from this patch.

Broken Fixed
wig1_broken wig1_fixed
Broken Fixed
sorrow1_broken sorrow1_fixed
Broken Fixed
sorrow2_broken sorrow2_fixed

Copy link
Owner

@Lyall Lyall Nov 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me. My only suggestions would be to use less unique patterns so there's some resilience against game patches, also to add some logging upon successful hooking. Maybe something like this?

  if (eGameType == MgsGame::MGS3)
  {
      MH_STATUS status;

      uint8_t* MGS3_RenderWaterSurfaceScanResult = Memory::PatternScan(baseModule, "0F 57 ?? ?? ?? ?? ?? F3 0F ?? ?? ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 8B ?? ?? ?? 48 89 ?? ?? ?? ?? ??");
      uintptr_t MGS3_RenderWaterSurfaceScanAddress = Memory::GetAbsolute((uintptr_t)MGS3_RenderWaterSurfaceScanResult + 0x10);
      if (MGS3_RenderWaterSurfaceScanResult && MGS3_RenderWaterSurfaceScanAddress)
      {
          status = Memory::HookFunction((uint8_t*)MGS3_RenderWaterSurfaceScanAddress, MGS3_RenderWaterSurface_Hook, (LPVOID*)&MGS3_RenderWaterSurface);

          if (status != MH_OK)
          {
              LOG_F(INFO, "MGS 3: Render Water Surface: Hook failed.");
          }
          else if (status == MH_OK)
          {
              LOG_F(INFO, "MGS 3: Render Water Surface: Hook successful. Hook address is 0x%" PRIxPTR, MGS3_RenderWaterSurfaceScanAddress);
          }
      }
      else
      {
          LOG_F(INFO, "MGS 3:  Render Water Surface: Pattern scan failed.");
      }

      uint8_t* MGS3_GetViewportCameraOffsetYScanResult = Memory::PatternScan(baseModule, "E8 ?? ?? ?? ?? F3 44 ?? ?? ?? E8 ?? ?? ?? ?? F3 44 ?? ?? ?? ?? ?? ?? 00 00");
      uintptr_t MGS3_GetViewportCameraOffsetYScanAddress = Memory::GetAbsolute((uintptr_t)MGS3_GetViewportCameraOffsetYScanResult + 0xB);
      if (MGS3_GetViewportCameraOffsetYScanResult && MGS3_GetViewportCameraOffsetYScanAddress)
      {
          status = Memory::HookFunction((uint8_t*)MGS3_GetViewportCameraOffsetYScanAddress, MGS3_GetViewportCameraOffsetY_Hook, (LPVOID*)&MGS3_GetViewportCameraOffsetY);

          if (status != MH_OK)
          {
              LOG_F(INFO, "MGS 3: Get Viewport Camera Offset: Hook failed.");
          }
          else if (status == MH_OK)
          {
              LOG_F(INFO, "MGS 3: Get Viewport Camera Offset: Hook successful. Hook address is 0x%" PRIxPTR, MGS3_GetViewportCameraOffsetYScanAddress);
          }
      }
      else
      {
          LOG_F(INFO, "MGS 3: Get Viewport Camera Offset: Pattern scan failed.");
      }
  }

Copy link
Contributor Author

@cipherxof cipherxof Nov 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be more useful to report the address relative to baseModule? At the very least the base module address should be logged, because currently logging the absolute addresses doesn't allow us to actually check what is being patched in a disassembler.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've updated with the requested changes as well as logging the module address.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be more useful to report the address relative to baseModule? At the very least the base module address should be logged, because currently logging the absolute addresses doesn't allow us to actually check what is being patched in a disassembler.

That's true, so should we add a log of the baseModule address during DetectGame? Then for the relative addresses on hooks have something like this?

  uintptr_t MGS3_RenderWaterSurfaceScanRelAddress = MGS3_RenderWaterSurfaceScanAddress - baseModuleAddr;
  LOG_F(INFO, "MGS 3: Render Water Surface: Address is %s+%x", sExeName.c_str(), MGS3_RenderWaterSurfaceScanRelAddress);

This would look like MGS 3: Render Water Surface: Address is METAL GEAR SOLID3.exe+5ac7c0 in the log.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that works. Although it may be worth doing a separate pass on all of the logs in another PR as to not muddy this one. For now, logging the base module address at least allows us to manually find the relative addresses.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that works. Although it may be worth doing a separate pass on all of the logs in another PR as to not muddy this one. For now, logging the base module address at least allows us to manually find the relative addresses.

Sounds good to me. I'll merge this and put up a new release.

Copy link
Contributor

@emoose emoose Dec 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI in case it helps at all, you can disable the relocating with an EXE flag, steamstub would need to be removed first though: nipkownix/re4_tweaks#201 (comment)

Of course that doesn't help with user logs though, but can make debugging stuff a bit easier.

@Lyall Lyall merged commit 1ae2d45 into Lyall:master Nov 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants