Commit Graph

5582 Commits

Author SHA1 Message Date
emoose 1b36f593c8 [Base] Test changing frequency to 49.875 instead of 50
Some public slides mention this is the actual frequency it runs at (slide 15: https://slideplayer.com/slide/9528088/)
KeQueryPerfFrequency always returns 50MHz though.
2020-01-05 22:27:00 +00:00
emoose f92f660251 [VFS/Kernel] Fixes to allow games to make use of cache partitions
Happy new year! Here's my first commit of the 2020s :)

With these fixes, Halo 3 Epsilon will now write cached map data & other things (autosaves/datamine...) to the cache0/cache1 partitions, (as long as mount_cache cvar is set)
(Halo 3 retail will also write some things to cache with this, but oddly doesn't cache map stuff... which is strange because Epsilon was built only a day or two after the retail build, so I'm not sure why it'd work differently...
Maybe retail needs a TU applied for it to work or something like that)
Other games should hopefully work with cache now too (AFAIK the problem was in SDK library code, that a lot of games probably share)
No idea if this will actually improve anything though, but at least things will work closer to what games expect :)

The way this works is by tricking the cache-partition code (staticly linked into the game exe) into thinking that the Partition0/Cache0/Cache1 devices are valid.
To do that I made another kind of VFS device, the NullDevice, which just takes in a list of paths to handle.
Whenever an IO request is made to one of these paths, the NullDevice can simply pretend to the game that everything was successful, which satisfies the requirements needed for caching.

It also makes use of another trick: setting TitleInsecureCacheDrive XEX permission, which seems to skip a huge chunk of cache-init code (STFC filesystem device registration & stuff like that)
I'm not sure if this would work with every single revision of the STFC/cache code though...
At least in Halo 3 the retail code will handle the TitleInsecureCacheDrive case for us fine, but maybe older/more recent versions don't include functionality for it, need to look into it some more.
(I did try an impl. without needing this permission months ago, got pretty far with it but got caught on one tiny issue that I couldn't figure out... too bad I didn't find out about this permission earlier!)
2020-01-02 12:16:20 +11:00
Cancerous 7b3515e80f [Kernel] HDD and save detection changes 2019-12-28 22:25:58 -05:00
Cancerous d04bd86b92 [Kernel] added more checks to filter user_index out of range 2019-12-22 21:29:19 -05:00
Cancerous 8d33d26d59 [Kernel] - further adjustments to xam overlapped ui for storage selection and messages 2019-12-19 17:33:34 -05:00
Cancerous dd8653a05a [Kernel] - time fix for darksouls 2019-12-19 17:31:13 -05:00
Cancerous 20c2753536 [VFS] more logging for resolving files 2019-12-19 17:30:36 -05:00
Cancerous b3abd15090 [Kernel] - swapdisc fixes for gtav 2019-12-19 17:29:24 -05:00
Cancerous ff143b6acd [Kernel] stubs for 9199 (eventually) 2019-12-19 17:24:59 -05:00
illusion98 0377ebd7a5 Force 1080p output mode 2019-12-19 04:17:20 -05:00
Gliniak 38579b4156 [Achievements] XamUserCreateAchievementEnumerator - title_id 0 behaviour
Based on research 0 in title_id is interpreted as current game
2019-12-14 16:38:52 +01:00
Gliniak b36fce858e [XAM] Removed code related to buffer clear
Some games have hardcoded buffer size which doesn't match real size
2019-12-14 16:37:26 +01:00
Margen67 2afd68c597
[AppVeyor] Skip tests
this is already slow enough
2019-12-06 21:57:18 -08:00
Cancerous 10e5a951f1 further ajustment to buffer size to fix regression 2019-12-06 12:20:34 -05:00
Cancerous cec952f670 title update fixup - breaks xex1 temporarily 2019-12-06 11:57:48 -05:00
Cancerous 09c74ea5d2 [Kernel] More adjustment to XNotification spam filter 2019-12-05 09:37:13 -05:00
Cancerous c6ad40723b [Kernel] - adjusting XAMEnumerate buffer size to fix Angry Birds and Resonance of Fate - thanks Gliniak 2019-12-05 09:33:30 -05:00
Gliniak ef40f11b38 [Kernel/Sketchy] Implemented NtQueueApcThread
Signed-off-by: Gliniak <Gliniak93@gmail.com>
2019-12-04 20:32:02 +01:00
Cancerous f0dbd992b5 [Kernel, UI]
threaded UI notifications from emoose Issue 1296
added fixups for hdd detection in more games (wheelman for example)
changed filter that stops notification spam
2019-12-01 04:01:19 -05:00
Cancerous be9f020717 [Base] icon fix 2019-12-01 04:00:22 -05:00
Margen67 a9cca29948 [CI] Skip master branch, also rename xenia.exe to xenia-canary.exe in AppVeyor+Azure 2019-12-01 04:00:22 -05:00
illusion98 03e926605a Merge remote-tracking branch 'JoelLinn/fix-cpu-clock' into canary 2019-12-01 04:00:22 -05:00
illusion98 feb4f0c2a5 [Kernel] Title Update fixup
Co-Authored-By: aerosoul94 <aerosoul94@hotmail.com>
2019-12-01 04:00:22 -05:00
Margen67 59e5dfb4cb [GitHub Actions] Releases, minor changes
Formatting fixes.
Add comment about SSE2 builds not working on non-AVX(2) CPUs.
Don't build tests.
 Prepare artifacts:
  Switch to PowerShell.
  Rename xenia.exe to xenia-canary.exe.
 Add Releases:
  This allows GitHub Actions to have a link to the latest artifacts like AppVeyor, except not slow as fuck.
  Currently AVX-only since users will get confused which one to download (this is also why vfs-dump isn't included in the zip), and I don't know how to use the upload_url from another job configuration.
  Releases won't be created for PRs.

You can download the latest Release from here: https://github.com/xenia-canary/xenia-canary/releases/latest/download/xenia-canary.zip
2019-12-01 04:00:22 -05:00
illusion98 d16c8d424c small fixup for fps counter
this code is a meme
2019-12-01 04:00:22 -05:00
Radosław Gliński 5140d4940e [THREADING] Removed old walkaround for zombie threads 2019-12-01 04:00:22 -05:00
illusion98 fe3e4409fd Revert "[Memory] Trigger watches when making pages writable, not the other way around"
A Workaround for UE3 games causing exploding vertices.
This reverts commit 8ba6f3fc37.
2019-12-01 04:00:22 -05:00
illusion98 13aad56244 [Kernel] use TV Gamma as default instead of CRT 2019-12-01 04:00:22 -05:00
Margen67 76cc7b6b32 [GitHub Actions] Add exclusions 2019-12-01 04:00:22 -05:00
illusion98 d510690b1b Forgot to fix this 2019-12-01 04:00:22 -05:00
Margen67 a5b9c6b2a2 [README] stuff
Move status badges to top
Change Status into Download
Remove Contributors Wanted!
2019-12-01 04:00:22 -05:00
Prism Tutaj 37f1d1dc2e miscellaneous linux fixes. Disables vulkan-trace-viewer and dumper 2019-12-01 04:00:22 -05:00
Prism Tutaj 4337e4ddf8 Actually update libav. 2019-12-01 04:00:22 -05:00
Cancerous c4e102094f Merge branch 'get-proc-address-by-ordinal' of https://github.com/CookiePLMonster/xenia into canary
[Kernel] Fixup GetProcAddressByOrdinal PR 1473
2019-12-01 04:00:22 -05:00
Prism Tutaj 7bce62153f Fix discord cvar 2019-12-01 04:00:21 -05:00
illusion98 808bb15749 [Kernel] AVPack cvar
idk what teh hell im doing 😹
2019-12-01 04:00:21 -05:00
Radosław Gliński 1ca9df5ffe Implemented instructions: rldclx, rldcrx 2019-12-01 04:00:21 -05:00
Radosław Gliński a8ce4acddc Added stub implementation of WSAFDIsSet. I hope that arguments correct 2019-12-01 04:00:21 -05:00
gibbed 771cc14343 [Kernel] Workaround for crash seen on N3 demo boot.
Changes NtAllocateVirtualMemory so that it ignores specified page size when a
base address is specified. Requires verification if this is desired behavior.
2019-12-01 04:00:21 -05:00
Cancerous 7729d81d84 Merge branch 'profile-gpds-rebase' of https://github.com/emoose/xenia into canary 2019-12-01 04:00:00 -05:00
illusion98 ab7a2e9360 Change default config file name 2019-12-01 03:49:36 -05:00
illusion98 e361cd9d40 Change window title
xenia -> xenia-canary
2019-12-01 03:49:36 -05:00
Cancerous edb1b46441 Merge branch 'master' of https://github.com/ObsidianNA/xenia into canary
Recent Files Menu Bar PR 1396
2019-12-01 03:49:36 -05:00
Cancerous 155ae744d7 Merge branch 'xex-unload-image' of https://github.com/CookiePLMonster/xenia into canary
[Kernel] Make XexUnloadImage fully release the image

Previously XexUnloadImage did not cleanup the image fully,
and if XexLoadImage was to be called again on the same module,
it was not initialized fully, leading to a crash when using it.

[Kernel] (Partially) fix module refcounting

.xex module handles were retained twice in several places,
possibly causing them to leak.
More placed may have to be fixed too.

PR 1461
2019-12-01 03:49:36 -05:00
Cancerous 844bb083e3 Merge branch 'crypt-fixes' of https://github.com/CookiePLMonster/xenia into canary
[Kernel] Fix SHA1 and SHA256 state endianness

Fixes malfunctioning SHA256 hash,
corrupting its state between Update and Finish calls.
PR 1461
2019-12-01 03:49:36 -05:00
illusion98 faa86f70d3 Merge remote-tracking branch 'randprint/ThreadDistribution' into canary 2019-12-01 03:49:35 -05:00
Rados??aw Gli??ski a00123f18b Fixed Mask incorrectness. Does mask_ == 0x01 means accept all?
Affected Games:
- Grid 2 (freezes)
- Skate. (Menu Soundtrack)
- Crackdown 2 Demo (ingame freeze)
2019-12-01 03:49:35 -05:00
Rados??aw Gli??ski 8f79560343 "Template" for 0xFE message: 0x22005 2019-12-01 03:49:35 -05:00
Cancerous 1b1f360808 [Kernel] XamSwapDisc and supporting functions 2019-12-01 03:49:35 -05:00
Cancerous eb40113bf2 New Icons 2019-12-01 03:49:35 -05:00