• Welcome to TodayPlus Boards v2.
 

(new) LTwisted0.11.0

Started by Lordtwisted, January 04, 2004, 12:02:24 PM

Previous topic - Next topic

Lordtwisted

QuoteThe icons are inside the LTweatheric folder.


Put them in the colors3d folder.


Lordtwisted 8)

acschirmer

:oops: Lordtwisted,

I read... but I forgot, sorry! How much the moon, appears in region 0 the moon figure half, and would have to appear almost full? After all 90%... this moon and sun are leaving me confused, if I will be to compare in PocketStars(http://www.nomadelectronics.com/) everything this correct one, the problem I appear in the figure of the phases :roll:

Tks Tina
Dell Axim X5 pocket ppc 2003, 64 of ram, 128 SD, 256 CF

Lordtwisted

ok i got ya.

look for this:

calcvar,var7,moonphase,1
if,var,var7,,=,1
image,78,-1,moon0.png,t
else
endif
if,var,var7,,=,2
image,78,-1,moon1.png,t
else
endif
if,var,var7,,=,3
image,78,-1,moon2.png,t
else
endif
if,var,var7,,=,4
image,78,-1,moon3.png,t
else
endif
if,var,var7,,=,5
image,78,-1,moon4.png,t
else
endif
if,var,var7,,=,6
image,78,-1,moon5.png,t
else
endif
if,var,var7,,=,7
image,78,-1,moon6.png,t
else
endif
if,var,var7,,=,8
image,78,-1,moon7.png,t
else
endif


you'r if, var will start with 0, change it so it starts like mine 1.
and do the same thing for this part in the weather section:

if,var,var7,,=,1
text,207,0,New,c
text,207,40,Moon,c
image,191,9,moon0.png,t
else
endif
if,var,var7,,=,2

text,207,0,Waxing,c
text,207,40,Crescent,c
image,191,9,moon1.png,t
else
endif
if,var,var7,,=,3

text,207,0,First,c
text,207,40,Quarter,c
image,191,9,moon2.png,t
else
endif
if,var,var7,,=,4

text,207,0,Waxing,c
text,207,40,Gibbous,c
image,191,9,moon3.png,t
else
endif
if,var,var7,,=,5

text,207,0,full,c
text,207,40,Moon,c
image,191,9,moon4.png,t
else
endif
if,var,var7,,=,6

text,207,0,Waning,c
text,207,40,Gibbous,c
image,191,9,moon5.png,t
else
endif
if,var,var7,,=,7

text,207,0,Last,c
text,207,40,Quarter,c
image,191,9,moon6.png,t
else
endif
if,var,var7,,=,8

text,207,0,Waning,c
text,207,40,Crescent,c
image,191,9,moon7.png,t
else
endif



Lordtwisted 8)

acschirmer

Yes, Yes, Yes !!! Gave certain!  :D  :lol:  :o

Lordtwisted,

Very obliged for the attention! Now is perfect! LOL :wink:

Tks Tina
Dell Axim X5 pocket ppc 2003, 64 of ram, 128 SD, 256 CF

Lordtwisted

QuoteYes, Yes, Yes !!! Gave certain!    

Lordtwisted,

Very obliged for the attention! Now is perfect! LOL  

Tks Tina


NP.


Lordtwisted :D

Broesel

Quote from: Lordtwistedok i got ya.


you'r if, var will start with 0, change it so it starts like mine 1.
and do the same thing for this part in the weather section:

if,var,var7,,=,1
text,207,0,New,c
text,207,40,Moon,c
image,191,9,moon0.png,t
else
endif
if,var,var7,,=,2

text,207,0,Waxing,c
text,207,40,Crescent,c
image,191,9,moon1.png,t
else
endif
if,var,var7,,=,3

text,207,0,First,c
text,207,40,Quarter,c
image,191,9,moon2.png,t
else
endif
if,var,var7,,=,4

text,207,0,Waxing,c
text,207,40,Gibbous,c
image,191,9,moon3.png,t
else
endif
if,var,var7,,=,5

text,207,0,full,c
text,207,40,Moon,c
image,191,9,moon4.png,t
else
endif
if,var,var7,,=,6

text,207,0,Waning,c
text,207,40,Gibbous,c
image,191,9,moon5.png,t
else
endif
if,var,var7,,=,7

text,207,0,Last,c
text,207,40,Quarter,c
image,191,9,moon6.png,t
else
endif
if,var,var7,,=,8

text,207,0,Waning,c
text,207,40,Crescent,c
image,191,9,moon7.png,t
else
endif

Hmmm, .... that can't be correct Ltw, because you never get a
value 8 in the var7. The calcvar,moonphase gives only values from
0 to 7 where 0 is the newmoon, so there must be another problem
(Maybe you'r using var7 twice or something like that). After tweaking
your skin for my fits i had a problem like that too. I inserted a new
calcvar,moonphase in the weather section with the same variable
and now it shows the same phase as in region 0.
Greetings Broesel

Lordtwisted

As for the pics being diffrent drom region0 and weather section thats not the proplem, last night it was displaying wron moon, I do know it's supposed to start with 0 and end up with 7, but for now it works. And no var7 is not used for anything else, so either the page is messed up or the pics are out of order or something.


Lordtwisted :D

Broesel

Quote from: LordtwistedI do know it's supposed to start with 0 and end up with 7, but for now it works.

Strange, just when I looked on my ppc, it shows the wrong phase too ?
Tried some things, using the imagemeter and my own phases.png and
yours in the Wethersection. Both are showing last quarter, which means
(and I displayed it so on the screen) var7 returns a 6. But the illumination
shows 80% which means, it should show a waning gibbous and not a
last quarter moon. Maybe there is still a bug in the calvcar,moonphase ?

And I think the code youe are using:

if,var,var7,,=,8

text,207,0,Waning,c
text,207,40,Crescent,c
image,191,9,moon7.png,t
else
endif

will never show the right moon, because there is no value 8 in the
var7.

Greetings Broesel

Lordtwisted

QuoteAnd I think the code youe are using:

Code:
if,var,var7,,=,8

text,207,0,Waning,c
text,207,40,Crescent,c
image,191,9,moon7.png,t
else
endif

will never show the right moon, because there is no value 8 in the
var7.

Greetings Broesel

 Yes you'r right there shoud'nt be a 8 in there but it will work till we can find out whats wrong. It should be working, it was till the last 2 days. hmmmm.


Lordtwisted :D

Broesel

Yeah, now I understand, what you mean.  :D

And as the moonphases until now are not that realistic as I think they
could be, I had started this thread in the feature request :
http://www.dark-mojo.com/todayplus/viewtopic.php?t=1247

but did'nt get any respond, so it seems, that nobody is interested ?

Greetings Broesel

sdmaino

Quote from: Broesel
But the illumination shows 80% which means, it should show a waning gibbous and not a last quarter moon. Maybe there is still a bug in the calvcar,moonphase ?
Greetings Broesel

I have the same; but before we say that calcvar,moonphase has a bug, we need to know how it has been designed... I mean:

calcvar, moonphase = 0 if illumination is from 0% up to xy %, increasing
calcvar, moonphase = 1 if illumination is from xy% up to zw %, increasing
etc, etc,

(hey srs, are you there...?)

Maybe only LT's descriptions are not perfectly corresponding to calcvar's  value.

What is sure is that with illumination = 80 % calcvar, moonphase is = 6

Then we can change the related description if it is not the last quarter.

I hope I've been clear. :|
Dave

Lordtwisted

Ok everyone, I have created alot of first's for todayplus but this time It changes the rules.lol I have programed/designed something that will change the way you look at Todayplus. Since srs created an partial open codeing, We can make almost anything. The more srs opens comands like if or statements, loop, while, More var and such, Then it would be endless of things to make.

 If you can guess what i have created, you will be the first to try it out.

Try to think out side the box.




Lordtwisted :D

Broesel

Well, the astronomical definitions are:

# New Moon - Not visible
# Waxing crescent Moon - Right 1-49% visible
# First quarter Moon - Right 50% visible
# Waxing gibbous Moon - Right 51-99% visible
# Full Moon - Fully visible
# Waning gibbous Moon - Left 51-99% visible
# Third quarter Moon - Left 50% visible
# Waning crescent Moon - Left 1-49% visible

and that is, what just the values from 0 to 7 should give us, so if we
have an illumination of 80 % it cannot be a Third quarter moon like
it displays right now.

Greetings Broesel

Broesel

Quote from: Lordtwisted

 If you can guess what i have created, you will be the first to try it out.


Oh, I guess, you have created a new skin  :lol:  :lol:  :lol:

Greetings Broesel

Lordtwisted

QuoteWell, the astronomical definitions are:

# New Moon - Not visible
# Waxing crescent Moon - Right 1-49% visible
# First quarter Moon - Right 50% visible
# Waxing gibbous Moon - Right 51-99% visible
# Full Moon - Fully visible
# Waning gibbous Moon - Left 51-99% visible
# Third quarter Moon - Left 50% visible
# Waning crescent Moon - Left 1-49% visible

and that is, what just the values from 0 to 7 should give us, so if we
have an illumination of 80 % it cannot be a Third quarter moon like
it displays right now.

Greetings Broesel


Yea, it got me stumped, I am still messing around with it.


QuoteOh, I guess, you have created a new skin    


Wrong.



Lordtwisted :D