1 | #include "Common.h"
|
---|
2 |
|
---|
3 | #include <sstream>
|
---|
4 | #include <cmath>
|
---|
5 | #include <ctime>
|
---|
6 |
|
---|
7 | using namespace std;
|
---|
8 |
|
---|
9 | FLOAT_POSITION POSITION::toFloat() {
|
---|
10 | FLOAT_POSITION floatPosition;
|
---|
11 | floatPosition.x = x;
|
---|
12 | floatPosition.y = y;
|
---|
13 |
|
---|
14 | return floatPosition;
|
---|
15 | }
|
---|
16 |
|
---|
17 | POSITION FLOAT_POSITION::toInt() {
|
---|
18 | POSITION position;
|
---|
19 | position.x = x;
|
---|
20 | position.y = y;
|
---|
21 |
|
---|
22 | return position;
|
---|
23 | }
|
---|
24 |
|
---|
25 | void set_nonblock(int sock)
|
---|
26 | {
|
---|
27 | #if defined WINDOWS
|
---|
28 | unsigned long mode = 1;
|
---|
29 | ioctlsocket(sock, FIONBIO, &mode);
|
---|
30 | #elif defined LINUX
|
---|
31 | int flags;
|
---|
32 | flags = fcntl(sock, F_GETFL,0);
|
---|
33 | assert(flags != -1);
|
---|
34 | fcntl(sock, F_SETFL, flags | O_NONBLOCK);
|
---|
35 | #endif
|
---|
36 | }
|
---|
37 |
|
---|
38 | unsigned long long getCurrentMillis()
|
---|
39 | {
|
---|
40 | unsigned long long numMilliseconds;
|
---|
41 |
|
---|
42 | #if defined WINDOWS
|
---|
43 | numMilliseconds = GetTickCount();
|
---|
44 | #elif defined LINUX
|
---|
45 | timespec curTime;
|
---|
46 | clock_gettime(CLOCK_REALTIME, &curTime);
|
---|
47 |
|
---|
48 | numMilliseconds = curTime.tv_sec*(unsigned long long)1000+curTime.tv_nsec/(unsigned long long)1000000;
|
---|
49 | #endif
|
---|
50 |
|
---|
51 | return numMilliseconds;
|
---|
52 | }
|
---|
53 |
|
---|
54 | string getCurrentDateTimeString() {
|
---|
55 | ostringstream timeString;
|
---|
56 |
|
---|
57 | time_t millis = time(NULL);
|
---|
58 | struct tm *time = localtime(&millis);
|
---|
59 |
|
---|
60 | timeString << time->tm_hour << ":" << time->tm_min << ":"<< time->tm_sec << " " << (time->tm_mon+1) << "/" << time->tm_mday << "/" << (time->tm_year+1900);
|
---|
61 |
|
---|
62 | return timeString.str();
|
---|
63 | }
|
---|
64 |
|
---|
65 | float posDistance(FLOAT_POSITION pos1, FLOAT_POSITION pos2) {
|
---|
66 | float xDiff = pos2.x - pos1.x;
|
---|
67 | float yDiff = pos2.y - pos1.y;
|
---|
68 |
|
---|
69 | return sqrt( pow(xDiff,2) + pow(yDiff,2) );
|
---|
70 | }
|
---|
71 |
|
---|
72 | POSITION screenToMap(POSITION pos)
|
---|
73 | {
|
---|
74 | pos.x = pos.x-300;
|
---|
75 | pos.y = pos.y-100;
|
---|
76 |
|
---|
77 | if (pos.x < 0 || pos.y < 0)
|
---|
78 | {
|
---|
79 | pos.x = -1;
|
---|
80 | pos.y = -1;
|
---|
81 | }
|
---|
82 |
|
---|
83 | return pos;
|
---|
84 | }
|
---|
85 |
|
---|
86 | POSITION mapToScreen(POSITION pos)
|
---|
87 | {
|
---|
88 | pos.x = pos.x+300;
|
---|
89 | pos.y = pos.y+100;
|
---|
90 |
|
---|
91 | return pos;
|
---|
92 | }
|
---|