Skip round2 judge scheduling if no round2 timeslots are defined.

This commit is contained in:
dave 2010-02-17 18:24:07 +00:00
parent 4c79d7482d
commit 147655171c

View File

@ -789,55 +789,61 @@ for($y=0; $y<count($ids); $y++) {
* - No annealing required * - No annealing required
* *
***************************************************************************/ ***************************************************************************/
echo "Finding round2 carry-over judges:\n";
foreach($jdiv as $jdiv_id=>$jd) { if($round_divisional2 == NULL) {
echo "No Round 2 Divisional defined, skipping.\n";
} else {
$num = next_judges_teams_number(); echo "Finding round2 carry-over judges:\n";
$team_id = judge_team_create($num, 'Round 2 Divisional '.$jdiv_id);
TRACE("Created Round2 team id $team_id\n"); foreach($jdiv as $jdiv_id=>$jd) {
/* Find all the jteams in this jdiv */ $num = next_judges_teams_number();
for($x=1;$x<count($jteam); $x++) { $team_id = judge_team_create($num, 'Round 2 Divisional '.$jdiv_id);
$t =& $jteam[$x];
if($t['jdiv_id'] != $jdiv_id) continue; TRACE("Created Round2 team id $team_id\n");
TRACE(" Round1 team #{$t['num']} ({$t['id']})\n"); /* Find all the jteams in this jdiv */
for($x=1;$x<count($jteam); $x++) {
$t =& $jteam[$x];
$rep_id = NULL; if($t['jdiv_id'] != $jdiv_id) continue;
$chair_rep = false;
/* We would like the willing_chair to be the person that sticks around TRACE(" Round1 team #{$t['num']} ({$t['id']})\n");
* for round2, but if that's not possible, prefer anyone on the jteam be
* around for round2 */ $rep_id = NULL;
foreach($t['judge_ids'] as $judge_id) { $chair_rep = false;
$j =& $judges[$judge_id];
if(judge_available_for_round($j, $round_divisional2)) { /* We would like the willing_chair to be the person that sticks around
if($j['willing_chair'] == true) { * for round2, but if that's not possible, prefer anyone on the jteam be
$rep_id = $judge_id; * around for round2 */
$chair_rep = true; foreach($t['judge_ids'] as $judge_id) {
break; $j =& $judges[$judge_id];
} else if($chair_rep == false) { if(judge_available_for_round($j, $round_divisional2)) {
$rep_id = $judge_id; if($j['willing_chair'] == true) {
$rep_id = $judge_id;
$chair_rep = true;
break;
} else if($chair_rep == false) {
$rep_id = $judge_id;
}
} }
} }
if($rep_id != NULL) {
pr_judge($t, $rep_id);
/* Mark this judge as used in this round */
judge_mark_for_round($judges[$rep_id], $round_divisional2);
/* Write it to the DB */
judge_team_add_judge($team_id, $rep_id);
} else {
echo "WARNING: Team $x has no carryover judge.\n";
}
} }
if($rep_id != NULL) {
pr_judge($t, $rep_id);
/* Mark this judge as used in this round */
judge_mark_for_round($judges[$rep_id], $round_divisional2);
/* Write it to the DB */
judge_team_add_judge($team_id, $rep_id);
} else {
echo "WARNING: Team $x has no carryover judge.\n";
}
}
/* Assign all the awards in this jdiv */ /* Assign all the awards in this jdiv */
foreach($jd['award_ids'] as $aid) { foreach($jd['award_ids'] as $aid) {
mysql_query("INSERT INTO judges_teams_awards_link (award_awards_id,judges_teams_id,year) VALUES ('$aid','$team_id','{$config['FAIRYEAR']}')"); mysql_query("INSERT INTO judges_teams_awards_link (award_awards_id,judges_teams_id,year) VALUES ('$aid','$team_id','{$config['FAIRYEAR']}')");
}
} }
} }