Implement more functionality:
[stopish] / src / timer.c
1 //      timer.c
2 //
3 //      Copyright 2009 Michael Cronenworth <mike@cchtml.com>
4 //
5 //      This program is free software; you can redistribute it and/or modify
6 //      it under the terms of the GNU General Public License as published by
7 //      the Free Software Foundation; either version 2 of the License, or
8 //      (at your option) any later version.
9 //
10 //      This program is distributed in the hope that it will be useful,
11 //      but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //      GNU General Public License for more details.
14 //
15 //      You should have received a copy of the GNU General Public License
16 //      along with this program; if not, write to the Free Software
17 //      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 //      MA 02110-1301, USA.
19
20 #include <string.h>
21 #include <stdlib.h>
22 #include <sys/time.h>
23 #include <gtk/gtk.h>
24 #include <libosso.h>
25
26 #include "stopish.h"
27
28 static long int timerStartTime = 0;
29 static long int timerSave = 0;
30
31
32 //
33 // Timer callback
34 //
35 gint stopish_timeout_cb( gpointer data )
36 {
37     GtkLabel *timerLabel;
38     char formatBuffer[64];
39     char *tempString;
40
41     if ( !data )
42         return -1;
43
44     timerLabel = ( GtkLabel * ) data;
45
46     // print to screen
47     tempString = stopish_get_time_string(  );
48     sprintf( formatBuffer, "<span font_family=\"monospace\" size=\"xx-large\">%s</span>", tempString );
49     free( tempString );
50     gtk_label_set_markup( GTK_LABEL( timerLabel ), formatBuffer );
51
52     return TRUE;
53 }
54
55
56 char *stopish_get_time_string( void )
57 {
58     char *timeBuffer;
59     long int currentTime;
60     int h, m, s, ss;
61
62     // get current time
63     currentTime = stopish_current_time(  );
64
65     // calculate time format
66     ss = ( currentTime - timerStartTime ) % 10;
67     s = ( currentTime - timerStartTime ) / 10;
68     m = s / 60;
69     s = s % 60;
70     h = m / 60;
71     m = m % 60;
72
73     // rollover once we hit one day
74     if ( h > 24 ) {
75         stopish_set_time_start( stopish_current_time(  ) );
76         h = m = s = ss = 0;
77     }
78
79     timeBuffer = malloc( 64 );
80     sprintf( timeBuffer, "%.02d:%.02d:%.02d.%.1d",
81              h, m, s, ss );
82
83     return timeBuffer;
84 }
85
86
87 void stopish_set_time_start( long int time )
88 {
89     // reset timer to user-inputted time
90     timerStartTime = time;
91     timerSave = 0;
92 }
93
94
95 void stopish_timer_resume( void )
96 {
97     timerStartTime = stopish_current_time(  );
98     timerStartTime -= timerSave;
99 }
100
101
102 void stopish_timer_save( void )
103 {
104     // save time counter
105     timerSave = stopish_current_time(  ) - timerStartTime;
106 }
107
108
109 long int stopish_current_time( void )
110 {
111     struct timeval tv;
112     int s, us;
113
114     gettimeofday( &tv, NULL );
115     s = tv.tv_sec % 100000;
116     us = tv.tv_usec / 100000;
117
118     return ( s * 10 + us );
119 }