/*
    ------------------------------------------------------------------

    This file is part of the Open Ephys GUI
    Copyright (C) 2013 Open Ephys

    ------------------------------------------------------------------

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

*/
#ifndef __LFPDISPLAYCANVAS_H_B711873A__
#define __LFPDISPLAYCANVAS_H_B711873A__

#include "../../../JuceLibraryCode/JuceHeader.h"
#include "../LfpDisplayNode.h"
#include "Visualizer.h"

class LfpDisplayNode;

class LfpTimescale;
class LfpDisplay;
class LfpChannelDisplay;

/**

  Displays multiple channels of continuous data.

  @see LfpDisplayNode, LfpDisplayEditor

*/

class LfpDisplayCanvas : public Visualizer

{
public: 
	LfpDisplayCanvas(LfpDisplayNode* n);
	~LfpDisplayCanvas();

	void beginAnimation();
	void endAnimation();

	void refreshState();

	void update();

	void setParameter(int, float);
	void setParameter(int, int, int, float){}

	void paint(Graphics& g);

	void resized();

	float getXCoord(int chan, int samp);
	float getYCoord(int chan, int samp);

	int screenBufferIndex;
	int lastScreenBufferIndex;

private:

	float sampleRate;
	float timebase;
	float displayGain;
	float timeOffset;

	static const int MAX_N_CHAN = 256;  // maximum number of channels
	static const int MAX_N_SAMP = 5000; // maximum display size in pixels
	//float waves[MAX_N_CHAN][MAX_N_SAMP*2]; // we need an x and y point for each sample

	LfpDisplayNode* processor;
	AudioSampleBuffer* displayBuffer;
	AudioSampleBuffer* screenBuffer;
	MidiBuffer* eventBuffer;

	ScopedPointer<LfpTimescale> timescale;
	ScopedPointer<LfpDisplay> lfpDisplay;
	ScopedPointer<Viewport> viewport;

	void refreshScreenBuffer();
	void updateScreenBuffer();

	int displayBufferIndex;
	int displayBufferSize;

	int scrollBarThickness;

	int nChans;

	JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (LfpDisplayCanvas);
	
};

class LfpTimescale : public Component
{
public:
	LfpTimescale(LfpDisplayCanvas*);
	~LfpTimescale();

	void paint(Graphics& g);

private:

	LfpDisplayCanvas* canvas;

};

class LfpDisplay : public Component
{
public:
	LfpDisplay(LfpDisplayCanvas*, Viewport*);
	~LfpDisplay();

	void setNumChannels(int numChannels);
	int getTotalHeight() {return totalHeight;}

	void paint(Graphics& g);

	void resized();

	void mouseDown(const MouseEvent& event);

private:
	int numChans;
	int channelHeight;
	int totalHeight;

	LfpDisplayCanvas* canvas;
	Viewport* viewport;

	Array<LfpChannelDisplay*> channels;

};

class LfpChannelDisplay : public Component
{
public:
	LfpChannelDisplay(LfpDisplayCanvas*, int channelNumber);
	~LfpChannelDisplay();

	void paint(Graphics& g);

	void select();
	void deselect();


private:

	LfpDisplayCanvas* canvas;

	bool isSelected;

	int chan;

};


#endif  // __LFPDISPLAYCANVAS_H_B711873A__