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

    EmulationStation Grid View v1 ready for wider testing

    Scheduled Pinned Locked Moved Ideas and Development
    emulationstatiogrid
    63 Posts 9 Posters 19.2k 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.
    • A12C4A
      A12C4 @cloudlink
      last edited by

      Hello @cloudlink , I'm sad to hear that you have troubles enabling the grid view.

      What is your system running ES ? Can you detail a bit more what you are doing step by step (are you changing both the game list view style and the theme at the same time for example ?)

      I am unable to completly reproduce your problem. When I switch theme and game list view style to the grid view on my pi 3B, it freeze for about 4~5 seconds but after that it work perfectly.

      Grid view wiki

      C 1 Reply Last reply Reply Quote 0
      • C
        cloudlink @A12C4
        last edited by cloudlink

        @a12c4
        Thanks for the reply.
        Sorry, I should have included more detail.
        I'm running the latest version of Retropie, upgraded from the latest official image, on a Raspberry Pi 3 B+.
        The only custom changes I've made that I can think of that might interfere are a few emulator entries I manually added to es_systems.cfg. Those are unthemed right now as I'm using the new version of Carbon with no customizations.
        Could that cause an issue?
        I've tried changing to the Carbon theme first then enabling the grid view. It changes to the Carbon theme just fine, but freezes indefinitely when changing to grid view.

        1 Reply Last reply Reply Quote 0
        • J
          jdrassa
          last edited by

          @A12C4 I updated my main Pi which has a lot more games on it and saw the same hanging. I did some testing and traced the delay back to here. I believe at one point you explored having the ImageGridData holding the image path vs. a TextureResource. At a minimum we probably need a way to defer the creation of the TextureResource until they are first needed.

          Get latest build of EmulationStation for Windows here

          A12C4A 1 Reply Last reply Reply Quote 0
          • A12C4A
            A12C4 @jdrassa
            last edited by

            @jdrassa Define "first needed".

            Yes I explored instantiating the TextureResource while navigating in the grid and it gave really poor results, with huge fps drops.

            Another solution could be to instantiate them only for the currently selected system, but that way you may experience big loading time if you switch to a system with a lot of games for the first time.

            This 9000+ games collection ain't gonna get loaded by itself.

            Grid view wiki

            1 Reply Last reply Reply Quote 0
            • J
              jdrassa
              last edited by

              @a12c4 said in EmulationStation Grid View v1 ready for wider testing:

              @jdrassa Define "first needed".
              Yes I explored instantiating the TextureResource while navigating in the grid and it gave really poor results, with huge fps drops.

              Not entirely sure. My first thought was to load only the textures needed to fill the grid tiles and then load more as they are needed, maybe with some sort of predictive loading ahead based on scroll direction/speed. I assume that is along the lines of what you already tried.

              After thinking about it further, it may be that the check for for file existence that happens before loading the texture may be contributing to the delay. I know that the auto-discovery of images was disabled on the stable branch due to the delay checking for the image existence was causing.

              Get latest build of EmulationStation for Windows here

              A12C4A 1 Reply Last reply Reply Quote 0
              • A12C4A
                A12C4 @jdrassa
                last edited by A12C4

                @jdrassa Sorry for the late answer, I had some troubles with my computer that I needed to fix first.

                So, after taking a look with callgrind, it look like the check for file existence have nearly no cost compared on the TextureResource instantiation. (btw if you have a better method than using callgrind to profile C++ code, I'm interested, as it's far from perfect and I would like to focus on the grid optimization along with debug in the next weeks).

                I think we have 2 bottlenecks here : the TextureRessource instantiation and the TextureData loading.

                The 2nd one can be easily delayed by loading only texturedata for the selected system instead of all system at the same time. This is actually something that I had already made in the first version of the "dynamic image loader" feature but didn't reimplemented when I restarted the final version from scratch.

                I think this should help a lot here : Since the modified carbon theme that I shared display 15 grid tiles per system, this mean ES will load up to 15 texture per system (ofc it will load only 2 if you have only 2 games for a system), so if you have let's say a 30 system game collection, ES will load up to 15*30=450 texture at the same time, thus hanging a little bit ... With that modification, ES will only load the texture for the selected system, so if you change system using left/right shoulder button, it will take a little more time to load, but it should completely solve our problem with big game collections.

                Grid view wiki

                1 Reply Last reply Reply Quote 0
                • ruckageR
                  ruckage @jdrassa
                  last edited by

                  @jdrassa

                  Hi, is there an up to date version for windows that matches the raspberry pi as the version currently on your continuous build doesn't seem to be working correctly, setting the grid to <scrollDirection>horizontal</scrollDirection> results in no grid being displayed and if you try to activate grid through the menu or change the theme ES crashes.

                  Thanks in advance for your help.

                  SNES mini/Nes mini/Famicom mini theme developer.

                  If you'd like to support my work you can donate here: Donate

                  A12C4A 1 Reply Last reply Reply Quote 0
                  • A12C4A
                    A12C4 @ruckage
                    last edited by A12C4

                    @ruckage Hi, I'm aware of this 2 issues and working on a fix for both of them. This is taking a bit longer than expected, as I said in the comment right above yours. Once both fixes are released, jrassa should come with a new version anytime soon. Thanks for your patience.

                    Grid view wiki

                    ruckageR 1 Reply Last reply Reply Quote 0
                    • ruckageR
                      ruckage @A12C4
                      last edited by

                      @a12c4
                      No problem, thanks for the reply and for your continued work. I've been working on some mock-ups for the grid that I'll be adding to my themes you can see them here if you're interested.

                      Thanks again.

                      SNES mini/Nes mini/Famicom mini theme developer.

                      If you'd like to support my work you can donate here: Donate

                      1 Reply Last reply Reply Quote 0
                      • lilbudL
                        lilbud
                        last edited by

                        Hmmm....
                        0_1528150970178_3a98da4f-b337-42f3-9420-3507ee727478-image.png

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

                        Backlog: http://backloggery.com/lilbud

                        A12C4A 1 Reply Last reply Reply Quote 0
                        • A12C4A
                          A12C4 @lilbud
                          last edited by

                          @lilbud Can you give some context to this image ? Are you reporting a bug or do you just want to show your last creation ?

                          Grid view wiki

                          lilbudL 1 Reply Last reply Reply Quote 0
                          • lilbudL
                            lilbud @A12C4
                            last edited by

                            @a12c4 yes

                            Showing off a mockup I've been working on

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

                            Backlog: http://backloggery.com/lilbud

                            E 1 Reply Last reply Reply Quote 0
                            • E
                              EctoOne @lilbud
                              last edited by

                              @lilbud do you even need grid view for that? I mean it's just a single image above an frame with some Metadata. You can do that in detailed view.

                              lilbudL 1 Reply Last reply Reply Quote 0
                              • lilbudL
                                lilbud @EctoOne
                                last edited by

                                @ectoone Like I said, just the result of me screwing around in photoshop. I just wanted to see what different views looked like.

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

                                Backlog: http://backloggery.com/lilbud

                                E 1 Reply Last reply Reply Quote 0
                                • E
                                  EctoOne @lilbud
                                  last edited by

                                  @lilbud Yeah sure, asking for feedback is fine but I don't understand why you posted it here with no context.
                                  I thought that you wanted to use grid view to show only one image. Which makes no sense to me, because it can be done without grid view. Also I find it has even less accessibility then my suggestion to have an opinion to fix the selector on one side (I posted an image of that in one of the other threads).
                                  Also it would be OK if you had posted more images of the different views, but then I would still ask myself: why is that here?

                                  lilbudL 1 Reply Last reply Reply Quote 0
                                  • lilbudL
                                    lilbud @EctoOne
                                    last edited by

                                    @ectoone I guess I thought it belonged here on the grid view discussion. Disregard it

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

                                    Backlog: http://backloggery.com/lilbud

                                    1 Reply Last reply Reply Quote 0
                                    • A12C4A
                                      A12C4
                                      last edited by

                                      @ruckage @lilbud @EctoOne I fixed a bug which caused the padding of the grid tile to be 2 times smaller than it should be. I wanted you to know it will be in next release in case you already started to build your theme.

                                      The 2 other fixes (for horizontal grid position bug and enabling the grid crash) should also come soon.

                                      Grid view wiki

                                      E ruckageR 2 Replies Last reply Reply Quote 1
                                      • E
                                        EctoOne @A12C4
                                        last edited by

                                        @a12c4 Sounds good, I just build the latest dev version to test the changes on logoText and it works fine. Then I noticed that I have to finally work on my grid positions. Hopefully I can manage to get it to look good.

                                        1 Reply Last reply Reply Quote 0
                                        • A12C4A
                                          A12C4
                                          last edited by

                                          Are you ok @jdrassa ? You look a bit overwhelmed by all the ongoing changes on EmulationStation

                                          Grid view wiki

                                          J 1 Reply Last reply Reply Quote 0
                                          • J
                                            jdrassa @A12C4
                                            last edited by

                                            @a12c4 I'm good. Just have a lot going on so I haven't been able to comment as much.

                                            Get latest build of EmulationStation for Windows here

                                            A12C4A 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.