khanat-opennel-code/code/web/app/app_achievements_admin/class/CSRAchievement_class.php

122 lines
2.6 KiB
PHP
Raw Normal View History

<?php
class CSRAchievement extends AchAchievement implements CSR {
function grantNode($path,$player) {
#echo "start: ".$path." id: ".$this->getID()."<br>";
if(is_numeric($path)) {
//it's me (id == numeric)
if($this->getID() == $path) {
$this->grant($player);
#echo "grant()<br>";
}
}
else {
//get child with the next level id and dispatch
$tmp = explode(";",$path);
$c = $this->getChildDataByID($tmp[1]);
#echo "...".$tmp[1];
if($c != null) { // check if it's really own child
unset($tmp[0]);
$c->grantNode(implode(";",$tmp),$player);
#echo "grantNode()<br>";
}
}
#echo "end<br>";
}
function denyNode($path,$player) {
if(is_numeric($path)) {
//it's me (id == numeric)
if($this->getID() == $path) {
$this->deny($player);
}
}
else {
//get child with the next level id and dispatch
$tmp = explode(";",$path);
if($tmp[0] == $this->getID()) { // it's my id!
$c = $this->getChildDataByID($tmp[1]);
if($c != null) { // check if it's really own child
unset($tmp[0]);
$c->denyNode(implode(";",$tmp),$player);
}
}
}
}
function getPath($path = "") {
if($path != "") {
$path = ";".$path;
}
$path = $this->getID().$path;
if($this->hasParent()) {
$path = $this->parent->getPath($path);
}
return $path;
}
private function hasParent() {
return ($this->parent != null);
}
2012-07-02 16:56:13 +00:00
function CSRAchievement($data,$parent) {
parent::__construct($data,$parent);
}
protected function makeChild($d) {
return new CSRPerk($d,$this);
}
function grant($pid) {
2012-07-02 16:56:13 +00:00
$iter = $this->getIterator();
while($iter->hasNext()) {
$curr = $iter->getNext();
$curr->grant($pid);
$this->setChildDone($curr->getID());
}
2012-07-02 16:56:13 +00:00
$this->parent->setChildDone($this->id);
}
function deny($pid) {
2012-07-02 16:56:13 +00:00
$iter = $this->getIterator();
while($iter->hasNext()) {
$curr = $iter->getNext();
$curr->deny($pid);
$this->setChildOpen($curr->getID());
2012-07-02 16:56:13 +00:00
}
$this->parent->setChildOpen($this->id);
2012-07-02 16:56:13 +00:00
}
function setPerkDone($id) {
2012-07-02 16:56:13 +00:00
echo "perk<br>";
$this->setChildDone($id);
2012-07-02 16:56:13 +00:00
echo "ach<br>";
$this->parent->addChildDone($this->id);
2012-07-02 16:56:13 +00:00
if(!$this->hasOpen()) {
$this->parent->removeChildOpen($this->id);
2012-07-02 16:56:13 +00:00
}
}
function setPerkOpen($id) {
2012-07-02 16:56:13 +00:00
echo "perk<br>";
$this->setChildOpen($id);
2012-07-02 16:56:13 +00:00
echo "ach<br>";
$this->parent->addChildOpen($this->id);
2012-07-02 16:56:13 +00:00
if(!$this->hasDone()) {
$this->parent->removeChildDone($this->id);
}
}
}
?>