MatrixScreesaver: Color Changer
#1
hi,

i tried to add the color changer to the matrix screensaver. but i hang on reading the setting from the xml.

if one of you give a tipp how do this, this would be ok!
it's just a simple add in! or may some of you will add this channge into the source..

Quote:cguiwindowscreensaver::cguiwindowscreensaver(void)
:cguiwindow(0)
{
srand( timegettime() );
m_buseback = true;
// m_dwcolor = 0xff0000ff; //18.02.2004 geminiserver: --> green=0 rot=1; gelb=2; blau=3; orange=4; weis=5; darkgreen=6;
test = g_stsettings.m_strusematrixcolor[2];
switch (test)
{
case '1':
{m_dwcolor = 0xffff0000;}
break;
case '2':
{m_dwcolor = 0xffffff00;}
break;
case '3':
{m_dwcolor = 0xff0000ff;}
break;
case '4':
{m_dwcolor = 0xffff8000;}
break;
case '5':
{m_dwcolor = 0xffffffff;}
break;
case '6':
{m_dwcolor = 0xff008000;}
break;
case '0':
{m_dwcolor = 0xff00ff00;}
break;
}
m_binit = true;
m_bdoeffect = true;
}

regards
geminiserver
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply

Logout Mark Read Team Forum Stats Members Help
MatrixScreesaver: Color Changer0