Neo Geo Mini theme
-
@ruckage said in Neo Geo Mini theme:
@ballboff
Suit yourself, I was trying to help but i'm clearly wasting my time.No, you're wasting my time. Asking a load of questions that aren't relevant to fixing the issue. It's your theme, you should be able to offer assistance on how to set it up, otherwise what's the point in sharing it?
-
@ballboff if an experienced user and theme developer asks you for information, assume it's important. emulationstation has changed drastically in the way it handles metadata and images, so this stuff is relevant. all you needed to do is state that and upload your xml and the shot etc, and we could easily diagnose your issue.
remember, this is all for free, no-one is your slave, here. please rethink your attitude.
-
I can vouch that this theme works 100% as I use it myself and have also modded it to my personal theme (pi).
@ballboff instead of trying to sound smart when someone is being polite to you (because that is how it has come across), why not just answer some questions that people ask you? As others have said this could be multiple possibilities.
What version windows or pi? Does your gamelist.xml have any data? Does the <image> tag link up with your image folder within the gamelist.xml? on the Gridview do you see NES style cartridge vectors in place of your images on the gridview carousel or no image at all?...and so on. Please give more information on what the issue is.This is the sort of info you should be letting people know.
Just answer the questions that @ruckage asks you and he will do his best to help you out as he does with all other users. It's that simple.
UPDATE: if your images are not displaying and you do not see any NES style cartridge vector in place of your image - please see this post https://retropie.org.uk/forum/topic/19016/neo-geo-mini-theme/22
(this could be because your images are scraped too small and not displaying within the grid?)...just a thought. -
Ok I apologise. I've come across all wrong, I didn't mean to offend anyone. I was looking for a quick answer, not expecting someone to fix my problems based on no information. I only wanted a simple guide of what files and folders to look at, and what I need to do to troubleshoot. I want to fix the issue myself. The only reason I haven't answered the questions is quite frankly I don't know. I have no idea what version of emulation station or retropie i'm using. The latest ones I'm guessing, since I installed emulationstation-dev and installed retropie from source. I've updated everything, so who knows what versions they are?
-
@ballboff when in the gamelist section on the gridview, on the gridview carousel, do you see....no scraped image art? or NES style grey cartridges when scrolling through the grid carousel?
The Gridview works the same as any other theme, it looks for the <image> tag in the gamelist.xml and displays from the folder pointing too.
-
@ballboff
Apology accepted.I asked for the information as there is no other way for me narrow down where the problem might lie as I can't physically see your system or how it's set up. If you don't know something then just say and I'll try to guide you in the right direction. I've not had issues with the theme in WIndows or on the Rapsberry Pi and @paffley has said he also has it working so it must be a problem related in some way to your setup.
We'll take it one step at a time, first what model Raspberry pi are you using and what resolution is it running at?
-
@ruckage said in Neo Geo Mini theme:
@ballboff
Apology accepted.I asked for the information as there is no other way for me narrow down where the problem might lie as I can't physically see your system or how it's set up. If you don't know something then just say and I'll try to guide you in the right direction. I've not had issues with the theme in WIndows or on the Rapsberry Pi and @paffley has said he also has it working so it must be a problem related in some way to your setup.
We'll take it one step at a time, first what model Raspberry pi are you using and what resolution is it running at?
I'm using a pi2 I think it's the b model. I'm running at 800 by 480. What's weird is that when I switch themes I can see the graphics behind the active window, but as soon as I come back to the menu they are not displayed. I've tried 3 different scrapers. The internal one, Steph's scraper and sky scraper. The gamelist files in the gamelist folder seem to point to marquee folders but I don't have any marquee folders in my ROMs folder. So that could be the issue.
-
But when I switch to the NES mini theme they show up... Strange....
-
@ballboff said in Neo Geo Mini theme:
I'm running at 800 by 480
That will be the problem. The theme is designed for 1920x1080 (see first post) and due to the way gridview works your images will be being rendered so small they aren't visible. This is due to the padding on the grid as it is defined in pixels rather than screen ratio so its doesn't scale with resolution.
I will eventually add an option to select resolutions in the config file but in the meantime If you give me a few minutes I'll tell you what to change in the theme.xml to adapt the theme to your resolution.
-
Here is what you will need to change. In the NeoGeo mini theme folder open the file named theme.xml in a text editor.
Find the following section:
<gridtile name="default"> <size>0.1916666666666667 0.5777777777777778</size> <padding>12 140</padding> <backgroundImage>./art/${style}/tile.png</backgroundImage> <backgroundCornerSize>0 0</backgroundCornerSize> <backgroundColor>ffffff</backgroundColor> <imageColor>ffffff</imageColor> </gridtile>
Change the line that says <padding>12 140</padding> to <padding>5 62</padding>
Save the file.While still in the neogeo mini theme folder you should see another folder named 'retropie'.
Open it and inside should be another theme.xml file. Open it in a text editor and find the following section:<gridtile name="default"> <size>0.0791666666666667 0.1407407407407407</size> <padding>16 16</padding> <backgroundImage>./../art/${style}/config-tile.png</backgroundImage> <backgroundCornerSize>0 0</backgroundCornerSize> <backgroundColor>ffffff</backgroundColor> <imageColor>ffffff</imageColor> </gridtile>
Change the line that says <padding>16 16</padding> to <padding>7 7</padding>
Save the file.Restart EmulationStation and the theme should now work correctly at your resolution.
-
@ruckage said in Neo Geo Mini theme:
That will be the problem. The theme is designed for 1920x1080 (see first post) and due to the way gridview works your images will be being rendered so small they aren't visible. This is due to the padding on the grid as it is defined in pixels rather than screen ratio so its doesn't scale with resolution.
Weren't you already designing multiple version of the theme for different resolution ? Or was it just for different screen ratio ?
-
@A12C4 said in Neo Geo Mini theme:
Weren't you already designing multiple version of the theme for different resolution ? Or was it just for different screen ratio ?
I think I said that I would have to do that to allow the themes with grid view to look right at other resolution but have only made them work at 1080p so far (I think it's the most common resolution people use anyway). It's made worse as I'm abusing the system a bit to make it work on themes like this so the padding size is quite high.
I think we discussed it quite while back as I felt that was the main downside to the gridview as nearly everything else in ES is defined as a screen ratio but it was due to using nine patch which does have it's advantages in other situations. Regardless I'd have to make adjustments for different aspect ratio's anyway so it's not really a big deal.
I'm looking forward to more improvements to gridview in the future, I hope you'll stil be working on it.
-
-
Change the line that says <padding>16 16</padding> to <padding>7 7</padding>
Save the file.Restart EmulationStation and the theme should now work correctly at your resolution.
That still hasn't fixed it. And it's quite annoying as now I'm not sure which version of the gamelist.xml my system is using. I've used 3 different scrapers and I think they all use a different gamelist. One is in the configs/all folder. 1 is in emulationstation folder and then a sub folder of the system name, and then I have a separate gamelist in each of the rom folders.
-
@ballboff Event though there could be multiple gamelists, there is a priority when they're processed by Emulationstaton. The gamelist in your ROM folder should take precedence over any other gamelist present.
-
@ballboff said in Neo Geo Mini theme:
That still hasn't fixed it. And it's quite annoying as now I'm not sure which version of the gamelist.xml my system is using. I've used 3 different scrapers and I think they all use a different gamelist. One is in the configs/all folder. 1 is in emulationstation folder and then a sub folder of the system name, and then I have a separate gamelist in each of the rom folders.
The fix I provided works as I tested it myself at your resolution. Your resolution is the reason your images weren't showing originally.
Before Fix:
After Fix:
If the images are now not showing in other themes as well then it would be a gamelist issue but if they are showing in other themes then it's likely you haven't made the corrections I posted correctly. Did you edit both files that I stated and did you make sure it was exactly as I posted (Post the contents of your theme.xml files here so I can check. )
-
@ruckage said in Neo Geo Mini theme:
@ballboff said in Neo Geo Mini theme:
That still hasn't fixed it. And it's quite annoying as now I'm not sure which version of the gamelist.xml my system is using. I've used 3 different scrapers and I think they all use a different gamelist. One is in the configs/all folder. 1 is in emulationstation folder and then a sub folder of the system name, and then I have a separate gamelist in each of the rom folders.
The fix I provided works as I tested it myself at your resolution. Your resolution is the reason your images weren't showing originally.
Before Fix:
After Fix:
If the images are now not showing in other themes as well then it would be a gamelist issue but if they are showing in other themes then it's likely you haven't made the corrections I posted correctly. Did you edit both files that I stated and did you make sure it was exactly as I posted (Post the contents of your theme.xml files here so I can check. )
Awesome. I don't know what I did wrong befoee. But I've got it working now! Looks the nuts. Thanks for all your assistance and patience!
-
@ballboff said in Neo Geo Mini theme:
Awesome. I don't know what I did wrong befoee. But I've got it working now! Looks the nuts. Thanks for all your assistance and patience!
That's great, thanks for letting me know that you got it working.
-
@ruckage said in Neo Geo Mini theme:
I think I said that I would have to do that to allow the themes with grid view to look right at other resolution but have only made them work at 1080p so far (I think it's the most common resolution people use anyway). It's made worse as I'm abusing the system a bit to make it work on themes like this so the padding size is quite high.
I think we discussed it quite while back as I felt that was the main downside to the gridview as nearly everything else in ES is defined as a screen ratio but it was due to using nine patch which does have it's advantages in other situations. Regardless I'd have to make adjustments for different aspect ratio's anyway so it's not really a big deal.
I'm looking forward to more improvements to gridview in the future, I hope you'll stil be working on it.
So if I understand correctly, you used to make different versions of your theme for different aspect ratio (16:9, 16:10, 4:3) and now because of this you have to make a different versions for each resolution (4k, 1080p, 720p ...).
I will give it another look soon. I'm slowly getting back into the grid view, starting with cursor position in text mode (to show something like : "game 4 / 152"), as it is an easy task and something you and others would be interested in.
One last question: in the themes you made, have you took advantage of the nine patch in any of them ? Or are you always using the trick of setting the nine patch borders to 0px to use it like a normal image ?
-
@paffley said in Neo Geo Mini theme:
I'm with @ruckage, I'm a massive fan of gridview, hope your still going to be working on it @A12C4 . Would LOVE to see <scrollSound> incorporated with the grid carousel (and the system view carousel actually would be cool too).
I know you are very enthusiastic about this feature but please don't push your demands too aggressivly. I've taken note of them, this things take time you know.
Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.
Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.