X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Ftime.cpp;h=73a4dc50cf3e7b331781a16971ee02c5d89b4343;hb=4f9e4d835da8089a953dfa5f508643c538924921;hp=e2256330d41ddce8afb3b3870d44529799297eed;hpb=e3acc0b267b14fda5db3c7bbb2f218b993ef84b3;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/time.cpp b/synfig-core/trunk/src/synfig/time.cpp index e225633..73a4dc5 100644 --- a/synfig-core/trunk/src/synfig/time.cpp +++ b/synfig-core/trunk/src/synfig/time.cpp @@ -1,20 +1,21 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \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 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 */ /* ========================================================================= */ @@ -37,7 +38,6 @@ #include #include -#ifndef isnan #ifdef WIN32 #include @@ -47,19 +47,25 @@ extern "C" { int _isnan(double x); } #endif #endif -#ifdef __APPLE__ -#define isnan __isnan +// 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 =========================================================== */ using namespace std; using namespace etl; -using namespace sinfg; +using namespace synfig; #define tolower ::tolower @@ -76,13 +82,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; @@ -92,7 +98,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 @@ -226,7 +232,7 @@ Time::get_string(float fps, Time::Format format)const else ret+=strprintf("%0.0fs",second); } - + return ret; }