forked from maths/moodle-qtype_stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renderer.php
567 lines (484 loc) · 23.8 KB
/
renderer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<?php
// This file is part of Stack - http://stack.maths.ed.ac.uk/
//
// Stack is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Stack is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Stack. If not, see <http://www.gnu.org/licenses/>.
defined('MOODLE_INTERNAL') || die();
/**
* Stack question renderer class.
*
* @package qtype_stack
* @copyright 2012 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(__DIR__ . '/vle_specific.php');
/**
* Generates the output for Stack questions.
*
* @copyright 2012 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
// @codingStandardsIgnoreStart
// There's a matching class name in the API.
class qtype_stack_renderer extends qtype_renderer {
// @codingStandardsIgnoreEnd
public function formulation_and_controls(question_attempt $qa, question_display_options $options) {
/* Return type should be @var qtype_stack_question $question. */
$question = $qa->get_question();
$response = $qa->get_last_qt_data();
// We need to provide a processor for the CASText2 post-processing,
// basically for targetting pluginfiles.
$question->castextprocessor = new castext2_qa_processor($qa);
if (is_string($question->questiontextinstantiated)) {
// The question has not been instantiated successfully, at this level it is likely
// a failure at compilation and that means invalid teacher code.
return $question->questiontextinstantiated;
}
$questiontext = $question->questiontextinstantiated->get_rendered($question->castextprocessor);
// Replace inputs.
$inputstovaldiate = [];
// Get the list of placeholders before format_text.
$originalinputplaceholders = array_unique(stack_utils::extract_placeholders($questiontext, 'input'));
sort($originalinputplaceholders);
$originalfeedbackplaceholders = array_unique(stack_utils::extract_placeholders($questiontext, 'feedback'));
sort($originalfeedbackplaceholders);
// Now format the questiontext.
$questiontext = $question->format_text(
stack_maths::process_display_castext($questiontext, $this),
FORMAT_HTML, // All CASText2 processed content has already been formatted to HTML.
$qa, 'question', 'questiontext', $question->id);
// Get the list of placeholders after format_text.
$formatedinputplaceholders = stack_utils::extract_placeholders($questiontext, 'input');
sort($formatedinputplaceholders);
$formatedfeedbackplaceholders = stack_utils::extract_placeholders($questiontext, 'feedback');
sort($formatedfeedbackplaceholders);
// We need to check that if the list has changed.
// Have we lost some of the placeholders entirely?
// Duplicates may have been removed by multi-lang,
// No duplicates should remain.
if ($formatedinputplaceholders !== $originalinputplaceholders ||
$formatedfeedbackplaceholders !== $originalfeedbackplaceholders) {
throw new coding_exception('Inconsistent placeholders. Possibly due to multi-lang filtter not being active.');
}
foreach ($question->inputs as $name => $input) {
// Get the actual value of the teacher's answer at this point.
$tavalue = $question->get_ta_for_input($name);
$fieldname = $qa->get_qt_field_name($name);
$state = $question->get_input_state($name, $response);
$questiontext = str_replace("[[input:{$name}]]",
$input->render($state, $fieldname, $options->readonly, $tavalue),
$questiontext);
$questiontext = $input->replace_validation_tags($state, $fieldname, $questiontext);
if ($input->requires_validation()) {
$inputstovaldiate[] = $name;
}
}
// Replace PRTs.
foreach ($question->prts as $index => $prt) {
$feedback = '';
if ($options->feedback) {
$feedback = $this->prt_feedback($index, $response, $qa, $options, $prt->get_feedbackstyle());
} else if (in_array($qa->get_behaviour_name(), ['interactivecountback', 'adaptivemulipart'])) {
// The behaviour name test here is a hack. The trouble is that interactive
// behaviour or adaptivemulipart does not show feedback if the input
// is invalid, but we want to show the CAS errors from the PRT.
$result = $question->get_prt_result($index, $response, $qa->get_state()->is_finished());
$errors = implode(' ', $result->get_errors());
$feedback = html_writer::nonempty_tag('span', $errors,
['class' => 'stackprtfeedback stackprtfeedback-' . $name]);
}
$questiontext = str_replace("[[feedback:{$index}]]", $feedback, $questiontext);
}
// Initialise automatic validation, if enabled.
if (stack_utils::get_config()->ajaxvalidation) {
// Once we cen rely on everyone being on a Moodle version that includes the fix for
// MDL-65029 (3.5.6+, 3.6.4+, 3.7+) we can remove this if and just call the method.
if (method_exists($qa, 'get_outer_question_div_unique_id')) {
$questiondivid = $qa->get_outer_question_div_unique_id();
} else {
$questiondivid = 'q' . $qa->get_slot();
}
$this->page->requires->js_call_amd('qtype_stack/input', 'initInputs',
[
$questiondivid, $qa->get_field_prefix(),
$qa->get_database_id(), $inputstovaldiate,
]);
}
$result = '';
$result .= $this->question_tests_link($question, $options) . $questiontext;
if ($qa->get_state() == question_state::$invalid) {
$result .= html_writer::nonempty_tag('span',
$question->get_validation_error($response),
['class' => 'validationerror']);
}
// ISS879 - Output current language
// to be returned by validation request and also stored in
// question step data on submission.
$fieldname = $qa->get_qt_field_name('step_lang');
$currentlang = stack_get_system_language();
$result .= html_writer::empty_tag('input', ['type' => 'hidden',
'name' => $fieldname, 'value' => $currentlang,
]);
return $result;
}
/**
* Displays a link to run the question tests, if applicable.
* @param qtype_stack_question $question
* @param question_display_options $options
* @return string HTML fragment.
*/
protected function question_tests_link(qtype_stack_question $question, question_display_options $options) {
if (!empty($options->suppressruntestslink)) {
return '';
}
if (!stack_user_can_view_question($question)) {
return '';
}
$urlparams = ['questionid' => $question->id];
$urlparams['seed'] = $question->seed;
// Quite honestly fellow developers I'm getting fed up of fixing live questions written by colleagues!
// Especially when the questions do not have tests or deployed variants which would have revealed the problem.
// Make these problems more obvious to authors, who don't yet understand what tests/variants are for.
// Alert a teacher to questions without tests or deployed variants.
$testscases = question_bank::get_qtype('stack')->load_question_tests($question->id);
$links = [];
if (($question->has_random_variants() && empty($question->deployedseeds)) ||
count($testscases) == 0) {
$links[] = html_writer::link(
$question->qtype->get_question_test_url($question),
stack_string_error('runquestiontests_alert'));
} else {
$links[] = html_writer::link(
$question->qtype->get_question_test_url($question),
stack_string('runquestiontests'));
}
return html_writer::tag('div', implode(' | ', $links), ['class' => 'questiontestslink']);
}
public function feedback(question_attempt $qa, question_display_options $options) {
$output = '';
if ($options->feedback) {
$output .= $this->stack_specific_feedback($qa, $options);
} else if ($qa->get_behaviour_name() == 'interactivecountback') {
// The behaviour name test here is a hack. The trouble is that interactive
// behaviour does not show feedback if the input is invalid, but we want
// to show the CAS errors from the PRT.
$output .= $this->stack_specific_feedback_errors_only($qa);
}
$output .= parent::feedback($qa, $options);
return $output;
}
protected function stack_specific_feedback_errors_only(question_attempt $qa) {
$question = $qa->get_question();
$response = $qa->get_last_qt_data();
// If called out of order.
if ($question->castextprocessor === null) {
$question->castextprocessor = new castext2_qa_processor($qa);
}
if ($question->specificfeedbackinstantiated === null) {
// Invalid question, otherwise this would be here.
return '';
}
$feedbacktext = $question->specificfeedbackinstantiated->get_rendered($question->castextprocessor);
if (!$feedbacktext) {
return '';
}
$feedbacktext = stack_maths::process_display_castext($feedbacktext, $this);
$feedbacktext = $question->format_text($feedbacktext,
FORMAT_HTML, // All CASText2 processed content has already been formatted to HTML.
$qa, 'qtype_stack', 'specificfeedback', $question->id);
// Replace any PRT feedback.
$allempty = true;
foreach ($question->prts as $name => $prt) {
$feedback = '';
$result = $question->get_prt_result($name, $response, $qa->get_state()->is_finished());
if ($result->get_errors() != []) {
$errors = implode(' ', $result->get_errors());
$feedback = html_writer::nonempty_tag('span', $errors,
['class' => 'stackprtfeedback stackprtfeedback-' . $name]);
}
$allempty = $allempty && !$feedback;
$feedbacktext = str_replace("[[feedback:{$name}]]", $feedback, $feedbacktext);
}
if ($allempty) {
return '';
}
return $feedbacktext;
}
/**
* Generate the specific feedback. This has to be a stack-specific method
* since the standard specific_feedback method does not get given $options.
* @param question_attempt $qa the question attempt to display.
* @param question_display_options $options controls what should and should not be displayed.
* @return string HTML fragment.
*/
protected function stack_specific_feedback(question_attempt $qa, question_display_options $options) {
$question = $qa->get_question();
$response = $qa->get_last_qt_data();
// If called out of order.
if ($question->castextprocessor === null) {
$question->castextprocessor = new castext2_qa_processor($qa);
}
if ($question->specificfeedbackinstantiated === null) {
// Invalid question, otherwise this would be here.
return '';
}
$feedbacktext = $question->specificfeedbackinstantiated->get_rendered($question->castextprocessor);
if (!$feedbacktext) {
return '';
}
$feedbacktext = stack_maths::process_display_castext($feedbacktext, $this);
$feedbacktext = $question->format_text($feedbacktext,
FORMAT_HTML, // All CASText2 processed content has already been formatted to HTML.
$qa, 'qtype_stack', 'specificfeedback', $question->id);
$individualfeedback = count($question->prts) == 1;
if ($individualfeedback) {
$overallfeedback = '';
} else {
$overallfeedback = $this->overall_standard_prt_feedback($qa, $question, $response);
}
// Replace any PRT feedback.
$allempty = true;
foreach ($question->prts as $index => $prt) {
$feedback = $this->prt_feedback($index, $response, $qa, $options, $prt->get_feedbackstyle());
$allempty = $allempty && !$feedback;
$feedbacktext = str_replace("[[feedback:{$index}]]",
stack_maths::process_display_castext($feedback, $this), $feedbacktext);
}
if ($allempty && !$overallfeedback) {
return '';
}
return $overallfeedback . $feedbacktext;
}
/**
* Get the appropriate response to use for generating the feedback to a PRT.
* @param string $name PRT name
* @param array $response the current response.
* @param question_attempt $qa the question_attempt we are displaying.
*/
protected function get_applicable_response_for_prt($name, $response, question_attempt $qa) {
if ($qa->get_behaviour_name() != 'adaptivemultipart') {
return $response;
}
// The behaviour name test above is a hack. The trouble is that
// for adaptive behaviour, exactly what feedback to display is
// is complex, so we need to ask the behaviour.
$step = $qa->get_behaviour()->get_last_graded_response_step_for_part($name);
if (!$step) {
return null;
}
$lastgradedresponse = $step->get_qt_data();
if (!$qa->get_question()->is_same_response_for_part($name, $lastgradedresponse, $response)) {
return null;
}
return $response;
}
/**
* Slightly complex rules for what feedback to display.
* @param string $name the PRT name.
* @param array $response the most recent student response.
* @param question_attempt $qa the question attempt to display.
* @param question_display_options $options controls what should and should not be displayed.
* @param int feedbackstyle whether and how to include the standard.
* 'Your answer is partially correct' bit at the start of the feedback.
* @return string nicely formatted feedback, for display.
*/
protected function prt_feedback($name, $response, question_attempt $qa,
question_display_options $options, int $feedbackstyle) {
$question = $qa->get_question();
$relevantresponse = $this->get_applicable_response_for_prt($name, $response, $qa);
if (is_null($relevantresponse)) {
return '';
}
$result = $question->get_prt_result($name, $relevantresponse, $qa->get_state()->is_finished());
return $this->prt_feedback_display($name, $qa, $question, $result, $options, $feedbackstyle);
}
/**
* Actually generate the display of the PRT feedback.
* @param string $name the PRT name.
* @param question_attempt $qa the question attempt to display.
* @param question_definition $question the question being displayed.
* @param prt_evaluatable $result the results to display.
* @param question_display_options $options controls what should and should not be displayed.
* @param feedbackstyle styles the type of feedback.
* @return string nicely formatted feedback, for display.
*/
protected function prt_feedback_display($name, question_attempt $qa,
question_definition $question, prt_evaluatable $result,
question_display_options $options, $feedbackstyle) {
$err = '';
if ($result->get_errors()) {
$err = stack_string('prtruntimeerror',
['prt' => $name, 'error' => implode(' ', $result->get_errors())]);
}
$feedback = $result->get_feedback(new castext2_qa_processor($qa));
// The feedback does not come as bits anymore the whole thing is concatenated in CAS
// and CASText converts any formats to HTML already, pluginfiles as well.
$feedback = format_text(stack_maths::process_display_castext($feedback, $this),
FORMAT_HTML, ['noclean' => true, 'para' => false]);
$gradingdetails = '';
if ($result->get_valid() && $qa->get_behaviour_name() == 'adaptivemultipart'
&& $options->marks >= question_display_options::MARK_AND_MAX) {
$renderer = $this->page->get_renderer('qbehaviour_adaptivemultipart');
$gradingdetails = $renderer->render_adaptive_marks(
$qa->get_behaviour()->get_part_mark_details($name), $options);
}
$standardfeedback = $this->standard_prt_feedback($qa, $question, $result, $feedbackstyle);
$tag = 'div';
switch ($feedbackstyle) {
case 0:
// Formative PRT.
$fb = $err . $feedback;
break;
case 1:
$fb = $standardfeedback . $err . $feedback . $gradingdetails;
break;
case 2:
// Compact.
$fb = $standardfeedback . $err . $feedback;
$tag = 'span';
break;
case 3:
// Symbolic.
$fb = $standardfeedback . $err;
$tag = 'span';
break;
default:
echo "i is not equal to 0, 1 or 2";
}
return html_writer::nonempty_tag($tag, $fb, ['class' => 'stackprtfeedback stackprtfeedback-' . $name]);
}
/**
* Generate the standard PRT feedback for a particular score.
* @param question_attempt $qa the question attempt to display.
* @param question_definition $question the question being displayed.
* @param prt_evaluatable $result the results to display.
* @param feedbackstyle styles the type of feedback.
* @return string nicely standard feedback, for display.
*/
protected function standard_prt_feedback(question_attempt $qa, question_definition $question,
prt_evaluatable $result, $feedbackstyle) {
if (!$result->is_evaluated()) {
return '';
}
// Don't give standard feedback when we have errors.
if (count($result->get_errors()) != 0) {
return '';
}
$state = question_state::graded_state_for_fraction($result->get_score());
$class = $state->get_feedback_class();
// Compact and symbolic only.
if ($feedbackstyle === 2 || $feedbackstyle === 3) {
$s = get_string('symbolicprt' . $class . 'feedback', 'qtype_stack');
return html_writer::tag('span', $s, ['class' => $class]);
}
// If called out of order.
if ($question->castextprocessor === null) {
$question->castextprocessor = new castext2_qa_processor($qa);
}
$field = 'prt' . $class . 'instantiated';
if ($question->$field) {
return html_writer::tag('div', $question->format_text(
stack_maths::process_display_castext($question->$field->get_rendered($question->castextprocessor), $this),
FORMAT_HTML, // All CASText2 processed content has already been formatted to HTML.
$qa, 'qtype_stack', $field, $question->id), ['class' => $class]);
}
return '';
}
/**
* Display and appropriate piece of standard PRT feedback given the overall
* state of the question.
* @param question_attempt $qa
* @param qtype_stack_question $question the question being displayed.
* @param array $response the current response.
* @return string HTML fragment.
*/
protected function overall_standard_prt_feedback(question_attempt $qa,
qtype_stack_question $question, $response) {
$fraction = null;
foreach ($question->prts as $name => $prt) {
$relevantresponse = $this->get_applicable_response_for_prt($name, $response, $qa);
if (is_null($relevantresponse)) {
continue;
}
$result = $question->get_prt_result($name, $relevantresponse, $qa->get_state()->is_finished());
if (is_null($result->get_valid())) {
continue;
}
$fraction += $result->get_fraction();
}
if (is_null($fraction)) {
return '';
}
$result = new prt_evaluatable('', $fraction, new castext2_static_replacer([]), []);
// This is overall, so we fix the PRT feedbackstyle style = 1 to get the default type of feedback.
return $this->standard_prt_feedback($qa, $qa->get_question(), $result, 1);
}
protected function hint(question_attempt $qa, question_hint $hint) {
if (empty($hint->hint)) {
return '';
}
$question = $qa->get_question();
$hinttext = $question->get_hint_castext($hint);
// If called out of order.
if ($question->castextprocessor === null) {
$question->castextprocessor = new castext2_qa_processor($qa);
}
$newhint = new question_hint($hint->id,
stack_maths::process_display_castext($hinttext->get_rendered($question->castextprocessor), $this),
FORMAT_HTML // All CASText2 processed content has already been formatted to HTML.
);
return html_writer::nonempty_tag('div',
$question->format_hint($newhint, $qa), ['class' => 'hint']);
}
public function correct_response(question_attempt $qa) {
$question = $qa->get_question();
return '<hr />'.$question->format_correct_response($qa);
}
public function general_feedback(question_attempt $qa) {
$question = $qa->get_question();
if (empty($question->generalfeedback)) {
return '';
}
// If called out of order.
if ($question->castextprocessor === null) {
$question->castextprocessor = new castext2_qa_processor($qa);
}
return $qa->get_question()->format_text(stack_maths::process_display_castext(
$question->get_generalfeedback_castext()->get_rendered($question->castextprocessor), $this),
FORMAT_HTML, // All CASText2 processed content has already been formatted to HTML.
$qa, 'question', 'generalfeedback', $question->id);
}
public function question_description(question_attempt $qa) {
$question = $qa->get_question();
if (empty($question->questiondescription)) {
return '';
}
// If called out of order.
if ($question->castextprocessor === null) {
$question->castextprocessor = new castext2_qa_processor($qa);
}
return $qa->get_question()->format_text(stack_maths::process_display_castext(
$question->get_questiondescription_castext()->get_rendered($question->castextprocessor), $this),
FORMAT_HTML, // All CASText2 processed content has already been formatted to HTML.
$qa, 'qtype_stack', 'questiondescription', $question->id);
}
/**
* Render a fact sheet.
* @param string $name the title of the fact sheet.
* @param string $fact the contents of the fact sheet.
*/
public function fact_sheet($name, $fact) {
$name = html_writer::tag('h5', $name);
return html_writer::tag('div', $name.$fact, ['class' => 'factsheet']);
}
}