MuseScore/zerberus/instrument.h

65 lines
1.9 KiB
C
Raw Normal View History

2013-03-26 19:59:51 +01:00
//=============================================================================
// Zerberus
// Zample player
//
// Copyright (C) 2013 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#ifndef __MINSTRUMENT_H__
#define __MINSTRUMENT_H__
#include <list>
#include <QString>
class Zerberus;
class XmlReader;
2013-07-26 15:39:46 +02:00
class MQZipReader;
2013-05-22 18:07:56 +02:00
struct Zone;
struct SfzRegion;
2013-03-26 19:59:51 +01:00
class Sample;
//---------------------------------------------------------
// ZInstrument
2013-03-26 19:59:51 +01:00
//---------------------------------------------------------
2013-07-18 09:23:45 +02:00
class ZInstrument {
Zerberus* zerberus;
2013-04-18 14:05:34 +02:00
int _refCount;
2013-03-26 19:59:51 +01:00
QString _name;
int _program;
QString instrumentPath;
std::list<Zone*> _zones;
bool loadFromFile(const QString&);
bool loadSfz(const QString&);
bool loadFromDir(const QString&);
2013-07-26 15:39:46 +02:00
bool read(const QByteArray&, MQZipReader*, const QString& path);
2013-03-26 19:59:51 +01:00
public:
2013-07-18 09:23:45 +02:00
ZInstrument(Zerberus*);
2013-04-04 18:09:00 +02:00
~ZInstrument();
2013-04-18 14:05:34 +02:00
int refCount() const { return _refCount; }
void setRefCount(int val) { _refCount = val; }
2013-03-26 19:59:51 +01:00
bool load(const QString&);
int program() const { return _program; }
QString name() const { return _name; }
QString path() const { return instrumentPath; }
const std::list<Zone*>& zones() const { return _zones; }
std::list<Zone*>& zones() { return _zones; }
2013-07-26 15:39:46 +02:00
Sample* readSample(const QString& s, MQZipReader* uz);
2013-03-26 19:59:51 +01:00
void addZone(Zone* z) { _zones.push_back(z); }
void addRegion(SfzRegion&);
static QByteArray buf; // used during read of Sample
static int idx;
};
#endif