Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / gtkmm / asyncrenderer.cpp
index 900f24d..72a286c 100644 (file)
@@ -2,19 +2,21 @@
 /*!    \file asyncrenderer.cpp
 **     \brief Template File
 **
-**     $Id: asyncrenderer.cpp,v 1.5 2005/01/12 07:03:42 darco Exp $
+**     $Id$
 **
 **     \legal
-**     Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2007 Chris Moore
 **
-**     This software and associated documentation
-**     are CONFIDENTIAL and PROPRIETARY property of
-**     the above-mentioned copyright holder.
+**     This package is free software; you can redistribute it and/or
+**     modify it under the terms of the GNU General Public License as
+**     published by the Free Software Foundation; either version 2 of
+**     the License, or (at your option) any later version.
 **
-**     You may not copy, print, publish, or in any
-**     other way distribute this software without
-**     a prior written agreement with
-**     the copyright holder.
+**     This package is distributed in the hope that it will be useful,
+**     but WITHOUT ANY WARRANTY; without even the implied warranty of
+**     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+**     General Public License for more details.
 **     \endlegal
 */
 /* ========================================================================= */
@@ -29,6 +31,7 @@
 #endif
 
 #include "asyncrenderer.h"
+#include "app.h"
 #include <glibmm/thread.h>
 #include <glibmm/dispatcher.h>
 
@@ -51,6 +54,8 @@
 #include <synfig/general.h>
 #include <ETL/clock>
 
+#include "general.h"
+
 #endif
 
 /* === U S I N G =========================================================== */
@@ -74,7 +79,7 @@ class AsyncTarget_Tile : public synfig::Target_Tile
 {
 public:
        etl::handle<synfig::Target_Tile> warm_target;
-       
+
        struct tile_t
        {
                Surface surface;
@@ -87,15 +92,15 @@ public:
        };
        std::list<tile_t> tile_queue;
        Glib::Mutex mutex;
-       
+
 #ifndef GLIB_DISPATCHER_BROKEN
        Glib::Dispatcher tile_ready_signal;
 #endif
        Glib::Cond cond_tile_queue_empty;
        bool alive_flag;
-       
+
        sigc::connection ready_connection;
-       
+
 public:
        AsyncTarget_Tile(etl::handle<synfig::Target_Tile> warm_target):
                warm_target(warm_target)
@@ -114,7 +119,7 @@ public:
                ready_connection=tile_ready_signal.connect(sigc::mem_fun(*this,&AsyncTarget_Tile::tile_ready));
 #endif
        }
-               
+
        ~AsyncTarget_Tile()
        {
                ready_connection.disconnect();
@@ -124,17 +129,17 @@ public:
                Glib::Mutex::Lock lock(mutex);
                alive_flag=false;
        }
-       
+
        virtual int total_tiles()const
        {
                return warm_target->total_tiles();
        }
-       
+
        virtual int next_tile(int& x, int& y)
        {
                if(!alive_flag)
                        return 0;
-               
+
                return warm_target->next_tile(x,y);
        }
 
@@ -144,14 +149,14 @@ public:
                        return 0;
                return warm_target->next_frame(time);
        }
-       
+
        virtual bool start_frame(synfig::ProgressCallback *cb=0)
        {
                if(!alive_flag)
                        return false;
                return warm_target->start_frame(cb);
        }
-       
+
        virtual bool add_tile(const synfig::Surface &surface, int gx, int gy)
        {
                assert(surface);
@@ -173,7 +178,7 @@ public:
                tile_ready_signal();
 #endif
                }
-               
+
                return alive_flag;
        }
 
@@ -189,9 +194,16 @@ public:
                while(!tile_queue.empty() && alive_flag)
                {
                        tile_t& tile(tile_queue.front());
-                       
+
+                       if (getenv("SYNFIG_SHOW_TILE_OUTLINES"))
+                       {
+                               Color red(1,0,0);
+                               tile.surface.fill(red, 0, 0, 1, tile.surface.get_h());
+                               tile.surface.fill(red, 0, 0, tile.surface.get_w(), 1);
+                       }
+
                        alive_flag=warm_target->add_tile(tile.surface,tile.x,tile.y);
-                       
+
                        tile_queue.pop_front();
                }
                cond_tile_queue_empty.signal();
@@ -199,17 +211,24 @@ public:
 
        virtual void end_frame()
        {
-               while(alive_flag)
+#ifdef SINGLE_THREADED
+               if (!single_threaded())
                {
-                       Glib::Mutex::Lock lock(mutex);
-                       if(!tile_queue.empty() && alive_flag)
+#endif
+                       while(alive_flag)
                        {
-                               if(cond_tile_queue_empty.timed_wait(mutex,Glib::TimeVal(0,BOREDOM_TIMEOUT)))
+                               Glib::Mutex::Lock lock(mutex);
+                               if(!tile_queue.empty() && alive_flag)
+                               {
+                                       if(cond_tile_queue_empty.timed_wait(mutex,Glib::TimeVal(0,BOREDOM_TIMEOUT)))
+                                               break;
+                               }
+                               else
                                        break;
                        }
-                       else
-                               break;
+#ifdef SINGLE_THREADED
                }
+#endif
                Glib::Mutex::Lock lock(mutex);
                if(!alive_flag)
                        return;
@@ -223,12 +242,12 @@ class AsyncTarget_Scanline : public synfig::Target_Scanline
 {
 public:
        etl::handle<synfig::Target_Scanline> warm_target;
-       
+
        int scanline_;
        Surface surface;
 
        Glib::Mutex mutex;
-       
+
 #ifndef GLIB_DISPATCHER_BROKEN
        Glib::Dispatcher frame_ready_signal;
 #endif
@@ -254,7 +273,7 @@ public:
 #endif
                surface.set_wh(warm_target->rend_desc().get_w(),warm_target->rend_desc().get_h());
        }
-       
+
        ~AsyncTarget_Scanline()
        {
                ready_connection.disconnect();
@@ -273,12 +292,12 @@ public:
                Glib::Mutex::Lock lock(mutex);
                alive_flag=false;
        }
-       
-       virtual bool start_frame(synfig::ProgressCallback *cb=0)
-       {               
+
+       virtual bool start_frame(synfig::ProgressCallback */*cb*/=0)
+       {
                return alive_flag;
        }
-       
+
        virtual void end_frame()
        {
                {
@@ -299,24 +318,29 @@ public:
 #else
                        frame_ready_signal();
 #endif
-                       }
-
-               while(alive_flag && !ready_next)
-               {
-                       Glib::Mutex::Lock lock(mutex);
-                       if(cond_frame_queue_empty.timed_wait(mutex,Glib::TimeVal(0,BOREDOM_TIMEOUT)))
-                               break;
                }
+
+#ifdef SINGLE_THREADED
+               if (single_threaded())
+                       signal_progress()();
+               else
+#endif
+                       while(alive_flag && !ready_next)
+                       {
+                               Glib::Mutex::Lock lock(mutex);
+                               if(cond_frame_queue_empty.timed_wait(mutex,Glib::TimeVal(0,BOREDOM_TIMEOUT)))
+                                       break;
+                       }
        }
 
-       
+
        virtual Color * start_scanline(int scanline)
        {
                Glib::Mutex::Lock lock(mutex);
 
                return surface[scanline];
        }
-       
+
        virtual bool end_scanline()
        {
                return alive_flag;
@@ -327,7 +351,10 @@ public:
                Glib::Mutex::Lock lock(mutex);
                if(alive_flag)
                        alive_flag=warm_target->add_frame(&surface);
-               cond_frame_queue_empty.signal();
+#ifdef SINGLE_THREADED
+               if (!single_threaded())
+#endif
+                       cond_frame_queue_empty.signal();
                ready_next=true;
        }
 };
@@ -342,6 +369,9 @@ AsyncRenderer::AsyncRenderer(etl::handle<synfig::Target> target_,synfig::Progres
        error(false),
        success(false),
        cb(cb)
+#ifdef SINGLE_THREADED
+       , updating(false)
+#endif
 {
        render_thread=0;
        if(etl::handle<synfig::Target_Tile>::cast_dynamic(target_))
@@ -349,9 +379,9 @@ AsyncRenderer::AsyncRenderer(etl::handle<synfig::Target> target_,synfig::Progres
                etl::handle<AsyncTarget_Tile> wrap_target(
                        new AsyncTarget_Tile(etl::handle<synfig::Target_Tile>::cast_dynamic(target_))
                );
-               
+
                signal_stop_.connect(sigc::mem_fun(*wrap_target,&AsyncTarget_Tile::set_dead));
-               
+
                target=wrap_target;
        }
        else if(etl::handle<synfig::Target_Scanline>::cast_dynamic(target_))
@@ -361,9 +391,9 @@ AsyncRenderer::AsyncRenderer(etl::handle<synfig::Target> target_,synfig::Progres
                                etl::handle<synfig::Target_Scanline>::cast_dynamic(target_)
                        )
                );
-       
+
                signal_stop_.connect(sigc::mem_fun(*wrap_target,&AsyncTarget_Scanline::set_dead));
-               
+
                target=wrap_target;
        }
 }
@@ -380,23 +410,26 @@ AsyncRenderer::stop()
        {
                Glib::Mutex::Lock lock(mutex);
                done_connection.disconnect();
-       
+
                if(render_thread)
                {
                        signal_stop_();
-               
+
 #if REJOIN_ON_STOP
-                       render_thread->join();
+#ifdef SINGLE_THREADED
+                       if (!single_threaded())
 #endif
-                       
+                               render_thread->join();
+#endif
+
                        // Make sure all the dispatch crap is cleared out
                        //Glib::MainContext::get_default()->iteration(false);
-                       
+
                        if(success)
                                signal_success_();
-                               
+
                        signal_finished_();
-       
+
                        target=0;
                        render_thread=0;
                }
@@ -425,6 +458,16 @@ AsyncRenderer::start()
        );
 }
 
+#ifdef SINGLE_THREADED
+void
+AsyncRenderer::rendering_progress()
+{
+       updating = true;
+       while(studio::App::events_pending()) studio::App::iteration(false);
+       updating = false;
+}
+#endif
+
 void
 AsyncRenderer::start_()
 {
@@ -434,16 +477,28 @@ AsyncRenderer::start_()
 #ifndef GLIB_DISPATCHER_BROKEN
                done_connection=signal_done_.connect(mem_fun(*this,&AsyncRenderer::stop));
 #endif
-               
-               render_thread=Glib::Thread::create(
-                       sigc::mem_fun(*this,&AsyncRenderer::render_target),
+
+#ifdef SINGLE_THREADED
+               if (single_threaded())
+               {
+                       synfig::info("%s:%d rendering in the same thread", __FILE__, __LINE__);
+                       target->signal_progress().connect(sigc::mem_fun(this,&AsyncRenderer::rendering_progress));
+                       render_thread = (Glib::Thread*)1;
+                       render_target();
+               }
+               else
+#endif
+               {
+                       render_thread=Glib::Thread::create(
+                               sigc::mem_fun(*this,&AsyncRenderer::render_target),
 #if REJOIN_ON_STOP
-                       true
+                               true
 #else
-                       false
+                               false
 #endif
-               );
-               assert(render_thread);
+                               );
+                       assert(render_thread);
+               }
        }
        else
        {
@@ -455,7 +510,7 @@ void
 AsyncRenderer::render_target()
 {
        etl::handle<Target> target(AsyncRenderer::target);
-       
+
        if(target && target->render())
        {
                success=true;