diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 84da08d7b7fcda12c85caeb5a10b4903770a6f69 (patch) | |
tree | 2a6aea76f2dfffb4cc04bb907c4725af94f70e72 /noatun-plugins/tippercanoe/main.cpp | |
download | tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.tar.gz tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/tippercanoe/main.cpp')
-rw-r--r-- | noatun-plugins/tippercanoe/main.cpp | 170 |
1 files changed, 170 insertions, 0 deletions
diff --git a/noatun-plugins/tippercanoe/main.cpp b/noatun-plugins/tippercanoe/main.cpp new file mode 100644 index 0000000..28a60ec --- /dev/null +++ b/noatun-plugins/tippercanoe/main.cpp @@ -0,0 +1,170 @@ +/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia) + Copyright (C) 1997 Paul Francis Harrison <pfh@yoyo.cc.monash.edu.au> + 2001 Charles Samuels <charles@kde.org> + Copyright (C) 2001 Neil Stevens <multivac@fcmail.com> + + This program 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. + + This program 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. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +#include <stdio.h> +#include <stdlib.h> +#include <errno.h> +#include <time.h> +#include <unistd.h> +#include <fcntl.h> +#include <sys/types.h> +#include <pwd.h> +#include <string.h> +#include "syna.h" +#include <math.h> +#include <unistd.h> +#include <fcntl.h> + +void Core::allocOutput(int w,int h) +{ +#if 0 + delete[] output; + delete[] lastOutput; + delete[] lastLastOutput; + output = new unsigned char[w*h*2]; + lastOutput = new unsigned char[w*h*2]; + lastLastOutput = new unsigned char[w*h*2]; + memset(output,32,w*h*2); + memset(lastOutput,32,w*h*2); + outWidth = w; + outHeight = h; +#endif + + outputBmp.size(w,h); + lastOutputBmp.size(w,h); + lastLastOutputBmp.size(w,h); + polygonEngine.size(w,h); + outWidth = w; + outHeight = h; +} + +void Core::toDefaults() +{ + fadeMode = Stars; + pointsAreDiamonds = true; + + brightnessTwiddler = 0.33; //0.125; + starSize = 0.125; + + fgRedSlider=0.0; + fgGreenSlider=0.5; + bgRedSlider=1.0; + bgGreenSlider=0.2; +} + +Core::Core() +{ + core=this; + int i; + + data=new sampleType[NumSamples*2+16]; + windY=windX=1; + windWidth=320; + windHeight=240; + for(i=0;i<NumSamples;i++) + { + negSinTable[i] = -sin(3.141592*2.0/NumSamples*i); + cosTable[i] = cos(3.141592*2.0/NumSamples*i); + bitReverse[i] = bitReverser(i); + } + + screen = new SdlScreen; + if (!screen->init(windX,windY,windWidth,windHeight,false)) + { + delete screen; + screen = 0; + return; + } + + allocOutput(outWidth,outHeight); + + setStarSize(starSize); + + interface=new Interface; +} + +Core::~Core() +{ + delete interface; + + screen->end(); + delete screen; +} + +bool Core::go() +{ + time_t timer = time(NULL); + + printf("%u\n", static_cast<SdlScreen *>(screen)->winID()); + fflush(stdout); + + int frames = 0; + while (1) + { + fade(); + + if (!calculate()) + break; + + if (!interface->go()) break; + + screen->show(); + frames++; + } + + timer = time(0) - timer; +/* if (timer > 10) + printf("Frames per second: %f\n", double(frames) / timer);*/ + return true; +} + +bool start() +{ +return true; +} + + +void error(const char *, bool) +{ + +/* fprintf(stderr, "synaescope: Error %s\n",str); + if (syscall) + fprintf(stderr,"(reason for error: %s)\n",strerror(errno));*/ + exit(1); +} +void warning(const char *, bool) +{ +/* fprintf(stderr, "synaescope: Possible error %s\n",str); + if (syscall) + fprintf(stderr,"(reason for error: %s)\n",strerror(errno));*/ +} + +#include <kinstance.h> +int main() +{ + fcntl(STDIN_FILENO, F_SETFL, fcntl(STDIN_FILENO, F_GETFL) & ~O_NONBLOCK); + KInstance in("noatunsynaescope"); + core=new Core; + core->go(); + delete core; + exit(0); +} + + |