]> git.tdb.fi Git - r2c2.git/blob - source/engineer/newtraindialog.cpp
Complete rewrite of the engineer UI
[r2c2.git] / source / engineer / newtraindialog.cpp
1 #include <msp/core/maputils.h>
2 #include <msp/strings/format.h>
3 #include "libr2c2/catalogue.h"
4 #include "libr2c2/driver.h"
5 #include "libr2c2/layout.h"
6 #include "libr2c2/vehicletype.h"
7 #include "engineer.h"
8 #include "newtraindialog.h"
9 #include "traindialog.h"
10
11 using namespace std;
12 using namespace Msp;
13 using namespace R2C2;
14
15 static string vehicle_type_name(const VehicleType *const &vehtype)
16 {
17         return format("%s %s", vehtype->get_article_number(), vehtype->get_name());
18 }
19
20 NewTrainDialog::NewTrainDialog(Engineer &e):
21         engineer(e),
22         loco_types(vehicle_type_name)
23 {
24         Loader::WidgetMap widgets;
25         DataFile::load(*this, "data/newtraindialog.ui", widgets);
26
27         drp_protocol = dynamic_cast<GLtk::Dropdown *>(get_item(widgets, "drp_protocol"));
28         drp_protocol->set_data(protocols);
29         ent_address = dynamic_cast<GLtk::Entry *>(get_item(widgets, "ent_address"));
30         ent_name = dynamic_cast<GLtk::Entry *>(get_item(widgets, "ent_name"));
31         drp_loco_type = dynamic_cast<GLtk::Dropdown *>(get_item(widgets, "drp_loco_type"));
32         drp_loco_type->set_data(loco_types);
33
34         const Driver &driver = engineer.get_layout().get_driver();
35         for(unsigned i=0;; ++i)
36         {
37                 if(const char *proto = driver.enumerate_protocols(i))
38                         protocols.append(proto);
39                 else
40                         break;
41         }
42
43         drp_protocol->set_selected_index(0);
44
45         const Catalogue::VehicleMap &cat_vtypes = engineer.get_layout().get_catalogue().get_vehicles();
46         for(Catalogue::VehicleMap::const_iterator i=cat_vtypes.begin(); i!=cat_vtypes.end(); ++i)
47                 if(i->second->is_locomotive())
48                         loco_types.append(i->second);
49 }
50
51 void NewTrainDialog::on_response(int code)
52 {
53         if(code)
54         {
55                 int index = drp_protocol->get_selected_index();
56                 if(index<0)
57                         return;
58                 string protocol = protocols.get(index);
59
60                 unsigned address = lexical_cast<unsigned>(ent_address->get_text());
61
62                 index = drp_loco_type->get_selected_index();
63                 if(index<0)
64                         return;
65                 const VehicleType &type = *loco_types.get(index);
66
67                 Train *train = new Train(engineer.get_layout(), type, address, protocol);
68                 train->set_name(ent_name->get_text());
69
70                 GLtk::Container *root = parent;
71                 while(root->get_parent())
72                         root = root->get_parent();
73
74                 TrainDialog *dlg = new TrainDialog(engineer, *train);
75                 root->add(*dlg);
76                 dlg->autosize();
77         }
78 }