summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/hiscore
Commit message (Collapse)AuthorAgeFilesLines
* hiscore.dat: updates cracyc2026-02-181-59/+67
|
* Merge tag 'mame0282' into HEAD Vas Crabb2025-10-311-115/+15
|\ | | | | | | MAME 0.282
| * Revert "Update hiscore.rst with plugin configuration details (#14403)" Vas Crabb2025-10-301-117/+17
| | | | | | | | | | | | | | | | | | | | | | Revert "Implement game exclusion support for hiscore (#14375)" This reverts commit 0eb42bd963b350e96064423c8ee2b6cacc34fdef. This reverts commit 7eba3bd1b383d5500edc48d8e938020b9ba6853e. There's too much wrong with this in terms of design and implementation. It isn't releasable.
* | plugins/hiscore: Fixed mixed space/tab indentation. Vas Crabb2025-10-261-208/+208
|/
* srcclean and tidy Vas Crabb2025-10-261-89/+89
|
* Implement game exclusion support for hiscore (#14375) aaciii2025-10-231-25/+125
| | | Added support for excluding specific games from high-score saving. Implemented functions to save and load exclusion lists, and updated menu options to enable/disable high-score support per game.
* hiscore.dat: updates cracyc2025-08-191-158/+157
|
* hiscore.dat: Updates cracyc2025-01-251-387/+403
|
* ui pointer options: set inc/dec to 1s (hold shift for shorter 0.1s), reset ↵ hap2024-08-061-1/+1
| | | | options to default when pressing Del
* Cleaned up various stuff. Vas Crabb2024-06-301-0/+1
| | | | | | | | | | * sony_news.xml: Added proper compatibility flags for different generations. * cpu/pic16x8x: This is very much a derivative work. * cpu/tms32025.cpp: Allow stack push/pop to be inlined. * tecmo/bombjack.cpp: Avoid needing to remove and replace devices in machine configuration. * Various other cleanup.
* coco: add Zonx (The Rainbow) support (software list and hiscore) (#12378) udance4ever2024-06-151-0/+8
| | | | | | New working software list items ------------------------------- coco_flop: Zonx (The Rainbow)
* hiscore.dat: Add delay to ballbomb/lupin3 entry to fix saved hiscore loading ↵ Mike Sheehan2024-06-101-1/+1
| | | | (#12462)
* hiscore.dat: Add support for Donkey Kong Jr (New Wide Screen) (#12377) udance4ever2024-06-071-1/+10
|
* hiscore.dat: fix renamed sets cracyc2024-03-181-182/+182
|
* hiscore.dat: fix renamed sets cracyc2023-09-211-51/+54
|
* plugins/hiscore: Fixed detection of software item lines, and added high ↵ GregWeil2023-07-072-1/+6
| | | | score support for Mega Drive Sonic Spinball. (#11282)
* hiscore.dat: update changed sets cracyc2023-06-231-132/+135
|
* -Improved some Lua APIs: Vas Crabb2023-04-071-5/+6
| | | | | | | | | | | | | | | | * Moved several machine lifecycle callbacks to the notifier/subscriber model. The old callback registration model is still available for them for now, but prints a deprecation warning. * Added pre-save/post-load notifications. * Use a single allocated timer rather than one anonymous timer per waiter. Waiters no longer prevent saved states from being loaded. * Clean up outstanding waiters on stop or state load rather than just leaking them. * Started documenting parts of the emulator interface object that should be relatively stable. -imagedev/avivideo.cpp: Fixed an object leak on unload. Also changed some other media image devices to use smart pointers.
* osd/modules/file: Don't magically substitute environment variables when ↵ npwoods2022-12-171-1/+1
| | | | | | | | opening files. (#9859) * util/options.cpp: Added option types for single and multiple paths. * util/options.cpp: Substitute environment variables in values from defaults and INI files. * ui/dirmenu.cpp: Removed hard-coded list of multi-path options. * plugins: Don't substitute environment variables in path options.
* hiscore.dat: Updates [Leezer] cracyc2022-11-201-283/+349
|
* hiscore.dat: resort and set changes cracyc2022-09-201-9512/+9514
|
* pacman.cpp: Added Miss Packman Plus. (#10201) mdeslaur2022-08-131-0/+1
| | | | | New working clones --------------------- Miss Packman Plus [Marc Deslauriers]
* hiscore.dat: updates [Leezer] cracyc2022-03-231-229/+377
|
* hiscore.dat: fix renamed sets cracyc2022-02-131-15/+22
| | | | hiscore.dat: Add "Mega Man 2: The Power Fighters (Hispanic 960712)" (megaman2h), fix "1000 Miglia: Great 1000 Miles Rally" (gtmr/gtmra/gtmro/gtmrusa) and add clones (gtmrb/gtmro) (#9285)
* plugins: Rewrote timer plugin fixing multiple issues. Vas Crabb2021-11-061-6/+6
| | | | | | | | | | | | | | | | | | | | Added emulated time recording as well as wall clock time. Fixed recording time for multiple software items per system. An incorrect constraint on the database table meant that time was only being recorded for a single software item per system. Detect the "empty" driver so the time spent at the selection menu isn't recorded (you'd get multiple entries for this due to the way options leak when returning to the system selection menu). Included schema migration code to update existing timer plugin databases. Also replaced some unnecessary floating point code with integer maths, added log messages, and made the plugin unload unload its database access code during emulation. Changed other plugins' use of paths with trailing slashes as this causes stat to fail on Windows.
* plugins: Moved the timecode recording functionality to a plugin. Vas Crabb2021-11-021-3/+3
|
* -nes.xml: Added Latin title from box art for Yeongjaekeom Cocoma games. Vas Crabb2021-10-252-2/+2
| | | | -pluins/hiscore: Bumped version since storage location has changed.
* plugins: Use SPDX short identifiers for licenses in exports (more precise ↵ Vas Crabb2021-10-251-2/+2
| | | | and easier to localise), use CC0 for hiscore plugin rather than CC0.
* Plugin updates: Vas Crabb2021-10-241-51/+109
| | | | | | | | | | | | | | | Changed the hiscore plugin to save inside the "hiscore" folder in the plugin data directory. The old hiscore path setting has already been removed from MAME for some time. This means the plugin was always saving in the "hi" folder in the working directory with no way to change it, which is problematic on Linux and macOS, particularly for distro packagers. There are lots of plugin and UI changes in this release, so we may as well get this out of the way now. Also made it possible to change the "timed save" option from the Plugin Options menu, and save that in the data folder, too. Documented the input macro plugin. The only undocumented plugins now are the cheat plugin, the cheat finder plugin, and the port name plugin.
* hiscore.dat: Updates [Leezer] cracyc2021-07-201-157/+229
|
* Mostly revert "Create console history file in homepath (#8026)" Vas Crabb2021-05-071-2/+1
| | | | | | The change to make the console plugin work is preserved. This reverts commit 25137717c9392d142650fcd679b09c400a2f5c4a.
* Create console history file in homepath (#8026) Szunti2021-05-031-1/+2
| | | | | | | | | | | * Fix console history path, homepath is a core option * Create missing directories recursively in lua plugins. * Add lfs to global environment in a less magical way. require normally doesn't bind the name globally just returns the module, mame sets a preloader that does bind lfs globally, but maybe it's less surprising to do it explicitly
* hiscore.dat: Updates [Leezer] cracyc2021-03-231-152/+229
|
* hiscore.dat: rename changed sets cracyc2021-02-141-80/+82
|
* More Lua interface cleanup - it's simpler with cleaner underlyng APIs. Vas Crabb2020-12-271-3/+3
| | | | | | | | | | | Made the sound manager mute controls readable, and got rid of system enable since it just controls system mute anyway. This was causing confusion: phantom2 was trying to use both independentlyt casuing the mute bit to be ignored. THe Lua interface changes are mostly changing methods to properties, some renames to make things clearer, and some additional properties for better control over snapshots.
* plugins: Replace environment variable substitution function with core version AJR2020-12-081-2/+2
|
* hiscore.dat: fix stdragon cracyc2020-11-231-1/+1
|
* hiscore.dat: updates [Leezer] cracyc2020-11-221-150/+184
|
* hiscore.dat: update with changed sets cracyc2020-10-221-2/+1
|
* hiscore.dat: fix set names cracyc2020-09-221-12/+12
|
* hiscore.dat: gauntlet high scores are in the nvram, these cause more ↵ cracyc2020-09-031-20/+0
| | | | problems then they are worth
* hiscore.dat: updates [Leezer] cracyc2020-08-171-266/+395
|
* hiscore.dat: update changed set names cracyc2020-07-211-5/+5
|
* hiscore.dat: updates [Leezer] cracyc2020-04-221-301/+403
|
* hiscore.dat: fix viewpoin (nw) cracyc2020-03-101-2/+2
|
* Revert "added support for reading/writing hiscore files from cart images ↵ Vas Crabb2020-02-281-32/+9
| | | | | | | | (#6130)" This reverts commit a77313a98782d0494a5f3b7eb30993e5ac45c4eb. This seems to break high score support on things without cartridges. I think it needs re-thinking.
* added support for reading/writing hiscore files from cart images (#6130) eadmaster2020-02-131-9/+32
| | | | | | | | | | | | | | | | | | | | | | * added support for reading/writing hiscore files from cart images example hiscore.dat entry: ```` nes,smb: Super Mario Bros. (World).nes: Super Mario Bros. (W) [!].nes: @:maincpu,program,7df,4,0,0,ff ```` * store console hiscores in subdirs, added cart hashes support * added back my prev changes * added missing end * using simpler regexpr for hiscore.ini parsing, fixed typo * minor cleanups
* made read_config in hiscore lua plugin more robust Andrea2020-01-041-2/+4
|
* hiscore.dat: fix old parsing errors (nw) cracyc2019-12-081-12/+25
|
* hiscore.dat: Updates [Leezer] cracyc2019-12-021-189/+247
| | | | plugins/data: various fixes (nw)