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 230.9k 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
      anderocha @cnoto
      last edited by

      @cnoto About video, I found these lines here:

      <video name="md_video">
      <origin>0.5 0.5</origin>
      <pos>0.540625 0.705555555555556</pos>
      <maxSize>0.25 0.3333333333333333</maxSize>
      <delay>0</delay>
      <default>./_inc/videos/static.mp4</default>
      <showSnapshotNoVideo>false</showSnapshotNoVideo>
      <showSnapshotDelay>false</showSnapshotDelay>
      </video>

      cnotoC 1 Reply Last reply Reply Quote 0
      • cnotoC
        cnoto @anderocha
        last edited by

        @anderocha im away from my computer right now, but can hop on in a bit to give some more detailed advice.

        From a high level, you can take the size and position data from the video related code you shares and create an entry in the “detailed” section of the code to add an entry for the screenshot.

        cnotoC 1 Reply Last reply Reply Quote 0
        • cnotoC
          cnoto @cnoto
          last edited by

          @anderocha To add more color, add the following code to the detailed section (under <view name="detailed">) in the theme.xml file.

          <image name="md_image">
          <origin>0.5 0.5</origin>
          <pos>0.540625 0.705555555555556</pos>
          <maxSize>0.25 0.3333333333333333</maxSize>
          </image>

          Then go to the main menu in emulation station (by pressing start) and choose UI Settings, then Gamelist View Style and choose detailed.

          A 1 Reply Last reply Reply Quote 0
          • A
            anderocha @cnoto
            last edited by

            @cnoto I have these 3 options:

            <view name = "basic">

            <view name = "detailed, video">

            <view name = "video">

            cnotoC 1 Reply Last reply Reply Quote 0
            • cnotoC
              cnoto @anderocha
              last edited by

              @anderocha

              I removed the video from my detailed, video section as I knew I wouldn’t use the video, but you can leave it as is. This just means the code below will apply to both. In short, add the text I included in the last post in the detailed, video section.

              A 1 Reply Last reply Reply Quote 0
              • A
                anderocha @cnoto
                last edited by

                @cnoto in my current theme.xml I have these lines:

                <image name = "md_image">
                <origin> 0.5 0.5 </origin>
                <pos> 0.540625 0.705555555555556 </pos>
                <maxSize> 0.25 0.3333333333333333 </maxSize>
                </image>

                in this case, to use the image instead of the video, do I substitute these lines that you informed me about?

                cnotoC 1 Reply Last reply Reply Quote 0
                • cnotoC
                  cnoto @anderocha
                  last edited by

                  @anderocha What do you see when you follow these instructions?

                  Then go to the main menu in emulation station (by pressing start) and choose UI Settings, then Gamelist View Style and choose detailed.

                  cnotoC 1 Reply Last reply Reply Quote 0
                  • cnotoC
                    cnoto @cnoto
                    last edited by

                    @anderocha If this code exists already in the detailed section, you should be able to display a screenshot from the detailed view (enabled by the instructions in the last post).

                    Provided that you have a screenshot for each game in the screenshot folder and the correct pathway to that image in the game list.

                    cnotoC 1 Reply Last reply Reply Quote 0
                    • cnotoC
                      cnoto @cnoto
                      last edited by

                      @anderocha I guess I should ask, what folders are you using to store your screenshot artwork and cover artwork?

                      A 2 Replies Last reply Reply Quote 0
                      • A
                        anderocha @cnoto
                        last edited by

                        @cnoto The adjustment on mine for DETAILED I already did.

                        In the games folder I have the folders below:

                        media \ images
                        media \ screenshot

                        Here is a model of the gamelist:

                        <game id = "152600" source = "ScreenScraper.fr">
                        <path> ./Alex Kidd 3 - Curse In Miracle World.zip </path>
                        <name> ALEX KIDD 3- CURSE IN MIRACLE WORLD </name>
                        <desc> A DARK SPELL TRANSFORMED THE NEIGHBORHOOD REGION OF RADAXIAN INTO A BALDIO LAND. THE GREEN HANANOTANI VALLEY IS NOW FILLED WITH THOUSANDS OF DANGERS, AGGRESSIVE MONSTERS AND DESERT VILLAGES. AFTER THE DEFEAT OF TYRANE JANKEN THE GREAT, MEMBERS OF HIS GANG HAVE COME TO AVOID HIM, AND THEY DECIDED TO REDUCE THE ENTIRE MIRACLE WORLD TO SLAVERY.
                        DISCOVER NEW LANDSCAPES, ADVANCE IN MOTOR VEHICLES, RUN THROUGH DANGEROUS MAZE MASTERS! HELP ALEX KIDD OVERCOME THIS TERRIBLE THREAT, DISCOVER WHO REALLY IS BEHIND ALL OF THIS AND BREAK THE SPELL ONCE FOR ALL. </desc>
                        <releasedate> 20160101T000000 </releasedate>
                        <developer> Yeti </developer>
                        <publisher> Yeti </publisher>
                        <genre> PLATFORM-ACTION </genre>
                        <players> 1 </players>
                        <image> ./media/images/Alex Kidd 3 - Curse In Miracle World.png </image>
                        <thumbnail> ./media/screenshot/Alex Kidd 3 - Curse In Miracle World.png </thumbnail>
                        <genreid> 257 </genreid>
                        </game>

                        1 Reply Last reply Reply Quote 0
                        • A
                          anderocha @cnoto
                          last edited by

                          @cnoto alt text

                          cnotoC 1 Reply Last reply Reply Quote 0
                          • cnotoC
                            cnoto @anderocha
                            last edited by

                            @anderocha What happens when you change the code we described above from md_image to md_thumbnail ?

                            1 Reply Last reply Reply Quote 0
                            • A
                              anderocha @anderocha
                              last edited by

                              alt text

                              I'm doing some experiments here ...
                              just can't get down the game quantity line.

                              someone help me?

                              A cnotoC 2 Replies Last reply Reply Quote 0
                              • A
                                anderocha @anderocha
                                last edited by

                                @anderocha

                                I managed to add the lines below:

                                     <text name="systemInfo">
                                		<origin>0.5 0.5</origin>
                                        <pos>0.5 0.85</pos>
                                        <backgroundColor>14141400</backgroundColor>
                                        <color>666666</color>
                                        <fontPath>./_inc/fonts/Cabin-Bold.ttf</fontPath>
                                        <fontSize>0.0222222222222222</fontSize>
                                     </text>
                                

                                As soon as I finish I bring more details.

                                cnotoC 1 Reply Last reply Reply Quote 0
                                • cnotoC
                                  cnoto @anderocha
                                  last edited by cnoto

                                  @anderocha Are you trying to show just one system at a time?

                                  If so try adding the following line to the carousel section:

                                  <maxLogoCount>1</maxLogoCount>

                                  This is how it looks for me in another theme I am working on:

                                  <carousel name="systemcarousel">
                                  <type>vertical</type>
                                  <pos>0.0 0.02</pos>
                                  <logoAlignment>center</logoAlignment>
                                  <size>1 0.9</size>
                                  <logoScale>1.4</logoScale>
                                  <zIndex>2</zIndex>
                                  <logoSize>0.4 0.35</logoSize>
                                  <color>00000000</color>
                                  <maxLogoCount>1</maxLogoCount>
                                  </carousel>

                                  1 Reply Last reply Reply Quote 0
                                  • cnotoC
                                    cnoto @anderocha
                                    last edited by

                                    @anderocha O.K. I think I better understand your question. I think the origin line is messing you up. What if you remove that?

                                    1 Reply Last reply Reply Quote 0
                                    • W
                                      wulang
                                      last edited by

                                      Hello, I've download the file and I like it very much! Awesome work! But I have a small question. Can I change the backgrounds of "System View" and "Basic View" by myself? Change the code? or change some files? Thank you!

                                      W 1 Reply Last reply Reply Quote 0
                                      • ColstarC
                                        Colstar @HurricaneFan
                                        last edited by

                                        @hurricanefan Nice work! 👍

                                        1 Reply Last reply Reply Quote 0
                                        • W
                                          wulang @wulang
                                          last edited by

                                          @wulang said in [Theme] Art Book:

                                          Hello, I've download the file and I like it very much! Awesome work! But I have a small question. Can I change the backgrounds of "System View" and "Basic View" by myself? Change the code? or change some files? Thank you!

                                          I've already solved the question and added something by my own. Thank you again for you awesome work! I like it soooooo much!

                                          1 Reply Last reply Reply Quote 0
                                          • S
                                            superrune
                                            last edited by

                                            Hi! The Art Book theme was installed through 351ELEC on my RG351v. I like how elegant and minimal it is. But I wish there was a way of browsing the games list with larger game art. Batocera can be configured with a game browsing screen that looks like this, and it works great for handheld devices:

                                            c84714df-d1e8-4bea-9a43-cde55d210fd0-image.png

                                            small video clip here

                                            Have someone considered adding a screen like this to this theme? It's using a still and video as background with the game logo on top. There's a very small bar of game info on the right. It really brings the game up front, and is especially great when kids use the device.

                                            Cheers!

                                            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.