relog/clients/anim/main.js

449 lines
11 KiB
JavaScript
Raw Normal View History

2013-05-21 18:04:44 +02:00
var startTime = (24*1 + 9)*60;
2013-05-21 11:25:06 +02:00
var minTime = (24*0 + 12)*60;
var maxTime = (24*3 + 22)*60;
2013-05-21 11:25:06 +02:00
var currentTime = startTime;
2013-05-18 17:15:23 +02:00
var clients = [];
var context;
2013-05-20 18:58:05 +02:00
var width = 980;
2013-05-21 10:48:41 +02:00
var height = 490;
2013-05-19 16:29:37 +02:00
var gridSize = 3;
var nearFieldRadius = 30;
2013-05-18 17:15:23 +02:00
2013-05-21 16:54:47 +02:00
var timeStep = 1000/1500; (250, 500, 1000)
var decay = Math.pow(0.8, 5);
2013-05-18 17:15:23 +02:00
var stepSize = 50*timeStep;
2013-05-18 17:54:57 +02:00
var frameDuration = 40;
2013-05-18 17:54:15 +02:00
var radius = 1.4;
2013-05-19 09:55:11 +02:00
var jump = false;
2013-05-19 16:29:37 +02:00
var stepGridRadius = Math.ceil(stepSize/gridSize);
var nearFieldGridRadius = Math.ceil(nearFieldRadius/gridSize);
2013-05-18 17:15:23 +02:00
var interval;
2013-05-18 17:48:16 +02:00
var time2index = [];
var random = [];
2013-05-19 16:29:37 +02:00
var stepGrid = [];
var nearFieldGrid = [];
var grid = [];
for (var x = -nearFieldGridRadius; x < width/gridSize+nearFieldGridRadius; x++) grid[x] = [];
2013-05-18 17:15:23 +02:00
$(function () {
init();
2013-05-21 16:54:47 +02:00
setSpeed(2);
startPlay();
//update();
2013-05-21 17:52:45 +02:00
//setTimeout(stopPlay, 10000);
2013-05-18 17:15:23 +02:00
})
2013-05-21 16:54:47 +02:00
function setSpeed(speed) {
timeStep = Math.pow(2, speed)*125/1500;
stepSize = 50*timeStep;
stepGridRadius = Math.ceil(stepSize/gridSize);
nearFieldGridRadius = Math.ceil(nearFieldRadius/gridSize);
$('.speed').removeClass('active');
$('#speed'+speed).addClass('active');
}
2013-05-21 17:37:24 +02:00
var mouseDragX0, dragTime, mouseDrag = false;
function sliderDragMove(event) {
if (mouseDrag) {
currentTime = dragTime + (mouseDragX0 - event.pageX);
updateFrame();
event.preventDefault();
return false;
} else {
mouseDragX0 = event.pageX;
}
}
function sliderDragStart() {
mouseDrag = true;
dragTime = currentTime;
}
function sliderDragStop() {
mouseDrag = false;
}
2013-05-18 17:47:35 +02:00
function init() {
context = $('#canvas')[0].getContext('2d');
clients = [];
data.matrix.forEach(function (times, index) {
2013-05-21 16:54:47 +02:00
clients[index] = { point:undefined, x:0, y:0, r:0, x0:0, y0:0, r0:0, index:index, lastEvent:0 };
2013-05-18 17:47:35 +02:00
random[index] = Math.random();
});
2013-05-19 09:54:41 +02:00
2013-05-21 16:54:47 +02:00
$('#play').click(togglePlay);
$('#speed1').click(function () { setSpeed(1); });
$('#speed2').click(function () { setSpeed(2); });
$('#speed3').click(function () { setSpeed(3); });
2013-05-21 17:37:24 +02:00
$('#sliderWrapper').mousedown(function () { sliderDragStart(); });
$(document).mousemove(function (e) { return sliderDragMove(e); });
$(document).mouseup(function (e) { sliderDragStop(); });
$(document).on('selectstart', function () { return !mouseDrag; });
2013-05-18 17:48:16 +02:00
var index = -1;
for (var time = -60; time <= (4*24+1)*60; time++) {
while (data.times[index+1] <= time) index++;
time2index[time] = index;
}
2013-05-18 17:53:47 +02:00
2013-05-19 16:29:37 +02:00
for (var x = -stepGridRadius; x <= stepGridRadius; x++) {
for (var y = -stepGridRadius; y <= stepGridRadius; y++) {
var r = Math.round(Math.sqrt(x*x + y*y)*100)/100;
if (r <= stepGridRadius+1) {
stepGrid.push({x:x, y:y, r:r});
}
}
}
stepGrid = stepGrid.sort( function (a,b) { return (a.r - b.r); } );
2013-05-18 17:53:47 +02:00
2013-05-19 16:29:37 +02:00
for (var x = -nearFieldGridRadius; x <= nearFieldGridRadius; x++) {
for (var y = -nearFieldGridRadius; y <= nearFieldGridRadius; y++) {
var r = Math.round(Math.sqrt(x*x + y*y)*100)/100;
2013-05-18 17:53:47 +02:00
var a = Math.atan2(y,x);
2013-05-19 16:29:37 +02:00
if (r <= nearFieldGridRadius) {
nearFieldGrid.push({x:x, y:y, r:r, a:a});
}
2013-05-18 17:53:47 +02:00
}
}
2013-05-19 16:29:37 +02:00
nearFieldGrid = nearFieldGrid.sort( function (a,b) { return (a.r == b.r) ? (a.a - b.a) : (a.r - b.r);} );
2013-05-21 11:22:06 +02:00
sessions.forEach(function (session) {
session.startTime = session.startInt + (parseInt(session.date.substr(8,2),10)-5)*(24*60);
session.endTime = session.startTime + session.duration;
session.stage = (session.room.substr(0,5) == 'stage') ? parseInt(session.room.substr(6,1), 10) : undefined;
})
2013-05-18 17:47:35 +02:00
}
2013-05-21 16:54:47 +02:00
function startPlay() {
if (!interval) {
interval = setInterval(update, frameDuration);
$('#play').removeClass('pause');
}
2013-05-18 17:15:23 +02:00
}
2013-05-21 16:54:47 +02:00
function stopPlay() {
2013-05-18 17:15:23 +02:00
if (interval) {
clearInterval(interval);
interval = false;
2013-05-21 16:54:47 +02:00
$('#play').addClass('pause');
2013-05-18 17:15:23 +02:00
}
}
2013-05-21 16:54:47 +02:00
function togglePlay() {
if (interval) stopPlay(); else startPlay();
}
2013-05-18 17:15:23 +02:00
function update() {
2013-05-21 17:37:24 +02:00
if (mouseDrag) return;
2013-05-18 17:15:23 +02:00
currentTime += timeStep;
2013-05-21 11:25:06 +02:00
if (currentTime > maxTime) {
currentTime = maxTime;
2013-05-21 16:54:47 +02:00
stopPlay();
2013-05-21 11:25:06 +02:00
}
2013-05-21 16:54:47 +02:00
if (currentTime < minTime) currentTime = minTime;
2013-05-18 17:15:23 +02:00
2013-05-21 17:37:24 +02:00
updateFrame();
}
function updateFrame() {
2013-05-18 17:15:23 +02:00
renderTime();
updateData();
updatePosition();
renderCanvas();
}
function renderTime() {
var d = Math.floor(currentTime/1440);
var h = Math.floor(currentTime/60) % 24;
var m = Math.floor(currentTime) % 60;
h = (h+100+'').substr(1);
m = (m+100+'').substr(1);
$('#timer').html('Tag '+d+' - '+h+':'+m);
2013-05-21 10:50:19 +02:00
2013-05-21 16:54:47 +02:00
$('#sliderInner').css('left', -(currentTime-441));
2013-05-18 17:15:23 +02:00
}
function updateData() {
2013-05-21 11:22:06 +02:00
var stages = ['', '', '', '', '', '', '', ''];
sessions.forEach(function (session) {
if ((session.startTime <= currentTime) && (currentTime < session.endTime)) {
if (session.stage !== undefined) {
stages[session.stage] = 'Stage '+session.stage+': '+session.title;
}
}
});
2013-05-21 17:52:37 +02:00
for (var i = 1; i <= 7; i++) (function () {
var node = $('#stage'+i);
var oldText = node.attr('oldText');
var newText = stages[i];
node.attr('oldText', newText);
if (oldText != newText) {
if (mouseDrag) {
node.html(newText);
} else {
node.stop(true);
node.fadeOut(100, function () { node.html(newText); });
node.fadeIn(100);
}
}
})();
2013-05-21 11:22:06 +02:00
2013-05-18 17:15:23 +02:00
data.matrix.forEach(function (times, index) {
2013-05-19 09:56:40 +02:00
var timeId = time2index[Math.floor(currentTime)];
2013-05-18 17:48:16 +02:00
2013-05-18 17:15:23 +02:00
var point = undefined;
2013-05-21 17:37:24 +02:00
var pointBefore = undefined;
2013-05-19 09:56:40 +02:00
var t0 = data.times[timeId]; if (isNaN(t0)) t0 = 0;
var t1 = data.times[timeId+1]; if (isNaN(t1)) t1 = 1e10;
var offset = (currentTime-t0)/(t1-t0);
if (offset < random[index]) {
2013-05-21 17:37:24 +02:00
pointBefore = times[timeId-2];
point = times[timeId-1];
2013-05-19 09:56:40 +02:00
} else {
2013-05-21 17:37:24 +02:00
pointBefore = times[timeId-1];
point = times[timeId];
2013-05-19 09:56:40 +02:00
}
2013-05-18 17:15:23 +02:00
2013-05-21 17:37:24 +02:00
if (!valid(pointBefore)) pointBefore = undefined;
if (!valid(point)) point = undefined;
2013-05-18 17:15:23 +02:00
var client = clients[index];
2013-05-18 17:48:16 +02:00
if (client.point != point) {
2013-05-21 17:37:24 +02:00
if (point !== undefined) {
2013-05-19 16:29:37 +02:00
client.x0 = data.points[point].x*width;
client.y0 = data.points[point].y*height;
2013-05-18 17:15:23 +02:00
client.r0 = 1;
2013-05-21 17:37:24 +02:00
if (client.point === undefined) client.x = undefined;
2013-05-18 17:15:23 +02:00
} else {
client.r0 = 0;
}
client.point = point;
2013-05-19 16:29:37 +02:00
client.lastEvent = currentTime;
client.settled = false;
}
2013-05-21 17:37:24 +02:00
if (mouseDrag) {
client.x = undefined;
client.settled = false;
2013-05-18 17:15:23 +02:00
}
});
2013-05-19 16:29:37 +02:00
}
function updatePosition() {
for (var x = -nearFieldGridRadius; x < width/gridSize + nearFieldGridRadius; x++) {
for (var y = -nearFieldGridRadius; y < height/gridSize + nearFieldGridRadius; y++) {
grid[x][y] = ((x >= 0) && (x < width/gridSize) && (y >= 0) && (y < height/gridSize));
}
}
clients.forEach(function (client) {
client.r += (client.r0 - client.r)*decay;
client.r = client.r0;
if (!valid(client.point) && (client.r < 1e-2)) {
client.valid = false;
return;
} else {
client.valid = true;
}
if (client.settled) {
var x = Math.round(client.x/gridSize);
var y = Math.round(client.y/gridSize);
if (grid[x][y]) {
grid[x][y] = false;
client.x = x*gridSize;
client.y = y*gridSize;
} else {
client.settled = false;
}
}
});
clients.forEach(function (client) {
if (!client.valid) return;
client.xo = client.x;
client.yo = client.y;
2013-05-18 17:15:23 +02:00
2013-05-19 16:29:37 +02:00
var gridx0 = Math.round(client.x0/gridSize);
var gridy0 = Math.round(client.y0/gridSize);
if (client.x === undefined) {
// Punkt ist neu, also finde einen neuen Ort zum settlen
for (var i = 0; i < nearFieldGrid.length; i++) {
var p = nearFieldGrid[i];
if (grid[gridx0+p.x][gridy0+p.y]) {
grid[gridx0+p.x][gridy0+p.y] = false;
client.x = (gridx0+p.x)*gridSize;
client.y = (gridy0+p.y)*gridSize;
client.settled = true;
break;
}
2013-05-18 17:15:23 +02:00
}
2013-05-19 16:29:37 +02:00
} else {
if (!client.settled) {
// Kommt gerade von wo anders her
var xn, yn;
var dx = (client.x0 - client.x);
var dy = (client.y0 - client.y);
var r = Math.sqrt(dx*dx + dy*dy);
if (r > 1e-2) {
var rn = Math.max(r-stepSize, 0);
var f = 1-rn/r;
xn = client.x + (client.x0 - client.x)*f;
yn = client.y + (client.y0 - client.y)*f;
} else {
xn = client.x0;
yn = client.y0;
}
2013-05-18 17:15:23 +02:00
2013-05-19 16:29:37 +02:00
var dx = (client.x0 - xn);
var dy = (client.y0 - yn);
var r = Math.sqrt(dx*dx + dy*dy);
if (r < nearFieldRadius) {
xn = Math.round(xn/gridSize);
yn = Math.round(yn/gridSize);
if (grid[xn][yn]) {
client.x = xn*gridSize;
client.y = yn*gridSize;
} else {
var rMin = 1e10;
var pMin = false;
var gridx = Math.round(client.xo/gridSize);
var gridy = Math.round(client.yo/gridSize);
for (var i = 0; i < stepGrid.length; i++) {
var p = stepGrid[i];
if (grid[gridx+p.x][gridy+p.y]) {
var dxn = client.x0 - (gridx + p.x)*gridSize;
var dyn = client.y0 - (gridy + p.y)*gridSize;
var rn = Math.sqrt(dxn*dxn + dyn*dyn);
if (rn < rMin) {
rMin = rn;
pMin = p;
}
}
}
if (pMin) {
grid[gridx+pMin.x][gridy+pMin.y] = false;
client.x = (gridx + pMin.x)*gridSize;
client.y = (gridy + pMin.y)*gridSize;
client.settled = true;
}
}
} else {
client.x = xn;
client.y = yn;
}
}
}
2013-05-18 17:15:23 +02:00
});
2013-05-19 16:29:37 +02:00
clients.forEach(function (client) {
if (!client.valid) return;
2013-05-19 09:55:11 +02:00
2013-05-19 16:29:37 +02:00
if (client.settled) {
var gridx0 = Math.round(client.x0/gridSize);
var gridy0 = Math.round(client.y0/gridSize);
var gridx = Math.round(client.x /gridSize);
var gridy = Math.round(client.y /gridSize);
var dxmin = 0;
var dymin = 0;
var dx = (gridx-gridx0);
var dy = (gridy-gridy0);
var rMin = dx*dx + dy*dy - 1e-5;
for (var dxg = -1; dxg <= 1; dxg++) {
for (var dyg = -1; dyg <= 1; dyg++) {
if (grid[gridx+dxg][gridy+dyg]) {
var dx = (gridx+dxg-gridx0);
var dy = (gridy+dyg-gridy0);
var r = dx*dx + dy*dy;
if (r < rMin) {
rMin = r;
dxmin = dxg;
dymin = dyg;
}
}
}
2013-05-19 09:55:11 +02:00
}
2013-05-19 16:29:37 +02:00
grid[gridx][gridy] = true;
grid[gridx + dxmin][gridy + dymin] = false;
client.x = (gridx + dxmin)*gridSize;
client.y = (gridy + dymin)*gridSize;
//nachrücken
}
});
2013-05-18 17:15:23 +02:00
}
function renderCanvas() {
context.clearRect(0, 0, width, height);
2013-05-18 17:54:25 +02:00
context.fillStyle = '#000';
2013-05-18 17:15:23 +02:00
clients.forEach(function (client) {
2013-05-19 16:29:37 +02:00
if (client.valid) {
2013-05-18 17:15:23 +02:00
var dx = client.x - client.xo;
var dy = client.y - client.yo;
var r = Math.sqrt(dx*dx + dy*dy);
2013-05-21 17:37:24 +02:00
if ((r > 1) && (!client.settled)) {
2013-05-20 18:58:05 +02:00
var a = Math.min(Math.pow(1/r, 0.7), 1);
2013-05-18 17:54:25 +02:00
context.strokeStyle = 'rgba(0,0,0,'+a+')';
2013-05-18 17:54:15 +02:00
context.lineWidth = client.r*2*radius;
2013-05-18 17:15:23 +02:00
context.beginPath();
context.moveTo(client.xo, client.yo);
context.lineTo(client.x, client.y );
context.stroke();
} else {
context.beginPath();
2013-05-18 17:54:15 +02:00
context.arc(client.x, client.y, client.r*radius, 0, 2*Math.PI, false);
2013-05-18 17:15:23 +02:00
context.fill();
}
}
});
2013-05-19 16:29:37 +02:00
/*
context.fillStyle = 'rgba(255,0,0,0.5)';
for (var x = 0; x < width/gridSize; x++) {
for (var y = 0; y < height/gridSize; y++) {
if (!grid[x][y]) {
context.beginPath();
context.arc(x*gridSize, y*gridSize, 1, 0, 2*Math.PI, false);
context.fill();
}
}
}
context.fillStyle = 'rgba(0,255,0,0.5)';
debugList.forEach(function (p) {
context.beginPath();
context.arc(p.x, p.y, 1, 0, 2*Math.PI, false);
context.fill();
});
*/
2013-05-18 17:15:23 +02:00
}
function valid(point) {
return (point != null) && (point !== undefined);
}