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

    runcommand launching images for ANY theme

    Scheduled Pinned Locked Moved Projects and Themes
    runcommandlaunching imagesplashscreenscript
    222 Posts 40 Posters 172.5k 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.
    • meleuM
      meleu @backstander
      last edited by meleu

      @backstander said in runcommand launching images for ANY theme:

      @meleu
      You should make an option for JPEG or PNG but default to JPEG.

      I've put it in my TO-DO list already. ;-)

      The tronkyfran generated images have their file size very reduced when they're JPEG, with no significant loss of quality. But the material theme ones look very ugly when JPEG. I'll leave the .PNG for now and add that option later.

      You should just have your script look for <theme> in es_systems.cfg for each system and if that directory exist in /etc/emulationstation/themes/<theme name> then use that for that system's runcommand launch picture.

      The script already do this way. It gets all the installed systems' names from es_systems.cfg -> <systemList> <system> <name> (in this part of the code) and then gets the system's theme from <systemList> <system> <theme> (in this part of code).

      • Useful topics
      • joystick-selection tool
      • rpie-art tool
      • achievements I made
      B 1 Reply Last reply Reply Quote 1
      • B
        backstander @meleu
        last edited by backstander

        @meleu

        The script already do this way.

        So I should be able to use Genesis instead of Megadrive if my <theme> is set to "genesis" and the same with TG16 vs PC Engine?

        I ran your script the other day (Jan 10th) on a ES theme and all my "Genesis" games load with a "Megadrive" runcommand picture. Also my "TG16" games loaded a "PC Engine" runcommand picture.

        And why did they have to call the US version of game systems a different name then the rest of the world? ;-)

        meleuM 1 Reply Last reply Reply Quote 0
        • meleuM
          meleu @backstander
          last edited by meleu

          @backstander Here is the megadrive part of my /etc/emulationstation/es_systems.cfg:

            <system>
              <name>megadrive</name>
              <fullname>Sega Mega Drive</fullname>
              <path>/home/meleu/RetroPie/roms/megadrive</path>
              <extension>.smd .bin .gen .md .sg .zip .SMD .BIN .GEN .MD .SG .ZIP</extension>
              <command>/opt/retropie/supplementary/runcommand/runcommand.sh 0 _SYS_ megadrive %ROM%</command>
              <platform>megadrive</platform>
              <theme>megadrive</theme>
            </system>
          

          Here is the resulting image for carbon theme:
          0_1484255547590_launching.png

          And then I changed the <theme> to genesis:

          ...
              <platform>megadrive</platform>
              <theme>genesis</theme>
          ...
          

          And here is the resulting image:
          0_1484255501783_launching.png

          I'm not sure what's wrong on your side... is your es_systems.cfg in /etc/emulationstation or in ~/.emulationstation?

          • Useful topics
          • joystick-selection tool
          • rpie-art tool
          • achievements I made
          B 1 Reply Last reply Reply Quote 1
          • B
            backstander @meleu
            last edited by

            @meleu
            oh yeah...my es_systems.cfg it's in /opt/retropie/configs/all/emulationstation/
            I was told it should be placed there so it doesn't get over-written by updates to RetroPie.

            meleuM 1 Reply Last reply Reply Quote 0
            • meleuM
              meleu @backstander
              last edited by meleu

              @backstander
              good point. I'll sort it in the script, hold on...

              BTW: ~/.emulationstation is a symbolic link to /opt/retropie/configs/all/emulationstation/.

              • Useful topics
              • joystick-selection tool
              • rpie-art tool
              • achievements I made
              1 Reply Last reply Reply Quote 1
              • meleuM
                meleu
                last edited by

                @backstander done! Can you update and test it again?

                • Useful topics
                • joystick-selection tool
                • rpie-art tool
                • achievements I made
                B 2 Replies Last reply Reply Quote 1
                • C
                  Concat
                  last edited by

                  Good work!

                  I have to update runcommand, yes? I am on 3.8, though I have updated Retropie Setup. Am I going to break something?
                  What's this about moving es_systems.cfg ? I swear mine isn't in /opt/retropie/configs/all/emulationstation/ . . .

                  B meleuM 2 Replies Last reply Reply Quote 0
                  • B
                    backstander @meleu
                    last edited by

                    Thanks @meleu! I'll test it when I get home this evening.

                    1 Reply Last reply Reply Quote 0
                    • B
                      backstander @Concat
                      last edited by backstander

                      @Concat

                      What's this about moving es_systems.cfg ? I swear mine isn't in /opt/retropie/configs/all/emulationstation/ . . .

                      Check out this link:
                      https://github.com/retropie/retropie-setup/wiki/EmulationStation#my-es_sytemscfg-is-being-overwritten-on-updates

                      I probably should be using ~/.emulationstation/ instead of /opt/retropie/configs/all/emulationstation/

                      1 Reply Last reply Reply Quote 1
                      • meleuM
                        meleu @Concat
                        last edited by meleu

                        @Concat said in runcommand launching images for ANY theme:

                        I have to update runcommand, yes? I am on 3.8, though I have updated Retropie Setup. Am I going to break something?

                        When you execute retropie_setup, what version is shown on the top? It must be 4.0.3 or higher.

                        What's this about moving es_systems.cfg ?

                        It's unnecessary to make the script work.

                        • Useful topics
                        • joystick-selection tool
                        • rpie-art tool
                        • achievements I made
                        1 Reply Last reply Reply Quote 0
                        • C
                          Concat
                          last edited by

                          Yeah I didn't realize that updating Setup also updates Runcommand :P I just never updated all packages cause I haven't seen a need... yet. Just the emulators have been updated when I hear of some improvements, like mupen64plus.

                          Anyway, I looked through your code and quickly realized it won't work for me because I edited theme.xml to change system.svg to one I prefer. Running this script will use logos that conflict with what I have in ES...

                          I suppose I can just add the affected systems to your "if" statements and point to the correct logo. Easier than making custom images for sure!

                          meleuM 1 Reply Last reply Reply Quote 0
                          • meleuM
                            meleu @Concat
                            last edited by

                            @Concat can you show me a tweaked theme.xml as an example?

                            • Useful topics
                            • joystick-selection tool
                            • rpie-art tool
                            • achievements I made
                            C 1 Reply Last reply Reply Quote 0
                            • B
                              backstander @meleu
                              last edited by

                              @meleu

                              done! Can you update and test it again?

                              Okay so both ~/.emulationstation/es_systems.cfg and /opt/retropie/configs/all/emulationstation/es_systems.cfg are the same with the custom <theme> has "genesis" & "tg16" and /etc/emulationstation/es_systems.cfg has the defaults "megadrive" & "pcengine".

                              I updated script and ran it but the runcommand pictures are Megadrive & PC Engine still :`(

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

                                @meleu said

                                UPDATE: the material theme got promoted to the cool examples.

                                0_1484272470697_upload-59988144-b515-4985-a0d0-bcce392370af

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

                                Backlog: http://backloggery.com/lilbud

                                1 Reply Last reply Reply Quote 1
                                • C
                                  Concat @meleu
                                  last edited by

                                  @meleu said in runcommand launching images for ANY theme:

                                  @Concat can you show me a tweaked theme.xml as an example?

                                  In my /etc/emulationstation/themes/carbon/pc/theme.xml: http://pastebin.com/gyfk0WYr

                                  You'll see I modified it to include a .PNG image instead of system.svg. Not saying you need to accommodate this hooligan behaviour :P

                                  Just saying for me to use your script I need to modify it so it pulls the correct logo for each system.

                                  meleuM 2 Replies Last reply Reply Quote 0
                                  • T
                                    tronkyfran @meleu
                                    last edited by

                                    @meleu ok with that crop ;)

                                    1 Reply Last reply Reply Quote 1
                                    • meleuM
                                      meleu @backstander
                                      last edited by

                                      @backstander said in runcommand launching images for ANY theme:

                                      I updated script and ran it but the runcommand pictures are Megadrive & PC Engine still :`(

                                      Man, I tested it on my end before posting that and it worked as expect (generated an image with the "genesis" logo). Can you show me your es_systems.cfg so I can see what's going wrong?

                                      • Useful topics
                                      • joystick-selection tool
                                      • rpie-art tool
                                      • achievements I made
                                      B 1 Reply Last reply Reply Quote 0
                                      • meleuM
                                        meleu @Concat
                                        last edited by

                                        @Concat said in runcommand launching images for ANY theme:

                                        You'll see I modified it to include a .PNG image instead of system.svg.

                                        Did you get some error when ran the script? I think it can deal with .png logos...

                                        • Useful topics
                                        • joystick-selection tool
                                        • rpie-art tool
                                        • achievements I made
                                        1 Reply Last reply Reply Quote 0
                                        • meleuM
                                          meleu @Concat
                                          last edited by

                                          @Concat I've tested here and I'm pretty sure my script can deal with .png logo files. But due to the black letters your PC logo doesn't look fine with carbon background :-(

                                          0_1484305905308_launching.png

                                          • Useful topics
                                          • joystick-selection tool
                                          • rpie-art tool
                                          • achievements I made
                                          1 Reply Last reply Reply Quote 0
                                          • C
                                            Concat
                                            last edited by

                                            Hmm sorry man, I checked again and maybe I was looking at your old script...? I could sworn I saw a line that was grabbing system.svg....

                                            Anyway, great work! And yeah, I know about the black on black issue. It needs an outline I suppose

                                            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.