MuseScore/zerberus/channel.h

53 lines
1.5 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;
float _panLeftGain;
float _panRightGain;
float _midiVolume;
char ctrl[128];
2013-03-26 19:59:51 +01:00
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;
float gain() const { return _gain * _midiVolume; }
// void setGain(float val) { _gain = val; }
float panLeftGain() const { return _panLeftGain; }
float panRightGain() const { return _panRightGain; }
2013-03-26 19:59:51 +01:00
};
#endif