2017-10-02 13:51:08 +02:00
|
|
|
#include "externals.hh"
|
|
|
|
#include "demo.hh"
|
2017-10-30 18:29:52 +01:00
|
|
|
#include "sync.hh"
|
2017-11-23 23:05:14 +01:00
|
|
|
#include "common.hh"
|
2017-11-23 23:31:24 +01:00
|
|
|
#include "c-opcomp.hh"
|
|
|
|
#include "ui-opemu.hh"
|
|
|
|
#include "ui-rendertarget.hh"
|
2017-11-14 22:04:00 +01:00
|
|
|
#include <ebcl/Files.hh>
|
|
|
|
#include <ebcl/SRDText.hh>
|
2017-10-02 13:51:08 +02:00
|
|
|
|
|
|
|
|
2017-11-15 23:09:52 +01:00
|
|
|
bool T_Demo::initialise(
|
|
|
|
const uint32_t w ,
|
|
|
|
const uint32_t h )
|
2017-10-02 13:51:08 +02:00
|
|
|
{
|
2017-11-15 23:09:52 +01:00
|
|
|
width = w;
|
|
|
|
height = h;
|
|
|
|
return program && runInit( *program );
|
2017-10-02 13:51:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void T_Demo::render( )
|
|
|
|
{
|
2017-11-23 23:05:14 +01:00
|
|
|
if ( Common::Ops( ).hasNewProgram( ) ) {
|
|
|
|
auto nProgram{ Common::Ops( ).program( ) };
|
2017-11-15 23:09:52 +01:00
|
|
|
if ( runInit( *nProgram ) ) {
|
|
|
|
program = std::move( nProgram );
|
|
|
|
}
|
2017-11-14 22:04:00 +01:00
|
|
|
}
|
|
|
|
|
2017-11-23 23:05:14 +01:00
|
|
|
auto& sync( Common::Sync( ) );
|
2017-11-19 10:21:08 +01:00
|
|
|
sync.updateTime( );
|
2017-10-07 17:39:38 +02:00
|
|
|
|
2017-11-14 23:44:13 +01:00
|
|
|
if ( context && !context->aborted ) {
|
|
|
|
try {
|
|
|
|
context->run( ops::T_OpContext::R_RENDER , sync.time( ) , width , height );
|
|
|
|
} catch ( ops::X_OpFailure const& fail ) {
|
|
|
|
printf( "FAILED TO RUN FRAME!\n\t%s\n" , fail.what( ) );
|
|
|
|
context->aborted = true;
|
|
|
|
}
|
|
|
|
}
|
2017-10-02 13:51:08 +02:00
|
|
|
}
|
|
|
|
|
2017-11-15 23:09:52 +01:00
|
|
|
bool T_Demo::runInit(
|
|
|
|
ops::T_OpProgram& p )
|
2017-11-14 22:04:00 +01:00
|
|
|
{
|
2017-11-15 23:09:52 +01:00
|
|
|
auto nContext{ NewOwned< ops::T_OpContext >( p ) };
|
2017-11-14 22:04:00 +01:00
|
|
|
try {
|
2017-11-15 23:09:52 +01:00
|
|
|
nContext->run( ops::T_OpContext::R_INIT , 0 , width , height );
|
2017-11-14 22:04:00 +01:00
|
|
|
} catch ( ops::X_OpFailure const& fail ) {
|
|
|
|
printf( "FAILED TO RUN INIT!\n\t%s\n" , fail.what( ) );
|
2017-11-15 23:09:52 +01:00
|
|
|
nContext.clear( );
|
2017-11-14 22:04:00 +01:00
|
|
|
}
|
2017-11-15 23:09:52 +01:00
|
|
|
if ( !nContext ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
context = std::move( nContext );
|
2017-11-14 23:44:13 +01:00
|
|
|
|
2017-11-23 23:05:14 +01:00
|
|
|
Common::Sync( ).clearInputs( );
|
|
|
|
Common::Sync( ).clearOverrides( );
|
2017-11-18 16:13:07 +01:00
|
|
|
|
2017-11-14 23:44:13 +01:00
|
|
|
const auto n( context->initialInputs.size( ) );
|
2017-11-15 23:09:52 +01:00
|
|
|
assert( n == p.inputs.size( ) );
|
2017-11-14 23:44:13 +01:00
|
|
|
for ( auto i = 0u ; i < n ; i ++ ) {
|
2017-11-23 23:05:14 +01:00
|
|
|
Common::Sync( ).addInput( p.inputs[ i ] ,
|
2017-11-14 23:44:13 +01:00
|
|
|
context->initialInputs[ i ] );
|
2017-11-15 09:46:07 +01:00
|
|
|
#ifdef INVASIVE_TRACES
|
2017-11-15 23:09:52 +01:00
|
|
|
printf( "#%d %s pos %d\n" , i , p.inputs[ i ].toOSString( ).data( ) ,
|
2017-11-23 23:05:14 +01:00
|
|
|
Common::Sync( ).inputPos( p.inputs[ i ] ) );
|
2017-11-15 09:46:07 +01:00
|
|
|
#endif //INVASIVE_TRACES
|
2017-11-14 23:44:13 +01:00
|
|
|
}
|
2017-11-23 23:05:14 +01:00
|
|
|
Common::Sync( ).updateCurveCaches( );
|
2017-11-15 23:09:52 +01:00
|
|
|
|
2017-11-18 09:48:37 +01:00
|
|
|
if ( context->installOverrides ) {
|
2017-11-23 23:05:14 +01:00
|
|
|
Common::Sync( ).mergeOverrides( *( context->installOverrides ) );
|
2017-11-18 09:48:37 +01:00
|
|
|
context->installOverrides.clear( );
|
|
|
|
}
|
2017-11-16 12:20:21 +01:00
|
|
|
|
2017-11-15 23:09:52 +01:00
|
|
|
return true;
|
2017-10-02 13:51:08 +02:00
|
|
|
}
|