2008-07-21 22:07:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("../inc/bossa.inc");
|
|
|
|
|
|
|
|
// Bossa example #1.
|
|
|
|
// Show the user an image and ask them to click on the ellipse
|
|
|
|
// This version does no replication.
|
|
|
|
|
|
|
|
function job_show($job, $inst, $user) {
|
2008-07-30 21:37:41 +00:00
|
|
|
$info = $job->get_opaque_data($job);
|
2008-07-21 22:07:25 +00:00
|
|
|
$path = $info->path;
|
|
|
|
page_head("Find the Ellipse");
|
|
|
|
echo "
|
|
|
|
<form method=get action=bossa_job_finished.php>
|
|
|
|
Click on the center of the ellipse.
|
|
|
|
If you don't see one, click here:
|
|
|
|
<input type=submit name=submit value=None>
|
|
|
|
<br><br>
|
|
|
|
<input type=hidden name=bji value=$inst->id>
|
|
|
|
<input type=image name=pic src=$path>
|
|
|
|
</form>
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
}
|
|
|
|
|
|
|
|
function job_issued($job, $inst, $user) {
|
|
|
|
$job->set_priority(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function job_finished($job, $inst) {
|
|
|
|
$response = null;
|
|
|
|
if (get_str('submit', true)) {
|
|
|
|
$response->have_ellipse = 0;
|
|
|
|
} else {
|
|
|
|
$response->have_ellipse = 1;
|
|
|
|
$response->cx = get_int('pic_x');
|
|
|
|
$response->cy = get_int('pic_y');
|
|
|
|
}
|
2008-07-30 21:37:41 +00:00
|
|
|
$inst->set_opaque_data($response);
|
2008-07-21 22:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function job_timed_out($job, $inst, $user) {
|
|
|
|
$job->set_priority(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
function job_summary($job) {
|
2008-07-30 21:37:41 +00:00
|
|
|
$info = $job->get_opaque_data();
|
2008-07-21 22:07:25 +00:00
|
|
|
return "<a href=".URL_BASE."$info->path>View image</a>";
|
|
|
|
}
|
|
|
|
|
|
|
|
function instance_summary($inst) {
|
2008-07-30 21:37:41 +00:00
|
|
|
$info = $inst->get_opaque_data();
|
2008-07-21 22:07:25 +00:00
|
|
|
if ($info->have_ellipse) {
|
|
|
|
return "($info->cx, $info->cy)";
|
|
|
|
} else {
|
|
|
|
return "no ellipse";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_user_summary($user) {
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|