source:
network-game/common/Common.h@
0129700
Last change on this file since 0129700 was e6c26b8, checked in by , 11 years ago | |
---|---|
|
|
File size: 491 bytes |
Rev | Line | |
---|---|---|
[3b1efcc] | 1 | #ifndef _COMMON_H |
2 | #define _COMMON_H | |
3 | ||
[d05086b] | 4 | #include <string> |
5 | ||
6 | using namespace std; | |
7 | ||
[0693e25] | 8 | struct FLOAT_POSITION; |
[edfd1d0] | 9 | |
[0693e25] | 10 | struct POSITION { |
[edfd1d0] | 11 | int x; |
12 | int y; | |
[0693e25] | 13 | FLOAT_POSITION toFloat(); |
14 | }; | |
[b07eeac] | 15 | |
[0693e25] | 16 | struct FLOAT_POSITION { |
17 | float x; | |
18 | float y; | |
19 | POSITION toInt(); | |
20 | }; | |
[3b1efcc] | 21 | |
[b07eeac] | 22 | void set_nonblock(int sock); |
23 | unsigned long long getCurrentMillis(); | |
[d05086b] | 24 | string getCurrentDateTimeString(); |
[0693e25] | 25 | |
26 | POSITION screenToMap(POSITION pos); | |
27 | POSITION mapToScreen(POSITION pos); | |
[b07eeac] | 28 | float posDistance(FLOAT_POSITION pos1, FLOAT_POSITION pos2); |
[60017fc] | 29 | |
[3b1efcc] | 30 | #endif |
Note:
See TracBrowser
for help on using the repository browser.