RetroFE forums

Artwork & Layouts => Share your theme => Topic started by: Lunatic on April 15, 2019, 10:43:30 AM

Title: LUNA (Updated)
Post by: Lunatic on April 15, 2019, 10:43:30 AM
Click the image to watch the video
(https://i.hizliresim.com/0r2y79.png) (https://www.youtube.com/watch?v=UTMT-v3Agt4)

Click Here to Download 'LUNA' Layout from Google Drive (Updated) (https://drive.google.com/file/d/1zSMidzYcgQBS_UjHJHu2HqGahooBJVED/)

Changes
Code: [Select]
-Changed the transparancy level of eplogo
-Made changes on animation
-Changed/fixed the layer level of bottom border
-Changed/fixed some console images to not overflow onto tv
-Added extra detail texts/images which could be useful for arcade/mame systems especially
-Removed some systems, especially the ones which never got release outside of Japan
-Added Microsoft MSX system
-Changed the sorting of systems
-Changed the layout name to "LUNA" along with its logo.
-Few more changes that are not listed here.

Hope you like it, enjoy :)
Title: Re: Luna Ultimate
Post by: Pieter Hulshoff on April 15, 2019, 01:48:40 PM
Looks like a fun setup. Lots of systems configured as well I see. :)
Title: Re: Luna Ultimate
Post by: Lunatic on April 15, 2019, 10:51:28 PM
Thanks. Would you like to add this layout to the theme section on home page? It's a mix between "Ergo Proxy" and "Retrospin" with addition.

By the way thank you for this great software, cheers :)
Title: Re: Luna Ultimate
Post by: Pieter Hulshoff on April 16, 2019, 06:40:22 AM
I’m currently working on some new features, but when I’m done I plan another round of tests, a full release, and an update of the download section. I’ll test your skin as well then.


Sent from my iPad using Tapatalk
Title: Re: Luna Ultimate
Post by: dougan78 on April 20, 2019, 04:41:17 AM
Like it!  Nice work!  Lots of systems too!   Keep it up.
Title: Re: LUNA (Updated)
Post by: Lunatic on May 01, 2019, 02:33:42 AM
Updated the layout, hope you enjoy even more  :D
Title: Re: LUNA (Updated)
Post by: squirlslap on August 31, 2019, 09:35:42 PM
Love the theme,is there anyway to change the time.
Title: Re: LUNA (Updated)
Post by: Lunatic on September 01, 2019, 11:46:24 PM
Love the theme,is there anyway to change the time.
How do you mean? If you mean switching from 24H to 12H time format, you need to edit timeFormat="%H:%M" value in layout.xml you may want to check which alternatives fit there on this page though I'm no expert about these codes
https://en.cppreference.com/w/cpp/chrono/c/strftime
If you mean moving the timer or removing it completely, find layout.xml, open it with your text editor, click ctrl+f to find "type="time" value and edit the paragraph to your needs or if you want to remove the clock and the clock icon completely, delete both paragraphs that start with <reloadableText type="time" and <image src="images/clock.png"
Title: Re: LUNA (Updated)
Post by: squirlslap on September 02, 2019, 11:43:58 PM
Thanks for the response,I meant changing it from 24H to 12H. I can't figure it out.
Title: Re: LUNA (Updated)
Post by: Lunatic on September 03, 2019, 02:35:21 AM
Thanks for the response,I meant changing it from 24H to 12H. I can't figure it out.
Hmm, maybe @Pieter Hulshoff can help you with that issue.

Edit: I guess I figured it out. Try switching between the following codes till you find the one that fits your desire.
Edit layout.xml with notepad, find timeFormat="%H:%M" value and change the "%H:%M" line to either of these
Code: [Select]
"%c"
"%Ec"
"%x"
"%Ex"
"%X"
"%EX"
"%D"
"%F"
"%r"
"%R"
"%T"
"%p"
"%z"
"%Z"
Title: Re: LUNA (Updated)
Post by: Pieter Hulshoff on September 03, 2019, 07:18:36 AM
Time format uses the standard C++ library: https://en.cppreference.com/w/cpp/chrono/c/strftime

It's mentioned in the manual: http://www.retrofe.nl/wiki/doku.php?id=layouts#reloadabletext_parameters

In the layout.xml file, you'll find the following line:
<reloadableText type="time" timeFormat="%H:%M" alpha="0" x="150" y="top" xOrigin="left" yOrigin="top" font="fonts/Geforce Light.ttf" fontSize="60" loadFontSize="60" fontColor="ffffff" layer="10" >

%H stands for 24 hour indication
Just replaced it with %I for 12 hour indication.
I believe you can add %p for the A.M. / P.M. indication if you so desire.
Title: Re: LUNA (Updated)
Post by: squirlslap on September 03, 2019, 08:32:55 PM
Worked perfectly,thank you for all your help.It is much appreciated.