2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2006-11-05 00:29:34 +00:00
|
|
|
*
|
|
|
|
* 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.
|
2014-02-18 01:34:26 +00:00
|
|
|
*
|
2006-11-05 00:29:34 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:26 +00:00
|
|
|
*
|
2006-11-05 00:29:34 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TOUCHE_MIDI_H
|
|
|
|
#define TOUCHE_MIDI_H
|
|
|
|
|
|
|
|
#include "common/util.h"
|
2006-11-05 13:00:20 +00:00
|
|
|
#include "common/mutex.h"
|
|
|
|
|
2011-03-25 09:58:40 +00:00
|
|
|
#include "audio/midiplayer.h"
|
2006-11-05 00:29:34 +00:00
|
|
|
|
|
|
|
class MidiParser;
|
|
|
|
|
|
|
|
namespace Common {
|
2011-04-25 19:29:26 +00:00
|
|
|
class ReadStream;
|
2006-11-05 00:29:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Touche {
|
|
|
|
|
2011-03-25 09:58:40 +00:00
|
|
|
class MidiPlayer : public Audio::MidiPlayer {
|
2006-11-05 00:29:34 +00:00
|
|
|
public:
|
2008-06-26 10:12:12 +00:00
|
|
|
MidiPlayer();
|
2006-11-05 00:29:34 +00:00
|
|
|
|
|
|
|
void play(Common::ReadStream &stream, int size, bool loop = false);
|
2006-11-05 13:00:20 +00:00
|
|
|
void adjustVolume(int diff);
|
2006-11-05 00:29:34 +00:00
|
|
|
void setVolume(int volume);
|
|
|
|
|
2011-03-23 15:14:39 +00:00
|
|
|
// MidiDriver_BASE interface
|
|
|
|
virtual void send(uint32 b);
|
2006-11-05 00:29:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Touche
|
|
|
|
|
|
|
|
#endif
|