/* SpiralSpiral * Copyright (C) 2000 David Griffiths * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #ifndef SpiralINFO #define SpiralINFO // todo: better place for these util funcs float RandFloat(float s=0.0f, float e=1.0f); // make a buffer class with operators void CopyBuffer(short *from, short *to); class SpiralInfo { public: static SpiralInfo* Get(); void LoadPrefs(); void SavePrefs(); static int BUFSIZE; static int SAMPLERATE; static long MAXSAMPLE; static float VALUECONV; static bool WANTMIDI; static int FILTERGRAN; static string OUTPUTFILE; static string MIDIFILE; static int POLY; static bool REALTIMEOUT; static string KEYMAP; static int NKEYS; static int GUI_COLOUR; static int GUIBG_COLOUR; string GetHomeDir() {return m_HomeDir;} protected: SpiralInfo() : m_HomeDir(getenv("HOME")) {} ~SpiralInfo() {} string m_HomeDir; static SpiralInfo *m_SpiralInfo; }; #endif