Skip to content
Snippets Groups Projects
Commit 9b57af5a authored by jsiegle's avatar jsiegle
Browse files

Fix problems with LfpDisplay

parent 61729499
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@
LfpDisplayNode::LfpDisplayNode()
: GenericProcessor("LFP Viewer"),
displayBufferIndex(0), displayGain(1), bufferLength(10.0f),
displayBufferIndex(0), displayGain(1), bufferLength(5.0f),
abstractFifo(100), ttlState(0)
{
std::cout << " LFPDisplayNodeConstructor" << std::endl;
......
......@@ -251,14 +251,13 @@ void LfpDisplayCanvas::updateScreenBuffer()
// copy new samples from the displayBuffer into the screenBuffer (waves)
int maxSamples = lfpDisplay->getWidth();
int maxSamples = lfpDisplay->getWidth() - leftmargin;
if (screenBufferIndex >= maxSamples) // wrap around if we reached right edge before
screenBufferIndex = leftmargin;
screenBufferIndex = 0;
lastScreenBufferIndex = screenBufferIndex;
int index = processor->getDisplayBufferIndex();
int nSamples = index - displayBufferIndex; // N new samples to be addeddisplayBufferIndex
......@@ -268,7 +267,7 @@ void LfpDisplayCanvas::updateScreenBuffer()
nSamples = (displayBufferSize - displayBufferIndex) + index;
}
float ratio = sampleRate * timebase / float(getWidth()-leftmargin);
float ratio = sampleRate * timebase / float(getWidth() - leftmargin - scrollBarThickness);
// this number is crucial: converting from samples to values (in px) for the screen buffer
int valuesNeeded = (int) float(nSamples) / ratio;
......@@ -280,7 +279,7 @@ void LfpDisplayCanvas::updateScreenBuffer()
}
float subSampleOffset = 0.0;
int nextPos = (displayBufferIndex ) % displayBufferSize; // position next to displayBufferIndex in display buffer to copy from
int nextPos = (displayBufferIndex + 1) % displayBufferSize; // position next to displayBufferIndex in display buffer to copy from
if (valuesNeeded > 0 && valuesNeeded < 1000)
{
......@@ -324,7 +323,6 @@ void LfpDisplayCanvas::updateScreenBuffer()
}
screenBufferIndex++;
//screenBufferIndex %= maxSamples;
}
......@@ -353,13 +351,23 @@ void LfpDisplayCanvas::paint(Graphics& g)
g.setColour(Colour(0,18,43)); //background color
g.fillRect(0, 0, getWidth(), getHeight());
g.setGradientFill(ColourGradient(Colour(50,50,50),0,0,
Colour(25,25,25),0,30,
false));
g.fillRect(0, 0, getWidth()-scrollBarThickness, 30);
g.setColour(Colours::black);
g.drawLine(0,30,getWidth()-scrollBarThickness,30);
g.setColour(Colour(40,40,40));
int w = getWidth()-scrollBarThickness-leftmargin;
for (int i = 1; i < 10; i++)
for (int i = 0; i < 10; i++)
{
if (i == 5)
if (i == 5 || i == 0)
g.drawLine(w/10*i+leftmargin,0,w/10*i+leftmargin,getHeight()-60,3.0f);
else
g.drawLine(w/10*i+leftmargin,0,w/10*i+leftmargin,getHeight()-60,1.0f);
......@@ -436,15 +444,7 @@ LfpTimescale::~LfpTimescale()
void LfpTimescale::paint(Graphics& g)
{
g.setGradientFill(ColourGradient(Colour(50,50,50),0,0,
Colour(25,25,25),0,getHeight(),
false));
g.fillAll();
g.setColour(Colours::black);
g.drawLine(0,getHeight(),getWidth(),getHeight());
g.setFont(font);
......@@ -548,6 +548,16 @@ void LfpDisplay::setNumChannels(int numChannels)
channels.add(lfpChan);
LfpChannelDisplayInfo* lfpInfo = new LfpChannelDisplayInfo(canvas, i);
lfpInfo->setColour(channelColours[i % channelColours.size()]);
lfpInfo->setRange(range);
lfpInfo->setChannelHeight(canvas->getChannelHeight());
addAndMakeVisible(lfpInfo);
channelInfo.add(lfpInfo);
totalHeight += lfpChan->getChannelHeight();
}
......@@ -569,11 +579,18 @@ void LfpDisplay::resized()
LfpChannelDisplay* disp = channels[i];
disp->setBounds(0,
disp->setBounds(canvas->leftmargin,
totalHeight-disp->getChannelOverlap()/2,
getWidth(),
disp->getChannelHeight()+disp->getChannelOverlap());
LfpChannelDisplayInfo* info = channelInfo[i];
info->setBounds(0,
totalHeight-disp->getChannelOverlap()/2,
canvas->leftmargin,
disp->getChannelHeight()+disp->getChannelOverlap());
totalHeight += disp->getChannelHeight();
}
......@@ -600,18 +617,19 @@ void LfpDisplay::refresh()
for (int i = 0; i < numChans; i++)
{
int componentTop = getChildComponent(i)->getY();
int componentBottom = getChildComponent(i)->getHeight() + componentTop;
int componentTop = channels[i]->getY();
int componentBottom = channels[i]->getHeight() + componentTop;
if ((topBorder <= componentBottom && bottomBorder >= componentTop))
{
if (canvas->fullredraw)
{
channels[i]->fullredraw = true;
getChildComponent(i)->repaint();
channels[i]->repaint();
channelInfo[i]->repaint();
} else {
getChildComponent(i)->repaint(canvas->lastScreenBufferIndex-2, 0, (canvas->screenBufferIndex-canvas->lastScreenBufferIndex)+3, getChildComponent(i)->getHeight() ); //repaint only the updated portion
channels[i]->repaint(canvas->lastScreenBufferIndex-2, 0, (canvas->screenBufferIndex-canvas->lastScreenBufferIndex)+3, getChildComponent(i)->getHeight() ); //repaint only the updated portion
// we redraw from -2 to +1 relative to the real redraw window, the -2 makes sure that the lines join nicely, and the +1 draws the vertical update line
}
//std::cout << i << std::endl;
......@@ -642,6 +660,7 @@ void LfpDisplay::setChannelHeight(int r)
for (int i = 0; i < numChans; i++)
{
channels[i]->setChannelHeight(r);
channelInfo[i]->setChannelHeight(r);
}
resized();
......@@ -656,6 +675,8 @@ void LfpDisplay::setChannelHeight(int r)
// passes the event up to the viewport so the screen scrolls
if (viewport != nullptr && e.eventComponent == this) // passes only if it's not a listening event
viewport->mouseWheelMove(e.getEventRelativeTo(canvas), wheel);
refresh();
}
......@@ -678,7 +699,7 @@ void LfpDisplay::mouseDown(const MouseEvent& event)
canvas->fullredraw = true;//issue full redraw
//repaint();
refresh();
}
......@@ -747,7 +768,7 @@ void LfpChannelDisplay::paint(Graphics& g)
if (fullredraw)
{
ifrom = canvas->leftmargin;
ifrom = 0; //canvas->leftmargin;
ito = getWidth()-stepSize;
fullredraw = false;
}
......@@ -796,10 +817,10 @@ void LfpChannelDisplay::paint(Graphics& g)
}
// g.setColour(lineColour.withAlpha(0.7f)); // alpha on seems to decrease draw speed
g.setFont(channelFont);
g.setFont(channelHeightFloat*0.6);
// g.setFont(channelFont);
// g.setFont(channelHeightFloat*0.6);
g.drawText(String(chan+1), 10, center-channelHeight/2, 200, channelHeight, Justification::left, false);
// g.drawText(String(chan+1), 10, center-channelHeight/2, 200, channelHeight, Justification::left, false);
}
......@@ -850,4 +871,28 @@ void LfpChannelDisplay::setChannelOverlap(int overlap)
int LfpChannelDisplay::getChannelOverlap()
{
return channelOverlap;
}
\ No newline at end of file
}
// -------------------------------
LfpChannelDisplayInfo::LfpChannelDisplayInfo(LfpDisplayCanvas* canvas_, int ch)
: LfpChannelDisplay(canvas_, ch)
{
}
void LfpChannelDisplayInfo::paint(Graphics& g)
{
int center = getHeight()/2;
g.setColour(lineColour);
g.setFont(channelFont);
g.setFont(channelHeightFloat*0.6);
g.drawText(String(chan+1), 10, center-channelHeight/2, 200, channelHeight, Justification::left, false);
}
\ No newline at end of file
......@@ -32,6 +32,7 @@ class LfpDisplayNode;
class LfpTimescale;
class LfpDisplay;
class LfpChannelDisplay;
class LfpChannelDisplayInfo;
/**
......@@ -184,6 +185,7 @@ private:
Viewport* viewport;
Array<LfpChannelDisplay*> channels;
Array<LfpChannelDisplayInfo*> channelInfo;
Array<Colour> channelColours;
float range;
......@@ -213,7 +215,7 @@ public:
bool fullredraw; // used to indicate that a full redraw is required. is set false after each full redraw
private:
protected:
LfpDisplayCanvas* canvas;
......@@ -233,5 +235,13 @@ private:
};
class LfpChannelDisplayInfo : public LfpChannelDisplay
{
public:
LfpChannelDisplayInfo(LfpDisplayCanvas*, int channelNumber);
void paint(Graphics& g);
};
#endif // __LFPDISPLAYCANVAS_H_B711873A__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment