RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    Grid View Theme Ideas

    Scheduled Pinned Locked Moved Projects and Themes
    39 Posts 10 Posters 13.8k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • herb_fargusH
      herb_fargus administrators @lilbud
      last edited by herb_fargus

      @lilbud something more like this?

      smaller logo

      Personally this is my favourite rendition thus far. There are really only two issues with this version:

      • if your game name is too big it goes a bit off the screen because I don't believe the text values have an origin setting

      • it is very clashy if you leave on the on screen help, so just turn it off (who uses it anyways?)

      gists with xmls:

      https://gist.github.com/HerbFargus/6c041c9793202d03930b49b7e4bc721a

      https://gist.github.com/HerbFargus/1d861addd335da50e2bfc2ecb29a1d18

      tbh for my personal build I think I'll just take out titles altogether. thats what boxart is for anyways

      If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

      Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

      1 Reply Last reply Reply Quote 0
      • mattrixkM
        mattrixk
        last edited by

        @herb_fargus Where did you get the title screens for your games? Did you replace each of your box art images with title screens for every game you have, or just select ones? Is there a repository or website I can go to get them, are they all on thegamesdb, or do I have to do some google-fu for each title, one at time?

        My ES themes: MetaPixel | Spare | Io | Indent

        herb_fargusH 1 Reply Last reply Reply Quote 0
        • herb_fargusH
          herb_fargus administrators @mattrixk
          last edited by herb_fargus

          @mattrixk I made them myself with my swanky script see here: https://retropie.org.uk/forum/topic/3353/take-and-scrape-your-own-screenshots

          If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

          Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

          1 Reply Last reply Reply Quote 0
          • herb_fargusH
            herb_fargus administrators
            last edited by

            I also kinda like removing the title altogether - as long as you have a complete scraped list.

            update

            If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

            Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

            A 1 Reply Last reply Reply Quote 0
            • A
              Arcuza @herb_fargus
              last edited by

              @herb_fargus This is of course a fabulous idea. However, I think we miss a lot if we group our roms up by system. It's of course the first thing you would think about, but I would really like to push the idea that genre, developer, year or number of players are equally "important" groupings. Of course Console should be one as well.

              What if that vertical bar said "Racing", "Konami", "1985" or "4 players". That would be awesome.

              Shouldn't we be working on that directly? Then, we could skip two kind of menues (the side scrolling and the game select list) and just have one big grid view with all roms filtered by what you prefer at the moment.

              The Retropie menu would of course be accessible from the ES options menu.

              Simplify and make it better in my opinion.

              (We would also have to find graphics as the developer logos)

              herb_fargusH 1 Reply Last reply Reply Quote 0
              • herb_fargusH
                herb_fargus administrators @Arcuza
                last edited by

                @Arcuza that is way beyond theming functions. What you're talking about is a whole new platform, new dB backend, completely diff coding, not to mention all of RetroPie is coded specifically to a system based concept.

                It's not a bad idea as I would prefer an attribute based sortable kodiesque game selector, but it's outside of the scope of the current codebase.

                If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                A 1 Reply Last reply Reply Quote 0
                • A
                  Arcuza @herb_fargus
                  last edited by

                  @herb_fargus It does not require a DB. And it shouldn't be that tough. The most challenging part would be to do a graphical selector within a category, (i.e. showing all developer logos and let you select one of those). Bypassing the system selector should be quite easy. I've skimmed through Aloshis code, and it would take some time to reverse engineer his code.

                  When you talk about system based concept, do you mean that menues and such are changing based on which system your currently have selected, or is ES stateless system-independant until you fire a game?

                  What inhibits the gridview (or rom selector) to show roms for different systems in the same list?

                  herb_fargusH 1 Reply Last reply Reply Quote 0
                  • herb_fargusH
                    herb_fargus administrators @Arcuza
                    last edited by herb_fargus

                    @Arcuza What inhibits them is the runcommand configs that are hardcoded to each system so that when you install an emulator with retropie it automatically generates the specific code in the es_systems.cfg for that system, so it will only launch snes games from the snes system menu.

                    and yes I suppose you could do it with xmls but a db would be more effective for querying based on metadata.

                    If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                    Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                    A 1 Reply Last reply Reply Quote 0
                    • A
                      Arcuza @herb_fargus
                      last edited by

                      @herb_fargus Ok, got that. Still think using a db won't improve things. For filtering and sorting static data, just reading the data from a file into memory will be much faster, less memory usage, and more reliable (less applications and services). If the Retropie would be expanded to expose network services for multiple users altering data simultaneously and we need to have transactional integrity, I understand. Just don't think that you need a db for filtering and sorting...

                      herb_fargusH 1 Reply Last reply Reply Quote 0
                      • herb_fargusH
                        herb_fargus administrators @Arcuza
                        last edited by

                        @Arcuza yes I suppose that is a fair point. the use case here for the most part is simple enough that it doesnt necessarily merit the benefit of a full db and I havent looked into enough to see what the pros and cons are for each.

                        I guess its really just a matter of priorities, in terms of retropie as a whole theming/aesthetics are very low on the totem pole, so if people are willing to do good work and submit decent patches that dont require a whole lot of maintenance then I'm sure they'd probably be accepted or you have things like @Zigurana where he made his child friendly version for a specific purpose and we just include an optional installer for it. Eventually I can see gridview being incorporated into the main retropie fork of ES after lots of testing, and its possible some filtering like favourites and what not will eventually be incorporated too.

                        If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                        Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                        1 Reply Last reply Reply Quote 1
                        • monstermadeofmanM
                          monstermadeofman
                          last edited by

                          Has anyone released any of these themes for them? I would really like to use this for my pi zero project, and the material theme looks amazing!

                          Not all those who wander are lost

                          lilbudL mattrixkM 2 Replies Last reply Reply Quote 0
                          • lilbudL
                            lilbud @monstermadeofman
                            last edited by

                            @monstermadeofman Its my theme, https://github.com/lilbud/es-theme-material

                            It is available from the theme installer

                            Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

                            Backlog: http://backloggery.com/lilbud

                            1 Reply Last reply Reply Quote 0
                            • mattrixkM
                              mattrixk @monstermadeofman
                              last edited by

                              @monstermadeofman: I'm currently working on making my Io theme play nicely with GridView, but it's not ready yet. Once it's done I'll do the same for Spare and MetaPixel.

                              My ES themes: MetaPixel | Spare | Io | Indent

                              1 Reply Last reply Reply Quote 0
                              • monstermadeofmanM
                                monstermadeofman
                                last edited by

                                Thanks for the responses guys :)

                                Not all those who wander are lost

                                1 Reply Last reply Reply Quote 0
                                • FlyingTomahawkF
                                  FlyingTomahawk
                                  last edited by

                                  Sorry to resurrect this old(er) topic.
                                  Was wondering were you guys are at with this grid view stuff?
                                  Thanks

                                  1 Reply Last reply Reply Quote 0
                                  • T
                                    timothyzhu @herb_fargus
                                    last edited by

                                    @herb_fargus Hi, I am new to the Retropie, and I like the gridview theme. I had compile jacobfk20's code, but I don't know how to get to the view like your post. Do I need to modify the xml file in /etc/emulationstation/theme/* ? How I need to modify to get the view like yours ? Hope for your reply.

                                    1 Reply Last reply Reply Quote 0
                                    • First post
                                      Last post

                                    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.