#include <unistd.h>
#include <glibmm/thread.h>
+#define INFINITO 99999999
+
Principal::Principal(BaseObjectType *co, const Glib::RefPtr<Gnome::Glade::Xml> &rg):Gtk::Window(co),refXml(rg)
{
Gtk::MenuItem *conect=0, *exit=0, *about=0, *mnu_prop=0, *mnu_disconnect=0;
- Gtk::Button *btn_get=0, *bar_connect=0;
+ Gtk::Button *bar_connect=0;
txt_view = 0;
- txt_target = txt_command = txt_args = 0;
work_place = 0;
lbl_cap_flujo = lbl_cap_extra = lbl_extra = lbl_nombre = lbl_color = lbl_flujo = 0;
btn_simulate = btn_pause = 0;
+ anim_frames[0] = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/anim_0.png");
+ anim_frames[1] = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/anim_1.png");
+ anim_frames[2] = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/anim_2.png");
+ anim_frames[3] = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/anim_3.png");
+ anim_frames[4] = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/anim_4.png");
+ current_frame = 0;
+
+ anim = 0;
+ rg->get_widget("anim_frames", anim);
+ anim->set(anim_frames[current_frame]);
+
rg->get_widget("btn_pausa", btn_pause);
rg->get_widget("btn_simular", btn_simulate);
rg->get_widget("btn_activar", btn_activar);
rg->get_widget("mnu_prop", mnu_prop);
rg->get_widget_derived("dlg_property", dlg_property);
rg->get_widget_derived("dlgConectar", dlg_conectar);
- rg->get_widget("btn_get", btn_get);
rg->get_widget("txt_view", txt_view);
- rg->get_widget("txt_target", txt_target);
- rg->get_widget("txt_command", txt_command);
- rg->get_widget("txt_args", txt_args);
rg->get_widget("bar_connect", bar_connect);
rg->get_widget("work_place", work_place);
rg->get_widget("ico_conected", ico_conected);
bar_connect->signal_clicked().connect( SigC::slot(*this, &Principal::on_mnu_file_connect));
exit->signal_activate().connect( SigC::slot(*this, &Principal::on_mnu_file_exit));
about->signal_activate().connect( SigC::slot(*this, &Principal::on_mnu_help_about));
- btn_get->signal_clicked().connect( SigC::slot(*this, &Principal::on_get_clicked) );
btn_activar->signal_clicked().connect( SigC::slot(*this, &Principal::on_btn_activar_clicked) );
btn_simulate->signal_clicked().connect( SigC::slot(*this, &Principal::on_btn_simulate_clicked) );
btn_pause->signal_clicked().connect( SigC::slot(*this, &Principal::on_btn_pause_clicked) );
conexion = NULL;
is_xml_loaded = false;
last_selected = NULL;
+ paused = true;
update_ui.connect( SigC::slot(*this, &Principal::update_items_prop ) );
load_xml_dispatch.connect( SigC::slot(*this, &Principal::loadXML ) );
gc = Gdk::GC::create(get_window());
+ color_low = Gdk::Color("blue");
+ color_high = Gdk::Color("red");
+ Gtk::Widget::get_default_colormap()->alloc_color(color_low);
+ Gtk::Widget::get_default_colormap()->alloc_color(color_high);
}
Principal::~Principal()
ViewItem *tmp = find_item(*linea);
x2 = tmp->x + tmp->out_x;
y2 = tmp->y + tmp->out_y;
+ if (tmp->get_open()) {
+ gc->set_foreground(color_high);
+ } else {
+ gc->set_foreground(color_low);
+ }
gc->set_line_attributes(3, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
window->draw_line(gc, x2+tmp->item_offset_x, y2+tmp->item_offset_y, x2+tmp->item_offset_x, y1+i->second->offset_y);
window->draw_line(gc, x2+tmp->item_offset_x, y1+i->second->offset_y, x1+i->second->offset_x, y1+i->second->offset_y);
ViewItem *tmp = find_item(*linea);
x2 = tmp->x + tmp->in_x;
y2 = tmp->y + tmp->in_y;
+ if (i->second->get_open()) {
+ gc->set_foreground(color_high);
+ } else {
+ gc->set_foreground(color_low);
+ }
gc->set_line_attributes(3, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
window->draw_line(gc, x1+i->second->offset_x, y1+i->second->offset_y, x1+i->second->offset_x, y2+tmp->item_offset_y);
window->draw_line(gc, x1+i->second->offset_x, y2+tmp->item_offset_y, x2+tmp->item_offset_x, y2+tmp->item_offset_y);
void Principal::update_items_prop()
{
- if (last_selected == NULL) return;
+ if (last_selected != NULL) {
+ lbl_nombre->set_text(last_selected->get_name());
+ lbl_flujo->set_text(last_selected->get_actual_flow());
+ lbl_extra->set_text(last_selected->get_extra());
- lbl_nombre->set_text(last_selected->get_name());
- lbl_flujo->set_text(last_selected->get_actual_flow());
- lbl_extra->set_text(last_selected->get_extra());
+ lbl_cap_flujo->set_text(last_selected->get_cap_flow());
+ lbl_cap_extra->set_text(last_selected->get_cap_extra());
- lbl_cap_flujo->set_text(last_selected->get_cap_flow());
- lbl_cap_extra->set_text(last_selected->get_cap_extra());
+ color_preview->modify_bg(Gtk::STATE_NORMAL, last_selected->get_color());
+ color_preview->queue_draw();
+ }
- color_preview->modify_bg(Gtk::STATE_NORMAL, last_selected->get_color());
- color_preview->queue_draw();
+ if (!paused) {
+ current_frame++;
+ if (current_frame > 4) {
+ current_frame = 0;
+ }
+ anim->set(anim_frames[current_frame]);
+ }
// Mando a redibujar a todos los items
std::map<const std::string, ViewItem *>::iterator i;
for(i=mapItems.begin(); i!=mapItems.end(); i++) {
i->second->queue_draw();
}
-
+ work_place->queue_draw();
}
void Principal::on_conexion_frame(const std::string &frame)
txt_view->get_buffer()->insert_at_cursor("\n");
}
-void Principal::on_get_clicked()
-{
- if (conexion == NULL) {
- txt_view->get_buffer()->insert_at_cursor("SIN CONEXION\n");
- return;
- }
-
- PlaQui::Server::Command command(txt_target->get_text(), txt_command->get_text());
- command.add_arg( txt_args->get_text() );
- txt_view->get_buffer()->insert_at_cursor("Enviando comando\n");
- try {
- conexion->send(command);
- }
- catch (...) {
- txt_view->get_buffer()->insert_at_cursor("EXCEPTION EN conexion->send !!\n");
- }
-
-}
-
void Principal::loadXML()
{
// ya lo cargue
tmp_b = get_bool_from_xml(items->children);
item_name = (char *)xmlGetProp(items, BAD_CAST"name");
mapItems[item_name]->set_open(tmp_b);
- } else if (xmlStrcmp(items->name, BAD_CAST"color")==0) {
+ } else if (xmlStrcmp(items->name, BAD_CAST"logic")==0) {
+ tmp_b = get_bool_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_open(tmp_b);
+ } else if (xmlStrcmp(items->name, BAD_CAST"color")==0) {
item_name = (char *)xmlGetProp(items, BAD_CAST"name");
mapItems[item_name]->set_color( get_rgb_from_xml(items->children) );
} else if (xmlStrcmp(items->name, BAD_CAST"tank")==0) {
Gdk::Color Principal::get_rgb_from_xml(xmlNodePtr nodo)
{
- unsigned r,g,b;
+ gushort r,g,b;
while (nodo != NULL) {
if (nodo->type == XML_ELEMENT_NODE) {
if (xmlStrcmp(nodo->name, BAD_CAST"r")==0)
}
nodo = nodo->next;
}
- r = 65535 * r / 255;
- g = 65535 * g / 255;
- b = 65535 * b / 255;
+ r = static_cast<gushort>(65535 * (r / 255.0f));
+ g = static_cast<gushort>(65535 * (g / 255.0f));
+ b = static_cast<gushort>(65535 * (b / 255.0f));
Gdk::Color c;
c.set_rgb(r,g,b);
return c;
}
+
float Principal::get_float_from_xml(xmlNodePtr nodo)
{
float tmp = -1;
}
nodo = nodo->next;
}
+ if (tmp == INFINITO) tmp = 0;
return tmp;
}
PlaQui::Server::Command c("plant", "start");
c.add_arg("default");
conexion->send(c);
+ paused = false;
}
void Principal::on_btn_pause_clicked()
PlaQui::Server::Command c("plant", "stop");
c.add_arg("default");
conexion->send(c);
+ paused = true;
}