Making a Real Time Clock with seconds

You must understand the Game Editor concepts, before post here.

Making a Real Time Clock with seconds

Postby MrJolteon » Thu Apr 09, 2009 3:36 pm

Hello. You want script for a real time clock with seconds that WORKS?
Add an actor that shows the hours, called hour or hours.
Give it a text: "00".
Add an actor that shows the minutes, called minute or minutes.
Give it the same text as hours
Add an actor that shows the seconds, called second or seconds.
Give it the "00" text.
Add an actor named whatever you want with the text ": :"
Add this event:
Draw actor>Script Editor>This code:
Code: Select all
stTime t = getTime();

hours.textNumber   = t.hour;
minutes.textNumber = t.min;
seconds.textNumber = t.sec;
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

Re: Making a Real Time Clock with seconds

Postby Kalladdolf » Fri Apr 17, 2009 5:26 pm

Visual demonstration of an analog clock.
clock.zip
There.
(6.04 KiB) Downloaded 266 times

Though there seems to be a problem with the hour index. Solutions, anyone?
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Making a Real Time Clock with seconds

Postby jimmynewguy » Sat Apr 18, 2009 9:00 pm

never knew those funtions existed lol
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: Making a Real Time Clock with seconds

Postby MrJolteon » Wed May 06, 2009 2:34 pm

That clock reminds me of my DS clock... lol...
There should be a way to change the colors of the clock.
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

Re: Making a Real Time Clock with seconds

Postby DocRabbit » Wed Sep 02, 2009 7:37 pm

For anyone that comes across this and wonders about hour hand, here is the fix for it.

here is the updated code to place in the hour->draw actor script.
Code: Select all
stTime t = getTime();
if (t.hour>12)
{
 
i = ((t.hour-12) * 30)-90;
}
if (t.hour<13)
{
    i=(t.hour*30)-90;
}
xr = cos(degtorad(i))*d;
yr = sin(degtorad(i))*d;
x = 0 + xr;
y = 0 + yr;


I also did a new background and created a small graphic to better align the hands.
On view_>create actor script, I set background.x and background.y both to 0 to position it dead center.
Attachments
clockhourfixed.zip
(7.08 KiB) Downloaded 185 times
User avatar
DocRabbit
 
Posts: 114
Joined: Fri Oct 27, 2006 2:56 am
Score: 10 Give a positive score

Re: Making a Real Time Clock with seconds

Postby MrJolteon » Wed Apr 28, 2010 6:33 am

You're welcome :D
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

Re: Making a Real Time Clock with seconds

Postby Hblade » Wed Apr 28, 2010 1:02 pm

Hey awesome, jolt :D I'ma make an On Screen Multi Funtional clock now good jolt it's nice :D
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score


Return to Advanced Topics

Who is online

Users browsing this forum: No registered users and 1 guest