00001 // Copyright (C) 2004-2006 University of Louisiana at Lafayette 00002 // Authors: Abhijeet Naikare 00003 00004 #ifndef CAJUN_LANE_VIZ_H 00005 #define CAJUN_LANE_VIZ_H 00006 00007 // #define ACTUAL_BEAM 1 00008 // #define OBSTACLE_POSITION 2 00009 00010 #include "lane_data.H" 00011 #include "data_queue.H" 00012 #include "conf.H" 00013 #include "cbviz_util.H" 00014 #include <string> 00015 #include "component_interface.H" 00016 00017 namespace cajun 00018 { 00019 class monovision_visualization_t: public component_interface_t 00020 { 00021 public: 00022 monovision_visualization_t (double cbviz_origin[3], conf_t &conf, 00023 world_state_t *ws_); 00024 virtual ~monovision_visualization_t() {;}; 00025 void update_data (double bot_pos_[3]); 00026 void display(double bot_pos[3]); 00027 void toggle_display (); 00028 private: 00029 lane_data_t m_lane_data; 00030 }; 00031 }; 00032 #endif