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

    [Theme] gameOS for Pegasus

    Scheduled Pinned Locked Moved Projects and Themes
    cleangameospegasusthemetvos
    180 Posts 34 Posters 73.7k 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.
    • B
      bedgo
      last edited by

      @PlayingKarrde Done.
      I would like to discuss another topic - the aspect ratio of pictures and videos. Now it is somewhere about 16:9 or wider. However, the old systems, game consoles included, had typical 4:3 aspect ratio, not to mention box-art pictures, which are more like a portrait than a landscape.
      As usual, I have a mod for it, which changes the aspect ratio to 4:3, along with other minor changes of proper grid item movement. Because it is not a bug (except the item movement), I do not commit the change unless you say you want it. I can tell you, it looks good, but I know it's a matter of taste.. ;c)

      PlayingKarrdeP 1 Reply Last reply Reply Quote 0
      • PlayingKarrdeP
        PlayingKarrde @bedgo
        last edited by

        @bedgo Would you be able to post a screenshot? I went for the aspect ratio I did for a reason but in hindsight you're right that 4:3 is more common for most games. It might be better to check the aspect ratio of the first image in the set then either show a 4:3 grid or 16:9 based on that. That's more work obviously but I think something I would likely lean towards getting to eventually.

        1 Reply Last reply Reply Quote 0
        • B
          bedgo
          last edited by

          Here you are, items with 4:3 aspect ratio:

          pegasus-4to3-ratio.png

          It fits in 2 and a half rows when using standard monitor 16:9 ratio. I also shrank the height of GameDetails from 200 to 160 px.

          PlayingKarrdeP 1 Reply Last reply Reply Quote 0
          • PlayingKarrdeP
            PlayingKarrde @bedgo
            last edited by

            @bedgo Thanks for showing me the screenshot.

            I think I would like to hold off on this change for now. There are some other updates I want to do that would conflict/tie in such an update so would prefer to keep it as is for now.

            1 Reply Last reply Reply Quote 0
            • B
              bedgo
              last edited by

              @PlayingKarrde Of course, no problem, I personally like even denser layout: 4:3 items with 5 columns, but that's really everyone's own preference. I think I am finished with updating gameOS theme for now. There's little to improve/fix at the moment. Maybe the last one thing: I have locally set "preferredHighlightEnd" to "vpx(parent.bottom)" in GameGrid.qml to ensure the grid items are being selected anywhere in the visible area of the grid-view; not like it is now, where only fist 2 rows are selectable.
              ~(:c)=

              PlayingKarrdeP 1 Reply Last reply Reply Quote 0
              • PlayingKarrdeP
                PlayingKarrde @bedgo
                last edited by PlayingKarrde

                @bedgo Ah fair enough. I didn't want to do that as I like having the next line down visible before selecting something, but to each their own.

                Oh and thanks for all the updates also. You've definitely helped fix a lot of things I didn't have time for. Hopefully I'll get some time in the near future to add some new features also. My internal list is still pretty long for what I want to do.

                1 Reply Last reply Reply Quote 0
                • F
                  fastpop72
                  last edited by

                  Just to share with you my bartop project with this cool theme!!!

                  PlayingKarrdeP 1 Reply Last reply Reply Quote 1
                  • PlayingKarrdeP
                    PlayingKarrde @fastpop72
                    last edited by

                    @fastpop72 awesome! Thanks for sharing!

                    1 Reply Last reply Reply Quote 0
                    • M
                      Magma
                      last edited by

                      I really like the look of this theme. Unfortunately the menu is extremely laggy. Currently I have every SNES NES and Genesis game and the menus are very sluggish on a Raspberry Pi 3B+ which is a real shame.

                      1 Reply Last reply Reply Quote 0
                      • K
                        KryPtAlIvIaN
                        last edited by

                        I've got GameOS running on a pi zero, but am having issues with it playing videos under the theme. Audio can be heard, but the screen is black. I did notice that if you delete the videos it speeds everything up.

                        Is there a way to remove video playback from main screen when you are focused on a single game? If possible, I'd like to only allow it when you select preview in the menu that you launch the game in. What would need tweaked for that?

                        1 Reply Last reply Reply Quote 0
                        • PlayingKarrdeP
                          PlayingKarrde
                          last edited by

                          There's a real issue with videos in general that I believed was a Pegasus problem (and I still believe at the root it is still potentially) but someone did mention a fix that I will need to implement when I get around to it. I've been so incredibly low on time lately that I haven't had a chance to get to any of the myriad of fixes I want to implement. Video playback performance is easily my most critical fix though.

                          In terms of disabling video, I ideally would like to implement an options screen for the theme but again - time. Failing that I believe what you're looking for likely lies in GameGridItem.qml around lines 171-206:

                              // Video preview
                              Component {
                                id: videoPreviewWrapper
                                Video {
                                  source: game.assets.videos.length ? game.assets.videos[0] : ""
                                  anchors.fill: parent
                                  fillMode: VideoOutput.PreserveAspectCrop
                                  muted: true
                                  loops: MediaPlayer.Infinite
                                  autoPlay: true
                                }
                          
                              }
                          
                              Loader {
                                id: videoPreviewLoader
                                asynchronous: true
                                anchors {
                                  fill: parent
                                  margins: vpx(4)
                                }
                                layer.enabled: true
                                layer.effect: OpacityMask {
                                    maskSource: Item {
                                        width: videoPreviewLoader.width
                                        height: videoPreviewLoader.height
                                        Rectangle {
                                            anchors.centerIn: parent
                                            width: videoPreviewLoader.width
                                            height: videoPreviewLoader.height
                                            radius: cornerradius - vpx(1)
                                        }
                                    }
                                }
                                //z: 3
                              }
                          
                          

                          I don't have time to test but try commenting out these sections (or deleting).

                          1 Reply Last reply Reply Quote 0
                          • T
                            tobeyg
                            last edited by

                            I'm having strange flickering issues when clicking on a game in the grid. The modal with the game info is not showing and everything is flashing and basically breaks the whole interface, requiring a restart. The original Pegasus theme works fine, so this issue seems to be with gameOS. The strange thing is that I tried using the theme on another setup just a week ago and didn't notice any of these issues then. Any idea what might be causing this?

                            PlayingKarrdeP 1 Reply Last reply Reply Quote 0
                            • PlayingKarrdeP
                              PlayingKarrde @tobeyg
                              last edited by

                              @tobeyg said in [Theme] gameOS for Pegasus:

                              I'm having strange flickering issues when clicking on a game in the grid. The modal with the game info is not showing and everything is flashing and basically breaks the whole interface, requiring a restart. The original Pegasus theme works fine, so this issue seems to be with gameOS. The strange thing is that I tried using the theme on another setup just a week ago and didn't notice any of these issues then. Any idea what might be causing this?

                              What system are you trying this on? I also sometimes get behavior similar to this when running through an arcadevga or on 240p resolution on a CRT. Are you doing something similar? I haven't found a fix for this yet.

                              1 Reply Last reply Reply Quote 0
                              • R
                                ryuuji
                                last edited by

                                any progress regarding the use of box art in grid menu ?

                                PlayingKarrdeP 1 Reply Last reply Reply Quote 0
                                • PlayingKarrdeP
                                  PlayingKarrde @ryuuji
                                  last edited by

                                  @ryuuji said in [Theme] gameOS for Pegasus:

                                  any progress regarding the use of box art in grid menu ?

                                  Some progress but it's going to take a while as I need to implement the settings screen first which isn't a small amount of work. Even once that's in it's still not super trivial as it's not just replacing the art with boxfront. Regardless though I'm working on it and hopefully it will make it into the next big update.

                                  R 1 Reply Last reply Reply Quote 0
                                  • R
                                    ryuuji @PlayingKarrde
                                    last edited by

                                    @PlayingKarrde oh .... yes that sounds like a lot of work. I was thinking u gonna just editt the current qml and replace the sshot with box art. Much nicer what you have chosen to do.

                                    PlayingKarrdeP 1 Reply Last reply Reply Quote 0
                                    • PlayingKarrdeP
                                      PlayingKarrde @ryuuji
                                      last edited by

                                      @ryuuji said in [Theme] gameOS for Pegasus:

                                      @PlayingKarrde oh .... yes that sounds like a lot of work. I was thinking u gonna just editt the current qml and replace the sshot with box art. Much nicer what you have chosen to do.

                                      When I initially mentioned I could do it that's what I had planned on doing, but when I started looking into it I didn't feel like that would give a good enough result so I would rather do it properly.

                                      1 Reply Last reply Reply Quote 2
                                      • S
                                        simbz23
                                        last edited by

                                        Hey Y'all.

                                        I am having a tough time trying to figure out how to convert my Retropie EmulationStation setup to work with Pegasus and gameos, especially in regards to my gamelist and scraped artwork showing. Does anyone know of somewhere I can find, or can post a non-rom filled image of a pi3 or zero install, with everything already configured as far the gamelists and artwork in the right place so I can learn from there? I have read as many guides as I could and still can't figure out where I'm going wrong? :-/

                                        Much appreciated for any help!

                                        Overlay and launching image repo
                                        https://github.com/simbz33/retropie-overlay

                                        PlayingKarrdeP 1 Reply Last reply Reply Quote 0
                                        • PlayingKarrdeP
                                          PlayingKarrde @simbz23
                                          last edited by

                                          @simbz23 Does it work ok with the default theme? Can you post a photo of what you're getting?

                                          1 Reply Last reply Reply Quote 0
                                          • B
                                            bradman117
                                            last edited by

                                            I really like how the artwork looks on the games. Is there any way I can make my end look like that? Thanks

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