admin管理员组文章数量:1341455
Is there a sleep() function for Processing.js? If not what would be a suitable alternative to add a delay in the draw() loop?
I am using JQuery with Processing - can I use a JQuery or Javascript function to cause a sleep type delay in the loop?
Thanks!
Is there a sleep() function for Processing.js? If not what would be a suitable alternative to add a delay in the draw() loop?
I am using JQuery with Processing - can I use a JQuery or Javascript function to cause a sleep type delay in the loop?
Thanks!
Share Improve this question asked Sep 1, 2011 at 18:04 logic-unitlogic-unit 4,31312 gold badges49 silver badges74 bronze badges4 Answers
Reset to default 3Processing has a delay() function but unfortunately that is not implemented into Processing.js yet.
You can mix JS(JQuery,etc.) with Processing though. Processing 1.9.9 has a Javascript mode now and there are examples for Processing/DOM integration, like SelectionFlower. In the sketch/pde file there is a method setup to be called form js:
// called from JavaScript
void setSelectionText ( String txt )
{
selectedText = txt;
}
and in the js file, a timeout is set to make sure the sketch is initialized and can be accessed:
var mySketchInstance;
// called once the page has fully loaded
window.onload = function () {
getSketchInstance();
}
// this is called (repeatedly) to find the sketch
function getSketchInstance() {
var s = Processing.instances[0];
if ( s == undefined ) {
setTimeout(getSketchInstance, 200); // try again a bit later
} else {
mySketchInstance = s;
monitorSelection();
}
}
Then when the sketch instance is available, you can simply call a method/function on the sketch:
function monitorSelection () {
//bla bla
mySketchInstance.setSelectionText(txt); // set the text in the sketch
}
HTH
Here is my solution.
void waitasec (int sec) {
int minutes = minute();
int seconds = second();
int hour = hour();
int starttime = (hour * 3600) + (minutes * 60) + seconds;
int finaltime = starttime + sec;
while (starttime < finaltime) {
minutes = minute();
seconds = second();
starttime = (hour * 3600) + (minutes * 60) + seconds;
}
}
A resource consuming solution:
int timer = 0;
void draw() {
if (timer%50 == 0) {
//some code here
}
timer = timer +1;
}
jQuery
.delay( duration [, queueName] )
Description: Set a timer to delay execution of subsequent items in the queue.
See the link http://api.jquery./delay/
本文标签:
版权声明:本文标题:javascript - Processing.js - Sleep, Wait, TimeOut, Pause, Delay? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1740237763a2246787.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论