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

    Grid Updates - emulationstation-dev

    Scheduled Pinned Locked Moved Ideas and Development
    developmentgrid viewexperimentalemulationstatio
    89 Posts 13 Posters 25.4k 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.
    • paffleyP
      paffley
      last edited by

      @jdrassa thank you that's super! let me know when you've looked at adding it and I will be happy to run some tests! :)

      1 Reply Last reply Reply Quote 0
      • paffleyP
        paffley
        last edited by

        @jdrassa I'm just thinking...

        How would the <backgroundImage> tag work when using the <animate> tag?

        I mean, if you look at the system carousel for instance and I'm guessing that's what you've got your inspiration from with the animate event, how would that work with a gridtile default and selected background?

        Does that make sense? haha :P

        Cheers,

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

          @jdrassa could you add sound support for moving the cursor and launching a game in gridvew?

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

            @paffley I would need to verify, but I believe the background images will be swapped at the end of the animation loop.

            @sergioad themeable sound support is something that is lacking in general in ES. It is on my backlog/wishlist, but I don't know if/when I will get to it.

            Get latest build of EmulationStation for Windows here

            sergioadS 1 Reply Last reply Reply Quote 0
            • paffleyP
              paffley
              last edited by

              @jdrassa that's brilliant thank you! :)

              1 Reply Last reply Reply Quote 0
              • sergioadS
                sergioad @jdrassa
                last edited by

                @jdrassa ok, thank you very much

                1 Reply Last reply Reply Quote 0
                • paffleyP
                  paffley
                  last edited by

                  Hi @jdrassa quick question...

                  With the <centerSelection> set to true, would that mean, on first load, the last boxart/game would be displayed to the left of the 1st centered boxart/game?

                  Does that make sense?

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

                    @paffley It would not. Say you had your grid configured with 1 row and 5 columns. On first load, there would only be 3 grid items displayed, the center selected one and 2 more to the right.

                            [1] [2] [3]
                    

                    However, there is an additionaly option, scrollLoop, that works with centerSelection. This will create a seemless never ending loop and will on first load display the last grid item(s) to the left of the centered selected item.

                    [n-1] [n] [1] [2] [3]
                    

                    Get latest build of EmulationStation for Windows here

                    paffleyP 1 Reply Last reply Reply Quote 0
                    • paffleyP
                      paffley @jdrassa
                      last edited by

                      @jdrassa said in Grid Updates - emulationstation-dev:

                      @paffley It would not. Say you had your grid configured with 1 row and 5 columns. On first load, there would only be 3 grid items displayed, the center selected one and 2 more to the right.

                              [1] [2] [3]
                      

                      However, there is an additionaly option, scrollLoop, that works with centerSelection. This will create a seemless never ending loop and will on first load display the last grid item(s) to the left of the centered selected item.

                      [n-1] [n] [1] [2] [3]
                      

                      Absolutly brilliant @jdrassa love it! The scrollLoop is a fantastic addition! looking forward to testing these, do you have a timeframe on when these will be added to es-dev? no worries if not, I totally understand the dev side.

                      1 Reply Last reply Reply Quote 0
                      • paffleyP
                        paffley
                        last edited by paffley

                        Hi @jdrassa just updated es-dev and I see you've made some updates.

                        I have added the below to my theme and all seems to work great:

                        <imagegrid name="gamegrid">
                        	<centerSelection>true</centerSelection>
                        	<scrollLoop>true</scrollLoop>
                        	<pos>0.00375 0.20765</pos>
                        	<size>1.0 0.527</size>
                        	<margin>0.00368 0.00368</margin>
                        	<scrollDirection>horizontal</scrollDirection>
                        </imagegrid>
                        

                        The only issue im having now is that it is not picking up the <backgroundImage> tag in the default or selected grid section.

                        This is what my section looks like:

                        <view name="grid">
                        
                        <imagegrid name="gamegrid">
                        	<centerSelection>true</centerSelection>
                        	<scrollLoop>true</scrollLoop>
                        	<pos>0.00375 0.20765</pos>
                        	<size>1.0 0.527</size>
                        	<margin>0.00368 0.00368</margin>
                        	<scrollDirection>horizontal</scrollDirection>
                        </imagegrid>
                        
                        <gridtile name="default">
                        	<imageColor>ffffff</imageColor>
                        	<size>0.195577 0.527</size>
                        	<padding>16.0 90.5</padding>
                        	<backgroundColor>ffffff</backgroundColor>
                        	<backgroundImage>./_inc/images/select.png</backgroundImage>
                        </gridtile>
                        
                        <gridtile name="selected">
                        	<size>0.1957 0.527</size>
                        	<backgroundColor>ffffff</backgroundColor>
                        	<backgroundImage>./_inc/images/selected.png</backgroundImage>
                        </gridtile>
                        
                        </view>
                        

                        In fact, I don't think its picking up any of the settings in the gridtile default and selected. Hope this helps.

                        J 1 Reply Last reply Reply Quote 0
                        • paffleyP
                          paffley
                          last edited by paffley

                          @jdrassa in theory majority of the new updates you are doing could be adapted within the <imagegrid> tag and make the <gridtile> tags redundant? is that your thinking or plan?

                          The majority of your updates make the <gridtile> tags unnecessary imo.

                          1 Reply Last reply Reply Quote 0
                          • paffleyP
                            paffley
                            last edited by paffley

                            Just been having another play with it and this thing is looking awesome! I know this is a WIP so keep up the great work @jdrassa looking forward to running some more tests :)

                            screenshot-name.png

                            The animation is great and also the loop feature! The boxart that is highlighted in the above image is the one selected and if you press left on the controller it selects the left hand one then keeps going left. So basically it selects 2 - the right one for going right and the left one for going left. (If that all makes sense)

                            @ruckage you may want to watch this post also ;)

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

                              @paffley Would you mind posting the selected image you are trying to use?

                              Get latest build of EmulationStation for Windows here

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

                                @paffley said in Grid Updates - emulationstation-dev:

                                In fact, I don't think its picking up any of the settings in the gridtile default and selected. Hope this helps.

                                There is a bug in the assignment of the gridtile properties. I am preparing a PR and it should be merged within the next day or two.

                                @paffley said in Grid Updates - emulationstation-dev:

                                @jdrassa in theory majority of the new updates you are doing could be adapted within the <imagegrid> tag and make the <gridtile> tags redundant? is that your thinking or plan?
                                The majority of your updates make the <gridtile> tags unnecessary imo.

                                Some of the new options like autoLayout and autoLayoutSelectedZoom simplify the need to set specific sizes, but there are no plans to remove <gridtile>

                                Get latest build of EmulationStation for Windows here

                                paffleyP 1 Reply Last reply Reply Quote 0
                                • sergioadS
                                  sergioad
                                  last edited by

                                  @jdrassa could / might you restore the slide minimal transitions to ES? Some time ago it was added but then deprecated and was my favorite transitions, it animated the game lists when you switch system not leaving the gamelists and when launching a game and the transition from the carrousel to the gamelists but it did not animated the carrousel background (not the carrousel itself), it was elegant and perfect for themes like NES mini, SNES mini, Switch and many other themes

                                  sergioadS 1 Reply Last reply Reply Quote 0
                                  • paffleyP
                                    paffley @jdrassa
                                    last edited by paffley

                                    @jdrassa said in Grid Updates - emulationstation-dev:

                                    There is a bug in the assignment of the gridtile properties. I am preparing a PR and it should be merged within the next day or two.

                                    Thank you :) I'll keep an eye out and run some more tests.

                                    Do you still need the selected image from your post above?

                                    The autoLayout and autoLayoutSelectedZoom are great additions and will make life a lot easier for boxart. I had a previous discussion with @ruckage about this on one of this themes (regarding specific grid sizes for specific systems etc for boxart for the end-user - this solves that issue).

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

                                      @paffley The fix should now be in emulationstaiton-dev.

                                      Get latest build of EmulationStation for Windows here

                                      paffleyP 1 Reply Last reply Reply Quote 0
                                      • paffleyP
                                        paffley @jdrassa
                                        last edited by

                                        @jdrassa said in Grid Updates - emulationstation-dev:

                                        @paffley The fix should now be in emulationstaiton-dev.

                                        Perfect - all working great Thanks @jdrassa

                                        This has changed the game completely for the grid view! All possibilities now!

                                        1 Reply Last reply Reply Quote 0
                                        • paffleyP
                                          paffley
                                          last edited by

                                          Found a bug @jdrassa

                                          <animate> tag does not work with either

                                          <animate>true</animate>
                                          

                                          or

                                          <animate>false</animate>
                                          

                                          It crashes the theme when inputted into the <imagegrid> section.

                                          Hope this helps.

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

                                            @paffley This should be fixed now. animate got left of the list of supported theme elements.

                                            Get latest build of EmulationStation for Windows here

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