Removed a bunch more DEBUGPOINT()s.
[synfig.git] / synfig-core / trunk / src / synfig / listimporter.cpp
index a2c14f7..6245b99 100644 (file)
@@ -2,19 +2,20 @@
 /*!    \file listimporter.cpp
 **     \brief Template File
 **
-**     $Id: listimporter.cpp,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $
+**     $Id$
 **
 **     \legal
-**     Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 **
-**     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
 */
 /* ========================================================================= */
@@ -62,7 +63,7 @@ ListImporter::ListImporter(const String &filename)
                return;
        }
        String line;
-       String prefix=etl::dirname(filename)+ETL_DIRECTORY_SEPERATOR;
+       String prefix=etl::dirname(filename)+ETL_DIRECTORY_SEPARATOR;
        while(!stream.eof())
        {
                getline(stream,line);
@@ -94,37 +95,30 @@ ListImporter::~ListImporter()
 bool
 ListImporter::get_frame(Surface &surface,Time time, ProgressCallback *cb)
 {
-//                     DEBUGPOINT();
-       int frame=static_cast<int>(time*fps);
-//                     DEBUGPOINT();
-       
+       int frame=round_to_int(time*fps);
+
        if(!filename_list.size())
        {
                if(cb)cb->error(_("No images in list"));
                else synfig::error(_("No images in list"));
                return false;
        }
-       
-//                     DEBUGPOINT();
+
        if(frame<0)frame=0;
        if(frame>=(signed)filename_list.size())frame=filename_list.size()-1;
-       
-//                     DEBUGPOINT();
+
        // See if that frame is cached
-       std::list<std::pair<int,Surface> >::iterator iter;
+       std::list<std::pair<String,Surface> >::iterator iter;
        for(iter=frame_cache.begin();iter!=frame_cache.end();++iter)
        {
-               if(iter->first==frame)
+               if(iter->first==filename_list[frame])
                {
-//                     DEBUGPOINT();
                        surface.mirror(iter->second);
                        return static_cast<bool>(surface);
                }
        }
-               
+
        Importer::Handle importer(Importer::open(filename_list[frame]));
-       
-//     DEBUGPOINT();
 
        if(!importer)
        {
@@ -132,8 +126,6 @@ ListImporter::get_frame(Surface &surface,Time time, ProgressCallback *cb)
                else synfig::error(_("Unable to open ")+filename_list[frame]);
                return false;
        }
-       
-//     DEBUGPOINT();
 
        if(!importer->get_frame(surface,0,cb))
        {
@@ -141,22 +133,14 @@ ListImporter::get_frame(Surface &surface,Time time, ProgressCallback *cb)
                else synfig::error(_("Unable to get frame from ")+filename_list[frame]);
                return false;
        }
-               
-//     DEBUGPOINT();
 
        if(frame_cache.size()>=LIST_IMPORTER_CACHE_SIZE)
                frame_cache.pop_front();
 
-//     DEBUGPOINT();
-
-       frame_cache.push_back(std::pair<int,Surface>(frame,surface));   
-
-//     DEBUGPOINT();
+       frame_cache.push_back(std::pair<String,Surface>(filename_list[frame],surface));
 
        surface.mirror(frame_cache.back().second);
 
-//     DEBUGPOINT();
-
        return static_cast<bool>(surface);
 }