-
Notifications
You must be signed in to change notification settings - Fork 5
/
robotSimPanel.cpp
121 lines (91 loc) · 2.98 KB
/
robotSimPanel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include "robotSimPanel.h"
#include "simulatedWorld.h"
BEGIN_EVENT_TABLE(RobotSimPanel, wxFrame)
EVT_COMMAND(wxID_ANY, wxEVT_GENERIC_SLIDER_CHANGE, RobotSimPanel::OnValueChanged)
EVT_CLOSE(RobotSimPanel::OnClose)
END_EVENT_TABLE()
RobotSimPanel::RobotSimPanel(wxWindow *parent, wxWindowID id,const wxString& title_frame, NodeTree* itemData,
NodeTree *parentData, bool onlyjoint)
: wxFrame(parent, id,title_frame, wxDefaultPosition, wxDefaultSize,wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
{
this->SetIcon(wxIcon(joint_xpm));
itemnode = itemData;
itemParentData=parentData;
simplejoint=onlyjoint;
wxPanel* panel=new wxPanel(this, wxID_ANY);
title = new wxStaticText(panel,wxID_ANY,wxEmptyString, wxDefaultPosition, wxDefaultSize);
wxBoxSizer *nbox = new wxBoxSizer(wxHORIZONTAL);
nbox->Add(title,0,wxEXPAND|wxALL,5);
wxBoxSizer *vbox = new wxBoxSizer(wxVERTICAL);
if (!simplejoint)
{
numJoints = itemnode->pointer.robotsim->getNumJoints();
RobotSim* robot = itemnode->pointer.robotsim;
for(int i=0;i<numJoints;i++)
{
nameJoint.Printf(wxT("Joint %d"),i);
joint = new GenericSlider(panel,nameJoint,wxDefaultPosition,wxDefaultSize,false);
listJoints.push_back(joint);
vbox->Add(joint,0,wxEXPAND|wxALL,5);
vbox->AddSpacer(10);
}
for(int i=0;i<numJoints;i++)
{
double max,min,val;
robot->getJointLimits(i,max,min);
listJoints[i]->setProperties(min,max,true);
robot->getJointValue(i,val);
listJoints[i]->setValue(val);
}
}
else
{
SimpleJoint* simplejoint = itemnode->pointer.simplejoint;
nameJoint.Printf(wxT("Joint"));
joint = new GenericSlider(panel,nameJoint,wxDefaultPosition,wxDefaultSize,false);
vbox->Add(joint,0,wxEXPAND|wxALL,5);
double max1,min1,val1;
simplejoint->getMaxMin(max1,min1);
joint->setProperties(min1,max1,true);
val1=simplejoint->getValue();
joint->setValue(val1);
}
wxBoxSizer *tbox = new wxBoxSizer(wxVERTICAL);
tbox->Add(nbox,0,wxEXPAND|wxALIGN_TOP,5);
//tbox->Add(vbox,0,wxEXPAND|wxALIGN_BOTTOM,5);
tbox->Add(vbox,0,wxEXPAND,5);
panel->SetSizer(tbox);
tbox->SetSizeHints( this );
}
void RobotSimPanel::OnValueChanged(wxCommandEvent& event)
{
if (!simplejoint)
for(int i=0;i<numJoints;i++)
{
double value = listJoints[i]->getValue();
itemnode->pointer.robotsim->setJointValue(i,value);
itemnode->getSimu()->getChild()->RefreshChild();
}
else
{
double value = joint->getValue();
itemnode->pointer.simplejoint->setValue(value);
itemnode->getSimu()->getChild()->RefreshChild();
}
event.Skip();
}
void RobotSimPanel::setManageWindow (ManageWindows* mg)
{
managewindow=mg;
mg->addWindowRobotSim(this);
}
void RobotSimPanel::Delete()
{
managewindow->WindowRobotSimIsClosed(this);
Destroy();
}
void RobotSimPanel::OnClose(wxCloseEvent& event)
{
managewindow->WindowRobotSimIsClosed(this);
Destroy();
}