4 * abstract wavecache, a way to organize samples
8 * ***** BEGIN GPL LICENSE BLOCK *****
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
25 * All rights reserved.
27 * The Original Code is: all of this file.
29 * Contributor(s): none yet.
31 * ***** END GPL LICENSE BLOCK *****
35 #pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
38 #ifndef __SND_WAVECACHE_H
39 #define __SND_WAVECACHE_H
41 #include "SND_WaveSlot.h"
42 #include "SoundDefines.h"
43 #include "SND_SoundObject.h"
50 virtual ~SND_WaveCache();
52 SND_WaveSlot* GetWaveSlot(const STR_String& samplename);
54 void RemoveAllSamples();
55 void RemoveSample(const STR_String& samplename, int buffer);
58 std::map<STR_String, SND_WaveSlot*> m_samplecache;
60 SND_WaveSlot* m_bufferList[NUM_BUFFERS];
65 #endif //__SND_WAVECACHE_H