[MOD] Night.Purity

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #201
Update:

- GIANT Video Font, select through Settings>Skin>Movie/TV>Use GIANT Fonts for Video Player.

- Code cleanup...

[Image: screenshot001zfs.jpg]

[Image: screenshot000sg.jpg]

Added transparency and little tweak in animations.

Enjoy

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
find quote
shaktoo Offline
Fan
Posts: 635
Joined: Mar 2010
Reputation: 3
Location: in LIMBO
Post: #202
Thanks ! this is most excellent I say Big Grin
find quote
jz1276 Offline
Fan
Posts: 328
Joined: Jul 2007
Reputation: 0
Post: #203
Is anyone else having choppy searching while browsing through their video library? This skin would be perfect but doing fast browsing is a pain. While in showcase view, if I hold down the right arrow key to scan through movies, it'll pause for a second every 6-7 movies. It's much slower compared to regular night skin.
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #204
Will look into it tonight, must say never noticed and code in showcase isn't that much different from original from what I remember.

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
find quote
Oddsodz Offline
Fan
Posts: 343
Joined: Jun 2009
Reputation: 0
Post: #205
It's down to HDD speed. I Have the same issue but mine is down to a slow NAS speed. My Local HDD is fast, but as soon as I get to the part in my library that has content on my NAS, it slows down. This is in part due the "ExtraFanArt" and "ExtraThumbs" folders I Have. XMBC does not cashe them. So they have to be reloaded every time you start skipping along your library.

Well that is what I think it is anyway.
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #206
jz1276 Wrote:Is anyone else having choppy searching while browsing through their video library? This skin would be perfect but doing fast browsing is a pain. While in showcase view, if I hold down the right arrow key to scan through movies, it'll pause for a second every 6-7 movies. It's much slower compared to regular night skin.

Oddsodz Wrote:It's down to HDD speed. I Have the same issue but mine is down to a slow NAS speed. My Local HDD is fast, but as soon as I get to the part in my library that has content on my NAS, it slows down. This is in part due the "ExtraFanArt" and "ExtraThumbs" folders I Have. XBMC does not cashe them. So they have to be reloaded every time you start skipping along your library.

Well that is what I think it is anyway.

Think I see what jz1276 mean.

First both skins behave in the same way with Showcase View and No ExThumb, they are the same code wise. When I underclocked one of my machines I was able to see, as stated before in both skins, a small pause when continuous scroll, this is due to the amount of info that is being displayed, there are a crap load of fields being loaded with no pause. So if you don't have a pretty heavy machine you are always going to notice this.

Then when you enable ExThumbs this behavior gets more evident, as Oddsodz stated this info is not cached by XBMC, if the file is located in a slow HD this is worst. And it's here when you can see a difference between both skins, with Purity displaying worst scrolling, this is due to the extra work of the animation and conditions for the ExThumb not present in Night and with continuous scrolling it gets kinda "stuck".

Anyway, you might find more useful, a better experience and performance by using the Navbar. I'm sorry but I don't see a way of making this better as there isn't another way to code it, unless I remove the animation/conditions, which I won't do as I don't like having the frames all the time and like the animation, so unless more people ask for it I won't change it, but can tell you how too, it's pretty simple, open Viewtype_Showcase.xml and replace this:

Code:
<animation effect="slide" start="600,0" end="0,0" time="800" delay="600" condition="![IsEmpty(Control.GetLabel(8245)) + IsEmpty(Control.GetLabel(8246))]">Conditional</animation>

for

Code:
<animation effect="slide" start="600,0" end="0,0" condition="Skin.HasSetting(extrathumbs)">Conditional</animation>

and delete this two lines

Code:
<animation effect="slide" start="0,0" end="285,0" time="0" condition="Skin.HasSetting(extrathumbs)">Conditional</animation>
Code:
<animation effect="slide" start="0,0" end="-285,0" time="400" delay="500" condition="![IsEmpty(Control.GetLabel(8245)) + IsEmpty(Control.GetLabel(8246))]">Conditional</animation>

Enjoy

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
(This post was last modified: 2011-05-06 01:45 by KiSUAN.)
find quote
Oddsodz Offline
Fan
Posts: 343
Joined: Jun 2009
Reputation: 0
Post: #207
Don't change it. It's a non issue for me. I Know my NAS is slow (old ide 80Gb x2 on a FreeNas with a 10/100Nic. It's slow but works as a torrent box).

It's not a big deal and to lose the animations and stuff would not be good. It's one of the main reasons for the skin. To lose them would be very bad indeed.

If anything. Try and code in a speed limiter for scrolling. This way nobody would ever see this little niggle.
find quote
jz1276 Offline
Fan
Posts: 328
Joined: Jul 2007
Reputation: 0
Post: #208
KiSUAN Wrote:Think I see what jz1276 mean.

First both skins behave in the same way with Showcase View and No ExThumb, they are the same code wise. When I underclocked one of my machines I was able to see, as stated before in both skins, a small pause when continuous scroll, this is due to the amount of info that is being displayed, there are a crap load of fields being loaded with no pause. So if you don't have a pretty heavy machine you are always going to notice this.

Then when you enable ExThumbs this behavior gets more evident, as Oddsodz stated this info is not cached by XBMC, if the file is located in a slow HD this is worst. And it's here when you can see a difference between both skins, with Purity displaying worst scrolling, this is due to the extra work of the animation and conditions for the ExThumb not present in Night and with continuous scrolling it gets kinda "stuck".

Anyway, you might find more useful, a better experience and performance by using the Navbar. I'm sorry but I don't see a way of making this better as there isn't another way to code it, unless I remove the animation/conditions, which I won't do as I don't like having the frames all the time and like the animation, so unless more people ask for it I won't change it, but can tell you how too, it's pretty simple, open Viewtype_Showcase.xml and replace this:

Code:
<animation effect="slide" start="600,0" end="0,0" time="800" delay="600" condition="![IsEmpty(Control.GetLabel(8245)) + IsEmpty(Control.GetLabel(8246))]">Conditional</animation>

for

Code:
<animation effect="slide" start="600,0" end="0,0" condition="Skin.HasSetting(extrathumbs)">Conditional</animation>

and delete this two lines

Code:
<animation effect="slide" start="0,0" end="285,0" time="0" condition="Skin.HasSetting(extrathumbs)">Conditional</animation>
Code:
<animation effect="slide" start="0,0" end="-285,0" time="400" delay="500" condition="![IsEmpty(Control.GetLabel(8245)) + IsEmpty(Control.GetLabel(8246))]">Conditional</animation>

Enjoy

Thanks ... I did what you said and it didnt help at all. My machine is a Zotac ZBOXHD-ID34BR Intel Atom D525 Dual-Core NVIDIA ION2 w/2GB RAM, 250G HDD Blu-ray Mini-PC. Browsing the vids in showcase mode with regular night is flawless but it is still pausing for a second every 7-8 movies with Purity.
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #209
Well, as I stated before with that modifications the View are the same, so the problem isn't cuz Purity, maybe some problem with the guisettings. If you do this you will only loose the settings for Putiry...

Go to X:\Users\User Name\AppData\Roaming\XBMC\userdata

Open "guisettings.xml"

Find every line/setting that has "skin.night.purity" and delete it.

If this doesn't solve the problem I have no idea, beside placebo effect, like I said code in both views is the same so they have to behave in the same way, the problem is somewhere else. Maybe a complete reinstall (erase of user data included) could be fix whatever is wrong, but that would imply much work of course.


Edit

Just thought of another thing, you have "parent folders" enable? or movies without posters?

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
(This post was last modified: 2011-05-07 00:46 by KiSUAN.)
find quote
jz1276 Offline
Fan
Posts: 328
Joined: Jul 2007
Reputation: 0
Post: #210
KiSUAN Wrote:Well, as I stated before with that modifications the View are the same, so the problem isn't cuz Purity, maybe some problem with the guisettings. If you do this you will only loose the settings for Putiry...

Go to X:\Users\User Name\AppData\Roaming\XBMC\userdata

Open "guisettings.xml"

Find every line/setting that has "skin.night.purity" and delete it.

If this doesn't solve the problem I have no idea, beside placebo effect, like I said code in both views is the same so they have to behave in the same way, the problem is somewhere else. Maybe a complete reinstall (erase of user data included) could be fix whatever is wrong, but that would imply much work of course.


Edit

Just thought of another thing, you have "parent folders" enable? or movies without posters?

OK.. I just tried browsing with a keyboard (I usually use a remote) and it is back to normal although my thumbs dont load up until I stop browsing. The problem only happens when I browse with my remote which is weird because it browses fine with the remote with regular night.
find quote
Post Reply