2009年10月28日水曜日

PDT clock

時間を忘れがちに遊んでいるので
時計を作りたいって思ってます。

//Simple clock by Beverly Larkin to show example of how to use llGetWallClock()
 
integer H; //Hours
integer M; //Minutes
string AP; //AM or PM
 
default
{
state_entry()
{
integer T = (integer)llGetWallclock(); // Get time PST
if (T > 43200) //If it's after noon
{
T = T - 43200; //Subtract 12 hours
AP = "PM"; //set to PM
H = T / 3600; //get hours
M = (T - (H * 3600)) / 60; //get minutes
if(H == 0) //if the hour is 0
{
H = 12; // make the hour 12
}
}
else
{
AP = "AM"; //set to AM
H = T / 3600; //get the hour
M = (T - (H * 3600)) / 60; //get minutes
if(H == 0) //if the hour is 0
{
H = 12; // make the hour 12
}
}
if(M < 10)
{
llOwnerSay((string)H + ":" + "0" + (string)M + AP); //if the minutes is less than 10 add the extra 0 (so it doesn't say 1:3PM) for example
}
else
{
llOwnerSay((string)H + ":" + (string)M + AP); // otherwise just say the time
}
}
}
 

2 件のコメント:

  1. いきなりのコメントで失礼いたします。

    サイトガジェットでPDTとJSPの時計を作ったのですが
    summer time ってどうやって判別、切り替えすればいいのかご存じないですか?

    http://www.clearspring.com/widgets/4abc96eb9212c9ac

    返信削除
  2. 答え書いてみました。
    http://slblogtrackbacker.blogspot.com/2009/10/clocksummer-time.html

    返信削除