2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Multiple choice question definition classes.
21 * @subpackage multichoice
22 * @copyright 2009 The Open University
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
31 * Base class for multiple choice questions. The parts that are common to
32 * single select and multiple select.
34 * @copyright 2009 The Open University
35 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37 abstract class qtype_multichoice_base extends question_graded_automatically {
38 const LAYOUT_DROPDOWN = 0;
39 const LAYOUT_VERTICAL = 1;
40 const LAYOUT_HORIZONTAL = 2;
44 public $shuffleanswers;
45 public $answernumbering;
46 public $layout = self::LAYOUT_VERTICAL;
48 public $correctfeedback;
49 public $correctfeedbackformat;
50 public $partiallycorrectfeedback;
51 public $partiallycorrectfeedbackformat;
52 public $incorrectfeedback;
53 public $incorrectfeedbackformat;
55 protected $order = null;
57 public function start_attempt(question_attempt_step $step, $variant) {
58 $this->order = array_keys($this->answers);
59 if ($this->shuffleanswers) {
60 shuffle($this->order);
62 $step->set_qt_var('_order', implode(',', $this->order));
65 public function apply_attempt_state(question_attempt_step $step) {
66 $this->order = explode(',', $step->get_qt_var('_order'));
69 public function get_question_summary() {
70 $question = $this->html_to_text($this->questiontext, $this->questiontextformat);
72 foreach ($this->order as $ansid) {
73 $choices[] = $this->html_to_text($this->answers[$ansid]->answer,
74 $this->answers[$ansid]->answerformat);
76 return $question . ': ' . implode('; ', $choices);
79 public function get_order(question_attempt $qa) {
80 $this->init_order($qa);
84 protected function init_order(question_attempt $qa) {
85 if (is_null($this->order)) {
86 $this->order = explode(',', $qa->get_step(0)->get_qt_var('_order'));
90 public abstract function get_response(question_attempt $qa);
92 public abstract function is_choice_selected($response, $value);
94 public function check_file_access($qa, $options, $component, $filearea, $args, $forcedownload) {
95 if ($component == 'question' && in_array($filearea,
96 array('correctfeedback', 'partiallycorrectfeedback', 'incorrectfeedback'))) {
97 return $this->check_combined_feedback_file_access($qa, $options, $filearea);
99 } else if ($component == 'question' && $filearea == 'answer') {
100 $answerid = reset($args); // itemid is answer id.
101 return in_array($answerid, $this->order);
103 } else if ($component == 'question' && $filearea == 'answerfeedback') {
104 $answerid = reset($args); // itemid is answer id.
105 $response = $this->get_response($qa);
107 foreach ($this->order as $value => $ansid) {
108 if ($ansid == $answerid) {
109 $isselected = $this->is_choice_selected($response, $value);
113 // $options->suppresschoicefeedback is a hack specific to the
114 // oumultiresponse question type. It would be good to refactor to
115 // avoid refering to it here.
116 return $options->feedback && empty($options->suppresschoicefeedback) &&
119 } else if ($component == 'question' && $filearea == 'hint') {
120 return $this->check_hint_file_access($qa, $options, $args);
123 return parent::check_file_access($qa, $options, $component, $filearea,
124 $args, $forcedownload);
128 public function make_html_inline($html) {
129 $html = preg_replace('~\s*<p>\s*~u', '', $html);
130 $html = preg_replace('~\s*</p>\s*~u', '<br />', $html);
131 $html = preg_replace('~(<br\s*/?>)+$~u', '', $html);
138 * Represents a multiple choice question where only one choice should be selected.
140 * @copyright 2009 The Open University
141 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
143 class qtype_multichoice_single_question extends qtype_multichoice_base {
144 public function get_renderer(moodle_page $page) {
145 return $page->get_renderer('qtype_multichoice', 'single');
148 public function get_min_fraction() {
150 foreach ($this->answers as $ans) {
151 $minfraction = min($minfraction, $ans->fraction);
157 * Return an array of the question type variables that could be submitted
158 * as part of a question of this type, with their types, so they can be
160 * @return array variable name => PARAM_... constant.
162 public function get_expected_data() {
163 return array('answer' => PARAM_INT);
166 public function summarise_response(array $response) {
167 if (!array_key_exists('answer', $response) ||
168 !array_key_exists($response['answer'], $this->order)) {
171 $ansid = $this->order[$response['answer']];
172 return $this->html_to_text($this->answers[$ansid]->answer,
173 $this->answers[$ansid]->answerformat);
176 public function classify_response(array $response) {
177 if (!array_key_exists('answer', $response) ||
178 !array_key_exists($response['answer'], $this->order)) {
179 return array($this->id => question_classified_response::no_response());
181 $choiceid = $this->order[$response['answer']];
182 $ans = $this->answers[$choiceid];
183 return array($this->id => new question_classified_response($choiceid,
184 $this->html_to_text($ans->answer, $ans->answerformat), $ans->fraction));
187 public function get_correct_response() {
188 foreach ($this->order as $key => $answerid) {
189 if (question_state::graded_state_for_fraction(
190 $this->answers[$answerid]->fraction)->is_correct()) {
191 return array('answer' => $key);
197 public function is_same_response(array $prevresponse, array $newresponse) {
198 return question_utils::arrays_same_at_key($prevresponse, $newresponse, 'answer');
201 public function is_complete_response(array $response) {
202 return array_key_exists('answer', $response) && $response['answer'] !== '';
205 public function is_gradable_response(array $response) {
206 return $this->is_complete_response($response);
209 public function grade_response(array $response) {
210 if (array_key_exists('answer', $response) &&
211 array_key_exists($response['answer'], $this->order)) {
212 $fraction = $this->answers[$this->order[$response['answer']]]->fraction;
216 return array($fraction, question_state::graded_state_for_fraction($fraction));
219 public function get_validation_error(array $response) {
220 if ($this->is_gradable_response($response)) {
223 return get_string('pleaseselectananswer', 'qtype_multichoice');
226 public function get_response(question_attempt $qa) {
227 return $qa->get_last_qt_var('answer', -1);
230 public function is_choice_selected($response, $value) {
231 return (string) $response === (string) $value;
237 * Represents a multiple choice question where multiple choices can be selected.
239 * @copyright 2009 The Open University
240 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
242 class qtype_multichoice_multi_question extends qtype_multichoice_base {
243 public function get_renderer(moodle_page $page) {
244 return $page->get_renderer('qtype_multichoice', 'multi');
247 public function get_min_fraction() {
251 public function clear_wrong_from_response(array $response) {
252 foreach ($this->order as $key => $ans) {
253 if (array_key_exists($this->field($key), $response) &&
254 question_state::graded_state_for_fraction(
255 $this->answers[$ans]->fraction)->is_incorrect()) {
256 $response[$this->field($key)] = 0;
262 public function get_num_parts_right(array $response) {
264 foreach ($this->order as $key => $ans) {
265 $fieldname = $this->field($key);
266 if (!array_key_exists($fieldname, $response) || !$response[$fieldname]) {
270 if (!question_state::graded_state_for_fraction(
271 $this->answers[$ans]->fraction)->is_incorrect()) {
275 return array($numright, count($this->order));
279 * @param int $key choice number
280 * @return string the question-type variable name.
282 protected function field($key) {
283 return 'choice' . $key;
286 public function get_expected_data() {
288 foreach ($this->order as $key => $notused) {
289 $expected[$this->field($key)] = PARAM_BOOL;
294 public function summarise_response(array $response) {
295 $selectedchoices = array();
296 foreach ($this->order as $key => $ans) {
297 $fieldname = $this->field($key);
298 if (array_key_exists($fieldname, $response) && $response[$fieldname]) {
299 $selectedchoices[] = $this->html_to_text($this->answers[$ans]->answer,
300 $this->answers[$ans]->answerformat);
303 if (empty($selectedchoices)) {
306 return implode('; ', $selectedchoices);
309 public function classify_response(array $response) {
310 $selectedchoices = array();
311 foreach ($this->order as $key => $ansid) {
312 $fieldname = $this->field($key);
313 if (array_key_exists($fieldname, $response) && $response[$fieldname]) {
314 $selectedchoices[$ansid] = 1;
318 foreach ($this->answers as $ansid => $ans) {
319 if (isset($selectedchoices[$ansid])) {
320 $choices[$ansid] = new question_classified_response($ansid,
321 $this->html_to_text($ans->answer, $ans->answerformat), $ans->fraction);
327 public function get_correct_response() {
329 foreach ($this->order as $key => $ans) {
330 if (!question_state::graded_state_for_fraction(
331 $this->answers[$ans]->fraction)->is_incorrect()) {
332 $response[$this->field($key)] = 1;
338 public function is_same_response(array $prevresponse, array $newresponse) {
339 foreach ($this->order as $key => $notused) {
340 $fieldname = $this->field($key);
341 if (!question_utils::arrays_same_at_key($prevresponse, $newresponse, $fieldname)) {
348 public function is_complete_response(array $response) {
349 foreach ($this->order as $key => $notused) {
350 if (!empty($response[$this->field($key)])) {
357 public function is_gradable_response(array $response) {
358 return $this->is_complete_response($response);
362 * @param array $response responses, as returned by
363 * {@link question_attempt_step::get_qt_data()}.
364 * @return int the number of choices that were selected. in this response.
366 public function get_num_selected_choices(array $response) {
368 foreach ($response as $key => $value) {
369 if (!empty($value)) {
377 * @return int the number of choices that are correct.
379 public function get_num_correct_choices() {
381 foreach ($this->answers as $ans) {
382 if (!question_state::graded_state_for_fraction($ans->fraction)->is_incorrect()) {
389 public function grade_response(array $response) {
391 foreach ($this->order as $key => $ansid) {
392 if (!empty($response[$this->field($key)])) {
393 $fraction += $this->answers[$ansid]->fraction;
396 $fraction = min(max(0, $fraction), 1.0);
397 return array($fraction, question_state::graded_state_for_fraction($fraction));
400 public function get_validation_error(array $response) {
401 if ($this->is_gradable_response($response)) {
404 return get_string('pleaseselectatleastoneanswer', 'qtype_multichoice');
408 * Disable those hint settings that we don't want when the student has selected
409 * more choices than the number of right choices. This avoids giving the game away.
410 * @param question_hint_with_parts $hint a hint.
412 protected function disable_hint_settings_when_too_many_selected(
413 question_hint_with_parts $hint) {
414 $hint->clearwrong = false;
417 public function get_hint($hintnumber, question_attempt $qa) {
418 $hint = parent::get_hint($hintnumber, $qa);
419 if (is_null($hint)) {
423 if ($this->get_num_selected_choices($qa->get_last_qt_data()) >
424 $this->get_num_correct_choices()) {
425 $hint = clone($hint);
426 $this->disable_hint_settings_when_too_many_selected($hint);
431 public function get_response(question_attempt $qa) {
432 return $qa->get_last_qt_data();
435 public function is_choice_selected($response, $value) {
436 return !empty($response['choice' . $value]);