1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
3 | // See LICENSE.txt for details. |
---|
4 | |
---|
5 | #ifndef _CONVERT_H_ |
---|
6 | #define _CONVERT_H_ |
---|
7 | |
---|
8 | #include "nonstd.h" |
---|
9 | #include "nonstd_math.h" |
---|
10 | #include "nonstd_stl.h" |
---|
11 | #include "2d.h" |
---|
12 | #include <stdint.h> |
---|
13 | |
---|
14 | |
---|
15 | typedef XY<double> Pt2D; |
---|
16 | |
---|
17 | #ifdef LINUX |
---|
18 | #define UINT64_FORMAT "%llu" //we want to avoid this and ambiguous "long long", but gcc does not seem to support I64u (yet?) |
---|
19 | #else |
---|
20 | #define UINT64_FORMAT "%I64u" |
---|
21 | #endif |
---|
22 | |
---|
23 | struct Convert |
---|
24 | { |
---|
25 | public: |
---|
26 | static int toInt(string s); |
---|
27 | static float toFloat(string s); |
---|
28 | static string toLowerCase(string s); |
---|
29 | static string toUpperCase(string s); |
---|
30 | static char toLowerCase(char c); |
---|
31 | static char toUpperCase(char c); |
---|
32 | template<class T> static string _toString(const T& value); |
---|
33 | static string toString(unsigned int v); |
---|
34 | static string toString(int v); |
---|
35 | static string toString(short v); |
---|
36 | static string toString(float v); |
---|
37 | static string toString(double v); |
---|
38 | static string zeroPad(string s, int l) { while ((int)s.length() < l) s = string("0") + s; return s; } |
---|
39 | static uint32_t hexToInt(const string& col); |
---|
40 | |
---|
41 | static double toRadians(double angle) { return angle*M_PI / 180; } |
---|
42 | static double toDegrees(double angle) { return angle / M_PI * 180; } |
---|
43 | static double atan_2(double y, double x) { if (x == 0 && y == 0) return 0; else return atan2(y, x); } //needed by borland 5/6 only? |
---|
44 | |
---|
45 | static double odleglosc_sq(double x1, double y1, double x2, double y2) //odleglosc do kwadratu, wystarczy do porownywania |
---|
46 | { |
---|
47 | double dx = x2 - x1, dy = y2 - y1; return dx*dx + dy*dy; |
---|
48 | } |
---|
49 | static double odleglosc_sq(const Pt2D& p1, const Pt2D& p2) //odleglosc do kwadratu |
---|
50 | { |
---|
51 | return odleglosc_sq(p1.x, p1.y, p2.x, p2.y); |
---|
52 | } |
---|
53 | |
---|
54 | static double odleglosc(double x1, double y1, double x2, double y2) { return sqrt(odleglosc_sq(x1, y1, x2, y2)); } |
---|
55 | static double odleglosc(const Pt2D& p1, const Pt2D& p2) |
---|
56 | { |
---|
57 | return sqrt(odleglosc_sq(p1, p2)); |
---|
58 | } |
---|
59 | |
---|
60 | //static float odleglosc(int x1,int y1,int x2,int y2) {float dx=x1-x2; float dy=y1-y2; return sqrt(dx*dx+dy*dy);} |
---|
61 | //static float odleglosc(float x1,float y1,float x2,float y2) {return sqrt(odleglosc_sq(x1,y1,x2,y2));} |
---|
62 | //static float odleglosc_sq(float x1,float y1,float x2,float y2) {float dx=x1-x2; float dy=y1-y2; return dx*dx+dy*dy;} |
---|
63 | |
---|
64 | static struct tm localtime(const time_t &timep);//jak ::localtime ale zwraca strukture zamiast wskaznika, ref w parametrze dla wygodnego wywolywania |
---|
65 | static string asctime(const struct tm &tm);//jak ::asctime ale thread safe i bez glupiego \n na koncu, ref w parametrze dla wygodnego wywolywania |
---|
66 | |
---|
67 | static std::wstring strTOwstr(const char *s) |
---|
68 | { |
---|
69 | string str(s); |
---|
70 | return std::wstring(str.begin(), str.end()); |
---|
71 | } |
---|
72 | |
---|
73 | static string wstrTOstr(const wchar_t *s) |
---|
74 | { |
---|
75 | wstring str(s); |
---|
76 | return string(str.begin(), str.end()); |
---|
77 | } |
---|
78 | |
---|
79 | static string wstrToUtf8(const wchar_t *str); |
---|
80 | #ifdef _WIN32 |
---|
81 | static wstring utf8ToUtf16(const char *str); |
---|
82 | #endif |
---|
83 | }; |
---|
84 | |
---|
85 | |
---|
86 | |
---|
87 | struct Angle //normalized angle in radians [0,2pi) and degrees [0,360) with pre-computed sine and cosine and degree as integer [0,359] |
---|
88 | { |
---|
89 | private: |
---|
90 | double angle; //in radians, read-only |
---|
91 | public: |
---|
92 | double angle_deg; //read-only |
---|
93 | int angle_deg_int; //read-only |
---|
94 | |
---|
95 | Angle() { set(0); } |
---|
96 | Angle(double k) { set(k); } |
---|
97 | Angle(Angle &kt) { set(kt.get()); } |
---|
98 | Angle(double dy, double dx) { set(dy, dx); } |
---|
99 | void set(double k) { k = fmod(k, M_PI * 2); if (k < 0) k += M_PI * 2; angle = k; sine = sin(k); cosine = cos(k); angle_deg = Convert::toDegrees(angle); angle_deg_int = roundToInt(angle_deg); angle_deg_int %= 360; } |
---|
100 | void set(double dy, double dx) { set(Convert::atan_2(dy, dx)); } |
---|
101 | void add(double dk) { set(angle + dk); } |
---|
102 | void add(Angle &kt) { set(angle + kt.get()); } |
---|
103 | double get() { return angle; } |
---|
104 | double sine, cosine; |
---|
105 | }; |
---|
106 | |
---|
107 | |
---|
108 | #endif |
---|