admin管理员组文章数量:1340890
I'm building a tool using websockets which allows multiple users to "draw" on each others' canvases. The user draws on a canvas, and an object containing mousedown/mouseup events and coordinates is pushed to other users instantaneously. This is then plotted on their canvases, which gives the effect of having multiple users drawing in the same place.
It works as described: you can watch somebody draw something, then draw something which will appear within their canvas. The problem occurs when you draw at the same moment as somebody else.
For each user, it creates a new context for each user's canvas using:
oekaki['canvas'] = document.getElementById('canvas');
oekaki['ctx'][unique_user_id] = oekaki['canvas'].getContext("2d");
When you draw at the same moment as another user, the canvases madly draw lines between your and their coordinates, despite it using the different contexts.
Why is this the case? Do I have to do something else to acmodate multiple lines being plotted at once? Is it not possible to create multiple contexts in this way?
Any help would be most appreciated.
I'm building a tool using websockets which allows multiple users to "draw" on each others' canvases. The user draws on a canvas, and an object containing mousedown/mouseup events and coordinates is pushed to other users instantaneously. This is then plotted on their canvases, which gives the effect of having multiple users drawing in the same place.
It works as described: you can watch somebody draw something, then draw something which will appear within their canvas. The problem occurs when you draw at the same moment as somebody else.
For each user, it creates a new context for each user's canvas using:
oekaki['canvas'] = document.getElementById('canvas');
oekaki['ctx'][unique_user_id] = oekaki['canvas'].getContext("2d");
When you draw at the same moment as another user, the canvases madly draw lines between your and their coordinates, despite it using the different contexts.
Why is this the case? Do I have to do something else to acmodate multiple lines being plotted at once? Is it not possible to create multiple contexts in this way?
Any help would be most appreciated.
Share Improve this question asked Dec 7, 2011 at 14:54 eddzeddz 6041 gold badge9 silver badges22 bronze badges2 Answers
Reset to default 11The HTML5 Canvas spec says, for getContext()
:
If the getContext() method has already been invoked on this element for the same contextId, return the same object as was returned that time, and abort these steps. The additional arguments are ignored.
You don't have a different context per user, it's the same one. The last path position is being altererd by each new event, and I'm guessing you're not using beginPath
and moveTo
to reset the path on each new event. Try something like this instead:
// on some event, want to draw to (x, y) now:
var ctx = oekaki.canvas.getContext('2d');
var user = oekaki.user[unique_user_id];
ctx.beginPath();
ctx.moveTo(user.lastX, user.lastY);
ctx.lineTo(x, y);
// ctx.strokeStyle = ..., ctx.stroke(), etc, etc...
user.lastX = x;
user.lastY = y;
I suspect that it is the same context your users are drawing onto. I suggest to collect the ining drawing requests and bine it in one paint method that builds the canvas contents when appropriate.
本文标签: javascriptHTML Canvas Multiple getContext plotting at same timeStack Overflow
版权声明:本文标题:javascript - HTML Canvas: Multiple getContext plotting at same time - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743656257a2517174.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论