view projects/oscillator_bank/main.cpp @ 0:8a575ba3ab52

Initial commit.
author andrewm
date Fri, 31 Oct 2014 19:10:17 +0100
parents
children 09f03ac40fcc
line wrap: on
line source
/*
 * main.cpp
 *
 *  Created on: Oct 24, 2014
 *      Author: parallels
 */

#include <iostream>
#include <cstdlib>
#include <libgen.h>
#include <signal.h>
#include "../../include/RTAudio.h"

using namespace std;

int gNumOscillators = 32;
int gWavetableLength = 1024;


// Handle Ctrl-C by requesting that the audio rendering stop
void interrupt_handler(int var)
{
	gShouldStop = true;
}

// Print usage information
void usage(const char * processName)
{
	cerr << "Usage: " << processName << " [-h] [-v] [-p period] [-f input] [-a input]" << endl;
	cerr << "   -h:           Print this menu\n";
	cerr << "   -v:           Enable verbose messages\n";
	cerr << "   -p period:    Set the period (hardware buffer) size in sensor frames\n";
    cerr << "   -n oscs:      Set the number of oscillators to use (default: 32)\n";
    cerr << "   -w length:    Set the wavetable length in samples (default: 1024)\n";
	cerr << "   -m:           Enable the matrix (ADC and DAC) for controlling parameters\n";
}

int main(int argc, char *argv[])
{
	int periodSize = 8;			// Period size in sensor frames
	int verbose = 0;			// Verbose printing level
	int useMatrix = 0;

	// Parse command-line arguments
	while (1) {
		int c;
		if ((c = getopt(argc, argv, "hp:vn:w:m")) < 0)
				break;
		switch (c) {
		case 'h':
				usage(basename(argv[0]));
				exit(0);
		case 'p':
				periodSize = atoi(optarg);
				if(periodSize < 1)
					periodSize = 1;
				break;
		case 'v':
				verbose = 1;
				break;
		case 'n':
				gNumOscillators = atoi(optarg);
				if(gNumOscillators <= 0) {
					usage(basename(argv[0]));
					exit(0);
				}
				break;
		case 'w':
				gWavetableLength = atoi(optarg);
				if(gWavetableLength < 4)
					gWavetableLength = 4;
				if(gWavetableLength > 16384)
					gWavetableLength = 16384;
				break;
		case 'm':
				useMatrix = 1;
				break;
		case '?':
		default:
				usage(basename(argv[0]));
				exit(1);
		}
	}


	// Set verbose logging information (optional by using value > 0; default is 0)
	setVerboseLevel(verbose);

	if(verbose) {
		cout << "Starting with period size " << periodSize << endl;
		cout << "--> Using " << gNumOscillators << " oscillators and wavetable of " << gWavetableLength << " samples\n";
		cout << "--> Matrix ";
		if(useMatrix) cout << "enabled\n";
		else cout << "disabled\n";
	}

	// Initialise the PRU audio device
	if(initAudio(periodSize, useMatrix, 0) != 0) {
		cout << "Error: unable to initialise audio" << endl;
		return -1;
	}

	// Start the audio device running
	if(startAudio()) {
		cout << "Error: unable to start real-time audio" << endl;
		return -1;
	}

	// Set up interrupt handler to catch Control-C
	signal(SIGINT, interrupt_handler);

	// Run until told to stop
	while(!gShouldStop) {
		usleep(100000);
	}

	// Stop the audio device
	stopAudio();

	if(verbose) {
		cout << "Cleaning up..." << endl;
	}

	// Clean up any resources allocated for audio
	cleanupAudio();

	// All done!
	return 0;
}