MuseScore/zerberus/channel.h

47 lines
1.3 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 __MCHANNEL_H__
#define __MCHANNEL_H__
class Zerberus;
class ZInstrument;
2013-03-26 19:59:51 +01:00
//---------------------------------------------------------
// Channel
//---------------------------------------------------------
class Channel {
Zerberus* _msynth;
ZInstrument* _instrument;
2013-03-26 19:59:51 +01:00
float _gain;
int _idx; // channel index
int _sustain;
public:
Channel(Zerberus*, int idx);
void pitchBend(int);
void controller(int ctrl, int val);
ZInstrument* instrument() const { return _instrument; }
void setInstrument(ZInstrument* i) { _instrument = i; }
2013-03-26 19:59:51 +01:00
Zerberus* msynth() const { return _msynth; }
int sustain() const { return _sustain; }
float gain() const { return _gain; }
void setGain(float val) { _gain = val; }
};
#endif