diff --git a/attempt.php b/attempt.php
index 7fd9db7..4411d5e 100644
--- a/attempt.php
+++ b/attempt.php
@@ -17,9 +17,9 @@
/**
* This page prints a particular attempt of game
*
- * @author bdaloukas
- * @copyright 2007 Vasilis Daloukas
* @package mod_game
+ * @copyright 2007 Vasilis Daloukas
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
**/
require_once( "../../config.php");
require_once( "lib.php");
diff --git a/backup/moodle2/backup_game_activity_task.class.php b/backup/moodle2/backup_game_activity_task.class.php
deleted file mode 100644
index b4fda95..0000000
--- a/backup/moodle2/backup_game_activity_task.class.php
+++ /dev/null
@@ -1,74 +0,0 @@
-.
-
-/**
- * Defines backup_glossary_activity_task class
- *
- * @package mod_game
- * @subpackage backup-moodle2
- * @copyright 2007 Vasilis Daloukas
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- **/
-
-defined('MOODLE_INTERNAL') || die();
-
-require_once($CFG->dirroot . '/mod/game/backup/moodle2/backup_game_stepslib.php'); // Because it exists (must).
-
-/**
- * Defines backup_game_activity_task class
- *
- * game backup task that provides all the settings and steps to perform one
- * complete backup of the activity
- */
-class backup_game_activity_task extends backup_activity_task {
-
- /**
- * Define (add) particular settings this activity can have
- */
- protected function define_my_settings() {
- // No particular settings for this activity.
- }
-
- /**
- * Define (add) particular steps this activity can have
- */
- protected function define_my_steps() {
- // Game only has one structure step.
- $this->add_step(new backup_game_activity_structure_step('game_structure', 'game.xml'));
- }
-
- /**
- * Encodes URLs to the index.php and view.php scripts
- *
- * @param string $content some HTML text that eventually contains URLs to the activity instance scripts
- * @return string the content with the URLs encoded
- */
- static public function encode_content_links($content) {
- global $CFG;
-
- $base = preg_quote($CFG->wwwroot, "/");
-
- // Link to the list of games.
- $search = "/(".$base."\/mod\/game\/index.php\?id\=)([0-9]+)/";
- $content = preg_replace($search, '$@GAMEINDEX*$2@$', $content);
-
- // Link to game view by moduleid.
- $search = "/(".$base."\/mod\/game\/view.php\?id\=)([0-9]+)/";
- $content = preg_replace($search, '$@GAMEVIEWBYID*$2@$', $content);
-
- return $content;
- }
-}
diff --git a/backup/moodle2/backup_game_stepslib.php b/backup/moodle2/backup_game_stepslib.php
deleted file mode 100644
index f83f359..0000000
--- a/backup/moodle2/backup_game_stepslib.php
+++ /dev/null
@@ -1,218 +0,0 @@
-.
-
-/**
- * Define all the backup steps that will be used by the backup_game_activity_task
- *
- * @package mod_game
- * @subpackage backup-moodle2
- * @author bdaloukas
-backup_game_settingslib.php
- */
-
-/**
- * Define the complete game structure for backup, with file and id annotations
- */
-
-defined('MOODLE_INTERNAL') || die();
-
-class backup_game_activity_structure_step extends backup_activity_structure_step {
-
- /**
- * Defines the needed structures.
- */
- protected function define_structure() {
-
- // To know if we are including userinfo.
- $userinfo = $this->get_setting_value('userinfo');
-
- // Define each element separated.
- $game = new backup_nested_element('game', array('id'), array(
- 'name', 'sourcemodule', 'timeopen', 'timeclose', 'quizid',
- 'glossaryid', 'glossarycategoryid', 'questioncategoryid', 'bookid',
- 'gamekind', 'param1', 'param2', 'param3',
- 'param4', 'param5', 'param6', 'param7', 'param8', 'param9',
- 'shuffle', 'timemodified', 'toptext', 'bottomtext',
- 'grademethod', 'grade', 'decimalpoints', 'popup',
- 'review', 'attempts', 'glossaryid2', 'glossarycategoryid2',
- 'language', 'subcategories', 'maxattempts'
- ));
-
- $exporthtmls = new backup_nested_element('game_export_htmls');
- $exporthtml = new backup_nested_element('game_export_html', array('id'), array(
- 'filename', 'title', 'checkbutton', 'printbutton', 'inputsize', 'maxpicturewidth', 'maxpictureheight'));
-
- $exportjavames = new backup_nested_element('game_export_javames');
- $exportjavame = new backup_nested_element('game_export_javame', array('id'), array(
- 'filename', 'icon', 'createdby', 'vendor', 'name', 'description', 'version',
- 'maxpicturewidth', 'maxpictureheight'));
-
- $grades = new backup_nested_element('game_grades');
- $grade = new backup_nested_element('game_grade', array('id'), array(
- 'userid', 'score', 'timemodified'));
-
- $repetitions = new backup_nested_element('game_repetitions');
- $repetition = new backup_nested_element('game_repetition', array('id'), array(
- 'userid', 'questionid', 'glossaryentryid', 'repetitions'));
-
- $attempts = new backup_nested_element('game_attempts');
- $attempt = new backup_nested_element('game_attempt', array('id'), array(
- 'userid', 'timestart', 'timefinish', 'timelastattempt', 'lastip',
- 'lastremotehost', 'preview', 'attempt', 'score', 'attempts', 'language'));
-
- $querys = new backup_nested_element('game_queries');
- $query = new backup_nested_element('game_query', array('id'), array(
- 'gamekind', 'userid', 'sourcemodule', 'questionid', 'glossaryentryid',
- 'questiontext', 'score', 'timelastattempt', 'studentanswer', 'col', 'row',
- 'horizontal', 'answertext', 'correct', 'attachment', 'answerid', 'tries'));
-
- $bookquizs = new backup_nested_element('game_bookquizs');
- $bookquiz = new backup_nested_element('game_bookquiz', array('id'), array('lastchapterid'));
-
- $bookquizchapters = new backup_nested_element('game_bookquiz_chapters');
- $bookquizchapter = new backup_nested_element('game_bookquiz_chapter', array('id'), array( 'chapterid'));
-
- $bookquizquestions = new backup_nested_element('game_bookquiz_questions');
- $bookquizquestion = new backup_nested_element('game_bookquiz_question', array('id'), array(
- 'chapterid', 'questioncategoryid'));
-
- $crosss = new backup_nested_element('game_crosss');
- $cross = new backup_nested_element('game_cross', array('id'), array(
- 'cols', 'rows', 'words', 'wordsall', 'createscore', 'createtries',
- 'createtimelimit', 'createconnectors', 'createfilleds', 'createspaces', 'triesplay'));
-
- $cryptexs = new backup_nested_element('game_cryptexs');
- $cryptex = new backup_nested_element('game_cryptex', array('id'), array('letters'));
-
- $hangmans = new backup_nested_element('game_hangmans');
- $hangman = new backup_nested_element('game_hangman', array('id'), array(
- 'queryid', 'letters', 'allletters', 'try', 'maxtries', 'finishedword',
- 'corrects', 'iscorrect'));
-
- $hiddenpictures = new backup_nested_element('game_hiddenpictures');
- $hiddenpicture = new backup_nested_element('game_hiddenpicture', array('id'), array('correct', 'wrong', 'found'));
-
- $millionaires = new backup_nested_element('game_millionaires');
- $millionaire = new backup_nested_element('game_millionaire', array('id'), array('queryid', 'state', 'level'));
-
- $snakes = new backup_nested_element('game_snakes');
- $snake = new backup_nested_element('game_snake', array('id'), array('snakesdatabaseid', 'position', 'queryid', 'dice'));
-
- $sudokus = new backup_nested_element('game_sudokus');
- $sudoku = new backup_nested_element('game_sudoku', array('id'), array('level', 'data', 'opened', 'guess'));
-
- // Build the tree.
- $game->add_child( $bookquizquestions);
- $bookquizquestions->add_child( $bookquizquestion);
-
- $game->add_child( $exporthtmls);
- $exporthtmls->add_child( $exporthtml);
-
- $game->add_child( $exportjavames);
- $exportjavames->add_child( $exportjavame);
-
- $game->add_child( $grades);
- $grades->add_child( $grade);
-
- $game->add_child( $repetitions);
- $repetitions->add_child( $repetition);
-
- // All these source definitions only happen if we are including user info.
- if ($userinfo) {
- $game->add_child( $attempts);
- $attempts->add_child( $attempt);
-
- $attempts->add_child( $querys);
- $querys->add_child( $query);
-
- $attempts->add_child( $bookquizs);
- $bookquizs->add_child( $bookquiz);
-
- $game->add_child( $bookquizchapters);
- $bookquizchapters->add_child($bookquizchapter);
-
- $attempts->add_child( $crosss);
- $crosss->add_child( $cross);
-
- $attempts->add_child( $cryptexs);
- $cryptexs->add_child( $cryptex);
-
- $attempts->add_child( $hangmans);
- $hangmans->add_child( $hangman);
-
- $attempts->add_child( $hiddenpictures);
- $hiddenpictures->add_child( $hiddenpicture);
-
- $attempts->add_child( $millionaires);
- $millionaires->add_child( $millionaire);
-
- $attempts->add_child( $snakes);
- $snakes->add_child( $snake);
-
- $attempts->add_child( $sudokus);
- $sudokus->add_child( $sudoku);
- }
-
- // Define sources.
- $game->set_source_table('game', array('id' => backup::VAR_ACTIVITYID));
- $bookquizquestion->set_source_table('game_bookquiz_questions', array('gameid' => backup::VAR_ACTIVITYID));
- $exporthtml->set_source_table('game_export_html', array('id' => backup::VAR_ACTIVITYID));
- $exportjavame->set_source_table('game_export_javame', array('id' => backup::VAR_ACTIVITYID));
-
- // All the rest of elements only happen if we are including user info.
- if ($userinfo) {
- $grade->set_source_table('game_grades', array('gameid' => backup::VAR_ACTIVITYID));
- $repetition->set_source_table('game_repetitions', array('gameid' => backup::VAR_ACTIVITYID));
-
- $attempt->set_source_table('game_attempts', array( 'gameid' => backup::VAR_ACTIVITYID));
- $attempt->set_source_table('game_queries', array( 'attemptid' => backup::VAR_PARENTID));
-
- $bookquiz->set_source_table('game_bookquiz', array( 'id' => backup::VAR_ACTIVITYID));
- $bookquizchapter->set_source_table('game_bookquiz_chapters', array( 'id' => backup::VAR_PARENTID));
-
- $cross->set_source_table('game_cross', array( 'id' => backup::VAR_PARENTID));
- $cryptex->set_source_table('game_cryptex', array( 'id' => backup::VAR_PARENTID));
- $hangman->set_source_table('game_hangman', array( 'id' => backup::VAR_PARENTID));
- $hiddenpicture->set_source_table('game_hiddenpicture', array( 'id' => backup::VAR_PARENTID));
- $millionaire->set_source_table('game_millionaire', array( 'id' => backup::VAR_PARENTID));
- $snake->set_source_table('game_snakes', array( 'id' => backup::VAR_PARENTID));
- $sudoku->set_source_table('game_sudoku', array( 'id' => backup::VAR_PARENTID));
- }
- // Define id annotations.
- $attempt->annotate_ids('user', 'userid');
- $grade->annotate_ids('user', 'userid');
- $repetition->annotate_ids('user', 'userid');
- $repetition->annotate_ids('question', 'questionid');
- $repetition->annotate_ids('glossary_entry', 'glossaryentryid');
- $query->annotate_ids('user', 'userid');
- $query->annotate_ids('question', 'questionid');
- $query->annotate_ids('glossary_enrty', 'glossaryentryid');
- $query->annotate_ids('question_answer', 'answerid');
-
- $bookquizquestion->annotate_ids('book_chapter', 'chapterid');
- $bookquizquestion->annotate_ids('question_category', 'questioncategoryid');
- $bookquizchapter->annotate_ids('book_chapter', 'chapterid');
- $hangman->annotate_ids('game_query', 'queryid');
- $millionaire->annotate_ids('game_query', 'queryid');
-
- // Define file annotations.
- $game->annotate_files('mod_game', 'snakes_file', null); // This file area hasn't itemid.
- $game->annotate_files('mod_game', 'snakes_board', null); // This file area hasn't itemid.
-
- // Return the root element (game), wrapped into standard activity structure.
- return $this->prepare_activity_structure( $game);
- }
-}
diff --git a/backup/moodle2/restore_game_activity_task.class.php b/backup/moodle2/restore_game_activity_task.class.php
deleted file mode 100644
index f121444..0000000
--- a/backup/moodle2/restore_game_activity_task.class.php
+++ /dev/null
@@ -1,246 +0,0 @@
-.
-
-/**
- * @package mod_game
- * @subpackage backup-moodle2
- * @author bdaloukas
- */
-
-defined('MOODLE_INTERNAL') || die();
-require_once($CFG->dirroot . '/mod/game/backup/moodle2/restore_game_stepslib.php'); // Because it exists (must).
-
-/**
- * game restore task that provides all the settings and steps to perform one
- * complete restore of the activity
- */
-class restore_game_activity_task extends restore_activity_task {
-
- /**
- * Define (add) particular settings this activity can have
- */
- protected function define_my_settings() {
- // No particular settings for this activity.
- }
-
- /**
- * Define (add) particular steps this activity can have
- */
- protected function define_my_steps() {
- // Game only has one structure step.
- $this->add_step(new restore_game_activity_structure_step('game_structure', 'game.xml'));
- }
-
- /**
- * Define the contents in the activity that must be
- * processed by the link decoder
- */
- static public function define_decode_contents() {
- $contents = array();
-
- $contents[] = new restore_decode_content('game', array('toptext'), 'game');
- $contents[] = new restore_decode_content('game', array('bottomtext'), 'game');
-
- return $contents;
- }
-
- /**
- * Define the decoding rules for links belonging
- * to the activity to be executed by the link decoder
- */
- static public function define_decode_rules() {
- $rules = array();
-
- return $rules;
- }
-
- /**
- * Define the restore log rules that will be applied
- * by the {@link restore_logs_processor} when restoring
- * game logs. It must return one array
- * of {@link restore_log_rule} objects
- */
- static public function define_restore_log_rules() {
- $rules = array();
-
- $rules[] = new restore_log_rule('game', 'add', 'view.php?id={course_module}', '{game}');
- $rules[] = new restore_log_rule('game', 'update', 'view.php?id={course_module}', '{game}');
- $rules[] = new restore_log_rule('game', 'view', 'view.php?id={course_module}', '{game}');
- $rules[] = new restore_log_rule('game', 'choose', 'view.php?id={course_module}', '{game}');
- $rules[] = new restore_log_rule('game', 'choose again', 'view.php?id={course_module}', '{game}');
- $rules[] = new restore_log_rule('game', 'report', 'report.php?id={course_module}', '{game}');
-
- return $rules;
- }
-
- /**
- * Define the restore log rules that will be applied
- * by the {@link restore_logs_processor} when restoring
- * course logs. It must return one array
- * of {@link restore_log_rule} objects
- *
- * Note this rules are applied when restoring course logs
- * by the restore final task, but are defined here at
- * activity level. All them are rules not linked to any module instance (cmid = 0)
- */
- static public function define_restore_log_rules_for_course() {
- $rules = array();
-
- // Fix old wrong uses (missing extension).
- $rules[] = new restore_log_rule('game', 'view all', 'index?id={course}', null,
- null, null, 'index.php?id={course}');
- $rules[] = new restore_log_rule('game', 'view all', 'index.php?id={course}', null);
-
- return $rules;
- }
-
- public function after_restore() {
- // Do something at end of restore.
- global $DB;
-
- // Get the blockid.
- $gameid = $this->get_activityid();
-
- // Extract Game configdata and update it to point to the new glossary.
- $rec = $DB->get_record_select( 'game', 'id='.$gameid,
- null, 'id,quizid,glossaryid,glossarycategoryid,questioncategoryid,bookid,glossaryid2,glossarycategoryid2');
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'quiz', $rec->quizid);
- if ($ret != false) {
- $rec->quizid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'glossary', $rec->glossaryid);
- if ($ret != false) {
- $rec->glossaryid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'glossary_categories', $rec->glossarycategoryid);
- if ($ret != false) {
- $rec->glossarycategoryid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'question_categories', $rec->questioncategoryid);
- if ($ret != false) {
- $rec->questioncategoryid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'book', $rec->bookid);
- if ($ret != false) {
- $rec->bookid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'glossary', $rec->glossaryid2);
- if ($ret != false) {
- $rec->glossaryid2 = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'glossary_categories', $rec->glossarycategoryid);
- if ($ret != false) {
- $rec->glossarycategoryid = $ret->newitemid;
- }
-
- $DB->update_record( 'game', $rec);
-
- // Read game_repetitions.
- $recs = $DB->get_records_select( 'game_repetitions', 'gameid='.$gameid, null, '',
- 'id,questionid,glossaryentryid');
- if ($recs != false) {
- foreach ($recs as $rec) {
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'question', $rec->questionid);
- if ($ret != false) {
- $rec->questionid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'glossary_entry', $rec->glossaryentryid);
- if ($ret != false) {
- $rec->glossaryentryid = $ret->newitemid;
- }
-
- $DB->update_record( 'game_repetitions', $rec);
- }
- }
-
- // Read game_queries.
- $recs = $DB->get_records_select( 'game_queries', 'gameid='.$gameid, null, '',
- 'id,questionid,glossaryentryid,answerid');
- if ($recs != false) {
- foreach ($recs as $rec) {
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'question', $rec->questionid);
- if ($ret != false) {
- $rec->questionid = $ret->newitemid;
- }
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'glossary_entry', $rec->glossaryentryid);
- if ($ret != false) {
- $rec->glossaryentryid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'question_answers', $rec->glossaryentryid);
- if ($ret != false) {
- $rec->answerid = $ret->newitemid;
- }
-
- $DB->update_record( 'game_queries', $rec);
- }
- }
-
- // Read bookquiz.
- $recs = $DB->get_records_select( 'game_bookquiz', 'id='.$gameid, null, '', 'id,lastchapterid');
- if ($recs != false) {
- foreach ($recs as $rec) {
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'book_chapters', $rec->lastchapterid);
- if ($ret != false) {
- $rec->lastchapterid = $ret->newitemid;
- }
-
- $DB->update_record( 'game_bookquiz', $rec);
- }
- }
-
- // Read bookquiz_chapters.
- $sql = "SELECT gbc.* ".
- "FROM {game_bookquiz_chapters} gbc LEFT JOIN {game_attempts} a ON gbc.attemptid = a.id".
- " WHERE a.gameid=$gameid";
- $recs = $DB->get_records_sql( $sql);
- if ($recs != false) {
- foreach ($recs as $rec) {
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'book_chapters', $rec->chapterid);
- if ($ret != false) {
- $rec->chapterid = $ret->newitemid;
- }
- $DB->update_record( 'game_bookquiz_chapter', $rec);
- }
- }
-
- // Read bookquiz_questions.
- $recs = $DB->get_records_select( 'game_bookquiz_questions', 'id='.$gameid, null, '', 'id,chapterid,questioncategoryid');
- if ($recs != false) {
- foreach ($recs as $rec) {
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'book_chapters', $rec->chapterid);
- if ($ret != false) {
- $rec->chapterid = $ret->newitemid;
- }
-
- $ret = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'book_chapters', $rec->questioncategoryid);
- if ($ret != false) {
- $rec->questioncategoryid = $ret->newitemid;
- }
-
- $DB->update_record( 'game_bookquiz_questions', $rec);
- }
- }
- }
-}
diff --git a/backup/moodle2/restore_game_stepslib.php b/backup/moodle2/restore_game_stepslib.php
deleted file mode 100644
index 70d14a8..0000000
--- a/backup/moodle2/restore_game_stepslib.php
+++ /dev/null
@@ -1,363 +0,0 @@
-.
-
-/**
- * Define all the restore steps that will be used by the restore_game_activity_task
- *
- * @package mod_game
- * @subpackage backup-moodle2
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
-
-defined('MOODLE_INTERNAL') || die();
-
-/**
- * Structure step to restore one game activity
- */
-class restore_game_activity_structure_step extends restore_activity_structure_step {
-
- /**
- * Defines the neeeded structures.
- */
- protected function define_structure() {
-
- $paths = array();
- $userinfo = $this->get_setting_value('userinfo');
-
- $paths[] = new restore_path_element('game', '/activity/game');
- $paths[] = new restore_path_element('game_export_html', '/activity/game/game_export_htmls/game_export_html');
- $paths[] = new restore_path_element('game_export_javame', '/activity/game/game_export_htmls/game_export_javame');
- $paths[] = new restore_path_element(
- 'game_bookquiz_question', '/activity/game/game_bookquiz_questions/game_bookquiz_question');
- if ($userinfo) {
- $paths[] = new restore_path_element('game_grade', '/activity/game/game_grades/game_grade');
- $paths[] = new restore_path_element('game_repetition', '/activity/game/game_repetiotions/game_repetition');
- $paths[] = new restore_path_element('game_attempt', '/activity/game/game_attempts/game_attempt');
- $paths[] = new restore_path_element('game_query', '/activity/game/game_querys/game_query');
- $paths[] = new restore_path_element('game_bookquiz', '/activity/game/game_bookquizs/game_bookquiz');
- $paths[] = new restore_path_element('game_bookquiz_chapter',
- '/activity/game/game_bookquiz_chapters/game_bookquiz_chapter');
- $paths[] = new restore_path_element('game_cross', '/activity/game/game_crosss/game_cross');
- $paths[] = new restore_path_element('game_cryptex', '/activity/game/game_cryptexs/game_cryptex');
- $paths[] = new restore_path_element('game_hangman', '/activity/game/game_hangmans/game_hangman');
- $paths[] = new restore_path_element('game_hiddenpicture', '/activity/game/game_hiddenpictures/game_hiddenpicture');
- $paths[] = new restore_path_element('game_millionaire', '/activity/game/game_millionaires/game_millionaire');
- $paths[] = new restore_path_element('game_snake', '/activity/game/game_snakes/game_snake');
- $paths[] = new restore_path_element('game_sudoku', '/activity/game/game_sudokus/game_sudoku');
- }
-
- // Return the paths wrapped into standard activity structure.
- return $this->prepare_activity_structure($paths);
- }
-
- /**
- * Restores the game table.
- *
- * @param stdClass $data
- */
- protected function process_game($data) {
- global $DB;
-
- $data = (object)$data;
- $oldid = $data->id;
- $data->course = $this->get_courseid();
- $data->timemodified = $this->apply_date_offset($data->timemodified);
-
- // Insert the game record.
- $newitemid = $DB->insert_record('game', $data);
-
- // Immediately after inserting "activity" record, call this.
- $this->apply_activity_instance($newitemid);
- }
-
- /**
- * Restores the game_export_html table.
- *
- * @param stdClass $data
- */
- protected function process_game_export_html($data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
- if ($data->id != 0) {
- $DB->insert_record('game_export_html', $data);
- }
- }
-
- /**
- * Restores the game_export_javame table.
- *
- * @param stdClass $game
- */
- protected function process_game_export_javame( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
- if ($data->id != 0) {
- $DB->insert_record('game_export_javame', $data);
- }
- }
-
- /**
- * Restores the game_grades table.
- *
- * @param stdClass $data
- */
- protected function process_game_grade( $data) {
- global $DB;
-
- $data = (object)$data;
- $oldid = $data->id;
-
- $data->gameid = $this->get_new_parentid('game');
- $data->userid = $this->get_mappingid('user', $data->userid);
-
- $DB->insert_record('game_grades', $data);
- }
-
- /**
- * Restores the game_repetitions table.
- *
- * @param stdClass $data
- */
- protected function process_game_repetition( $data) {
- global $DB;
-
- $data = (object)$data;
- $oldid = $data->id;
-
- $data->gameid = $this->get_new_parentid('game');
- $data->userid = $this->get_mappingid('user', $data->userid);
-
- $DB->insert_record('game_repetitions', $data);
- }
-
- /**
- * Restores the game_attempts table.
- *
- * @param stdClass $data
- */
- protected function process_game_attempt( $data) {
- global $DB;
-
- $data = (object)$data;
- $oldid = $data->id;
-
- $data->gameid = $this->get_new_parentid('game');
- $data->userid = $this->get_mappingid('user', $data->userid);
-
- if (!isset( $data->timestart)) {
- $data->timestart = 0;
- }
- if (!isset( $data->timefinish)) {
- $data->timefinish = 0;
- }
- if (!isset( $data->timelastattempt)) {
- $data->timelastattempt = 0;
- }
-
- $data->timestart = $this->apply_date_offset($data->timestart);
- $data->timefinish = $this->apply_date_offset($data->timefinish);
- $data->timelastattempt = $this->apply_date_offset($data->timelastattempt);
-
- $newitemid = $DB->insert_record('game_attempts', $data);
- $this->set_mapping('game_attempt', $oldid, $newitemid);
- }
-
- /**
- * Restores the game_queries table.
- *
- * @param stdClass $data
- */
- protected function process_game_query( $data) {
- global $DB;
-
- $data = (object)$data;
- $oldid = $data->id;
-
- $data->gameid = $this->get_new_parentid('game');
- $data->attemptid = get_mappingid('game_attempt', $data->attemptid);
- $data->userid = $this->get_mappingid('user', $data->userid);
-
- $newitemid = $DB->insert_record('game_queries', $data);
- $this->set_mapping('game_query', $oldid, $newitemid);
- }
-
- /**
- * Restores the game_bookquiz table.
- *
- * @param stdClass $data
- */
- protected function process_game_bookquiz( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
-
- $DB->insert_record('game_bookquiz', $data);
- }
-
- /**
- * Restores the game_bookauiz_chapters table.
- *
- * @param stdClass $data
- */
- protected function process_game_bookquiz_chapter( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->gameid = $this->get_new_parentid('game');
-
- $DB->insert_record('game_bookquiz_chapters', $data);
- }
-
- /**
- * Restores the game_bookquiz_questions table.
- *
- * @param stdClass $data
- */
- protected function process_game_bookquiz_question( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->gameid = $this->get_new_parentid('game');
-
- $DB->insert_record('game_bookquiz_questions', $data);
- }
-
- /**
- * Restores the game_cross table.
- *
- * @param stdClass $data
- */
- protected function process_game_cross( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
-
- $DB->insert_record('game_cross', $data);
- }
-
- /**
- * Restores the game_cryptex table.
- *
- * @param stdClass $data
- */
- protected function process_game_cryptex( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
-
- $DB->insert_record('game_cryptex', $data);
- }
-
- /**
- * Restores the game_hangman table.
- *
- * @param stdClass $data
- */
- protected function process_game_hangman( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
- $data->queryid = $this->get_mappingid('game_query', $data->queryid);
-
- $DB->insert_record('game_hangman', $data);
- }
-
- /**
- * Restores the game_hiddenpicture table.
- *
- * @param stdClass $data
- */
- protected function process_game_hiddenpicture( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
-
- $DB->insert_record('game_hiddenpicture', $data);
- }
-
- /**
- * Restores the game_millionaire table.
- *
- * @param stdClass $data
- */
- protected function process_game_millionaire( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
- $data->queryid = $this->get_mappingid('game_query', $data->queryid);
-
- $DB->insert_record('game_millionaire', $data);
- }
-
- /**
- * Restores the game_snakes table.
- *
- * @param stdClass $data
- */
- protected function process_game_snake( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
- $data->queryid = $this->get_mappingid('game_query', $data->queryid);
-
- $DB->insert_record('game_snakes', $data);
- }
-
- /**
- * Restores the game_sudoku table.
- *
- * @param stdClass $data
- */
- protected function process_game_sudoku( $data) {
- global $DB;
-
- $data = (object)$data;
-
- $data->id = $this->get_new_parentid('game');
-
- $DB->insert_record('game_sudoku', $data);
- }
-
- /**
- * Add Game related files, no need to match by itemname (just internally handled context).
- */
- protected function after_execute() {
- $this->add_related_files('mod_game', 'snakes_file', null);
- $this->add_related_files('mod_game', 'snakes_board', null);
- }
-}
diff --git a/bookquiz/play.php b/bookquiz/play.php
index 15731de..6d20c7e 100644
--- a/bookquiz/play.php
+++ b/bookquiz/play.php
@@ -14,6 +14,13 @@
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see
\n$wordline\r\n";
@@ -474,6 +541,14 @@ function hangman_onincorrect( $id, $wordline, $word, $game, $attempt, $hangman,
game_hangman_show_nextword( $id, $game, $attempt, $hangman, true);
}
+/**
+ * Shows the next word.
+ *
+ * @param $id
+ * @param stdClass $game
+ * @param stdClass $attempt
+ * @param stdClass $hangman
+ */
function game_hangman_show_nextword( $id, $game, $attempt, $hangman) {
global $CFG, $DB;
diff --git a/hiddenpicture/picture.php b/hiddenpicture/picture.php
index 1331864..e213381 100644
--- a/hiddenpicture/picture.php
+++ b/hiddenpicture/picture.php
@@ -36,6 +36,18 @@ $rows = required_param('rows', PARAM_INT);
$filenamenumbers = required_param('n', PARAM_PATH); // Path to numbers picture.
create_image( $id, $attemptid, $foundcells, $cells, $filehash, $cols, $rows, $filenamenumbers);
+/**
+ * Create an image.
+ *
+ * @param $id
+ * @param $attemptid
+ * @param $foundcells
+ * @param $cells
+ * @param $filehash
+ * @param $cols
+ * @param $rows
+ * @param $filenamenumbers
+ */
function create_image( $id, $attemptid, $foundcells, $cells, $filehash, $cols, $rows, $filenamenumbers) {
global $CFG;
@@ -108,6 +120,18 @@ function create_image( $id, $attemptid, $foundcells, $cells, $filehash, $cols, $
imagedestroy ($imghandle);
}
+/**
+ * Show number.
+ *
+ * @param $imghandle
+ * @param $imgnumbers
+ * @param $number
+ * @param $x1
+ * @param $y1
+ * @param $width
+ * @param $height
+ * @param $sizenumbers
+ */
function shownumber( $imghandle, $imgnumbers, $number, $x1 , $y1, $width, $height, $sizenumbers) {
if ($number < 10) {
$widthnumber = $sizenumbers[ 0] / 10;
diff --git a/lang/en/game.php b/lang/en/game.php
deleted file mode 100644
index d0f3f0b..0000000
--- a/lang/en/game.php
+++ /dev/null
@@ -1,354 +0,0 @@
-.
-
-// Translated by Vasilis Daloukas.
-
-// File bookquiz/importodt.php.
-$string[ 'bookquiz_not_select_book'] = 'You have not select book';
-
-// File bookquiz/play.php.
-$string[ 'bookquiz_empty'] = 'The book is empty';
-$string[ 'sudoku_submit'] = 'Grade answers';
-
-// File bookquiz/questions.php.
-$string[ 'bookquiz_categories'] = 'Categories';
-$string[ 'bookquiz_chapters'] = 'Chapters';
-$string[ 'bookquiz_numquestions'] = 'Questions';
-
-// Classes.
-$string[ 'eventgamecreated'] = 'Game created';
-$string[ 'eventgamedeleted'] = 'Game deleted';
-$string[ 'eventgamesupdated'] = 'Game updated';
-$string[ 'eventgameviewed'] = 'Game viewed';
-$string[ 'eventgameplayed'] = 'Game played';
-
-// File cross/cross_class.php.
-$string[ 'lettersall'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
-
-// File cross/crossdb_class.php.
-$string[ 'and'] = 'and';
-$string[ 'cross_correct'] = 'corrert character';
-$string[ 'cross_corrects'] = 'correct characters';
-$string[ 'cross_error'] = 'wrong character';
-$string[ 'cross_errors'] = 'wrong characters';
-$string[ 'cross_found_many'] = 'Found';
-$string[ 'cross_found_one'] = 'Found';
-$string[ 'grade'] = 'Grade';
-$string[ 'cross_disabletransformuppercase'] = 'Disables text-transform:uppercase in CSS';
-
-// File cross/play.php.
-$string[ 'cross_across'] = 'Across';
-$string[ 'cross_checkbutton'] = 'Check crossword';
-$string[ 'cross_down'] = 'Down';
-$string[ 'cross_endofgamebutton'] = 'End of crossword game';
-$string[ 'cross_error_containsbadchars'] = 'The word contains illegal characteres';
-$string[ 'cross_error_wordlength1'] = 'The correct word contains ';
-$string[ 'cross_error_wordlength2'] = ' letters.';
-$string[ 'cross_pleasewait'] = 'Please wait while cross is loading';
-$string[ 'cross_welcome'] = '
Click on a word to begin/continue.
'; -$string[ 'letter'] = 'letter'; -$string[ 'letters'] = 'letters'; -$string[ 'nextgame'] = 'New game'; -$string[ 'no_words'] = 'There are no words'; -$string[ 'print'] = 'Print'; -$string[ 'win'] = 'Congratulations !!!'; - -// File cryptex/play.php. -$string[ 'finish'] = 'End of game'; - -// File db/access.php. -$string[ 'game:addinstance'] = 'Add a new game'; -$string[ 'game:attempt'] = 'Play game'; -$string[ 'game:deleteattempts'] = 'Delete attempts'; -$string[ 'game:grade'] = 'Grade games manually'; -$string[ 'game:manage'] = 'Manage'; -$string[ 'game:manageoverrides'] = 'Manage game overrides'; -$string[ 'game:preview'] = 'Preview Games'; -$string[ 'game:reviewmyattempts'] = 'reviewmyattempts'; -$string[ 'game:view'] = 'view'; -$string[ 'game:viewreports'] = 'viewreports'; - -// File hangman/play.php. -$string[ 'hangman_correct_phrase'] = 'The correct phrase was: '; -$string[ 'hangman_correct_word'] = 'The correct word was: '; -$string[ 'hangman_gradeinstance'] = 'Grade in whole game'; -$string[ 'hangman_letters'] = 'Letters: '; -$string[ 'hangman_restletters_many'] = 'You have {$a} tries'; -$string[ 'hangman_restletters_one'] = 'You have ONLY 1 try'; -$string[ 'hangman_wrongnum'] = 'Wrong: %d out of %d'; -$string[ 'nextword'] = 'Next word'; - -// File hiddenpicture/play.php. -$string[ 'hiddenpicture_mainsubmit'] = 'Grade main answer'; -$string[ 'hiddenpicture_nocols'] = 'Have to specify the number of cols horizontaly'; -$string[ 'hiddenpicture_nomainquestion'] = 'There are no glossary entries on glossary {$a->name} with an attached picture'; -$string[ 'hiddenpicture_norows'] = 'Have to specify the number of cols verticaly'; -$string[ 'must_select_glossary'] = 'You must select a glossary'; -$string[ 'no_questions'] = "There are no questions"; -$string[ 'noglossaryentriesfound'] = 'No glossary entries found'; - -// File millionaire/play.php. -$string[ 'millionaire_must_select_questioncategory'] = 'You must select one question category'; -$string[ 'millionaire_must_select_quiz'] = 'You must select one quiz'; -$string[ 'millionaire_lettersall'] = '-'; - -// File report/overview/report.php. -$string[ 'allattempts'] = 'Show all tries'; -$string[ 'allstudents'] = 'Show all $a'; -$string[ 'attemptduration'] = 'Attempt duration'; -$string[ 'attemptsonly'] = 'Show only students with attempts'; -$string[ 'deleteattemptcheck'] = 'Are you absolutely sure you want to completely delete these attempts?'; -$string[ 'displayoptions'] = 'Display options'; -$string[ 'downloadods'] = 'Download in ODS format'; -$string[ 'feedback'] = 'Feedback'; -$string[ 'noattemptsonly'] = 'Show $a with no attempts only'; -$string[ 'numattempts'] = '$a->studentnum $a->studentstring have made $a->attemptnum attempts'; -$string[ 'pagesize'] = 'Questions per page:'; -$string[ 'reportoverview'] = 'Overview'; -$string[ 'selectall'] = 'Select all'; -$string[ 'selectnone'] = 'Deselect all'; -$string[ 'showdetailedmarks'] = 'Show mark details'; -$string[ 'startedon'] = 'Started on'; -$string[ 'timecompleted'] = 'Completed'; -$string[ 'unfinished'] = 'open'; -$string[ 'withselected'] = 'With selected'; - -// File snakes/play.php. -$string[ 'snakes_dice'] = 'Dice, $a spots.'; -$string[ 'snakes_player'] = 'Player, position: $a.'; - -// File sudoku/create.php. -$string[ 'sudoku_create_count'] = 'Number of sudokus that will be created'; -$string[ 'sudoku_create_start'] = 'Start creating sudokus'; -$string[ 'sudoku_creating'] = 'Creating {$a} sudoku'; - -// File sudoku/play.php. -$string[ 'sudoku_finishattemptbutton'] = 'End of game'; -$string[ 'sudoku_guessnumber'] = 'Guess the correct number'; -$string[ 'sudoku_noentriesfound'] = 'No words found in glossary'; - -// File export.php. -$string[ 'export'] = 'Export'; -$string[ 'html_hascheckbutton'] = 'Has check button:'; -$string[ 'html_hasprintbutton'] = 'Has print button:'; -$string[ 'html_title'] = 'Title of html:'; -$string[ 'javame_createdby'] = 'Created by:'; -$string[ 'javame_description'] = 'Description:'; -$string[ 'javame_filename'] = 'Filename:'; -$string[ 'javame_icon'] = 'Icon:'; -$string[ 'javame_maxpictureheight'] = 'Max picture height:'; -$string[ 'javame_maxpicturewidth'] = 'Max picture width:'; -$string[ 'javame_name'] = 'Name:'; -$string[ 'javame_type'] = 'Type:'; -$string[ 'javame_vendor'] = 'Vendor:'; -$string[ 'javame_version'] = 'Version:'; - -// File exporthtml_hangman.php. -$string[ 'hangman_loose'] = 'Game over'; -$string[ 'html_hangman_new'] = 'New'; - -// File exporthtml_millionaire.php. -$string[ 'millionaire_helppeople'] = 'Help of people'; -$string[ 'millionaire_info_people'] = 'People say'; -$string[ 'millionaire_info_telephone'] = 'I think that the correct answer is '; -$string[ 'millionaire_info_wrong_answer'] = 'Your answer is wrong