Commit Graph

5742 Commits

Author SHA1 Message Date
Margen67 e0b3116240 Rename exe to xenia-canary, simplify CI steps, remove SSE2
SSE2 was only for troubleshooting Fable II, and didn't do anything anyway.
2020-02-19 03:36:13 -05:00
chrisps 931d45bdd6 Smaller ComputeMemoryAddress/Offset sequence
Replace a movzx after setae in both ComputeMemoryAddressOffset and ComputeMemoryAddress with a xor_ of eax prior to the cmp. This reduces the length in bytes of both sequences by 1, and should be a moderate ICache usage reduction thanks to the frequency of these sequences.
2020-02-19 03:36:13 -05:00
Cancerous 93584b831e [CPU] Enable repetitive computation pass of optimizations from Chrispy 2020-02-19 03:36:13 -05:00
Margen67 2cbbca30e3 [Actions] Exclude .azure-pipelines.yml 2020-02-19 03:36:13 -05:00
Margen67 46595ebf02 [Azure] Don't build tests here either, only build on canary-test 2020-02-19 03:36:13 -05:00
Margen67 609f896d05 [AppVeyor] Actually disable tests 2020-02-19 03:36:13 -05:00
Margen67 780041b421 Update README.md 2020-02-19 03:36:13 -05:00
Margen67 405e1a7dee [GitHub Actions] Only create releases for canary 2020-02-19 03:36:13 -05:00
Margen67 eb3b63d3da [README.md] Move Discord to top 2020-02-19 03:36:13 -05:00
illusion98 f91e3f14ab Replace Appveyor with GitHub Action for Windows Binaries 2020-02-19 03:36:13 -05:00
Gliniak 5d511c5c32 [XAM/Content] Implemeneted XamContentCreateInternal
I'm not exactly sure about amount of parameters,
so I used them from XamContentCreate and it matches quite nicely.

Now Fifa Street returns correct file creation (and it does the file),
but on next run it is corrupted :/
2020-02-19 03:36:13 -05:00
Margen67 f3fcd53096 [GitHub Actions] Fetch full commit history 2020-02-19 03:36:13 -05:00
chrisps 78f3687dc8 Adding Xmm Select table, GetRawXMM 2020-02-19 03:36:13 -05:00
chrisps c0a38f05de Adding Xmm Select table, GetRawXMM 2020-02-19 03:36:13 -05:00
chrisps 7c1328bc56 Optimized CONVERT_I64_TO_F64 with neat overflow trick
Reduced instruction count from 11 to 8, eliminated a movq stall.
2020-02-19 03:36:13 -05:00
Cancerous 54560fe75f [XAM] remove 0xB notification following a4aa4d8edc for Halo 3 saves 2020-02-19 03:36:13 -05:00
emoose 730114d263 [Kernel] Only set privilege 0xB if mount_cache is set 2020-02-19 03:36:13 -05:00
emoose edffa55dd5 [HID] Improved WinKey GetKeystroke code
Seems the double-keypress issue was because of XINPUT_KEYSTROKE_REPEAT: Xenia would add that to keyup events, but seems REPEAT is only meant for keydown (well SR1 treats it as a keydown event at least)
2020-02-19 03:36:13 -05:00
emoose e63101b2d4 [HID] Remove keyboard_keyup cvar, doesn't seem needed anymore
I guess something to get CoD4 console working must have fixed SR1 double-keypress issue!
2020-02-19 03:36:13 -05:00
emoose bca7746535 [HID] Make WinKey GetCapabilities return success, fixes CoD4 console 2020-02-19 03:36:12 -05:00
Margen67 9842eca65d Comment out Azure badge 2020-02-19 03:36:12 -05:00
emoose 0f657551bc [XAM/HID] Add more support for keyboards & fill in unicode member of keystroke
CoD4 requires the unicode member to write text into the dev console, Win32's ToUnicode function seems to work fine for this.
Xam functions have been updated to support keyboard devices too, which *should* let CoD4 detect the keyboard and let you use it to open console etc..
Seems the XEX still needs a 1 byte patch for it to work tho :( no idea why, does keyboard work on actual X360 without any patching?
2020-02-19 03:36:12 -05:00
chss95cs@gmail.com d745905128 Added lea based multiply optimization for pow2+1 values below 16. Added magicgu2 division magic number optimization for INT_64 and INT_32. Added in my HIR optimization subpass but disabled all but 3 of the optimization rules. 2020-02-19 03:36:12 -05:00
emoose e892005562 [XAM/User] Only set buffer_size if it's too small
CoD4 calls this with a huge 0x4000 buffer, and then if the buffer_size returned is any smaller it asserts & stops running...
Need to check if this is actually how it should work, but this should help get some CoD4 running
2020-02-19 03:36:12 -05:00
emoose db8d47b2c3 [HID] Add keyboard_keyup cvar (default true) since dash needs keyups to work properly
Made this a cvar since SR1 will double-press when it sees both keydown & keyup, strange.
2020-02-19 03:36:12 -05:00
emoose ab74392664 [XAM/HID] Add keyboard_passthru cvar, allows XInputGetKeystroke to receive proper keyboard events
Maybe useful for debug games, or games modded to allow in-game consoles.
2020-02-19 03:36:12 -05:00
emoose 4f1836aa77 [XAM] Update XNetQosServiceLookup with actual XNQOS struct
Taken from the xboxstubs.h file linked just above it.
2020-02-19 03:36:12 -05:00
emoose 51115fa6f7 [XAM] Better stub for XNetQosServiceLookup, add XNetQosRelease
Based on the NetDll_XNetDnsLookup code, this should fix Saints Row TU1 trying to access the QoS data even though we returned an error.
2020-02-19 03:36:12 -05:00
emoose 7420d76070 [App] Add cache: -> \Cache0 symlink
I think this should be safe to do, seems games will only make use of either cache:, or cache0: & cache1:, not both kinds, so shouldn't be any risk of conflict.
cache: might only be used in older SDK cache code, at least so far I've only seen it used in the older Halo 3 Beta build.
2020-02-19 03:36:12 -05:00
Nathan ca2f6ff588 [Git] Added /cache0/, /cache1/, and recent.txt to .gitignore 2020-02-19 03:36:12 -05:00
emoose 4cbdeb5a94 [XAM] Load SPA achievement data from DLC content if it exists
This'll load in and convert the SPA data from the spa.bin inside DLC (marketplace / 00000002) content, into the profile GPDs.
(note that changes from the new SPA won't show in the log-file achievement list until game is restarted!)
Also fixed some minor log bugs to do with endianness...

The existing SPA code should make sure only additions from the SPA are loaded in, eg. achievements that were added - achievements that might be missing shouldn't make any difference.
e.g. it should be able to perform a load like:
  base game (20 achievements) -> DLC2 (50 achievements) -> DLC1 (30 achievements)
and the final GPD will contain the 50 achievements, from the SPA which contained the most.

Only additions from new SPAs will be loaded, any achievement changes (like a description text change or something) won't have any effect.
Not sure if we should try adding things to support that or not...
I'd guess that the X360 would probably support it, but if there isn't anything that takes advantage of it, is it worth us supporting?
2020-02-19 03:36:12 -05:00
illusion98 c66c43f570 Add commit number 2020-02-19 03:36:11 -05:00
emoose cd56d48130 [VFS] Some more STFS code improvements
Reverted to older BlockToOffsetSTFS code (with some improvements, now named STFSDataBlockToBackingBlock)
Split the To*Offset functions into ToBackingBlock & To*Offset funcs, for later use when we need the actual block numbers instead of the offsets.
Store the num blocks per hash table & block step count in the device instance, instead of calculating it each time.
Add read_only_package() & root_table_secondary() getters to the STFS descriptor struct (note: will be replaced with better stuff once stfs-headers is eventually merged)
2020-02-19 03:36:11 -05:00
Gliniak 042a820ae0 [XAM/Party] Added stub for: XamPartyGetUserListInternal
It will allow to run dashboard with signin_state = 2

Should we create different xam file for XamParty functions?

ToDo: Finish struct that store user info
2020-02-19 03:36:11 -05:00
emoose 0553575ee1 [VFS] Add some STFS magic numbers, skip hash table checks for read only packages 2020-02-19 03:36:11 -05:00
emoose 428f554cf3 [VFS] Fix GetHashEntry for level 2 entries... 2020-02-19 03:36:11 -05:00
emoose e1053938eb [VFS] Fix BlockToHashBlockOffset's level 2 case (blockStep0 -> blockStep1)
& changed code to switch statement instead.
2020-02-19 03:36:11 -05:00
emoose e4b326667d [VFS] Improve STFS GetBlockHash function - now gets hash from correct hash table.
This should hopefully allow Xenia to be more compatible with larger / more made-use-of profiles.

Each hash table actually consists of two hash tables for redundancy, which table is used is decided by the hash table level above it.
Previously there was some code to try swapping which table to use if a flag isn't set, but the code ended up being commented out & unused...

After looking at some other X360 mod tools sources I've managed to come up with this solution, which visits each hash-level it can to retrieve the correct table number to use.
Really this is probably a little inefficient, the code I based this on would actually cache each table in memory to make these visits a lot quicker, maybe should look into doing the same here.
For packages with read_only_package() == true, this maybe isn't even necessary too - but it's probably worth keeping it as-is just in case though.
2020-02-19 03:36:11 -05:00
emoose e56ea2b81c [XAM] Add some proper error codes to a few XamUser functions
It might be worth finding games/apps that use these functions and see what error codes they check against...
2020-02-19 03:36:11 -05:00
emoose 3a904987b2 [XAM] Simplify XamShowDeviceSelectorUI, update an old device ID
Storing the content type inside the device ID from DeviceSelectorUI shouldn't be needed now.
AFAIK it was only used so that we could extract it later inside XamContentGetDeviceData, but that wasn't actually how GetDeviceData was meant to work.
2020-02-19 03:36:11 -05:00
emoose 51e4af5430 [Kernel] Fix wide-printf functions not processing %ws format correctly
This would break strings like memory://%.*ws, because the %ws would set FF_IsWide, but FF_IsWide is actually treated as an "is opposite encoding" flag.
Since the function is already wide, that flag would make it think it's opposite encoding and it'd try reading the param as ASCII instead of Unicode...
2020-02-19 03:36:11 -05:00
emoose 9b3ef10f21 [Kernel] *FormatData: make peek() match get() endian, fix skip() not advancing pointer 2020-02-19 03:36:11 -05:00
Gliniak 958a9bfa29 Removed useless file that survived rebase 2020-02-19 03:36:11 -05:00
Gliniak 24cba2e720 [Log] Added information about implementation state 2020-02-19 03:36:11 -05:00
Gliniak e34186d3fe Revert "[XAM/User] Added title_id == 0 check for few User functions"
This reverts commit 05433007c5.
2020-02-19 03:36:11 -05:00
Gliniak c7845f1717 [XAM/User] Added title_id == 0 check for few User functions
Games like to report title_id as 0 (it is expected behaviour).
0 in this case means currently opened title
2020-02-19 03:36:11 -05:00
Gliniak cc594dae40 [GPU] InitializeRingBuffer - Clear buffer space to prevent random data readout 2020-02-19 03:36:11 -05:00
emoose 0a9e9e0aab [XAM] Add XamShowCreateProfileUI & XamProfileCreate impl.
Seems to kinda work, xshell uses XamProfileCreate and says that it's successful at least.
Dash uses the ShowUI function, but doesn't seem to login to the created profile correctly for some reason... restarting with the toml configured for the new profile does seem to work though.
2020-02-19 03:36:10 -05:00
emoose 4d3aff25d0 [VFS] Oops, fix wrong BlockToOffset result for non-CON packages 2020-02-19 03:36:10 -05:00
emoose d2edb53282 [Kernel] Fix XamReadTile not returning profile pic, breaking dash profile...
This caused dash not to load profile anymore, since dash passes user_index == kNone...
The new method should be closer to how things are actually meant to work.
2020-02-19 03:36:10 -05:00