DJMFix.cpp
author František Kučera <franta-hg@frantovo.cz>
Fri, 18 Dec 2020 21:35:36 +0100
branchv_0
changeset 1 98274757fcf6
parent 0 4ee5349be21d
child 2 f34476ab597f
permissions -rw-r--r--
more bones
franta-hg@0
     1
/**
franta-hg@0
     2
 * DJM-Fix
franta-hg@0
     3
 * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
franta-hg@0
     4
 *
franta-hg@0
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@0
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@0
     7
 * the Free Software Foundation, version 3 of the License.
franta-hg@0
     8
 *
franta-hg@0
     9
 * This program is distributed in the hope that it will be useful,
franta-hg@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@0
    12
 * GNU General Public License for more details.
franta-hg@0
    13
 *
franta-hg@0
    14
 * You should have received a copy of the GNU General Public License
franta-hg@0
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@0
    16
 */
franta-hg@1
    17
#include <iostream>
franta-hg@1
    18
franta-hg@1
    19
#include "DJMFix.h"
franta-hg@1
    20
franta-hg@1
    21
namespace djmfix {
franta-hg@1
    22
franta-hg@1
    23
class DJMFixImpl : public DJMFix {
franta-hg@1
    24
private:
franta-hg@1
    25
	MidiSender midiSender;
franta-hg@1
    26
public:
franta-hg@1
    27
franta-hg@1
    28
	DJMFixImpl(MidiSender midiSender) : midiSender(midiSender) {
franta-hg@1
    29
		std::cerr << "DJMFixImpl()" << std::endl; // TODO: do not mess STDIO
franta-hg@1
    30
	}
franta-hg@1
    31
franta-hg@1
    32
	virtual ~DJMFixImpl() override {
franta-hg@1
    33
		std::cerr << "~DJMFixImpl()" << std::endl; // TODO: do not mess STDIO
franta-hg@1
    34
	}
franta-hg@1
    35
franta-hg@1
    36
	virtual void receive(MidiMessage midiMessage) override {
franta-hg@1
    37
		std::cerr << "DJMFixImpl::receive()" << std::endl; // TODO: do not mess STDIO
franta-hg@1
    38
franta-hg@1
    39
		midiSender({0xf0, 0xf7});
franta-hg@1
    40
	}
franta-hg@1
    41
franta-hg@1
    42
	void start() override {
franta-hg@1
    43
		std::cerr << "DJMFixImpl::start()" << std::endl; // TODO: do not mess STDIO
franta-hg@1
    44
	}
franta-hg@1
    45
franta-hg@1
    46
	void stop() override {
franta-hg@1
    47
		std::cerr << "DJMFixImpl::stop()" << std::endl; // TODO: do not mess STDIO
franta-hg@1
    48
	}
franta-hg@1
    49
};
franta-hg@1
    50
franta-hg@1
    51
DJMFix* create(MidiSender midiSender) {
franta-hg@1
    52
	return new DJMFixImpl(midiSender);
franta-hg@1
    53
}
franta-hg@1
    54
franta-hg@1
    55
}