setExerciseData("");
$this->setGameSpeed(3);
} else {
// type specific data loading
global $kdb;
$typeData = $kdb->getTypeData($rid, self::$table);
$this->setExerciseData($typeData['data']);
$this->setGameSpeed($typeData['speed']);
}
}
protected function setExerciseData($d) {
$this->exerciseData = $d;
}
public function getExerciseData() {
return $this->exerciseData;
}
protected function setGameSpeed($d) {
$this->gameSpeed = $d;
}
public function getGameSpeed() {
return $this->gameSpeed;
}
public function getSpeeds() {
return array('very slow', 'slow', 'normal', 'fast', 'very fast');
}
public function makeResourceFromXML($xml) {
parent::makeResourceFromXML($xml);
if ($this->getResourceID()!="new"){
global $kdb;
$res = $kdb->query("INSERT INTO keyboard (resourceID, data, speed) values (".$this->getResourceID().", '".$xml['data']."', '".$xml['speed']."')");
if ($res) {
$_SESSION['krihvel_notice'] = "\"".gettext("Keyboard")."\" ".gettext("has been imported successfully!");
} else {
$_SESSION['krihvel_notice'] = gettext("Upload failed! Zip file was corrupted!");
}
}
return array('rid' => $this->getResourceID(), 'mode' => 'view');
}
public function makeXML() {
$xml = 'getExerciseData().']]>\n';
$xml .= 'getGameSpeed().']]>\n';
return $xml;
}
/**
* @Secured('roles' = {'authenticated'}, 'valid' = {})
* */
public function actionCopy() {
global $kdb;
$this->updateData($_POST);
$rid = $this->getResourceID();
parent::copy();
if ($this->getResourceID() != $rid){
$res = $kdb->query("INSERT INTO keyboard (resourceID, data, speed) values (".$this->getResourceID().", '".$this->getExerciseData()."', ".$this->getGameSpeed().")");
if ($res) {
$_SESSION['krihvel_notice'] = gettext("You have new copy of")." \"".gettext("Keyboard")."\"";
} else {
$_SESSION['krihvel_notice'] = gettext("Making copy failed");
}
}
return array('rid' => $this->getResourceID(), 'mode' => 'view');
}
/**
* @Secured('roles' = {'authenticated'}, 'valid' = {'isOwner'})
* */
public function actionSave() {
$mode = "view";
if ($this->getResourceID() == "new"){
$mode = "compile";
}
$this->updateData($_POST);
$this->save();
$_SESSION['krihvel_notice'] = gettext("Saved");
return array('rid' => $this->getResourceID(), 'mode' => $mode);
}
protected function save() {
global $kdb;
$rid = $this->getResourceID();
parent::save();
if ($rid == "new"){
$kdb->query("INSERT INTO keyboard (resourceID, data) values (".$this->getResourceID().", '".$this->getExerciseData()."')");
}
}
/**
* @Secured('roles' = {'authenticated'}, 'valid' = {'isOwner'})
* */
public function actionCompile() {
global $kdb;
$kdb->query("UPDATE keyboard SET data='".$_POST['exercise']."', speed=".$_POST['speed']." WHERE resourceID=".$this->getResourceID());
$this->updateFulltext();
$_SESSION['krihvel_notice'] = gettext("Saved");
return array('rid' => $this->getResourceID(), 'mode' => "settings");
}
/**
* @Secured('roles' = {'authenticated'}, 'valid' = {})
* */
public function actionAnswer() {
global $user, $krihvel;
//$aid = $this->answerData($_POST);
$a = new KeyboardAnswer();
$a->setResourceID($this->getResourceID());
$a->setAssignmentID($_POST['assignment']);
$a->setUserID($user->getId());
$a->setGrade(0);
$a->setComment("");
$a->setExponate(0);
$a->setAnswer($_POST['answer']);
$a->save();
$_SESSION['krihvel_notice'] = gettext("Answered");
return array('rid' => $this->getResourceID(), 'mode' => "answer");
}
function fulltext() {
return $this->getExerciseData();
}
}
?>