mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
71 lines
2.2 KiB
JavaScript
71 lines
2.2 KiB
JavaScript
/* Use Canvas to recreate the simple Winamp visualizer */
|
|
Visualizer = {
|
|
init: function(canvasNode) {
|
|
this.canvas = canvasNode;
|
|
this.canvasCtx = this.canvas.getContext("2d");
|
|
this.canvasCtx.imageSmoothingEnabled= false;
|
|
this.canvasCtx.translate(1, 1); // http://stackoverflow.com/questions/13593527/canvas-make-the-line-thicker
|
|
this.width = this.canvas.width;
|
|
this.height = this.canvas.height;
|
|
this.colors = [];
|
|
this.NONE = 0;
|
|
this.OSCILLOSCOPE = 1;
|
|
this.BAR = 2;
|
|
return this;
|
|
},
|
|
|
|
clear: function() {
|
|
// +/- is just there to deal with offset, meh if its right or not ;)
|
|
this.canvasCtx.clearRect(-2, -2, this.width + 2, this.height + 2);
|
|
},
|
|
|
|
paintFrame: function(type, bufferLength, dataArray) {
|
|
this.clear();
|
|
if(type == this.OSCILLOSCOPE) {
|
|
return this._paintOscilloscopeFrame(bufferLength, dataArray);
|
|
} else if(type == this.BAR) {
|
|
return this._paintBarFrame(bufferLength, dataArray);
|
|
}
|
|
},
|
|
|
|
_paintOscilloscopeFrame: function(bufferLength, dataArray) {
|
|
function avg() {
|
|
var avg = 0;
|
|
var count = 0;
|
|
for (var l = lastIndex; l < index + 1; l++) {
|
|
avg += dataArray[l];
|
|
count++;
|
|
}
|
|
var v = avg / count;
|
|
return h * v / 128;
|
|
}
|
|
|
|
this.canvasCtx.lineWidth = 2; // 2 because were shrinking the canvas by 2
|
|
|
|
// Just use one of the viscolors for now
|
|
this.canvasCtx.strokeStyle = this.colors[18];
|
|
|
|
this.canvasCtx.beginPath();
|
|
|
|
var sliceWidth = bufferLength / this.width * 1;
|
|
var h = this.height / 2;
|
|
|
|
this.canvasCtx.moveTo(-2, h);
|
|
var index = 0;
|
|
var lastIndex = 0;
|
|
for (var i = 0, iEnd = this.width * 1; i < iEnd; i += 2) {
|
|
index = i * sliceWidth | 0;
|
|
this.canvasCtx.lineTo(i, avg());
|
|
lastIndex = index + 1;
|
|
}
|
|
lastIndex = index + 1;
|
|
index = i * sliceWidth | 0;
|
|
|
|
this.canvasCtx.lineTo(this.width, avg());
|
|
this.canvasCtx.stroke();
|
|
},
|
|
|
|
_paintBarFrame: function(bufferLength, dataArray) {
|
|
// TODO
|
|
}
|
|
}
|