X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Ftime.cpp;h=5cf03f18640ecd2f2f12dd1d13a438b54fb50490;hb=37600b4b217caa5e316984ec0b035c5e8f9698af;hp=c4bff19dea09ff045309ae1a527a7a00d8da29af;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/time.cpp b/synfig-core/trunk/src/synfig/time.cpp index c4bff19..5cf03f1 100644 --- a/synfig-core/trunk/src/synfig/time.cpp +++ b/synfig-core/trunk/src/synfig/time.cpp @@ -2,10 +2,11 @@ /*! \file time.cpp ** \brief Template File ** -** $Id: time.cpp,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -35,10 +36,10 @@ #include "general.h" #include #include +#include #include #include -#ifndef isnan #ifdef WIN32 #include @@ -48,12 +49,18 @@ extern "C" { int _isnan(double x); } #endif #endif -#ifdef __APPLE__ -#define isnan __isnanf +// For some reason isnan() isn't working on macosx any more. +// This is a quick fix. +#if defined(__APPLE__) && !defined(SYNFIG_ISNAN_FIX) +#ifdef isnan +#undef isnan #endif - +inline bool isnan(double x) { return x != x; } +inline bool isnan(float x) { return x != x; } +#define SYNFIG_ISNAN_FIX 1 #endif + #endif /* === U S I N G =========================================================== */ @@ -77,13 +84,13 @@ Time::Time(const String &str_, float fps): std::transform(str.begin(),str.end(),str.begin(),&tolower); // Start/Begin Of Time - if(str=="SOT" || str=="BOT") + if(str=="sot" || str=="bot") { operator=(begin()); return; } // End Of Time - if(str=="EOT") + if(str=="eot") { operator=(end()); return; @@ -93,7 +100,7 @@ Time::Time(const String &str_, float fps): unsigned int pos=0; int read; float amount; - + // Now try to read it in the letter-abreviated format while(pos=end()) return "EOT"; // End Of Time - + if(fps<0)fps=0; - + if(ceil(time.value_)-time.value_=epsilon_())) - ret+=strprintf("%0.3ff",frame); - else - ret+=strprintf("%0.0ff",frame); + started = true; + } + + if(format<=FORMAT_FULL || frame || !started) + { + if(abs(frame-floor(frame)>=epsilon_())) + ret+=strprintf("%0.3ff",frame); + else + ret+=strprintf("%0.0ff",frame); + } } else { float second; second=time; - if(abs(second-floor(second))>=epsilon_()) - ret+=strprintf("%0.8fs",second); - else - ret+=strprintf("%0.0fs",second); + if(format<=FORMAT_FULL || second || !started) + { + if(abs(second-floor(second))>=epsilon_()) + ret+=strprintf("%0.8fs",second); + else + ret+=strprintf("%0.0fs",second); + } } - + return ret; }