/* === H E A D E R S ======================================================= */
+#include <sigc++/signal.h>
#include "string_decl.h"
#include <utility>
//#include <list>
typedef etl::loose_handle<Target> LooseHandle;
typedef etl::handle<const Target> ConstHandle;
+ /*
+ -- ** -- S I G N A L S -------------------------------------------------------
+ */
+
+private:
+
+ sigc::signal<void> signal_progress_;
+
+ /*
+ -- ** -- S I G N A L I N T E R F A C E -------------------------------------
+ */
+
+public:
+
+ sigc::signal<void>& signal_progress() { return signal_progress_; }
+
+ /*
+ -- ** -- C O N S T R U C T O R S ---------------------------------------------
+ */
+
+public:
typedef Target* (*Factory)(const char *filename);
//! A type for a map of targets, indexed by the name of the Target
#endif
#include "asyncrenderer.h"
+#include "app.h"
#include <glibmm/thread.h>
#include <glibmm/dispatcher.h>
}
};
std::list<tile_t> tile_queue;
+#ifndef SINGLE_THREADED
Glib::Mutex mutex;
+#endif // SINGLE_THREADED
#ifndef GLIB_DISPATCHER_BROKEN
Glib::Dispatcher tile_ready_signal;
}
void set_dead()
{
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
alive_flag=false;
}
assert(surface);
if(!alive_flag)
return false;
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
tile_queue.push_back(tile_t(surface,gx,gy));
if(tile_queue.size()==1)
{
void tile_ready()
{
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
if(!alive_flag)
{
tile_queue.clear();
virtual void end_frame()
{
+#ifndef SINGLE_THREADED
while(alive_flag)
{
Glib::Mutex::Lock lock(mutex);
break;
}
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
if(!alive_flag)
return;
return warm_target->end_frame();
int scanline_;
Surface surface;
+#ifndef SINGLE_THREADED
Glib::Mutex mutex;
+#endif // SINGLE_THREADED
#ifndef GLIB_DISPATCHER_BROKEN
Glib::Dispatcher frame_ready_signal;
void set_dead()
{
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
alive_flag=false;
}
virtual void end_frame()
{
{
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
if(!alive_flag)
return;
#endif
}
+#ifndef SINGLE_THREADED
while(alive_flag && !ready_next)
{
Glib::Mutex::Lock lock(mutex);
if(cond_frame_queue_empty.timed_wait(mutex,Glib::TimeVal(0,BOREDOM_TIMEOUT)))
break;
}
+#endif // SINGLE_THREADED
}
virtual Color * start_scanline(int scanline)
{
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
return surface[scanline];
}
void frame_ready()
{
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
if(alive_flag)
alive_flag=warm_target->add_frame(&surface);
cond_frame_queue_empty.signal();
error(false),
success(false),
cb(cb)
+#ifdef SINGLE_THREADED
+ , updating(false)
+#endif // SINGLE_THREADED
{
render_thread=0;
if(etl::handle<synfig::Target_Tile>::cast_dynamic(target_))
{
if(target)
{
+#ifndef SINGLE_THREADED
Glib::Mutex::Lock lock(mutex);
+#endif // SINGLE_THREADED
done_connection.disconnect();
if(render_thread)
{
signal_stop_();
+#ifndef SINGLE_THREADED
#if REJOIN_ON_STOP
render_thread->join();
#endif
+#endif
// Make sure all the dispatch crap is cleared out
//Glib::MainContext::get_default()->iteration(false);
);
}
+#ifdef SINGLE_THREADED
+void
+AsyncRenderer::rendering_progress()
+{
+ updating = true;
+ while(studio::App::events_pending()) studio::App::iteration(false);
+ updating = false;
+}
+#endif // SINGLE_THREADED
+
void
AsyncRenderer::start_()
{
done_connection=signal_done_.connect(mem_fun(*this,&AsyncRenderer::stop));
#endif
+#ifdef SINGLE_THREADED
+ target->signal_progress().connect(sigc::mem_fun(this,&AsyncRenderer::rendering_progress));
+ render_thread = (Glib::Thread*)1;
+ render_target();
+#else // SINGLE_THREADED
render_thread=Glib::Thread::create(
sigc::mem_fun(*this,&AsyncRenderer::render_target),
#if REJOIN_ON_STOP
#endif
);
assert(render_thread);
+#endif // SINGLE_THREADED
}
else
{
#endif
}
+#ifndef SINGLE_THREADED
if(mutex.trylock())
+#endif // SINGLE_THREADED
{
#ifdef GLIB_DISPATCHER_BROKEN
done_connection=Glib::signal_timeout().connect(
#else
signal_done_.emit();
#endif
+#ifndef SINGLE_THREADED
mutex.unlock();
+#endif // SINGLE_THREADED
}
}