common_data.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // Created by Administrator on 2019/1/17.
  3. // 共用数据 如工作工作面 地图等
  4. //
  5. #ifndef WORKSPACE_WORKFACE_DATA_H
  6. #define WORKSPACE_WORKFACE_DATA_H
  7. #include <string>
  8. #include <map>
  9. #include <memory>
  10. #include "struct_def.h"
  11. struct WorkfaceDBData
  12. {
  13. int workface_id;
  14. int workface_type;
  15. std::string workface_name;
  16. int map_id;
  17. int area_id;
  18. std::string lastUpdateTime;
  19. WorkfaceDBData()
  20. {
  21. workface_id = 0;
  22. workface_type= 0;
  23. workface_name ="";
  24. map_id = 0;
  25. area_id = 0;
  26. lastUpdateTime = "";
  27. }
  28. };
  29. class common_data
  30. {
  31. public:
  32. common_data();
  33. ~common_data();
  34. public:
  35. void init_data();
  36. /*根据卡ID获取工作面ID
  37. * return -1 : 表示不存在
  38. * */
  39. int get_workface_id(std::string card_id);
  40. /*根据卡ID获取车ID
  41. * return -1 : 表示不存在
  42. * */
  43. int get_vechicle_id(std::string card_id);
  44. /*根据车ID获取卡ID
  45. * return "" : 表示不存在
  46. * */
  47. std::string get_card_id(int vechicle_id);
  48. /*获取工作面的DB数据* */
  49. std::shared_ptr<WorkfaceDBData> get_workface(int work_face_id);
  50. /*设置当前的地图ID*/
  51. void set_map_id(int map_id);
  52. private:
  53. /*初始化工作面*/
  54. int init_data_workface();
  55. /*初始化车卡对应车卡ID*/
  56. int init_data_bind_card_vechicle();
  57. /*初始化车卡对应工作面 */
  58. int init_data_bind_card_workface();
  59. /*初始化地图*/
  60. void init_data_map();
  61. public:
  62. typedef std::map<std::string, int> CardVehicleMap; // 卡ID对应车ID 对应表
  63. typedef std::map<std::string, int> CardWorkfaceMap; // 车卡和工作面对应表
  64. typedef std::map<int,std::string> VehicleCardMap; // 车ID对应卡号
  65. CardVehicleMap m_card_vehicle; // 车卡对应车ID
  66. CardWorkfaceMap m_card_workface; // 车卡对应工作面
  67. VehicleCardMap m_vehicle_card; // 车ID 对应卡ID
  68. typedef std::map<int ,std::shared_ptr<WorkfaceDBData>> WorkfaceMap;
  69. WorkfaceMap m_workface;
  70. //地图缩放信息
  71. typedef std::map<int,map_info> MAP_MAP_INFO;
  72. MAP_MAP_INFO m_map_list;
  73. //当前使用的地图
  74. int m_cur_map_id;
  75. //地图缩放比例
  76. double m_map_scale;
  77. };
  78. #endif //WORKSPACE_WORKFACE_DATA_H