experiments with params in AllBullet2Demos (quick hack for testing, will clean this up soon)

yet another workaround to make Intel GPU work with glDrawBuffers on Ubuntu
This commit is contained in:
Erwin Coumans (Google) 2014-07-08 16:42:57 -07:00
parent f89d70b895
commit 27b0e4d1e6
4 changed files with 120 additions and 28 deletions

View File

@ -71,6 +71,10 @@ struct CommonRigidBodySetup : public CommonPhysicsSetup
//remove the rigidbodies from the dynamics world and delete them //remove the rigidbodies from the dynamics world and delete them
int i; int i;
for (i = m_dynamicsWorld->getNumConstraints() - 1; i >= 0; i--)
{
m_dynamicsWorld->removeConstraint(m_dynamicsWorld->getConstraint(i));
}
if (m_dynamicsWorld) if (m_dynamicsWorld)
{ {

View File

@ -14,6 +14,7 @@ static int sCurrentDemoIndex = 0;
static int sCurrentHightlighted = 0; static int sCurrentHightlighted = 0;
static BulletDemoInterface* sCurrentDemo = 0; static BulletDemoInterface* sCurrentDemo = 0;
static b3AlignedObjectArray<const char*> allNames; static b3AlignedObjectArray<const char*> allNames;
double motorA=0,motorB=0;
bool drawGUI=true; bool drawGUI=true;
@ -64,9 +65,9 @@ void MyKeyboardCallback(int key, int state)
{ {
app->m_window->setRequestExit(); app->m_window->setRequestExit();
} }
b3DefaultKeyboardCallback(key,state); b3DefaultKeyboardCallback(key,state);
} }
static void MyMouseMoveCallback( float x, float y) static void MyMouseMoveCallback( float x, float y)
@ -98,10 +99,12 @@ static void MyMouseButtonCallback(int button, int state, float x, float y)
void selectDemo(int demoIndex) void selectDemo(int demoIndex)
{ {
sCurrentDemoIndex = demoIndex; sCurrentDemoIndex = demoIndex;
sCurrentHightlighted = demoIndex;
int numDemos = sizeof(allDemos)/sizeof(BulletDemoEntry); int numDemos = sizeof(allDemos)/sizeof(BulletDemoEntry);
if (demoIndex>numDemos) if (demoIndex>numDemos)
{
demoIndex = 0; demoIndex = 0;
}
if (sCurrentDemo) if (sCurrentDemo)
{ {
sCurrentDemo->exitPhysics(); sCurrentDemo->exitPhysics();
@ -109,19 +112,20 @@ void selectDemo(int demoIndex)
delete sCurrentDemo; delete sCurrentDemo;
sCurrentDemo=0; sCurrentDemo=0;
} }
if (allDemos[demoIndex].m_createFunc && app) if (allDemos[demoIndex].m_createFunc && app)
{ {
sCurrentDemo = (*allDemos[demoIndex].m_createFunc)(app); sCurrentDemo = (*allDemos[demoIndex].m_createFunc)(app);
if (sCurrentDemo) if (sCurrentDemo)
{
sCurrentDemo->initPhysics(); sCurrentDemo->initPhysics();
}
} }
} }
void MyComboBoxCallback(int comboId, const char* item) void MyComboBoxCallback(int comboId, const char* item)
{ {
printf("comboId = %d, item = %s\n",comboId, item); //printf("comboId = %d, item = %s\n",comboId, item);
if (comboId==DEMO_SELECTION_COMBOBOX) if (comboId==DEMO_SELECTION_COMBOBOX)
{ {
//find selected item //find selected item
@ -135,7 +139,7 @@ void MyComboBoxCallback(int comboId, const char* item)
} }
} }
} }
} }
@ -215,13 +219,92 @@ struct MyMenuItemHander :public Gwen::Event::Handler
//printf("onButtonG !\n"); //printf("onButtonG !\n");
} }
}; };
template<typename T>
struct MySliderEventHandler : public Gwen::Event::Handler
{
Gwen::Controls::TextBox* m_label;
Gwen::Controls::Slider* m_pSlider;
char m_variableName[1024];
T* m_targetValue;
MySliderEventHandler(const char* varName, Gwen::Controls::TextBox* label, Gwen::Controls::Slider* pSlider,T* target)
:m_label(label),
m_pSlider(pSlider),
m_targetValue(target)
{
memcpy(m_variableName,varName,strlen(varName)+1);
}
void SliderMoved( Gwen::Controls::Base* pControl )
{
Gwen::Controls::Slider* pSlider = (Gwen::Controls::Slider*)pControl;
//printf("value = %f\n", pSlider->GetValue());//UnitPrint( Utility::Format( L"Slider Value: %.2f", pSlider->GetValue() ) );
float bla = pSlider->GetValue();
T v = T(bla);
SetValue(v);
}
void SetValue(T v)
{
if (v < m_pSlider->GetRangeMin())
{
printf("?\n");
}
if (v > m_pSlider->GetRangeMax())
{
printf("?\n");
}
m_pSlider->SetValue(v,true);
(*m_targetValue) = v;
int val = int(v);//todo: specialize on template type
char txt[1024];
sprintf(txt,"%s : %d", m_variableName,val);
m_label->SetText(txt);
}
};
void MyParameter(const char* name, GwenInternalData* data, double* param)
{
Gwen::Controls::TextBox* label = new Gwen::Controls::TextBox(data->m_demoPage->GetPage());
//m_data->m_myControls.push_back(label);
label->SetText( name);
label->SetPos( 10, 10 + 25 );
label->SetWidth(110);
label->SetPos(10,data->m_curYposition);
data->m_curYposition+=22;
Gwen::Controls::HorizontalSlider* pSlider = new Gwen::Controls::HorizontalSlider( data->m_demoPage->GetPage());
//m_data->m_myControls.push_back(pSlider);
pSlider->SetPos( 10, data->m_curYposition );
pSlider->SetSize( 100, 20 );
pSlider->SetRange( -10, 10 );
pSlider->SetNotchCount(10);
pSlider->SetClampToNotches( true );
pSlider->SetValue( *param);//dimensions[i] );
char labelName[1024];
sprintf(labelName,"%s",name);//axisNames[0]);
MySliderEventHandler<double>* handler = new MySliderEventHandler<double>(labelName,label,pSlider,param);
pSlider->onValueChanged.Add( handler, &MySliderEventHandler<double>::SliderMoved );
handler->SliderMoved(pSlider);
float v = pSlider->GetValue();
data->m_curYposition+=22;
}
extern float shadowMapWorldSize;
int main(int argc, char* argv[]) int main(int argc, char* argv[])
{ {
shadowMapWorldSize = 25;
b3Clock clock; b3Clock clock;
float dt = 1./120.f; float dt = 1./120.f;
@ -238,14 +321,17 @@ int main(int argc, char* argv[])
GLint err = glGetError(); GLint err = glGetError();
assert(err==GL_NO_ERROR); assert(err==GL_NO_ERROR);
sth_stash* fontstash=app->getFontStash(); sth_stash* fontstash=app->getFontStash();
gui = new GwenUserInterface; gui = new GwenUserInterface;
gui->init(width,height,fontstash,app->m_window->getRetinaScale()); gui->init(width,height,fontstash,app->m_window->getRetinaScale());
// gui->getInternalData()->m_explorerPage // gui->getInternalData()->m_explorerPage
Gwen::Controls::TreeControl* tree = gui->getInternalData()->m_explorerTreeCtrl; Gwen::Controls::TreeControl* tree = gui->getInternalData()->m_explorerTreeCtrl;
//gui->getInternalData()->m_demoPage;
int numDemos = sizeof(allDemos)/sizeof(BulletDemoEntry); int numDemos = sizeof(allDemos)/sizeof(BulletDemoEntry);
char nodeText[1024]; char nodeText[1024];
int curDemo = 0; int curDemo = 0;
int selectedDemo = loadCurrentDemoEntry(startFileName); int selectedDemo = loadCurrentDemoEntry(startFileName);
@ -292,11 +378,11 @@ int main(int argc, char* argv[])
{ {
allNames.push_back(allDemos[i].m_name); allNames.push_back(allDemos[i].m_name);
} }
*/ */
//selectDemo(loadCurrentDemoEntry(startFileName)); //selectDemo(loadCurrentDemoEntry(startFileName));
/* /*
gui->registerComboBox(DEMO_SELECTION_COMBOBOX,allNames.size(),&allNames[0],sCurrentDemoIndex); gui->registerComboBox(DEMO_SELECTION_COMBOBOX,allNames.size(),&allNames[0],sCurrentDemoIndex);
//const char* names2[] = {"comboF", "comboG","comboH"}; //const char* names2[] = {"comboF", "comboG","comboH"};
//gui->registerComboBox(2,3,&names2[0],0); //gui->registerComboBox(2,3,&names2[0],0);
@ -304,6 +390,9 @@ int main(int argc, char* argv[])
*/ */
unsigned long int prevTimeInMicroseconds = clock.getTimeMicroseconds(); unsigned long int prevTimeInMicroseconds = clock.getTimeMicroseconds();
MyParameter("Motor A",gui->getInternalData(),&motorA);
MyParameter("Motor B",gui->getInternalData(),&motorB);
do do
{ {
@ -311,18 +400,18 @@ int main(int argc, char* argv[])
assert(err==GL_NO_ERROR); assert(err==GL_NO_ERROR);
app->m_instancingRenderer->init(); app->m_instancingRenderer->init();
app->m_instancingRenderer->updateCamera(); app->m_instancingRenderer->updateCamera();
app->drawGrid(); app->drawGrid();
static int frameCount = 0; static int frameCount = 0;
frameCount++; frameCount++;
if (0) if (0)
{ {
char bla[1024]; char bla[1024];
sprintf(bla,"Simple test frame %d", frameCount); sprintf(bla,"Simple test frame %d", frameCount);
app->drawText(bla,10,10); app->drawText(bla,10,10);
} }

View File

@ -175,7 +175,7 @@ void GwenUserInterface::init(int width, int height,struct sth_stash* stash,float
tab->Dock( Gwen::Pos::Fill ); tab->Dock( Gwen::Pos::Fill );
//tab->SetMargin( Gwen::Margin( 2, 2, 2, 2 ) ); //tab->SetMargin( Gwen::Margin( 2, 2, 2, 2 ) );
Gwen::UnicodeString str1(L"Main"); Gwen::UnicodeString str1(L"Params");
m_data->m_demoPage = tab->AddPage(str1); m_data->m_demoPage = tab->AddPage(str1);

View File

@ -24,19 +24,19 @@ GLRenderToTexture::GLRenderToTexture()
#endif//!defined(_WIN32) && !defined(__APPLE__) #endif//!defined(_WIN32) && !defined(__APPLE__)
} }
void GLRenderToTexture::init(int width, int height, GLuint textureId, int renderTextureType) void GLRenderToTexture::init(int width, int height, GLuint textureId, int renderTextureType)
{ {
m_renderTextureType = renderTextureType; m_renderTextureType = renderTextureType;
glGenFramebuffers(1, &m_framebufferName); glGenFramebuffers(1, &m_framebufferName);
glBindFramebuffer(GL_FRAMEBUFFER, m_framebufferName); glBindFramebuffer(GL_FRAMEBUFFER, m_framebufferName);
// The depth buffer // The depth buffer
// glGenRenderbuffers(1, &m_depthrenderbuffer); // glGenRenderbuffers(1, &m_depthrenderbuffer);
// glBindRenderbuffer(GL_RENDERBUFFER, m_depthrenderbuffer); // glBindRenderbuffer(GL_RENDERBUFFER, m_depthrenderbuffer);
// glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT, width, height); // glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT, width, height);
// glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, m_depthrenderbuffer); // glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, m_depthrenderbuffer);
@ -71,7 +71,7 @@ bool GLRenderToTexture::enable()
glBindFramebuffer(GL_FRAMEBUFFER, m_framebufferName); glBindFramebuffer(GL_FRAMEBUFFER, m_framebufferName);
switch (m_renderTextureType) switch (m_renderTextureType)
{ {
case RENDERTEXTURE_COLOR: case RENDERTEXTURE_COLOR:
@ -86,11 +86,10 @@ bool GLRenderToTexture::enable()
//Intel OpenGL driver crashes when using GL_NONE for glDrawBuffer on Linux, so use a workaround //Intel OpenGL driver crashes when using GL_NONE for glDrawBuffer on Linux, so use a workaround
if (gIntelLinuxglDrawBufferWorkaround) if (gIntelLinuxglDrawBufferWorkaround)
{ {
GLenum drawBuffers[2] = { GL_DEPTH_ATTACHMENT,0}; GLenum drawBuffers[2] = { GL_COLOR_ATTACHMENT0,0};
glDrawBuffers(1, drawBuffers); glDrawBuffers(1, drawBuffers);
} else } else
{ {
glDrawBuffer(GL_NONE); glDrawBuffer(GL_NONE);
} }
break; break;
@ -117,7 +116,7 @@ void GLRenderToTexture::disable()
{ {
glBindFramebuffer( GL_FRAMEBUFFER, 0 ); glBindFramebuffer( GL_FRAMEBUFFER, 0 );
} }
GLRenderToTexture::~GLRenderToTexture() GLRenderToTexture::~GLRenderToTexture()
{ {
glBindFramebuffer( GL_FRAMEBUFFER, 0 ); glBindFramebuffer( GL_FRAMEBUFFER, 0 );
@ -129,7 +128,7 @@ GLRenderToTexture::~GLRenderToTexture()
if( m_framebufferName) if( m_framebufferName)
{ {
glDeleteFramebuffers(1, &m_framebufferName); glDeleteFramebuffers(1, &m_framebufferName);
} }
} }