Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

[IDEA] Buffer xbian-config in XBMC
Thank you for your donation

Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
Idea: Buffer xbian-config in XBMC
5th Jan, 2014, 05:33 AM
Post: #1
IriDium Offline
Inquisitor
******
Posts: 2,025
Joined: Jan 2013
Reputation: 170
Buffer xbian-config in XBMC
Whilst xbian-config in XBMC is slicker - it is slightly annoying to have to regenerate everything each time you go into it again.

Could the screens not be buffered so that within a "session" you don't need to regenerate everything again?

Please read before you post
How to post a log file

If you liked my help, click on "Thanks" to show your appreciation.
Find all posts by this user
Quote this message in a reply
5th Jan, 2014, 10:18 AM
Post: #2
f1vefour Offline
Administrator
******
Posts: 1,342
Joined: Mar 2013
Reputation: 58
RE: Buffer xbian-config in XBMC
I suggested this a while back but the way it's currently implemented makes it unlikely.

Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us.
Visit this user's website Find all posts by this user
Quote this message in a reply
7th Jan, 2014, 10:44 PM
Post: #3
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Buffer xbian-config in XBMC
the problem is not with loading settings - thus buffering it.

problem is that xbmc gui xml language doesn't allow dynamic structures.

there are no variables, no objects, some basic scripting with static structure and items pre-rendered statically.
imagine it like old fashioned .html code written all the way manually.

Code:
<control type="list" id="9000">
                <posx>10</posx>
                <posy>90</posy>
                <width>260</width>
                <height>481</height>
                <itemgap>-1</itemgap>
                <onup>9000</onup>
                <ondown>9000</ondown>
                <onleft>9001</onleft>
                <onright>9001</onright>
                <pagecontrol>-</pagecontrol>
                <scrolltime>300</scrolltime>
                <itemlayout height="60" width="260">
                    <control type="image">
                        <posx>0</posx>
                        <posy>0</posy>
                        <width>260</width>
                        <height>60</height>
                        <texture border="5">MenuItemNF.png</texture>
                    </control>
                    <control type="label" id="95">
                        <description>Menu Label no focus</description>
                        <posx>250</posx>
                        <posy>10</posy>
                        <height>60</height>
                        <width>241</width>
                        <align>right</align>
                        <font>font13_title</font>
                        <textcolor>grey2</textcolor>
                        <label>$INFO[ListItem.Label]</label>
                    </control>
                    <control type="label" id="98">
                        <description>click to load Label focus</description>
                        <posx>250</posx>
                        <posy>35</posy>
                        <height>20</height>
                        <width>241</width>
                        <align>right</align>
                        <font>font10</font>
                        <textcolor>grey2</textcolor>
                        <label>$INFO[ListItem.Label2]</label>
                    </control>
                </itemlayout>
                <focusedlayout height="60" width="260">
                    <control type="image">
                        <posx>0</posx>
                        <posy>0</posy>
                        <width>260</width>
                        <height>60</height>
                        <texture border="5">MenuItemFO.png</texture>
                    </control>
                    <control type="label" id="96">
                        <description>Menu Label focus</description>
                        <posx>250</posx>
                        <posy>10</posy>
                        <height>60</height>
                        <width>241</width>
                        <align>right</align>
                        <font>font13_title</font>
                        <textcolor>white</textcolor>
                        <label>$INFO[ListItem.Label]</label>
                    </control>
                    <control type="label" id="97">

this is "cut" from one tiny list box and we have not even defined structure there. then you have to feed the texts, options (possible values) etc.

belese created dynamic renderer which takes python code & objects & workflows and generates the code for xbmc. that means new options values functions are added automatically without altering the addons design side. that means that you can control services without myself or belese to fill the table. you can add yourself.

that's why you can control updates, manage packages, snapshots. use backup and restore functions directly in the interface.

without this, update "updates list" would mean issue new xbian-config version with rewriten .xml file. btw: the few options you see within it is 120k of xml code.

of course one can think of another approaches, like render on demand if you think your list is wrong. and some others. but it looks like all this is just making from bad thing worse thing. XBMC wasn't designed for everything.

Gotham is introducing something new in that area. Not yet looked into it.

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


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

Current time: 11th May, 2025, 08:20 PM Powered By MyBB, © 2002-2025 MyBB Group.