Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: modifying cd skin  (Read 3272 times)

0 Members and 1 Guest are viewing this topic.

Karaokedude

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 73
  • Last login:October 16, 2007, 12:21:00 pm
modifying cd skin
« on: January 26, 2007, 01:43:43 am »
Ive had a look in the cd skin file and cant see how to do it although it prob obvious

is there a way to make the column with the cd art smaller to give more space for titles in the other column making the point size smaller is ok but gets to a point where you have trouble reading it.

Chris

  • Moderator
  • Trade Count: (+2)
  • Full Member
  • *****
  • Offline Offline
  • Posts: 4574
  • Last login:September 21, 2019, 04:59:49 pm
    • Chris's MAME Cabinet
Re: modifying cd skin
« Reply #1 on: January 26, 2007, 08:02:41 am »
The art always takes up a square section, so reducing the height will do it.  That's probably not what you want.

If you set CDHeader=Top or CDHeader=Bottom so the CD information appears above or below the art, this will also make the art area smaller.  You can make the font sizes of the header information larger to shrink the art area even further.

--Chris
--Chris
DOSCab/WinCab Jukebox: http://www.dwjukebox.com

Karaokedude

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 73
  • Last login:October 16, 2007, 12:21:00 pm
Re: modifying cd skin
« Reply #2 on: January 26, 2007, 10:38:45 am »
The skin is set to 2 rows by 2 columns (cd4-3)
each column 500x300 and is split into 2 one half has the Album art the other the titles

what i want to do is have that split within the column say 200 and 300 so the art has a smaller area

can i also fix the font size of the CD Header as if i reduce the font size for the titles the cd header gets reduced as well

ive tried changing the height which works to some extent but i end up with a large space at the bottom of the grid
« Last Edit: January 26, 2007, 10:55:21 am by Karaokedude »

Chris

  • Moderator
  • Trade Count: (+2)
  • Full Member
  • *****
  • Offline Offline
  • Posts: 4574
  • Last login:September 21, 2019, 04:59:49 pm
    • Chris's MAME Cabinet
Re: modifying cd skin
« Reply #3 on: January 26, 2007, 11:23:48 am »
There's a new way of doing fonts that gives you a bit more control.  I haven't backported it to all the skins yet but you can add it yourself.

Add this section to the skin:
Code: [Select]
[Fonts]
# Note: The "Small" fonts are not yet implemented.

TitleFont = dvsans.ttf
TitleFontSize = 14
TitleFontCondensed = dvsansc.ttf
TitleFontCondensedSize = 12
TitleFontSmall = dvsansc.ttf
TitleFontSmallSize = 8
TitleFontColor = ghostwhite
TitleFontCase = Normal
TitleFontAddQuotes = False
TitleFontQuoteSymbol = "


ArtistFont = dvsans.ttf
ArtistFontSize = 12
ArtistFontCondensed = dvsansc.ttf
ArtistFontCondensedSize = 11
ArtistFontSmall
ArtistFontColor = lightgrey
ArtistFontCase = Normal
ArtistFontAddQuotes = False

AlbumFont = dvsansb.ttf
AlbumFontSize = 14
AlbumFontCondensed = dvsansbc.ttf
AlbumFontCondensedSize = 12
AlbumFontSmall = dvsansbc.ttf
AlbumFontSmallSize = 8
AlbumFontColor = ghostwhite
AlbumFontCase = Uppercase
AlbumFontAddQuotes = False

CDAddressFont = bluecond.ttf
CDAddressFontSize = 26
CDAddressFontColor = white

FixedFont=jbdotmat.fnt

So with this you'll have a bit more control.  Not only can the CD header text be a different size, it can be a completely different font for each component (album, artist, selection address).

NOTE: If you use this Fonts section, the font settings in the Titlestrips section will be ignored.

--Chris
--Chris
DOSCab/WinCab Jukebox: http://www.dwjukebox.com

Karaokedude

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 73
  • Last login:October 16, 2007, 12:21:00 pm
Re: modifying cd skin
« Reply #4 on: January 26, 2007, 10:05:55 pm »
Nice :)

had a good play with the settings makes the skin look a lot better

Thanks