Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Share Post: Reddit Facebook
RetroArch 1.9.13 Play classical games open-source emulator
#1
https://www.retroarch.com/      RetroArch is a frontend for emulators, game engines and media players.

It enables you to run classic games on a wide range of computers and consoles through its slick graphical interface. Settings are also unified so configuration is done once and for all.

In addition to this, you are able to run original game discs (CDs) from RetroArch.

RetroArch has advanced features like shaders, netplay, rewinding, next-frame response times, runahead, machine translation, blind accessibility features, and more!        https://www.libretro.com/index.php/retro...3-release/      RetroArch 1.9.13 release!
November 7, 2021        RetroArch 1.9.13 has just been released.

Grab it here.

If you’d like to learn more about upcoming releases, please consult our roadmap here.

Remember that this project exists for the benefit of our users, and that we wouldn’t keep doing this were it not for spreading the love to our users. This project exists because of your support and belief in us to keep going doing great things. If you’d like to show your support, consider donating to us. Check here in order to learn more. In addition to being able to support us on Patreon, there is now also the option to sponsor us on Github Sponsors! You can also help us out by buying some of our merch on our Teespring store!

Highlights
Project IO continues
Project IO continues as we try to abstract all file I/O in libretro cores and RetroArch to meet the Google Play Store’s new policies. Android 11/12 requires the use of the Storage Access Framework for file I/O, as libc stdio access is being restricted as much as possible.

One of the beneficial side effects of Project IO is that in going over each core, we find out all sorts of long standing issues along the way, and we try to improve the cores along the way. So it serves as a much needed quality control check as well.

No RetroArch 1.9.13 for Google Play Store for now
Do not expect frequent updates to the Google Play Store version until further notice for now. This is because of the new Play Store requirements (as explained bove in the Project IO section). Basically what it comes down to is that despite our hardest work and effort, we have missed the deadline, and so any new APK that is pushed to Google Play is likely to be rejected until the minimum SDK Level (30) and SAF is being used. We are trying to work as fast as we can to get to that stage. A realistic target is possibly two weeks from now, but we’d rather not make promises and see how far we can get by that point. In the meantime, downloading it from our site (the non-Google Play Store version), the Amazon App Store, or Huawei AppGallery or all valid alternatives that should receive an update.

Automatic Frame Delay

After introducing unique innovations like runahead in the past, RetroArch continues to innovate once more and remains at the forefront of latency reduction: introducing automatic frame delay! Read all about it in our separate article here.

The aim of this option is to lessen the burden of creating core-specific and also game-specific overrides for Frame Delay, and instead go for “set it and forget it”. With 0 value, the starting point will be half frame time.

It is fairly simple and it is based on frame time averaging with a few different thresholds which filter out false positives and provide quick stabilization with bigger steps depending on the need.

It only goes down, it is temporary, and it will reset on core unload and on SET_SYSTEM_AV_INFO. The necessary values are shown in video statistics and all actions are logged in info level.

Some notes by the author:
* For Windows users – use the XAudio driver for now, WASAPI and DirectSound does not lead to reliable results with Auto Frame Delay for now.
* Early polling could behave better with frame delay. Try setting Polling Behavior from ‘Late’ to ‘Early’ and see if you prefer it that way. Note that that polling setting needs (restart) info with it, since it does not properly refresh in realtime. If it is anything but Late at startup, putting it to Late will be always one frame behind.

‘All Users Control The Menu’ option is back
A much requested feature by WiiU users is back again! This allows all the connected gamepad devices to control the menu simultaneously. It is enabled by default for WiiU and disabled for all other devices.

NOTE: Only player 1 can toggle the menu. This is a limitation of the current input system. But any set Menu Toggle Controller Combo will work fine for all users, so it is probably acceptable for now.

Initialise ‘Explore’ menu on a background thread
Before, accessing the Explore menu would freeze the user interface for up to several seconds (depending on host hardware performance) while playlists and databases are scanned.

1.9.13 just pushes the Explore menu initialisation onto a background thread, so the UI remains responsive while the various processing occurs. (Note that the host platform must of course have threading support – if not, Explore menu initialisation will remain on the main thread)

RetroAchievements – Replace co-routines with tasks
Not important much to endusers but still worthy of a mention to people familiar with the codebase. Replaces the single long-running load task for RetroAchievements with several smaller tasks (which are threaded).

This also eliminates the coroutine code as that was only being used to yield the long-running load task – there wasn’t actually anything else to be coroutine with.

Subtasks (i.e. 1a/1b) are queued together and can be executed in parallel. RetroArch’s task system only has one task thread, but the HTTP task does sort of interleave the server requests so they are more-or-less executed at the same time.

Core improvements
As mentioned before, as part of Project IO, we are going over every core and performing some basic quality control checks. This already resulted in numerous Quality of Life enhancements to cores. Not all of the improvements listed below can be attributed to Project IO, but it’s fair to estimate over 90% of them are.

mGBA
Description: mGBA is a Game Boy Advance emulator

Fixed audio pacing – no more crackles and bad frame pacing
GBA content ran with the mGBA core was sometimes subject to crackling audio and intermittent bad frame pacing (particularly when using low frontend audio latency settings).

It turns out that the core was handling audio suboptimally in the libretro layer. At the set audio sample rate, the frontend expects between 548 and 549 audio samples per frame – but the AVStream audio callback reads and sends exactly 512 samples. This means that the audio callback becomes desynchronised with retro_run() – sometimes 512 samples will get sent to the frontend for the current frame, sometimes 1024 as the core either falls behind or overcompensates. As a result, when the frontend tries to synchronise on audio, jitter can occur – and if the frontend audio buffer is small (when using low latency values), it can sometimes run dry or reach capacity, causing crackling.

Our changes modifies audio handling in the libretro layer such that the correct expected number of samples is sent to the frontend in proper synchronisation with retro_run(). With this change we no longer experience cracking audio in GBA games, and the 240p test suit demonstrates smooth scrolling.

Note that the changes here only affect GBA content. GB/GBC emulation produces irregular audio sample pacing that is not consistent with the set sample rate, and so I am unsure how best to handle it. The existing AVStream audio callback and fixed buffer size of 512 is therefore maintained for GB/GBC content (since it already seems to produce acceptable results in most cases)

Miscellaneous
While working on the above, we noticed that the audio produced by this core is somewhat ‘harsh’ sounding. We have added an optional (fast) low pass audio filter (with associated strength setting), which softens the generated output to a more comfortable level.

Since we had to modify the core options, we also took this opportunity to update the options to v2 format, with category support.

LRMAME
Description: This is the mainline MAME core based on current sourcecode

Update to 0.237
We have updated the LRMAME core to version 0.237.

1 frame of input lag removed from core
In addition, we are happy to report that a longstanding issue with this core has been resolved. There was previously 1 additional frame of input latency in this core. This has thankfully been shaved off now.

gpSP
Description: This is a Game Boy Advance emulator



x86 32bit/64bit dynamic recompilers
gpSP now has a dynamic recompiler for x86 x64 architecture processors! Now both 32bit and 64bit CPUs have a working dynamic recompiler.

This is now hands down the fastest Game Boy Advance emulator in existence on x86 x64 platforms, outside or inside of libretro/RetroArch. We have benchmarked it ourselves – on an i9 10900KF, we get a regular reading of 2270/2280 fps in fastforward mode with Super Mario Advance 2. This makes it even faster than QuickNES, an 8bit Nintendo Entertainment System emulator. It is a little bit slower than Gambatte (still one of the kings in terms of performant cores) at ~2300fps, but it bears reminding that Gambatte is only targeting 8bit Game Boy consoles as opposed to the 32bit Game Boy Advance.

With Advance Wars, we can get even crazier readings like anywhere from ~4000 to ~5000fps in windowed mode.

Suffice to say, this kind of performance before was simply unheard of for a GBA emulator. Suffice to say, if you were still hurting for performance with a Game Boy Advance emulator before (on whatever ghetto rig you have repurposed), give this a try!

prBoom
Description: This is a Doom/Doom 2/Ultimate Doom/Final Doom game engine core.

In addition to this core now using the VFS for file I/O, we also improved the following listed below.

Fix core options version detection
On recent versions of RetroArch the core options are currently falling back to v0 format (missing sublabels) due to a trivial ‘supported version check’ error in libretro_core_options.h. We fixed the issue.

Fix memory leaks + prevent potential segfault when saving/loading games
We tried fixing every memory leak that we could find in the core.

It also works around a nasty bug in the code for saving/loading games, where an array index can easily go out of bounds.

Note that we had to stub a certain deinit out for the Windows build, the z_zone memory management seems to be pretty hairy on Windows and we unfortunately haven’t found a clean way to fix that yet. However, we don’t expect this to be a big issue on Windows regardless since it’s a dynamically linked core that gets deallocated after unloading anyway. Most of the leaks on the statically linked consoles should be all gone, and that is what ultimately counts at the end of the day.

TyrQuake
Description: This is a Quake 1 game engine core.

In addition to this core now using the VFS for file I/O, we also improved the following listed below.

Fix startup crash on x64 systems
The core would segfault under some circumstances when running the shareware version of Quake on Windows.

It turns out that the code makes a number of assumptions about the width of certain data types when casting pointers, which are not true on a number of platforms. On 64bit Windows this can cause pointer addresses to be determined incorrectly – leading to chaos.

We fixed the issue by using standard fixed-width types for the affected pointer casts. It also cleans up some other related compiler warnings.

Clean up file path handling + fix segfault when loading content from ‘non-standard’ directories
Before, the core would segfault on certain platforms when loading PAK files from non-standard directories (anything other than id1, quoth, hipnotic, rogue) due to illegal usage of strncpy(). This can be observed most easily by attempting to run the shareware version of Quake from RetroArch’s online content downloader.

We fixed this issue, and also cleaned up all file path handling in libretro.c (using libretro-common routines). A number of libretro-common files have also been updated to the latest version.

Fixed memory leaks
We fixed three sources of memory leaks in the core:

* A relatively minor one related to loading PAK files (the file handle was always left open)
* Two serious ones in the sprite handling code, which may potentially trigger multiple times per frame (and which were likely to cause crashes on RAM limited platforms…)

Miscellaneous core improvements
We have been spending time improving fMSX (MSX emulator core), PX68K (X68K emulator core), and Frodo (Commodore 64 emulator core), but are not quite done yet. We will probably spend some time detailing the changes to these cores by the time the next release comes along (two weeks from now).

For WiiU users: Frodo has been added to the WiiU build.

Beetle PSX: Add static crop behavior for “Crop Overscan” alongside dynamic
Beetle PSX: Set game specific tweak to get Monkey Hero running past the title screen
FBNeo: Numerous updates – see below:
FBNeo: CPS1 – fix Strider palette fades
FBNeo: CPS1 – Stars: simplify/fix
FBNeo: CPS2 – added Super Street Fighter II: The New Challengers Super 2 (bootleg, USA 930911)
FBNeo: CPS2 – Corrected some overdumps for Alien Vs Predator [Guru]
FBNeo: Sync FB Neo with MAME 0.237
FBNeo: Spectrum updates from gab75
FBneo: Mega Drive updates from gab75
FBNeo: NES updates from gab75 – also add Goemon 2 Translation (English)
FBNeo: Fix Vigilante breakage
FBNeo: M90 – Hiscore support
FBNeo: PC Engine – Add sprite limit override DIP
FBNeo: PC Engine – Fix timing, arrange render pipeline, scale windowing for Supergrafx
FBNeo: Supergrafx – Dai Makai – perfect background scrolling fix
FBNeo: SNK – Fix Psychos DIPs
FBNeo: Colecovision – Fix v-linecount (glitch in Frogger)
FBNeo: Pacman – added Buccaneer (set 2) [Jeremy Locke, Cam]
FBNeo: d_seta.cpp: add dumps for plds in blandia set, and info for undumped plds
FBNeo: neogeo: add “The King of Fighters ’98 (Ratio hack)”
FBNeo: d_cps2.cpp: add Street Fighter Zero 2 Alpha (Asia 960805) [Genaro Rodarte]
FBNeo: New WORKING clone – Floritas (Multivideo Spanish Moon Cresta bootleg) [Retromaniacs]
FBNeo: Renamed ‘spcdraga’ as ‘floritas’
FBNeo: Add ‘floritasm’ and rename ‘spcdraga’ as ‘floritas’
FBNeo: Homogenized all “bootleg on Galaxian hardware” descriptions
FBNeo: Now there’s only one “Space Dragon” set
Frodo: Added WiiU build
Gambatte: Fix loading of custom palettes with CRLF line terminators
Genesis Plus GX Wide: Fix specific Plane B scrolling bug – This bug occurred when HSRAM values for Plane B were `>= 0x10000 – config.h40_extra_columns * 4` (e.g., `0xFFD8` when h40_extra_columns = 10) because of a bit carry into the upper 16-bit word of `xscroll`.
Kronos: Latest updates
MAME2003 Plus: Improve sound tempo for Dolmen and Twin Action – some sound niggles a constant crackling noise still remain
MAME2003 Plus: Use control name before universal default – uses the specific control name before filling with our universal defaults. Also update DAT.
MAME2003 Plus: Support a couple more Afega games – these just hang off the standard NMK16 code so can be added easy enough to nmk16.c rather than afega.c which would be more complicated
MAME2003 Plus: New gfx scrolling routine for Twin Action
MAME2003 Plus: Speed up macro search – refine search to look for player specific joycodes.
MAME2003 Plus: Add Amlogic S812 platform + cleanup unused vars in Makefile
PCSX2: Numerous updates – see below:
PCSX2: GS: Don’t propagate 24bit textures on download
PCSX2: GS: Properly loop when reading 32bit CLUT from offset
PCSX2: GS: Fix up CLUT offset handling in 32bit I8 mode
PCSX2: GameDB: Add gamefixes for Ruff Trigger
PCSX2: GameDB: Port Iridium Runners patch, update fixes
PCSX2: GameDB: Patch rounding problem in Playmobil Hype The Time Quest
PCSX2: GameDB: Sports (RTL)
PCSX2: GameDB: Katamari Games
PCSX2: GameDB: add VU clamping to ‘Enthusia Professional Racing’
PCSX2: GameDB: fix serial for ‘Panzer Elite Action – Fields of Glory’
PCSX2: GameDB: add EE clamping to ‘Max Payne 2 – The Fall of Max Payne’
PCSX2: GameDB: add VU clamping to ‘Battle Engine Aquila’
PCSX2: GS-hw: Don’t write clamped depth test value to depth buffer when ZMSK is enabled
PCSX2: GameDB :add VU clamping to Monster Rancher 3
PCSX2: GS-hw: Add Slam Tennis to automatic mipmapping.
PCSX2: EE: Cyclerate > 1 caused some cycles to be lost
PCSX2: GS-fx/glsl: Get rid of PS_ATST 0 condition. It does nothing so no need to have it in shader.
PCSX2: SIF: Kind of revert a SIF timing change made a while back to fix Parappa the Rapper 2
PCSX2: COP2: Fix reg allocation issue. Really fixes Devil May Cry which was a bug hidden by clamping hidden by a bug, yeah i think that covers it all…
Yabause: Fix pixel format on android
Changelog
1.9.13

CHEEVOS/MSVC2010: Add Cheevos support
CRT/SWITCHRES: Fixes some issue where scaling is incorrect in some video modes for CRT output.
FRAMEDELAY: Add ‘Automatic Frame Delay’ option
INPUT: Add ‘All users control the menu’ setting – any gamepad can control the menu when this is enabled. Only limitation right now is that only player 1 can toggle the menu, but any set Menu Toggle Controller Combo will work fine for all users, so this should be acceptable for now
INPUT/UDEV: Fix Dolphin bar and safeguard against not adding devices with no mouse or touch buttons detected
NETPLAY/CLI: -C/–connect commandline fix
NETPLAY: Other improvements
NETPLAY: Remove forced disconnection on unknown netplay command – will be backwards compatible with any version that removed this disconnect. instead of disconnecting, we just read the data and ignore, like most network implementations do
TASKS/CHEEVOS: Replace coroutines with tasks/thread
TASKS/DATABASE/EXPLORE: Initialise ‘Explore’ menu on a background thread – no more stall when hovering over the Explore tab
Blog, Libretro, Prboom, Quake, RetroArch
Post navigation
Download Stable Version: https://buildbot.libretro.com/stable/1.9...-setup.exe     RetroArch 1.9.13  Is   100% Scanned With McAfee Total Protection  For Malware, Adware, Pups, Viruses, Trojans, Spyware, Ransomware, & Was Found Too Be 100% Malware Free & Clean  Of Malware Any Infections Of Anykind
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  WowUp 2.6.0 OPEN SOURCE World of Warcraft add-ons mrtrout 0 6,702 01-24-2022 , 01:25 AM
Last Post: mrtrout
  Moonlight Game Streaming Project 3.1.1 OPEN SOURCE (New) mrtrout 0 11,299 04-10-2021 , 11:48 PM
Last Post: mrtrout
  Looking to play games Co-op Mohammad 0 4,618 01-22-2020 , 01:19 PM
Last Post: Mohammad
  Top 10 Best FREE GAMES of 2017 For PC, PS4 & Xbox One! | Must Play! baziroll 0 2,817 08-04-2017 , 12:53 AM
Last Post: baziroll

Forum Jump:


Users browsing this thread: 1 Guest(s)