. /** * Question behaviour for the old adaptive mode. * * @package qbehaviour * @subpackage adaptive * @copyright 2009 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Question behaviour for adaptive mode. * * This is the old version of interactive mode. * * @copyright 2009 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class qbehaviour_adaptive extends question_behaviour_with_save { const IS_ARCHETYPAL = true; public function is_compatible_question(question_definition $question) { return $question instanceof question_automatically_gradable; } public function get_expected_data() { if ($this->qa->get_state()->is_active()) { return array('submit' => PARAM_BOOL); } return parent::get_expected_data(); } public function get_state_string($showcorrectness) { $laststep = $this->qa->get_last_step(); if ($laststep->has_behaviour_var('_try')) { $state = question_state::graded_state_for_fraction( $laststep->get_behaviour_var('_rawfraction')); return $state->default_string(true); } $state = $this->qa->get_state(); if ($state == question_state::$todo) { return get_string('notcomplete', 'qbehaviour_adaptive'); } else { return parent::get_state_string($showcorrectness); } } public function get_right_answer_summary() { return $this->question->get_right_answer_summary(); } public function adjust_display_options(question_display_options $options) { parent::adjust_display_options($options); if (!$this->qa->get_state()->is_finished() && $this->qa->get_last_behaviour_var('_try')) { $options->feedback = true; } } public function process_action(question_attempt_pending_step $pendingstep) { if ($pendingstep->has_behaviour_var('comment')) { return $this->process_comment($pendingstep); } else if ($pendingstep->has_behaviour_var('finish')) { return $this->process_finish($pendingstep); } else if ($pendingstep->has_behaviour_var('submit')) { return $this->process_submit($pendingstep); } else { return $this->process_save($pendingstep); } } public function summarise_action(question_attempt_step $step) { if ($step->has_behaviour_var('comment')) { return $this->summarise_manual_comment($step); } else if ($step->has_behaviour_var('finish')) { return $this->summarise_finish($step); } else if ($step->has_behaviour_var('submit')) { return $this->summarise_submit($step); } else { return $this->summarise_save($step); } } public function process_save(question_attempt_pending_step $pendingstep) { $status = parent::process_save($pendingstep); $prevgrade = $this->qa->get_fraction(); if (!is_null($prevgrade)) { $pendingstep->set_fraction($prevgrade); } $pendingstep->set_state(question_state::$todo); return $status; } protected function adjusted_fraction($fraction, $prevtries) { return $fraction - $this->question->penalty * $prevtries; } public function process_submit(question_attempt_pending_step $pendingstep) { $status = $this->process_save($pendingstep); $response = $pendingstep->get_qt_data(); if (!$this->question->is_complete_response($response)) { $pendingstep->set_state(question_state::$invalid); if ($this->qa->get_state() != question_state::$invalid) { $status = question_attempt::KEEP; } return $status; } $prevstep = $this->qa->get_last_step_with_behaviour_var('_try'); $prevresponse = $prevstep->get_qt_data(); $prevtries = $this->qa->get_last_behaviour_var('_try', 0); $prevbest = $pendingstep->get_fraction(); if (is_null($prevbest)) { $prevbest = 0; } if ($this->question->is_same_response($response, $prevresponse)) { return question_attempt::DISCARD; } list($fraction, $state) = $this->question->grade_response($response); $pendingstep->set_fraction(max($prevbest, $this->adjusted_fraction($fraction, $prevtries))); if ($prevstep->get_state() == question_state::$complete) { $pendingstep->set_state(question_state::$complete); } else if ($state == question_state::$gradedright) { $pendingstep->set_state(question_state::$complete); } else { $pendingstep->set_state(question_state::$todo); } $pendingstep->set_behaviour_var('_try', $prevtries + 1); $pendingstep->set_behaviour_var('_rawfraction', $fraction); $pendingstep->set_new_response_summary($this->question->summarise_response($response)); return question_attempt::KEEP; } public function process_finish(question_attempt_pending_step $pendingstep) { if ($this->qa->get_state()->is_finished()) { return question_attempt::DISCARD; } $prevtries = $this->qa->get_last_behaviour_var('_try', 0); $prevbest = $this->qa->get_fraction(); if (is_null($prevbest)) { $prevbest = 0; } $laststep = $this->qa->get_last_step(); $response = $laststep->get_qt_data(); if (!$this->question->is_gradable_response($response)) { $state = question_state::$gaveup; $fraction = 0; } else { if ($laststep->has_behaviour_var('_try')) { // Last answer was graded, we want to regrade it. Otherwise the answer // has changed, and we are grading a new try. $prevtries -= 1; } list($fraction, $state) = $this->question->grade_response($response); $pendingstep->set_behaviour_var('_try', $prevtries + 1); $pendingstep->set_behaviour_var('_rawfraction', $fraction); $pendingstep->set_new_response_summary($this->question->summarise_response($response)); } $pendingstep->set_state($state); $pendingstep->set_fraction(max($prevbest, $this->adjusted_fraction($fraction, $prevtries))); return question_attempt::KEEP; } /** * Got the most recently graded step. This is mainly intended for use by the * renderer. * @return question_attempt_step the most recently graded step. */ public function get_graded_step() { $step = $this->qa->get_last_step_with_behaviour_var('_try'); if ($step->has_behaviour_var('_try')) { return $step; } else { return null; } } /** * Determine whether a question state represents an "improvable" result, * that is, whether the user can still improve their score. * * @param question_state $state the question state. * @return bool whether the state is improvable */ public function is_state_improvable(question_state $state) { return $state == question_state::$todo; } }