mirror of https://github.com/BOINC/boinc.git
64 lines
1.4 KiB
PHP
64 lines
1.4 KiB
PHP
|
<?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) {
|
||
|
$info = $job->get_info($job);
|
||
|
$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');
|
||
|
}
|
||
|
$inst->update_info($response);
|
||
|
}
|
||
|
|
||
|
function job_timed_out($job, $inst, $user) {
|
||
|
$job->set_priority(1);
|
||
|
}
|
||
|
|
||
|
function job_summary($job) {
|
||
|
$info = $job->get_info();
|
||
|
return "<a href=".URL_BASE."$info->path>View image</a>";
|
||
|
}
|
||
|
|
||
|
function instance_summary($inst) {
|
||
|
$info = $inst->get_info();
|
||
|
if ($info->have_ellipse) {
|
||
|
return "($info->cx, $info->cy)";
|
||
|
} else {
|
||
|
return "no ellipse";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function show_user_summary($user) {
|
||
|
}
|
||
|
|
||
|
?>
|