Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/exercise/ReadingComprehension.php

206 lines
6.2 KiB

<?php
/* For licensing terms, see /license.txt */
use ChamiloSession as Session;
/**
* Class ReadingComprehension
*
* This class allows to instantiate an object of type READING_COMPREHENSION
* extending the class question
*
* @package chamilo.exercise
**/
class ReadingComprehension extends UniqueAnswer
{
public static $typePicture = 'reading-comprehension.png';
public static $explanationLangVar = 'ReadingComprehension';
/**
* Defines the different speeds of scrolling for the reading window,
* in words per minute. If 300 words text in 50w/m, then the moving
* window will progress from top to bottom in 6 minutes
* @var array $speeds
*/
public static $speeds = [
1 => 50,
2 => 100,
3 => 175,
4 => 300,
5 => 600
];
/**
* The number of words in the question description (which serves as the
* text to read)
* @var int $wordsCount
*/
public $wordsCount = 0;
/**
* Number of words expected to show per refresh
* @var int
*/
public $expectedWordsPerRefresh = 0;
/**
* Refresh delay in seconds
* @var int
*/
public $refreshTime = 3;
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->type = READING_COMPREHENSION;
$this->isContent = $this->getIsContent();
}
/**
* @param $wordsCount
* @param $turns
* @param $text
*/
private function displayReading($wordsCount, $turns, $text)
{
$view = new Template('', false, false, false, true, false, false);
$template = $view->get_template('exercise/reading_comprehension.tpl');
$view->assign('id', $this->id);
$view->assign('text', nl2br($text));
$view->assign('words_count', $wordsCount);
$view->assign('turns', $turns);
$view->assign('refresh_time', $this->refreshTime);
$view->display($template);
}
public function processText($text)
{
// Refresh is set to 5s, but speed is in words per minute
$wordsPerSecond = self::$speeds[$this->level] / 60;
$this->expectedWordsPerRefresh = intval($wordsPerSecond * $this->refreshTime);
if (empty($text)) {
// We have an issue here... how do we treat this case?
// For now, let's define a default case
$text = get_lang('NoExercise');
}
$words = str_word_count($text, 2, '0..9');
$indexes = array_keys($words);
$tagEnd = '</span>';
$tagStart = $tagEnd.'<span class="text-highlight">';
$this->wordsCount = count($words);
$turns = ceil(
$this->wordsCount / $this->expectedWordsPerRefresh
);
$firstIndex = $indexes[0];
for ($i = 1; $i <= $turns; $i++) {
$text = substr_replace($text, $tagStart, $firstIndex, 0);
if ($i * $this->expectedWordsPerRefresh <= count($words)) {
$newIndex = $i * $this->expectedWordsPerRefresh;
if (isset($indexes[$newIndex])) {
$nextFirstIndex = $indexes[$newIndex];
$firstIndex = $nextFirstIndex + (strlen($tagStart) * $i);
}
}
}
$pos = strpos($text, $tagEnd);
$text = substr_replace($text, '', $pos, strlen($tagEnd));
$text .= $tagEnd;
$this->displayReading($this->wordsCount, $turns, $text);
}
/**
* Returns total count of words of the text to read
* @return int
*/
public function getWordsCount()
{
$words = str_word_count($this->selectDescription(), 2, '0..9');
$this->wordsCount = count($words);
return $this->wordsCount;
}
/**
* @inheritdoc
*/
public function createForm(&$form, $exercise)
{
// Categories
$tabCat = TestCategory::getCategoriesIdAndName();
$form->addSelect('questionCategory', get_lang('Category'), $tabCat);
// Advanced parameters
$levels = self::get_default_levels();
$form->addSelect('questionLevel', get_lang('Difficulty'), $levels);
$form->addElement('hidden', 'answerType', READING_COMPREHENSION);
$form->addTextarea('questionDescription', get_lang('Text'), ['rows' => 20]);
// question name
if (api_get_configuration_value('save_titles_as_html')) {
$editorConfig = ['ToolbarSet' => 'Minimal'];
$form->addHtmlEditor(
'questionName',
get_lang('Question'),
false,
false,
$editorConfig,
true
);
} else {
$form->addText('questionName', get_lang('Question'), false);
}
// hidden values
$my_id = isset($_REQUEST['myid']) ? intval($_REQUEST['myid']) : null;
$form->addElement('hidden', 'myid', $my_id);
$form->addRule('questionName', get_lang('GiveQuestion'), 'required');
$isContent = isset($_REQUEST['isContent']) ? intval($_REQUEST['isContent']) : null;
// default values
$defaults = array();
$defaults['questionName'] = $this->question;
$defaults['questionDescription'] = $this->description;
$defaults['questionLevel'] = $this->level;
$defaults['questionCategory'] = $this->category;
// Came from he question pool
if (isset($_GET['fromExercise'])) {
$form->setDefaults($defaults);
}
if (!empty($_REQUEST['myid'])) {
$form->setDefaults($defaults);
} else {
if ($isContent == 1) {
$form->setDefaults($defaults);
}
}
}
/**
* @inheritdoc
*/
public static function get_default_levels()
{
$select_level = array(
1 => sprintf(get_lang('ReadingComprehensionLevelX'), self::$speeds[1]),
2 => sprintf(get_lang('ReadingComprehensionLevelX'), self::$speeds[2]),
3 => sprintf(get_lang('ReadingComprehensionLevelX'), self::$speeds[3]),
4 => sprintf(get_lang('ReadingComprehensionLevelX'), self::$speeds[4]),
5 => sprintf(get_lang('ReadingComprehensionLevelX'), self::$speeds[5])
);
return $select_level;
}
}