-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathztimec.c
More file actions
64 lines (51 loc) · 1.77 KB
/
Copy pathztimec.c
File metadata and controls
64 lines (51 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
Copyright (C) 1997-2008 ZSNES Team ( zsKnight, _Demo_, pagefault, Nach )
http://www.zsnes.com
http://sourceforge.net/projects/zsnes
https://zsnes.bountysource.com
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <time.h>
#include "ztimec.h"
u4 GetTimeInSeconds(void)
{
time_t current;
struct tm* timeptr;
time(¤t);
timeptr = localtime(¤t);
return (timeptr->tm_hour * 60 + timeptr->tm_min) * 60 + timeptr->tm_sec;
}
u4 GetTime(void)
{
unsigned int value;
struct tm* newtime;
time_t long_time;
time(&long_time);
newtime = localtime(&long_time);
value = ((newtime->tm_sec) % 10) + ((newtime->tm_sec) / 10) * 16
+ ((((newtime->tm_min) % 10) + ((newtime->tm_min) / 10) * 16) << 8)
+ ((((newtime->tm_hour) % 10) + ((newtime->tm_hour) / 10) * 16) << 16);
return (value);
}
u4 GetDate(void)
{
unsigned int value;
struct tm* newtime;
time_t long_time;
time(&long_time);
newtime = localtime(&long_time);
value = ((newtime->tm_mday) % 10) + ((newtime->tm_mday) / 10) * 16
+ (((newtime->tm_mon) + 1) << 8)
+ ((((newtime->tm_year) % 10) + ((newtime->tm_year) / 10) * 16) << 16)
+ ((newtime->tm_wday) << 28);
return (value);
}