English Amiga Board


Go Back   English Amiga Board > Support > support.FS-UAE

 
 
Thread Tools
Old 19 January 2013, 13:21   #1
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
[Theme] New Overlay Theme for FS-UAE

*** Deleted ***

Last edited by nexusle; 25 March 2013 at 15:17.
nexusle is offline  
Old 19 January 2013, 13:22   #2
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
*** Deleted ***

Last edited by nexusle; 25 March 2013 at 15:17.
nexusle is offline  
Old 19 January 2013, 13:26   #3
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
Must just check that I understand the question first. Do you want to use the autoscaling feature to stretch the Amiga content, -but you only want to stretch it so it fills the "black area", and not the beige sides?

Or do you want to use a "fixed Amiga viewport", and then scale/stretch that to fill the black area?
FrodeSolheim is offline  
Old 19 January 2013, 13:45   #4
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
*** Deleted ***

Last edited by nexusle; 25 March 2013 at 15:17.
nexusle is offline  
Old 19 January 2013, 13:58   #5
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
OK, if you want it to always stretch the display will all zoom / viewport settings, you can add this to the theme:
Code:
scale_x = -0.8541666666666666
This number comes from:
* The open area in your 1920x1080 overlay is 1640x1080
* 1640.0 / 1920.0 = 0.8541666666666666, so the width must be scaled by this factor
* FS-UAE uses a system where a positive scaling factor scales the Amiga output (e.g. 2.0 to scale exactly 2x and create a 1:2 pixem mapping),
* A negative factor is interpreted as scale relative to normal output. Since the "normal" is to stretch the display to the full width of the screen, -0.8541666666666666 means to scale to about 85% of the screen width.
FrodeSolheim is offline  
Old 19 January 2013, 14:08   #6
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
If you e.g. want the sharpest possible display, you can do this instead:
Code:
scale_x = 2.0
scale_y = 2.0
texture_filter = nearest
viewport = * * * * = 42 22 704 540
This will create 2x output, with 1:2 pixel mapping (really 4x compared to low-res pixels), but with these settings it will only work correctly with 1920x1080 displays.

In this case, the Amiga display uses a fixed viewport of 704x540, scaled up to 1408x1080 and centered on screen, so you would need to have a bit wider sides in this case

This should be a good option to get the best results with 2x or 4x pixel enhanched shaders...
FrodeSolheim is offline  
Old 19 January 2013, 14:12   #7
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
*** Deleted ***

Last edited by nexusle; 25 March 2013 at 15:17.
nexusle is offline  
Old 19 January 2013, 14:16   #8
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
Only one wish, Frode:

Could you please implement in the next version, that the font of FS-UAE could be changed by (theme-)config entry? So if we have a config option like:

theme_font = xyz

we could use different fonts (i.e. my Topaz font) in custom themes.

Last edited by prowler; 30 August 2013 at 00:39. Reason: Rewind.
nexusle is offline  
Old 19 January 2013, 14:24   #9
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
While I'm at it, the following would also be quite good settings, optimized for 1920x1080 (because pixels will then displayed at 2x / 4x), but unlike the previous example with the 704x540 amiga display, these settings will also scale when you use other resolutions and window mode. Here with scanlines enabled, and with (default) linear filtering to create the usual smoother output:
Code:
scale_x = -0.7333333333333333
scanlines = 1
viewport = * * * * = 42 22 704 540
(add texture_filter = nearest to get no pixel smoothing).

Quote:
Originally Posted by nexusle View Post
Only one wish, Frode:

Could you please implement in the next version, that the font of FS-UAE could be changed by (theme-)config entry? So if we have a config option like:

theme_font = xyz

we could use different fonts (i.e. my Topaz font) in custom themes.
Sure
FrodeSolheim is offline  
Old 20 January 2013, 12:30   #10
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
*** Deleted ***

Last edited by nexusle; 25 March 2013 at 15:18.
nexusle is offline  
Old 23 January 2013, 21:55   #11
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
I have improved use of Themes with the Launcher for the next development version. The theme can successfully set options (such as scaling) as long as the user has left the options at "Default".

With regards the the LED, it seems that (most of) the filesys code flashes the HD led regardless of whether it is a HD or a mounted CD image. I will try to see if this is easily fixable.
FrodeSolheim is offline  
Old 23 January 2013, 22:00   #12
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
*** Deleted ***

Last edited by nexusle; 25 March 2013 at 15:18.
nexusle is offline  
Old 23 January 2013, 22:26   #13
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
CD LED when using CDFS is fixed for the upcoming 2.1.20 release
FrodeSolheim is offline  
Old 25 January 2013, 19:47   #14
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
Quote:
Originally Posted by nexusle View Post
Could you please implement in the next version, that the font of FS-UAE could be changed by (theme-)config entry? So if we have a config option like:
It seems I have already done this You should be able to put menu_font.png and/or title_font.png in the theme dir.
FrodeSolheim is offline  
Old 25 January 2013, 19:55   #15
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
*** Deleted ***

Last edited by nexusle; 23 March 2013 at 13:48.
nexusle is offline  
Old 26 January 2013, 17:00   #16
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
*** Deleted ***

Last edited by nexusle; 25 March 2013 at 15:15.
nexusle is offline  
Old 26 January 2013, 17:08   #17
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
No, and no. Text is written in mixed case. The default fonts just have identical-looking lower and upper case letters. You should post the font if you need more specific help
FrodeSolheim is offline  
Old 26 January 2013, 17:20   #18
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
It's my Topaz font found on your Homepage.

Last edited by prowler; 30 August 2013 at 00:42. Reason: Rewind.
nexusle is offline  
Old 26 January 2013, 17:29   #19
FrodeSolheim
FS-UAE Developer
 
FrodeSolheim's Avatar
 
Join Date: Dec 2011
Location: Førde, Norway
Age: 43
Posts: 4,043
Quote:
Originally Posted by nexusle View Post
It's my Topaz font found on your Homepage.
That font works just fine here (just downloaded it and put it in a theme).
FrodeSolheim is offline  
Old 26 January 2013, 17:39   #20
nexusle
Banned
 
Join Date: Jul 2010
Location: Earth
Age: 46
Posts: 500
With both, upper- and lowercase characters?! Hmm... Interresting. Maybe a platform specific problem. I'll do more testing.

Last edited by prowler; 30 August 2013 at 00:46. Reason: Rewind.
nexusle is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
theme park and theme hospital did i imagine this title on cd32 sian request.Other 1 07 June 2013 01:43
[Theme] New Overlay Theme for FS-UAE inspired by Amiga CD32 nexusle support.FS-UAE 0 19 January 2013 21:11
1.3 Theme for OS 3.9? ascp support.Other 2 17 March 2012 22:43
ClassicWB with 1.3 theme Bloodwych project.ClassicWB 44 13 April 2010 20:24
Theme Park AGA scrappysphinx request.Old Rare Games 6 11 March 2009 16:59

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 20:19.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.12492 seconds with 13 queries