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

[Theme] Art Book

Scheduled Pinned Locked Moved Projects and Themes
themethemesthemes with vidtheming
384 Posts 72 Posters 229.3k 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.
  • A
    ande.rocha Banned
    last edited by ande.rocha 26 Apr 2019, 13:07

    Hello everyone, everything good?
    I found some images of consoles and thought about using this theme as a selection of systems, however when I applied, I noticed that there is a certain limitation of width and height for image ... could anyone help me to adjust so that it is possible to use the images in attachment?

    Images: https://imgur.com/a/pVs08Nc

    A 1 Reply Last reply 9 May 2019, 14:38 Reply Quote 0
    • A
      ande.rocha Banned @ande.rocha
      last edited by 9 May 2019, 14:38

      @alphatoanant could you help me?

      1 Reply Last reply Reply Quote 0
      • F
        flaviometal @EvilDindon
        last edited by 23 Sept 2019, 22:19

        @EvilDindon , where do I go to change this underline color to red? Also, do you know where to go to make that "XXX GAMES AVAILABLE" font bigger? I'm using Retropie on a old CRT TV, and that text its too small to read. Thanks!

        1 Reply Last reply Reply Quote 0
        • W
          wwsnkneo
          last edited by 20 Oct 2019, 22:01

          It's me or sometimes the ratings don't show correctly? I'm using the theme with Retroarch and emulationstation.

          1 Reply Last reply Reply Quote 0
          • S
            Spheronaut
            last edited by 17 Apr 2020, 19:39

            @alphatoanant I read how i can change the background for the System view, but I would like to add an individual background for every system. Thanks for your help!

            A 1 Reply Last reply 19 Apr 2020, 14:02 Reply Quote 0
            • A
              alphatoanant @Spheronaut
              last edited by 19 Apr 2020, 14:02

              Hi @Spheronaut, in the theme.xml at the root there is a section like this...

              <feature supported="carousel">
                    <view name="system">
                       <carousel name="systemcarousel">
                          <type>horizontal</type>
                          <color>14141400</color>
                          <logoScale>1.9</logoScale>
                          <logoSize>0.15625 0.097222222222222</logoSize>
                       </carousel>
                       <text name="systemInfo">
                          <backgroundColor>14141400</backgroundColor>
                          <color>666666</color>
                          <fontPath>./_inc/fonts/Cabin-Bold.ttf</fontPath>
                          <fontSize>0.0222222222222222</fontSize>
                       </text>
                       <image name="system-border" extra="true">
                          <origin>0.5 0</origin>
                          <pos>0.5 0.62</pos>
                          <size>0.25 0.0027777777777778</size>
                          <path>./_inc/images/space.png</path>
                          <color>444444</color>
                       </image>
                       <text name="logoText">
                          <fontPath>./_inc/fonts/ChangaOne-Italic.ttf</fontPath>
                          <color>cccccc</color>
                          <forceUppercase>true</forceUppercase>
                       </text>
                       <!--<image name="artwork" extra="true">
                          <origin>0.5 0.5</origin>
                          <pos>0.5 0.5</pos>
                          <size>0.3 0</size>
                          <path>./${system.theme}/_inc/art.svg</path>
                       </image>-->
                    </view>
                 </feature>
              

              See the commented out portion - <image name="artwork">?

              <image name="artwork" extra="true">
               <origin>0.5 0.5</origin>
               <pos>0.5 0.5</pos>
               <size>0.3 0</size>
               <path>./${system.theme}/_inc/art.svg</path>
              </image>
              

              That's where I am experimenting with adding system art on the carousel in system view. You may be able to adapt that to your needs by changing the pos, origin and size properties to fit your artwork design.

              Also check out the path property - see how it has the variable ${system.theme} in it? That variable allows you to make this change in one place in theme.xml and then add your artwork in the corresponding system theme folder (emulation station will handle the mapping automatically). For example if its artwork for NES emulation station will see ./${system.theme}/_inc/art.svg and map it behind the scenes to ./nes/_inc/art.svg. So keep that variable in place and then add your artwork to the corresponding system folder.

              Let me know if this helps!

              My RetroPie Themes:
              Art Book https://github.com/anthonycaccese/es-theme-art-book
              Art Book Next https://github.com/anthonycaccese/art-book-next-retropie
              TFT https://github.com/anthonycaccese/es-theme-tft

              S 2 Replies Last reply 19 Apr 2020, 19:43 Reply Quote 1
              • S
                Spheronaut @alphatoanant
                last edited by 19 Apr 2020, 19:43

                @alphatoanant Thanks for that amazingly fast help! I already tried to get it done by adding a new "background command" to the theme.xml (in each system). That worked but also changed the background in the detailed view/gamelist to that background instead of the blank grey background.

                I will try your solution and give you feedback.
                Does your way also change the background in the detail view (gamelist) or really just the background for each system/collection in the carousel? (I'm really new to this. Thanks for your time and for this amazing theme you did!)

                1 Reply Last reply Reply Quote 0
                • S
                  Spheronaut @alphatoanant
                  last edited by 20 Apr 2020, 17:07

                  @alphatoanant Your solution worked well for me.
                  Can you also tell me which part of the code I need to tweak to set an individual background to the gamelist? (the screen after a player chose the system/collection)

                  If you are interested I share some pics of my modified theme later.

                  A 1 Reply Last reply 22 Apr 2020, 21:30 Reply Quote 0
                  • A
                    alphatoanant @Spheronaut
                    last edited by 22 Apr 2020, 21:30

                    @Spheronaut to add custom background images to basic/detail/video view check out this section of theme.xml

                    <view name="system,basic,detailed,video">
                          <helpsystem name="help">
                             <pos>1 1</pos>
                          </helpsystem>
                          <image name="background" extra="true">
                             <tile>true</tile>
                             <origin>0 0</origin>
                             <pos>0 0</pos>
                             <size>1 1</size>
                             <path>./_inc/images/space.png</path>
                             <color>141414</color>
                          </image>
                       </view>
                    

                    See the <image name="background" extra="true"> property?

                    What you'll likely have to do take that property and its setting and add it to this section of theme.xml..

                    <view name="basic,detailed,video">
                    <!-- add in here along side other properties -->
                    </view>
                    

                    The rationale for that is you want the background on system view to remain as the dark gray and then you would override the setting on basic,detail,video only

                    Let me know if that helps you get started. If you have questions on the properties under the image background node I am glad to help with those too.

                    My RetroPie Themes:
                    Art Book https://github.com/anthonycaccese/es-theme-art-book
                    Art Book Next https://github.com/anthonycaccese/art-book-next-retropie
                    TFT https://github.com/anthonycaccese/es-theme-tft

                    1 Reply Last reply Reply Quote 0
                    • P
                      peligwe
                      last edited by 4 Jun 2020, 02:57

                      Love the theme and planning on rescrapping all my games now that I have seen all the great features included. To that end, was wondering if you could add another system:

                      PSP Minins

                      1 Reply Last reply Reply Quote 0
                      • A
                        alphatoanant
                        last edited by 4 Jun 2020, 15:46

                        @peligwe yes that should be possible. Wondering what folder name would make sense for this. Is there one defined for psp minis already that I could use? (something like "psp-minis")

                        Created a quick logo this morning using online references
                        system.png

                        My RetroPie Themes:
                        Art Book https://github.com/anthonycaccese/es-theme-art-book
                        Art Book Next https://github.com/anthonycaccese/art-book-next-retropie
                        TFT https://github.com/anthonycaccese/es-theme-tft

                        1 Reply Last reply Reply Quote 0
                        • P
                          peligwe
                          last edited by peligwe 6 May 2020, 03:23 5 Jun 2020, 02:06

                          Looking good, looking great! Eager for the final result. Based on the feedback from launchingimage.s, there was no 'theme.xml' file, so I guess no 'psp-minis' folder.

                          Now that I've thrown a new request into the bucket, I noticed something odd about the PSP logo. It has the registered trademark stamp. Is that required to use the logo or was it something you decided to keep?

                          I only ask because you did all the theme work, not them.

                          1 Reply Last reply Reply Quote 0
                          • A
                            alphatoanant
                            last edited by 5 Jun 2020, 18:53

                            Hi @peligwe, I just committed an update to the repo to add the custom theme for pspminis: https://github.com/anthonycaccese/es-theme-art-book/commit/6f5ca8924bdbb8e012406edd5cbe0db39d533835

                            I wasn't able to find a good reference point for the boxart orientation. So for now I matched the psp theme layout (which uses portrait orientation for boxart). Let me know how that looks on your end.

                            My RetroPie Themes:
                            Art Book https://github.com/anthonycaccese/es-theme-art-book
                            Art Book Next https://github.com/anthonycaccese/art-book-next-retropie
                            TFT https://github.com/anthonycaccese/es-theme-tft

                            1 Reply Last reply Reply Quote 2
                            • P
                              peligwe
                              last edited by 6 Jun 2020, 17:28

                              Just updated theme today, looks great!!! And I also see you removed the trademark stamp. Thumbs up!!!

                              1 Reply Last reply Reply Quote 0
                              • P
                                peligwe
                                last edited by peligwe 6 Jun 2020, 20:47 6 Jun 2020, 19:46

                                Discovered one issue when generating launch images. The logo is cutoff.

                                launching.png

                                A 1 Reply Last reply 7 Jun 2020, 17:06 Reply Quote 0
                                • A
                                  alphatoanant @peligwe
                                  last edited by 7 Jun 2020, 17:06

                                  @peligwe I unfortunately don't currently have a test harness set up to check launching images. But I did compare the SVG and think I may have found the difference that is causing what you are seeing above. Just committed the change to github now. I hope that works - if not I'll see about getting a launching images setup going.

                                  My RetroPie Themes:
                                  Art Book https://github.com/anthonycaccese/es-theme-art-book
                                  Art Book Next https://github.com/anthonycaccese/art-book-next-retropie
                                  TFT https://github.com/anthonycaccese/es-theme-tft

                                  1 Reply Last reply Reply Quote 0
                                  • P
                                    peligwe
                                    last edited by 9 Jun 2020, 00:10

                                    Just did another update and your fix worked! Greatly appreciated.

                                    1 Reply Last reply Reply Quote 1
                                    • A
                                      alphatoanant
                                      last edited by 9 Jun 2020, 01:13

                                      Awesome! Glad that worked out @peligwe

                                      My RetroPie Themes:
                                      Art Book https://github.com/anthonycaccese/es-theme-art-book
                                      Art Book Next https://github.com/anthonycaccese/art-book-next-retropie
                                      TFT https://github.com/anthonycaccese/es-theme-tft

                                      1 Reply Last reply Reply Quote 0
                                      • P
                                        peligwe
                                        last edited by peligwe 7 May 2020, 15:42 5 Jul 2020, 14:41

                                        Since I recently got an RPI4, I'm back into retro gaming and have been and new systems to my gaming setup. Looks like I got Philip's CD-I working and wanted to see if it could also be added to your theme?

                                        A 1 Reply Last reply 5 Jul 2020, 19:07 Reply Quote 0
                                        • A
                                          alphatoanant @peligwe
                                          last edited by 5 Jul 2020, 19:07

                                          Hi @peligwe there is a folder for CDI in the theme called "cdi". Do you know what folder name emulationstation is looking for? If so I can update the name to that and it should work.

                                          My RetroPie Themes:
                                          Art Book https://github.com/anthonycaccese/es-theme-art-book
                                          Art Book Next https://github.com/anthonycaccese/art-book-next-retropie
                                          TFT https://github.com/anthonycaccese/es-theme-tft

                                          HurricaneFanH 1 Reply Last reply 5 Jul 2020, 23:28 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.

                                            This community forum collects and processes your personal information.
                                            consent.not_received