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 */ 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; /** * Indicates how show the question list. * 1 = all in one page; 2 = one per page (default). * * @var int */ private $exerciseType = 2; /** * Constructor. */ public function __construct() { parent::__construct(); $this->type = READING_COMPREHENSION; $this->isContent = $this->getIsContent(); } 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 = ''; $tagStart = $tagEnd.''; $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' => 'TitleAsHtml']; $form->addHtmlEditor( 'questionName', get_lang('Question'), false, false, $editorConfig, true ); } else { $form->addText('questionName', get_lang('Question'), false); } // hidden values $form->addRule('questionName', get_lang('GiveQuestion'), 'required'); $isContent = isset($_REQUEST['isContent']) ? (int) $_REQUEST['isContent'] : null; // default values $defaults = []; $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 (!isset($_GET['newQuestion']) || $isContent) { $form->setDefaults($defaults); } } /** * {@inheritdoc} */ public static function get_default_levels() { $select_level = [ 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; } /** * @param int $type * * @return ReadingComprehension */ public function setExerciseType($type) { $this->exerciseType = (int) $type; return $this; } /** * @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->assign('exercise_type', $this->exerciseType); $view->display($template); } }