NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 31 32 33 34 35 … 56 Next »
Too many skins, too many options, too many plugins...

 
  • 0 Vote(s) - 0 Average
Too many skins, too many options, too many plugins...
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#91
2006-07-10, 03:18 PM
dottore Wrote:sometimes even the core of gbpvr is confusing: there is a details-popup in the live-skin.xml - file in the tvguide folder. that means, the live-guide is displayed using those informations. but: it uses the popup from skin.xml. which leads to following problem: the popup-box is way too big, you can see a quarter of it.

so please consider multi-resolution skins within your standardisation-efforts Wink

That would mean what, the background composite image for plugins are defined by baseskin.xml (unless expressed in that plugin) and the main menu would still be defined in that skin.xml file?
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
dottore
Offline

Posting Freak

Posts: 986
Threads: 44
Joined: May 2004
#92
2006-07-10, 03:29 PM
two options:
- gbpvr scales the elements found in baseskin.xml or somewhere else to a correct dimension regarding the gbpvr-window
- a plugin (external or core, i consider a playing video a plugin) takes the information from his own skin-file OR the baseskin.xml but never from the skin-file of another plugin (in that case, live-guide must ignore the tv guide xml-file)

both shouldn't be ignored, the first one being a bug.
---------------------
www.sitecomposer.de
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#93
2006-07-10, 03:34 PM (This post was last modified: 2006-07-10, 04:03 PM by Fatman_do.)
This is just the main menu and the music library. Its xml code is nearly identical to blue, just images are added instead.

This is part one of a demonstration.
[ATTACHMENT NOT FOUND]

[ATTACHMENT NOT FOUND]
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#94
2006-07-10, 04:16 PM
Lets take and modify BlueMCE2 (Baseskin version) to fit this standard.

A fully developed skin for the music library would look like this.
[ATTACHMENT NOT FOUND]

But if that skin did not exsist, this is what the fall back would look like under the new system.
[ATTACHMENT NOT FOUND]

Looks close enough, and now the skinner's work is easier.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#95
2006-07-10, 04:26 PM
Just a note, the final screen shot there was just by dragging the Blue+ Music Library skin folder and dropping it into the second demo.

The current mechanics of the "fall back" may pick up the images from Blue+ instead of the second demo.

Some other plugins copy that skin folder over automatically, but I do not think sub's default ones do.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Old Dog
Offline

Posting Freak

Posts: 1,083
Threads: 99
Joined: Jul 2005
#96
2006-07-10, 04:27 PM (This post was last modified: 2006-07-10, 04:35 PM by Old Dog.)
Fatman_do Wrote:This is just the main menu and the music library. Its xml code is nearly identical to blue, just images are added instead.

Code:
[size=3]
<CompositeImage name="Background" size="720,480">        
    <DrawImage filename="..\MainBackground.jpg" loc="0,0" size="720,480"/>        
    <DrawImage filename="se.png" loc="0,0" size="720,480"/> <!--Optional-->
    <DrawImage filename="..\List_Background.png" loc="245,85" size="420,275"/>
</CompositeImage>
[/size]

I do not believe this code snippit is in concert with our goal. We profess to be seeking an image based approach to implementing skins. Here we use three lines of XML code, where in a pure image based approach, only a single line should be required...

Code:
[size=3]
<CompositeImage name="Background" size="720,480">        
    <DrawImage filename="StaticGraphics.png" loc="0,0" size="720,480"/> <!--Optional-->
</CompositeImage>
[/size]

However, as I have stated elsewhere, it is advantageous to separate color from the static graphics image. Doing so would result in two lines of xml code...
Code:
[size=3]
<CompositeImage name="Background" size="720,480">        
    <DrawImage filename="..\Mainbackground.jpg" loc="0,0" size="720,480"/>        
    <DrawImage filename="StaticGraphics.png" loc="0,0" size="720,480"/> <!--Optional-->
</CompositeImage>
[/size]

Also, Mainbackground.jpg contains graphics elements. These elements should be relocated to the StaticGraphics file.
Learning new tricks!
Visit Plain Jane's Collection
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#97
2006-07-10, 04:41 PM
Old Dog Wrote:
Code:
[size=3]
<CompositeImage name="Background" size="720,480">        
    <DrawImage filename="..\MainBackground.jpg" loc="0,0" size="720,480"/>        
    <DrawImage filename="se.png" loc="0,0" size="720,480"/> <!--Optional-->
    <DrawImage filename="..\List_Background.png" loc="245,85" size="420,275"/>
</CompositeImage>
[/size]

I do not believe this code snippit is in concert with our goal. We profess to be seeking an image based approach to implementing skins. Here we use three lines of XML code, where in a pure image based approach, only a single line should be required...

I disagree. There is no compelling reason to use only one image for the "Staticbackground" versus ten. When everything is combined into a single image, flexibility decreases. Unless you are the original creator of the multi-layered image, additional modifications become harder for others who do not have access to the original. If the list box was in a static image with other elements (remote hints and such), and Joe the user wants to move something, change what the listbox looks like or something like that, they would have a much harder time if all they had was MS Paint. Nothing about each image as a separate element is a negative in my opinion.
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#98
2006-07-10, 04:47 PM
So would there be a StaticGraphics.png file for each screen/plugin? As some will want the list background (or whatever) in a different location or not at all.
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
Fatman_do
Offline

Posting Freak

Posts: 3,482
Threads: 95
Joined: Nov 2005
#99
2006-07-10, 04:51 PM
McBainUK Wrote:So would there be a StaticGraphics.png file for each screen/plugin? As some will want the list background (or whatever) in a different location or not at all.

Yes. A common one could be used for a majority, but a different one would need to be unique to that plugin (placed in that directory and not in a common area).
Fatman_do
[SIZE="1"]
HTPC: AMD XP+2500, 512MB DDR (400) ~ Capture Device: Hauppage PVR-150
Storage: 30GB OS & Recording, 160GB Post Processing & Archive
Video Output: HD 32" TV via eVGA Geforce 6200le 256MB AGP DVI-HDMI cable out
Audio Output: Turtle Beach Riviera S/PDIF Optic Output (Digital pass thru only) to Home Theater Receiver[/SIZE]

[SIZE="2"]
Moderator | Tutorials | Community Skin | CommunitySkin-SVN[/SIZE]
Old Dog
Offline

Posting Freak

Posts: 1,083
Threads: 99
Joined: Jul 2005
#100
2006-07-10, 04:53 PM
Fatman_do Wrote:I disagree. There is no compelling reason to use only one image for the "Staticbackground" versus ten. When everything is combined into a single image, flexibility decreases. Unless you are the original creator of the multi-layered image, additional modifications become harder for others who do not have access to the original. If the list box was in a static image with other elements (remote hints and such), and Joe the user wants to move something, change what the listbox looks like or something like that, they would have a much harder time if all they had was MS Paint. Nothing about each image as a separate element is a negative in my opinion.

This approach gaurantees that we will be editing xml files forever. BTW, since I'm gonna have to edit these lines of code, I really don't care if they draw image files or draw rectangles. Its all xml to me!

Personally, I'm not sure that you have accomplished anything here.

Sometimes plug-in developers post their source code. Skin developers could do the same, post their .psd files, or whatever.
Learning new tricks!
Visit Plain Jane's Collection
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (19): « Previous 1 … 8 9 10 11 12 … 19 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Pandora Internet Radio and MusicMonkey (MediaMonkey) music plugins cncb 19 8,749 2011-12-17, 02:02 AM
Last Post: steeb
  SkyNews and ABC Australia mini-plugins released for UbuStream ubu 0 1,122 2007-02-24, 11:24 AM
Last Post: ubu
  2 new Plugins McBainUK 7 3,188 2007-01-25, 11:22 AM
Last Post: MixMan
  MultiDec Plugins and Card Server howto MixMan 0 2,094 2007-01-19, 07:15 PM
Last Post: MixMan
  2 New Plugins added to Wiki rwmech 0 1,347 2006-10-16, 05:16 PM
Last Post: rwmech
  Appearance Manager skins: Mayhem, Black Jack, Contour Old Dog 1 1,481 2006-05-17, 06:20 PM
Last Post: Old Dog
  Using an Installer for plugins jorm 11 4,367 2005-05-18, 12:33 PM
Last Post: jorm
  Skins? womble 8 3,091 2005-04-19, 07:25 PM
Last Post: HenkH
  Skins Don't Support Live TV on MVP in Latest GBPVR DavidJames 2 1,867 2005-03-28, 03:21 PM
Last Post: reboot
  My Programs Plugins Released reven 37 12,882 2005-02-04, 11:38 PM
Last Post: Guest

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode