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;
|
|
|
|
class QZipReader;
|
2013-05-22 18:07:56 +02:00
|
|
|
struct Zone;
|
|
|
|
struct SfzRegion;
|
2013-03-26 19:59:51 +01:00
|
|
|
class Sample;
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
2013-03-27 10:07:14 +01:00
|
|
|
// 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&);
|
|
|
|
bool read(const QByteArray&, QZipReader*, const QString& path);
|
|
|
|
|
|
|
|
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; }
|
|
|
|
Sample* readSample(const QString& s, QZipReader* uz);
|
|
|
|
void addZone(Zone* z) { _zones.push_back(z); }
|
|
|
|
void addRegion(SfzRegion&);
|
|
|
|
|
|
|
|
static QByteArray buf; // used during read of Sample
|
|
|
|
static int idx;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|