static int l_clear(lua_State *l) { UI::Box *b = LuaObject<UI::Box>::CheckFromLua(1); b->Clear(); return 0; }
static int l_remove(lua_State *l) { UI::Box *b = LuaObject<UI::Box>::CheckFromLua(1); UI::Widget *w = LuaObject<UI::Widget>::CheckFromLua(2); b->Remove(w); return 0; }
void ModelViewer::SetupUI() { UI::Context *c = m_ui.Get(); c->SetFont(UI::Widget::FONT_XSMALL); for (unsigned int i=0; i<9; i++) colorSliders[i] = 0; for (unsigned int i=0; i<6; i++) thrustSliders[i] = 0; animSlider = 0; animValue = 0; if (!m_model) return SetupFilePicker(); const int spacing = 5; UI::SmallButton *reloadButton; UI::SmallButton *toggleGridButton; UI::CheckBox *collMeshCheck; UI::CheckBox *gunsCheck; UI::VBox* outerBox = c->VBox(); UI::VBox* mainBox = c->VBox(5); UI::VBox* bottomBox = c->VBox(5); UI::HBox* sliderBox = c->HBox(); bottomBox->PackEnd(sliderBox); outerBox->PackEnd(UI::WidgetSet( c->Expand()->SetInnerWidget(c->Grid(UI::CellSpec(0.20f,0.8f,0.25f),1) ->SetColumn(0, mainBox) ->SetColumn(2, m_logScroller.Get()) ), bottomBox )); c->SetInnerWidget(c->Margin(spacing)->SetInnerWidget(outerBox)); //model name + reload button: visible even if loading failed mainBox->PackEnd(nameLabel = c->Label(m_modelName)); nameLabel->SetFont(UI::Widget::FONT_NORMAL); add_pair(c, mainBox, reloadButton = c->SmallButton(), "Reload model"); reloadButton->onClick.connect(sigc::bind(sigc::mem_fun(*this, &ModelViewer::OnReloadModel), reloadButton)); if (m_model == 0) { c->Layout(); return; } add_pair(c, mainBox, toggleGridButton = c->SmallButton(), "Grid mode"); add_pair(c, mainBox, collMeshCheck = c->CheckBox(), "Collision mesh"); //pattern selector if (m_model->SupportsPatterns()) { mainBox->PackEnd(c->Label("Pattern:")); mainBox->PackEnd(patternSelector = c->DropDown()->AddOption("Default")); sliderBox->PackEnd( c->Grid(3,4) ->SetColumn(0, UI::WidgetSet( c->Label("Color 1"), c->HBox(spacing)->PackEnd(c->Label("R"))->PackEnd(colorSliders[0] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("G"))->PackEnd(colorSliders[1] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("B"))->PackEnd(colorSliders[2] = c->HSlider()) )) ->SetColumn(1, UI::WidgetSet( c->Label("Color 2"), c->HBox(spacing)->PackEnd(c->Label("R"))->PackEnd(colorSliders[3] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("G"))->PackEnd(colorSliders[4] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("B"))->PackEnd(colorSliders[5] = c->HSlider()) )) ->SetColumn(2, UI::WidgetSet( c->Label("Color 3"), c->HBox(spacing)->PackEnd(c->Label("R"))->PackEnd(colorSliders[6] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("G"))->PackEnd(colorSliders[7] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("B"))->PackEnd(colorSliders[8] = c->HSlider()) )) ); //connect slider signals, set initial values (RGB) const float values[] = { 1.f, 0.f, 0.f, 0.f, 1.f, 0.f, 0.f, 0.f, 1.f }; for(unsigned int i=0; i<3*3; i++) { colorSliders[i]->SetValue(values[i]); colorSliders[i]->onValueChanged.connect(sigc::mem_fun(*this, &ModelViewer::OnModelColorsChanged)); } //// slidems end patternSelector->onOptionSelected.connect(sigc::mem_fun(*this, &ModelViewer::OnPatternChanged)); UpdatePatternList(); } //decal selector //models support up to 4 but 1 is enough here if (m_model->SupportsDecals()) { mainBox->PackEnd(c->Label("Decal:")); mainBox->PackEnd(decalSelector = c->DropDown()); decalSelector->onOptionSelected.connect(sigc::mem_fun(*this, &ModelViewer::OnDecalChanged)); std::vector<std::string> decals; collect_decals(decals); for (std::vector<std::string>::const_iterator it = decals.begin(); it != decals.end(); ++it) { decalSelector->AddOption(*it); } } //light dropdown UI::DropDown *lightSelector; mainBox->PackEnd(c->Label("Lights:")); mainBox->PackEnd( lightSelector = c->DropDown() ->AddOption("1 Front white") ->AddOption("2 Two-point") ->AddOption("3 Backlight") //->AddOption("4 Nuts") ); m_options.lightPreset = 0; add_pair(c, mainBox, gunsCheck = c->CheckBox(), "Attach guns"); //Animation controls if (!m_model->GetAnimations().empty()) { //UI::Button *playBtn; //UI::Button *revBtn; //UI::Button *stopBtn; UI::Box *animBox; mainBox->PackEnd(animBox = c->VBox(spacing)); animBox->PackEnd(m_ui->Label("Animation:")); animBox->PackEnd(animSelector = m_ui->DropDown()->AddOption("None")); //add_pair(m_ui, animBox, playBtn = m_ui->Button(), "Play/Pause"); //add_pair(m_ui, animBox, revBtn = m_ui->Button(), "Play reverse"); //add_pair(m_ui, animBox, stopBtn = m_ui->Button(), "Stop"); bottomBox->PackStart(c->HBox(10)->PackEnd(UI::WidgetSet(c->Label("Animation:"), animSlider = c->HSlider(), animValue = c->Label("0.0")))); animValue->SetFont(UI::Widget::FONT_NORMAL); //playBtn->onClick.connect(sigc::bind(sigc::mem_fun(*this, &ModelViewer::OnAnimPlay), playBtn, false)); //revBtn->onClick.connect(sigc::bind(sigc::mem_fun(*this, &ModelViewer::OnAnimPlay), revBtn, true)); //stopBtn->onClick.connect(sigc::bind(sigc::mem_fun(*this, &ModelViewer::OnAnimStop), stopBtn)); animSlider->onValueChanged.connect(sigc::mem_fun(*this, &ModelViewer::OnAnimSliderChanged)); animSelector->onOptionSelected.connect(sigc::mem_fun(*this, &ModelViewer::OnAnimChanged)); //update anims from model UpdateAnimList(); } //// Thrust sliders bool supportsThrusters = false; { SceneGraph::FindNodeVisitor fivi(SceneGraph::FindNodeVisitor::MATCH_NAME_STARTSWITH, "thruster_"); m_model->GetRoot()->Accept(fivi); supportsThrusters = !fivi.GetResults().empty(); } if (supportsThrusters) { sliderBox->PackStart( c->Grid(2,4) ->SetColumn(0, UI::WidgetSet( // Column 1, Linear thrust sliders c->Label("Linear"), c->HBox(spacing)->PackEnd(c->Label("X"))->PackEnd(thrustSliders[0] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("Y"))->PackEnd(thrustSliders[1] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("Z"))->PackEnd(thrustSliders[2] = c->HSlider()) )) ->SetColumn(1, UI::WidgetSet( //Column 2, Angular thrust sliders c->Label("Angular"), c->HBox(spacing)->PackEnd(c->Label("Pitch"))->PackEnd(thrustSliders[3] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("Yaw"))->PackEnd(thrustSliders[4] = c->HSlider()), c->HBox(spacing)->PackEnd(c->Label("Roll"))->PackEnd(thrustSliders[5] = c->HSlider()) )) ); for(unsigned int i=0; i<2*3; i++) { thrustSliders[i]->SetValue(0.5f); thrustSliders[i]->onValueChanged.connect(sigc::mem_fun(*this, &ModelViewer::OnThrustChanged)); } ////thruster sliders end } c->Layout(); //event handlers collMeshCheck->onClick.connect(sigc::bind(sigc::mem_fun(*this, &ModelViewer::OnToggleCollMesh), collMeshCheck)); gunsCheck->onClick.connect(sigc::bind(sigc::mem_fun(*this, &ModelViewer::OnToggleGuns), gunsCheck)); lightSelector->onOptionSelected.connect(sigc::mem_fun(*this, &ModelViewer::OnLightPresetChanged)); toggleGridButton->onClick.connect(sigc::bind(sigc::mem_fun(*this, &ModelViewer::OnToggleGrid), toggleGridButton)); }