ant.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. #ifndef _ANT_LIST_HPP_
  2. #define _ANT_LIST_HPP_
  3. #include <math.h>
  4. #include <array>
  5. #include <deque>
  6. #include <tuple>
  7. #include <memory>
  8. #include <algorithm>
  9. #include <sstream>
  10. #include "log.h"
  11. #include "line.h"
  12. #include "point.h"
  13. #include "write-copy.h"
  14. class client;
  15. #include"net-service.h"
  16. #include"common.h"
  17. struct path
  18. {
  19. std::array<line_v,2> m_line;
  20. std::array<double,2> m_slope;
  21. path()
  22. {
  23. for(auto &d:m_slope)
  24. d=0;
  25. }
  26. std::string to_str() const
  27. {
  28. std::stringstream ss;
  29. for(int i=0;i<2;i++)
  30. {
  31. ss<<"line:" <<m_line[i].to_string()<<"slope:"<<m_slope[i]<< " cos:"<<m_line[i].cos()<<" sin:"<<m_line[i].sin()<<" | ";
  32. }
  33. return ss.str();
  34. }
  35. bool vaild() const
  36. {
  37. return !m_line[0].empty();
  38. }
  39. line_v & operator[](int i)
  40. {
  41. return m_line[i];
  42. }
  43. const line_v & operator[](int i) const
  44. {
  45. return m_line[i];
  46. }
  47. };
  48. //?
  49. struct algo_config
  50. {
  51. const char*desc;
  52. int min_msg_cnt;
  53. int best_msg_cnt;
  54. double min_wait_time;
  55. double max_wait_time;
  56. };
  57. //
  58. struct ant :point
  59. {
  60. int m_id;
  61. std::vector<path> m_path;
  62. path & operator[](int i)
  63. {
  64. return m_path[i];
  65. }
  66. const path & operator[](int i) const
  67. {
  68. return m_path[i];
  69. }
  70. size_t size() const
  71. {
  72. return m_path.size();
  73. }
  74. std::vector<point> getsol(const double &dist) const
  75. {
  76. std::vector<point> v;
  77. for(const auto & p : m_path)
  78. {
  79. double d = dist;
  80. if(p.vaild())
  81. {
  82. point pt;
  83. if(dist <= p.m_line[0].length() || (dist > p.m_line[0].length() && p.m_line[1].empty()))
  84. {
  85. d += d*p.m_slope[0];
  86. pt = point(p.m_line[0][0].x + d*p.m_line[0].cos() , p.m_line[0][0].y + d*p.m_line[0].sin());
  87. }
  88. else
  89. {
  90. d -= p.m_line[0].length();
  91. d += d*p.m_slope[1];
  92. pt = point(p.m_line[1][0].x+d*p.m_line[1].cos(),p.m_line[1][0].y+d*p.m_line[1].sin());
  93. }
  94. v.push_back(pt);
  95. //std_info("get_sol:x:%.2f,y:%.2f",pt.x,pt.y);
  96. }
  97. else
  98. std_error(".%s","ant::getsol empty path..");
  99. }
  100. return std::move(v);
  101. }
  102. };
  103. struct site:point
  104. {
  105. static algo_config g_config[];
  106. int m_algo; //TOF:0,TDOA:1
  107. int m_num_dims; //1维:0,2维:1,3维:2
  108. double m_scale = 2.0; // 地图比例尺
  109. point m_position;
  110. int index()const;
  111. const algo_config&config()const;
  112. int id()const
  113. {
  114. return m_id;
  115. }
  116. site(int id=-1);
  117. mutable double m_height=1.5;
  118. int m_id;
  119. bool m_path_empty;
  120. std::array<ant,2> m_ant;
  121. mutable double m_ant_dist=0;
  122. mutable double m_ant_dist_sum_new=0;
  123. mutable int m_ant_dist_cnt_new=0;
  124. ///分站位置 READER_TYPE_ID
  125. int m_reader_type_id = 0;
  126. int m_map_id = 0;
  127. int m_area_id = 0;
  128. /// 设备类型,分站、通信分站、交通灯等
  129. int m_device_type_id=0;
  130. /// 指定分站定位类型:一维定位,二维定位,三维定位
  131. int m_dimension=0;
  132. std::shared_ptr<client> m_clt=nullptr;
  133. void set_client(std::shared_ptr<client>& clt)
  134. {
  135. m_clt = clt;
  136. }
  137. std::shared_ptr<client> get_client()
  138. {
  139. return m_clt;
  140. }
  141. bool is_up_site()
  142. {
  143. return READER_TYPE_ID_UP == m_reader_type_id;
  144. }
  145. point get_dstp(const point pt) const
  146. {
  147. point tmp;
  148. for(const auto & p : m_ant[0].m_path)
  149. {
  150. for(int i=0;i<2;i++)
  151. {
  152. if(!p[i].empty())
  153. {
  154. if(p[i].contain(pt,0.01))
  155. {
  156. //if(i==0)
  157. // return *this;
  158. //else
  159. tmp = p[i][0];
  160. }
  161. }
  162. }
  163. }
  164. return tmp;
  165. }
  166. void count_ant_dist(double dist_tof1, double dist_tof2)const
  167. {
  168. if(dist_tof1<10 || dist_tof2<10)
  169. return;
  170. double dist = fabs(dist_tof1 - dist_tof2);
  171. if(dist>5)
  172. return;
  173. m_ant_dist_sum_new += dist;
  174. m_ant_dist_cnt_new++;
  175. if(m_ant_dist_cnt_new >= 2500)
  176. {
  177. m_ant_dist = m_ant_dist_sum_new / m_ant_dist_cnt_new;
  178. m_ant_dist_sum_new = 0;
  179. m_ant_dist_cnt_new = 0;
  180. }
  181. }
  182. void swap()
  183. {
  184. auto v0 = m_ant[0].m_path;
  185. auto v1 = m_ant[1].m_path;
  186. std::copy (std::begin(v0),std::end(v0),std::back_inserter(m_ant[1].m_path));
  187. std::copy (std::begin(v1),std::end(v1),std::back_inserter(m_ant[0].m_path));
  188. }
  189. double ant_dist()const
  190. {
  191. return m_ant[0].dist(m_ant[1]);
  192. }
  193. bool is_path_empty()const
  194. {
  195. return m_path_empty;
  196. }
  197. bool have_valid_path()const
  198. {
  199. return m_id != -1 && ant_dist() > 0.1;
  200. }
  201. std::string to_string()const
  202. {
  203. std::stringstream ss;
  204. ss<<"site_id:"<<m_id<<"x:"<<x<<" y: "<<y<<" scale:"<<m_scale;
  205. for(const auto a:m_ant)
  206. {
  207. ss<<"<";
  208. for(const auto p:a.m_path)
  209. {
  210. ss<<"{"<<p.to_str()<<"}";
  211. }
  212. ss<<">";
  213. }
  214. return ss.str();
  215. }
  216. const point&path(int i)const
  217. {
  218. static point p;
  219. if(i>=(int)m_ant[0].m_path.size())
  220. return p ;
  221. return m_ant[0].m_path[i].m_line[0][1];
  222. }
  223. std::vector<point> solving(int ant_id, double dist)const
  224. {
  225. const ant &a = m_ant[ant_id];
  226. if(dist<50 && dist>0)
  227. {
  228. if(dist<m_height)
  229. {
  230. m_height=dist;
  231. dist=0;
  232. }
  233. else
  234. {
  235. dist=sqrt(dist*dist-m_height*m_height);
  236. }
  237. }
  238. return std::move(a.getsol(dist));
  239. }
  240. ant operator[](int i)
  241. {
  242. return m_ant[i];
  243. }
  244. const ant operator[](int i) const
  245. {
  246. return m_ant[i];
  247. }
  248. void set_ex()
  249. {
  250. if(-1 == m_id)
  251. {
  252. return;
  253. }
  254. if(m_ant[0]==m_ant[1])
  255. {
  256. log_warn("%d分站天线坐标相等.", m_id);
  257. }
  258. set( (m_ant[0].x+m_ant[1].x)/2,(m_ant[0].y+m_ant[1].y)/2);
  259. }
  260. void deal_path()
  261. {
  262. if(m_id==-1)
  263. return;
  264. swap();
  265. if((path(0).empty() && path(1).empty()))
  266. return;
  267. m_path_empty=false;
  268. for(auto &a:m_ant)
  269. for(auto &p:a.m_path)
  270. {
  271. if(!p.m_line[0].empty())
  272. {
  273. point px = p.m_line[0].line::projection(a);
  274. p.m_line[0]=line_v(px,p.m_line[0][1]);
  275. }
  276. }
  277. //std_info("%s",sit_ptr->to_string().c_str());
  278. log_info("%s",to_string().c_str());
  279. //std_info("%f----%f",sit_ptr->x,sit_ptr->y);
  280. }
  281. void delete_antenna(int antidx)
  282. {
  283. m_ant[antidx].m_path.clear();
  284. m_ant[antidx].m_id=0;
  285. point pt;
  286. m_ant[antidx].set(pt);
  287. }
  288. void clear_path()
  289. {
  290. m_ant[0].m_path.clear();
  291. m_ant[1].m_path.clear();
  292. }
  293. };
  294. struct sit_list:single_base<sit_list,int,std::shared_ptr<site>>
  295. {
  296. void load()
  297. {
  298. read_sit_list(-1);
  299. read_ant_path(-1);
  300. }
  301. // void load_from_db()
  302. // {
  303. // load();
  304. // init_site(-1);
  305. // }
  306. ///id=-1为初始化所有
  307. void load_from_db(int id)
  308. {
  309. load();
  310. init_site(id);
  311. }
  312. // void read_sit_list();
  313. // void read_ant_path();
  314. //void init_site();
  315. ///id=-1为初始化所有
  316. void read_sit_list(int id);
  317. ///id=-1为初始化所有
  318. void read_ant_path(int id);
  319. ///id=-1为初始化所有
  320. void init_site(int id);
  321. };
  322. #endif