demotool/main.cc

195 lines
4 KiB
C++
Raw Normal View History

2017-09-30 10:37:45 +02:00
#include "externals.hh"
#include "imgui_impl_sdl.h"
2017-10-02 13:51:08 +02:00
#include "demo.hh"
#include "globals.hh"
2017-10-01 11:37:04 +02:00
#include "profiling.hh"
#include "window.hh"
#include "shaders.hh"
// FIXME ^^
2017-09-30 10:37:45 +02:00
/*= T_Main ===================================================================*/
struct T_Main
{
T_Main( );
~T_Main( );
void mainLoop( );
private:
bool done = false;
bool capture = false;
ImVec2 mouseInitial;
ImVec2 mouseMove;
2017-10-02 13:51:08 +02:00
std::unique_ptr< T_Demo > demo;
void initDemo( );
2017-09-30 10:37:45 +02:00
void startIteration( );
void handleCapture( );
void makeUI( );
void render( );
};
/*----------------------------------------------------------------------------*/
T_Main::T_Main( )
{
Globals::Init( );
2017-09-30 10:37:45 +02:00
}
void T_Main::mainLoop( )
{
auto& p( Globals::Profiler( ) );
2017-09-30 10:37:45 +02:00
while ( !done ) {
2017-10-02 13:51:08 +02:00
if ( demo ) {
auto const& dspSize( ImGui::GetIO( ).DisplaySize );
if ( demo->width != dspSize.x || demo->height != dspSize.y ) {
demo.reset( );
}
}
if ( !demo ) {
initDemo( );
}
Globals::Watcher( ).check( );
Globals::Shaders( ).update( );
2017-10-03 09:56:37 +02:00
glFinish( );
2017-10-01 12:48:55 +02:00
p.startFrame( );
p.start( "Full frame" );
2017-09-30 10:37:45 +02:00
startIteration( );
if ( !done ) {
handleCapture( );
makeUI( );
render( );
p.end( "Full frame" );
Globals::Window( ).swap( );
2017-10-01 12:48:55 +02:00
p.endFrame( );
2017-09-30 10:37:45 +02:00
}
}
}
T_Main::~T_Main( )
{
2017-10-02 13:51:08 +02:00
demo.reset( );
Globals::Shutdown( );
2017-09-30 10:37:45 +02:00
}
/*----------------------------------------------------------------------------*/
2017-10-02 13:51:08 +02:00
void T_Main::initDemo( )
{
assert( !demo );
auto const& dspSize( ImGui::GetIO( ).DisplaySize );
if ( dspSize.x < 0 || dspSize.y < 0 ) {
return;
}
printf( "init w/ dspsize %dx%d\n" , int( dspSize.x ) , int( dspSize.y ) );
demo = std::make_unique< T_Demo >( dspSize.x , dspSize.y );
2017-10-02 13:51:08 +02:00
if ( demo->initialise( ) ) {
Globals::Profiler( ).clear( );
2017-10-02 13:51:08 +02:00
} else {
demo.reset( );
}
}
2017-09-30 10:37:45 +02:00
void T_Main::startIteration( )
{
SDL_Event event;
mouseMove = ImVec2( );
while ( SDL_PollEvent( &event ) ) {
ImGui_ImplSdl_ProcessEvent( &event );
if ( event.type == SDL_QUIT ) {
done = true;
return;
}
if ( capture && event.type == SDL_MOUSEMOTION ) {
mouseMove.x += event.motion.xrel;
mouseMove.y += event.motion.yrel;
}
}
Globals::Window( ).startFrame( capture , mouseInitial );
2017-09-30 10:37:45 +02:00
ImGui::GetIO( ).MouseDrawCursor = true;
}
void T_Main::handleCapture( )
{
auto const& io( ImGui::GetIO( ) );
const bool lmb( ImGui::IsMouseDown( 0 ) );
const bool mb( lmb || ImGui::IsMouseDown( 1 ) );
const bool appCanGrab( !( ImGui::IsMouseHoveringAnyWindow( )
|| io.WantCaptureMouse
|| io.WantCaptureKeyboard ) );
const bool shift( io.KeyShift );
const bool ctrl( io.KeyCtrl );
if ( capture && !mb ) {
capture = false;
ImGui::CaptureMouseFromApp( false );
SDL_SetRelativeMouseMode( SDL_FALSE );
Globals::Window( ).warpMouse( mouseInitial );
2017-09-30 10:37:45 +02:00
ImGui::SetMouseCursor( ImGuiMouseCursor_Arrow );
} else if ( capture ) {
ImGui::SetMouseCursor( ImGuiMouseCursor_Move );
2017-10-02 13:51:08 +02:00
if ( demo ) {
demo->handleDND( mouseMove , ctrl , shift , lmb );
}
2017-09-30 10:37:45 +02:00
} else if ( appCanGrab && mb ) {
capture = true;
mouseInitial = ImGui::GetMousePos( );
ImGui::CaptureMouseFromApp( true );
SDL_SetRelativeMouseMode( SDL_TRUE );
ImGui::SetMouseCursor( ImGuiMouseCursor_Move );
}
2017-10-02 13:51:08 +02:00
if ( ( appCanGrab || capture ) && io.MouseWheel && demo ) {
demo->handleWheel( io.MouseWheel , ctrl , shift );
2017-09-30 10:37:45 +02:00
}
}
void T_Main::makeUI( )
{
2017-09-30 12:25:24 +02:00
auto const& dspSize( ImGui::GetIO( ).DisplaySize );
ImGui::SetNextWindowSize( ImVec2( 300 , dspSize.y ) ,
ImGuiSetCond_Once );
ImGui::SetNextWindowPos( ImVec2( ) , ImGuiSetCond_Once );
ImGui::Begin( "Yay! Demo!" );
ImGui::Checkbox( "Profiler" , &Globals::Profiler( ).uiEnabled( ) );
2017-10-02 13:51:08 +02:00
if ( demo ) {
demo->makeUI( );
}
2017-09-30 12:25:24 +02:00
ImGui::End( );
2017-10-01 14:10:00 +02:00
Globals::Profiler( ).makeUI( );
2017-09-30 10:37:45 +02:00
}
void T_Main::render( )
{
2017-10-02 13:51:08 +02:00
if ( demo ) {
Globals::Profiler( ).start( "Render" );
2017-10-02 13:51:08 +02:00
demo->render( );
glFinish( ); Globals::Profiler( ).end( "Render" );
2017-10-02 13:51:08 +02:00
}
2017-09-30 10:37:45 +02:00
glUseProgram( 0 );
2017-10-04 17:37:55 +02:00
glBindProgramPipeline( 0 );
Globals::Textures( ).reset( );
2017-09-30 10:37:45 +02:00
ImGui::Render( );
}
/*============================================================================*/
int main( int , char** )
{
T_Main m;
m.mainLoop( );
2017-09-30 10:37:45 +02:00
return 0;
}