Commit Graph

46 Commits

Author SHA1 Message Date
Scott Stone
f7f0aee0c4 Various XML format fixes including some comment placement fixes (nw) 2020-05-09 15:36:25 -04:00
Vas Crabb
8a923f9361 srcclean and manual cleanup (nw) 2020-04-26 12:04:54 +10:00
Scott Stone
5ceea9a2e0 a2600.xml: -validation fixes for label length, keeping developer names in a comment rather than the label when needed (nw) 2020-04-19 20:18:36 -04:00
Vas Crabb
1a5c013c33 (nw) softlist_dev.cpp: validate ROM labels
The free-for-all on labels in software lists is not working.  There's no
consistency, labels are getting excessively long, people are starting to
use non-ASCII characters in labels making it harder for others to type
them when manipulating files on the command line, and there's too much
markup being put in labels.

The length limit is 127 characters, same as for labels in MAME itself.
This should be long enough to be descriptive.  Remember that the Win32
path limit is 260 characters, and many applications and frameworks have
issues with longer paths, including Windows Explorer and the .NET
framework.  Labels are used as filenames, so concessions need to be
made for this.

I have not abbreviated excessively long labels myself - they're
currently causing 135 validity errors.  Someone else can fix them.

Printable ASCII characters are allowed, with a few exceptions.  The
exceptions are limited to characters most likely to cause issues for
interactive shells and scripts:
* ! - csh event substitution (very difficult to escape properly)
* $ - sh varibale expansion
* % - csh job control, cmd variable expansion
* / - UNIX directory separator
* : - sh path separator, Windows drive qualifier
* \ - sh escape, Windows directory separator

Most of the labels that had to be edited were using ! for markup, or
using ! and % for titles in labels.  Strangely, titles in labels are
often forced to lower case, despite this never being enforced for
software lists.  There are also various other edits to titles used for
labels, such as moving articles to the end (with or without a comma),
or replacing spaces with underscores.  As I already said, there's no
consistency at all.

There is far too much markup in labels.  They're even being used for
notes in some cases (e.g. at least one case where a dumper's name is in
the label).  The XML schema supports metadata - use it.  For example,
you can use part_id for an unrestricted display name for a software
part.  You can also use XML comments for notes.

And while on the topic of metadata, vgmplay.xml is putting the same
thing in the part_id as well as the label.  The part_id should have
the actual title, not the title mangled to make it more suitable for
use as a filename.  Addressing this would be a lot of work, given how
large the file is.

For now, empty data areas in software lists cause a verbose message
rather than a validation warning.  There are thousands of software
lists using empty data areas to indicate the size/width of cartridge
RAM/EEPROM/etc.
2020-04-16 14:04:06 +10:00
Vas Crabb
438a497c37 (nw) More license shuffling
Get rid of a couple of copies of the CC0 text.  Add header comment to
CC0 files to remind people editing them what the terms are.  Also add
some missing XML headers.  The header comments in layouts won't bloat
the binary - they get stripped out before compressing, same as any other
comments.
2020-03-07 22:02:56 +11:00
Robbbert
858c67bb09 (nw) Dick Smith info 2020-03-01 13:24:26 +11:00
Robbbert
efdbbb6593 (nw) hash: removed not needed offset from some files 2019-05-03 00:20:01 +10:00
FakeShemp
a34d4d6e94 Add note. 2016-11-18 15:11:28 +01:00
FakeShemp
111836b2a4 Remember to save this time -_- 2016-11-18 15:02:19 +01:00
FakeShemp
fe2e034488 Oops. 2016-11-18 14:55:34 +01:00
FakeShemp
8348bd40da Add new dump confirms from TeamEurope. 2016-11-18 14:46:28 +01:00
Miodrag Milanovic
3abcaee63f Cleanups and version bump 2016-02-24 07:46:57 +01:00
arbee
58e717844c a2600, a800_flop: added some missing software [Ric] 2016-02-21 16:47:32 -05:00
Miodrag Milanovic
0825ce4f3b Cleanups and version bump 2015-11-25 08:22:24 +01:00
Scott Stone
c9109f1be5 Uppercase hash and softlist format fixes (nw) 2015-11-06 21:29:55 -05:00
David Haywood
7793b9af43 call it harmony/melody, that more accurately represents what we're emulating, dpc+ seems to be a software implementation on the ARM of the Harmony (nw) 2015-10-29 17:10:14 +00:00
David Haywood
66768b1039 extra test case (nw) 2015-10-29 01:08:21 +00:00
Scott Stone
d481cbf01b Softlist format fixes and validation fix for duplicate description created when excess whitespace submission was applied (nw) 2015-10-28 15:52:49 -04:00
Miodrag Milanovic
47f56372ee Cleanup and version bump 2015-10-28 08:06:12 +01:00
Thomas Klausner
86852d5c75 Remove wrong characters from sha1 fields in hash/a2600.xml.
Probably cut'n'paste problem.
2015-10-27 09:38:31 +01:00
David Haywood
624825c042 skeleton dpcplus (nw) 2015-10-26 19:54:31 +00:00
Scott Stone
2313e3f8d6 Softlist validity and format fixes (nw) 2015-10-26 15:16:17 -04:00
David Haywood
ea1e89e117 there are probably neater ways of doing this, but it works (nw) 2015-10-22 15:24:20 +01:00
Fabio Priuli
5d642ee5eb (MESS) removed softlist features that were not used anymore since conversion
to slot devices. nw.
2014-10-15 18:38:30 +00:00
Fabio Priuli
47a2824b57 (MESS) a2600.c: fixed mapper 3E support, as used by Boulder Dash
homebrew. Also allowed bankswitch writes to get to the TIA for this and 
mapper 3F. Finally, included a couple of demos in the softlist so to be
able to test the code in future. nw.
2014-09-17 17:24:53 +00:00
Fabio Priuli
80d61a8f86 (MESS) a2600: when loading from softlist, let's rely on the xml
to detect oncart RAM instead of using custom routines. nw.
2014-09-13 06:14:35 +00:00
Fabio Priuli
83cfa9dd35 (MESS) a2600.xml: some more fixes (these games need to start from bank2 at boot). nw. 2014-09-02 21:41:50 +00:00
Fabio Priuli
1c6b418bfb (MESS) a2600.xml: added some missing slot options which caused some
regression in the new implementation. nw.
2014-09-02 21:26:50 +00:00
Fabio Priuli
a1cd7776c5 (MESS) a2600.c: converted Atari VCS carts to be slot devices, cleaned up
the implementation and removed Supercharger tapes from the main system.
The -cass media switch (to load the tape file) will become available only 
when you mount the Supercharger cart. [Fabio Priuli]
2014-08-24 08:45:33 +00:00
Justin Kerk
b3e24f2567 speeling (nw) 2013-12-30 07:55:29 +00:00
Fabio Priuli
b94a029a4e (MESS) snes.xml: documentation fix from ReadOnly. nw.
+ some consistency fix/cleanups in several softlists
2013-04-29 04:08:14 +00:00
Fabio Priuli
d4c9ec904e (MESS) fixed a couple of dataarea sizes and added a new ipf release to spectum_flop, from Kaylee. nw. 2013-03-25 16:35:43 +00:00
Fabio Priuli
cdcfd481bf sanitized some more rom filenames. nw. 2013-03-22 17:53:14 +00:00
Miodrag Milanovic
4337250fbe used old version of srcclean, so I put back old files and run it again, it produce much less changes, sorry for this (nw) 2013-03-19 11:38:58 +00:00
Miodrag Milanovic
0e1f5ad25b Cleanups and version bump 2013-03-19 07:22:20 +00:00
Fabio Priuli
a69bca172a (MESS) a2600.xml: some additions of new dumps and info [Kaylee] 2013-02-23 14:19:09 +00:00
Fabio Priuli
bc23730a9a (MESS) softlists: Misc naming and description consistency fixes. no whatsnew. 2013-01-20 10:16:20 +00:00
smf-
19a14cbba6 use spaces in xml comments. This is the output from a local srcclean change applied after reverting the 0.148 cleanup, to avoid losing previous formatting. 2013-01-11 16:23:29 +00:00
Miodrag Milanovic
0e19f641d3 Cleanups and version bump 2013-01-11 07:32:46 +00:00
Wilbert Pol
b3d2146b8a (MESS) a2600.xml: Documented mappers (nw) 2012-10-08 21:10:17 +00:00
Wilbert Pol
e5d37a4595 (MESS) a2600.c: Added proper support for games using a 4in1 mapper. (Wilbert Pol) 2012-10-07 20:12:10 +00:00
Wilbert Pol
0f9ab8ce82 (MESS) a2600.c: Added support for 8in1. (Wilbert Pol) 2012-10-07 19:34:19 +00:00
Curt Coder
31387945c8 srcclean (nw) 2012-10-07 09:12:56 +00:00
Scott Stone
5b7d874fb4 [MESS] a2600.xml: Corrections based on recent regression fixing and testing (nw) 2012-10-07 02:22:10 +00:00
Fabio Priuli
cb9ead8eec (MESS) gbcolor.xml: added new dumps from BigFred and taizou. no whatsnew.
(MESS) nes.xml: added dumps of Super Maruo (first pirate FC game ever), courtesy 
of bombman, and of a few pirate games, courtesy of maxzhou. no whatsnew.
+ bunch of misc tiny fixes (thanks Tafoid)
2012-10-05 05:14:03 +00:00
Miodrag Milanovic
960ae0c0de Sync software lists from MESS into hash (no whatsnew) 2012-08-21 10:47:55 +00:00