parent
5d53924912
commit
96949830e6
@ -0,0 +1,207 @@
|
||||
<?php
|
||||
error_reporting(E_ALL ^ E_NOTICE);
|
||||
ini_set("display_errors","1");
|
||||
|
||||
if(file_exists("parser.stop")) {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
require_once("class/mySQL_class.php");
|
||||
require_once("conf.php");
|
||||
require_once("inlcude/functions_inc.php");
|
||||
|
||||
$logfile = false;
|
||||
if($CONF['logging'] == true) {
|
||||
require_once("class/Logfile_class.php");
|
||||
#$logfile = fopen($CONF['logfile'].'.'.date("Ymd",time()).'.txt','a');
|
||||
$logfile = new Logfile($CONF['logfile']);
|
||||
}
|
||||
|
||||
//set mode: cron || single with given cid
|
||||
#MISSING: conf to allow external calls; whitelist ips
|
||||
$MODE = "CRON";
|
||||
if($_REQUEST["cid"] > 0 || $_REQUEST["invoke"] == "TRUE") {
|
||||
if($_REQUEST["cid"] > 0 && $_REQUEST["invoke"] == "TRUE") {
|
||||
$MODE = "SINGLE";
|
||||
$CID = $DBc->mre($_REQUEST["cid"]);
|
||||
}
|
||||
else {
|
||||
$e = "Failed to start SINGLE mode; cid=".$_REQUEST["cid"];
|
||||
logf($e);
|
||||
die($e);
|
||||
}
|
||||
}
|
||||
|
||||
//create database connection
|
||||
$DBc = new mySQL($CONF['mysql_error']);
|
||||
$DBc->connect($CONF['mysql_server'],$CONF['mysql_user'],$CONF['mysql_pass'],$CONF['mysql_database']);
|
||||
|
||||
if($MODE == "CRON") {
|
||||
$RID = $DBc->sendSQL("INSERT INTO ach_monitor_state (ams_start,ams_end) VALUES ('".time()."','0')","INSERT"); // insert run into monitoring table
|
||||
}
|
||||
|
||||
require_once("class/DataSourceHandler_class.php");
|
||||
require_once("class/DataSource_abstract.php");
|
||||
|
||||
require_once("class/Atom_class.php");
|
||||
|
||||
//create datasource handler
|
||||
$_DATA = new DataSourceHandler();
|
||||
foreach($CONF['data_source'] as $elem) { //populate
|
||||
require_once("source/".$elem."/".$elem."_class.php");
|
||||
eval('$tmp = new '.$elem.'();');
|
||||
$_DATA->registerDataSource($tmp);
|
||||
}
|
||||
|
||||
//synch chars from ring_open character table
|
||||
if($CONF['synch_chars'] == true) {
|
||||
$DBc_char = new mySQL($CONF['mysql_error']);
|
||||
$DBc_char->connect($CONF['char_mysql_server'],$CONF['char_mysql_user'],$CONF['char_mysql_pass'],$CONF['char_mysql_database']);
|
||||
|
||||
$DBc->sendSQL("UPDATE ach_monitor_character SET amc_confirmed='0'","NONE");
|
||||
|
||||
$res = $DBc_char->sendSQL("SELECT char_id,last_played_date FROM characters","ARRAY");
|
||||
$sz = sizeof($res);
|
||||
for($i=0;$i<$sz;$i++) {
|
||||
$DBc->sendSQL("INSERT INTO ach_monitor_character (amc_character,amc_last_import,amc_last_login,amc_confirmed) VALUES ('".$res[$i]['char_id']."','0','".dateTime_to_timestamp($res[$i]['last_played_date'])."','1') ON DUPLICATE KEY UPDATE amc_confirmed='1', amc_last_login='".dateTime_to_timestamp($res[$i]['last_played_date'])."'","NONE");
|
||||
}
|
||||
|
||||
$DBc->sendSQL("DELETE FROM ach_monitor_character WHERE amc_confirmed='0'","NONE"); //remove deleted characters
|
||||
//remove data for deleted chars
|
||||
$DBc->sendSQL("DELETE FROM ach_player_atom WHERE NOT EXISTS (SELECT * FROM ach_monitor_character WHERE amc_character='apa_player')","NONE");
|
||||
$DBc->sendSQL("DELETE FROM ach_player_objective WHERE NOT EXISTS (SELECT * FROM ach_monitor_character WHERE amc_character='apo_player')","NONE");
|
||||
$DBc->sendSQL("DELETE FROM ach_player_perk WHERE NOT EXISTS (SELECT * FROM ach_monitor_character WHERE amc_character='app_player')","NONE");
|
||||
$DBc->sendSQL("DELETE FROM ach_player_valuecache WHERE NOT EXISTS (SELECT * FROM ach_monitor_character WHERE amc_character='apv_player')","NONE");
|
||||
}
|
||||
|
||||
// fetch candidates
|
||||
if($MODE == "SINGLE") {
|
||||
$chars = array();
|
||||
$chars[] = array('amc_character',$CID);
|
||||
}
|
||||
else {
|
||||
#$chars = array();
|
||||
|
||||
$DBc->sendSQL("UPDATE ach_monitor_character SET amc_working='0' WHERE amc_last_import<'".(time()-60*60)."'"); // unlock if something went wrong
|
||||
|
||||
$DBc->sendSQL("UPDATE ach_monitor_character SET amc_working='".$RID."' WHERE amc_last_login>amc_last_import AND amc_working='0'","NONE");
|
||||
|
||||
$chars = $DBc->sendSQL("SELECT amc_character FROM ach_monitor_character WHERE amc_working='".$RID."'","ARRAY");
|
||||
}
|
||||
|
||||
|
||||
//fork if enabled in conf
|
||||
if($CONF['fork'] == true && $MODE == "CRON") {
|
||||
require_once("class/ParallelCURL_class.php");
|
||||
|
||||
$max_requests = 0;
|
||||
$curl_options = array(
|
||||
CURLOPT_SSL_VERIFYPEER => FALSE,
|
||||
CURLOPT_SSL_VERIFYHOST => FALSE,
|
||||
CURLOPT_USERAGENT, 'Ryzom - Achievement Tracker',
|
||||
);
|
||||
|
||||
$_CURL = new ParallelCurl($max_requests, $curl_options);
|
||||
|
||||
foreach($chars as $elem) {
|
||||
$_CURL->startRequest("http://".$CONF['self_host']."/".$CONF['self_path']."?invoke=TRUE&cid=".$elem['amc_character'], 'received_char',null);
|
||||
}
|
||||
}
|
||||
else {
|
||||
$atom_list = array();
|
||||
|
||||
foreach($chars as $elem) {
|
||||
$_DATA->freeData($elem['amc_character']);
|
||||
|
||||
#STEP 1: evaluate atoms
|
||||
|
||||
//get unfinished perks which have no parent or complete parent
|
||||
#$res = $DBc->sendSQL("SELECT ap_id FROM ach_perk WHERE (ap_parent IS NULL OR EXISTS (SELECT * FROM ach_player_perk WHERE app_player='".$elem['amc_character']."' AND app_perk=ap_parent)) AND (NOT EXISTS (SELECT * FROM ach_player_perk WHERE app_player='".$elem['amc_character']."' AND app_perk=ap_id))","ARRAY");
|
||||
|
||||
//get all unfinished perks since perks my not directly inherit objectives...
|
||||
$res = $DBc->sendSQL("SELECT ap_id FROM ach_perk WHERE NOT EXISTS (SELECT * FROM ach_player_perk WHERE app_player='".$elem['amc_character']."' AND app_perk=ap_id)","ARRAY");
|
||||
foreach($res as $perk) {
|
||||
//get unfinished atoms belonging to unfinished objectives
|
||||
$res = $DBc->sendSQL("SELECT ach_atom.* FROM ach_atom,ach_objective WHERE ao_perk='".$perk['ap_id']."' AND ao_id=atom_objective AND NOT EXISTS (SELECT * FROM ach_player_objective WHERE apo_player='".$elem['amc_character']."' AND apo_objective=ao_id)","ARRAY");
|
||||
foreach($res2 as $atom) {
|
||||
if(!isset($atom_list[$atom['atom_id']])) { // only load if not already cached
|
||||
$atom_list[$atom['atom_id']] = new Atom($atom);
|
||||
}
|
||||
|
||||
$atom_list[$atom['atom_id']]->evalRuleset($elem['amc_character']);
|
||||
}
|
||||
}
|
||||
|
||||
$_DATA->freeData($elem['amc_character']);
|
||||
|
||||
$DBc->sendSQL("UPDATE ach_monitor_character SET amc_last_import='".time()."', amc_working='0' WHERE amc_character='".$elem['amc_character']."' AND amc_working='".$RID."'","NONE");
|
||||
|
||||
#STEP 2: detect obj/perk progression
|
||||
//obj
|
||||
$res = $DBc->sendSQL("SELECT ao_id FROM ach_objective WHERE ao_condition='all' AND NOT EXISTS (SELECT * FROM ach_atom WHERE atom_objective=ao_id AND NOT EXISTS (SELECT * FROM ach_player_atom WHERE apa_atom=atom_id AND apa_state!='GRANT' AND apa_player='".$elem['amc_character']."'))","ARRAY");
|
||||
$sz = sizeof($res);
|
||||
for($i=0;$i<$sz;$i++) {
|
||||
$DBc->sendSQL("INSERT INTO ach_player_objective (apo_objective,apo_player,apo_date) VALUES ('".$res[$i]['ao_id']."','".$elem['amc_character']."','".time()."')","NONE");
|
||||
}
|
||||
|
||||
$res = $DBc->sendSQL("SELECT ao_id FROM ach_objective WHERE ao_condition='value' AND ao_value<=(SELECT count(*) FROM ach_atom WHERE atom_objective=ao_id AND EXISTS (SELECT * FROM ach_player_atom WHERE apa_atom=atom_id AND apa_state='GRANT' AND apa_player='".$elem['amc_character']."'))","ARRAY");
|
||||
$sz = sizeof($res);
|
||||
for($i=0;$i<$sz;$i++) {
|
||||
$DBc->sendSQL("INSERT INTO ach_player_objective (apo_objective,apo_player,apo_date) VALUES ('".$res[$i]['ao_id']."','".$elem['amc_character']."','".time()."')","NONE");
|
||||
}
|
||||
|
||||
$res = $DBc->sendSQL("SELECT ao_id FROM ach_objective WHERE ao_condition='any' AND EXISTS (SELECT * FROM ach_atom WHERE atom_objective=ao_id AND EXISTS (SELECT * FROM ach_player_atom WHERE apa_atom=atom_id AND apa_state='GRANT' AND apa_player='".$elem['amc_character']."'))","ARRAY");
|
||||
$sz = sizeof($res);
|
||||
for($i=0;$i<$sz;$i++) {
|
||||
$DBc->sendSQL("INSERT INTO ach_player_objective (apo_objective,apo_player,apo_date) VALUES ('".$res[$i]['ao_id']."','".$elem['amc_character']."','".time()."')","NONE");
|
||||
}
|
||||
|
||||
//perk
|
||||
$res = $DBc->sendSQL("SELECT ap_id FROM ach_perk WHERE ap_condition='all' AND NOT EXISTS (SELECT * FROM ach_objective WHERE ao_perk=ap_id AND NOT EXISTS (SELECT * FROM ach_player_objective WHERE apo_objective=ao_id AND apo_state!='GRANT' AND apo_player='".$elem['amc_character']."'))","ARRAY");
|
||||
$sz = sizeof($res);
|
||||
for($i=0;$i<$sz;$i++) {
|
||||
$DBc->sendSQL("INSERT INTO ach_player_perk (app_objective,app_player,app_date) VALUES ('".$res[$i]['ap_id']."','".$elem['amc_character']."','".time()."')","NONE");
|
||||
}
|
||||
|
||||
$res = $DBc->sendSQL("SELECT ap_id FROM ach_perk WHERE ap_condition='value' AND ap_value<=(SELECT count(*) FROM ach_objective WHERE ao_perk=ap_id AND EXISTS (SELECT * FROM ach_player_objective WHERE apo_objective=ao_id AND apo_state='GRANT' AND apo_player='".$elem['amc_character']."'))","ARRAY");
|
||||
$sz = sizeof($res);
|
||||
for($i=0;$i<$sz;$i++) {
|
||||
$DBc->sendSQL("INSERT INTO ach_player_perk (app_objective,app_player,app_date) VALUES ('".$res[$i]['ap_id']."','".$elem['amc_character']."','".time()."')","NONE");
|
||||
}
|
||||
|
||||
$res = $DBc->sendSQL("SELECT ap_id FROM ach_perk WHERE ap_condition='any' AND EXISTS (SELECT * FROM ach_objective WHERE ao_perk=ap_id AND EXISTS (SELECT * FROM ach_player_objective WHERE apo_objective=ao_id AND apo_state='GRANT' AND apo_player='".$elem['amc_character']."'))","ARRAY");
|
||||
$sz = sizeof($res);
|
||||
for($i=0;$i<$sz;$i++) {
|
||||
$DBc->sendSQL("INSERT INTO ach_player_perk (app_objective,app_player,app_date) VALUES ('".$res[$i]['ap_id']."','".$elem['amc_character']."','".time()."')","NONE");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($CONF['sleep_time'] != false) {
|
||||
sleep($CONF['sleep_time']);
|
||||
}
|
||||
|
||||
//self call if cron mode is on
|
||||
if($MODE == "CRON" && $CONF['enable_selfcall'] == true) {
|
||||
$DBc->sendSQL("UPDATE ach_monitor_state SET ams_end='".time()."' WHERE ams_id='".$RID."'","NONE");
|
||||
|
||||
$fp = fsockopen($CONF['self_host'], 80, $errno, $errstr, 30);
|
||||
if(!$fp) {
|
||||
logf("ERROR: self call; socket: ".$errstr." (."$errno.")");
|
||||
}
|
||||
else {
|
||||
$out = "GET ".$CONF['self_path']." HTTP/1.1\r\n";
|
||||
$out .= "Host: ".$CONF['self_host']."\r\n";
|
||||
$out .= "Connection: Close\r\n\r\n";
|
||||
|
||||
fwrite($fp, $out);
|
||||
fclose($fp);
|
||||
}
|
||||
}
|
||||
|
||||
if($logfile) {
|
||||
$logfile->write();
|
||||
}
|
||||
|
||||
exit(0);
|
||||
?>
|
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
class Callback {
|
||||
private $who;
|
||||
private $func;
|
||||
|
||||
function Callback($who,$func) {
|
||||
$this->who = $who;
|
||||
$this->func = $func;
|
||||
}
|
||||
|
||||
function call($what) {
|
||||
eval(''.$this->func.'($what,$this->who,$this);');
|
||||
}
|
||||
}
|
||||
?>
|
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
class DataDispatcher {
|
||||
private $value;
|
||||
private $entity;
|
||||
private $event;
|
||||
|
||||
function DataDispatcher() {
|
||||
$this->value = array();
|
||||
$this->entity = array();
|
||||
$this->event = array();
|
||||
}
|
||||
|
||||
function registerValue($name,$callback) {
|
||||
if(!is_array($this->value[$name])) {
|
||||
$this->value[$name] = array();
|
||||
}
|
||||
$this->value[$name][] = $callback;
|
||||
}
|
||||
|
||||
function registerEntity($name,$callback) {
|
||||
if(!is_array($this->entity[$name])) {
|
||||
$this->entity[$name] = array();
|
||||
}
|
||||
$this->entity[$name][] = $callback;
|
||||
}
|
||||
|
||||
function registerEvent($name,$callback) {
|
||||
if(!is_array($this->event[$name])) {
|
||||
$this->event[$name] = array();
|
||||
}
|
||||
$this->event[$name][] = $callback;
|
||||
}
|
||||
|
||||
function unregisterValue($name,$callback) {
|
||||
$res = array_search($callback,$this->value[$name],true);
|
||||
if($res !== false) {
|
||||
unset($this->value[$name][$res]);
|
||||
}
|
||||
}
|
||||
|
||||
function unregisterEntity($name,$callback) {
|
||||
$res = array_search($callback,$this->entity[$name],true);
|
||||
if($res !== false) {
|
||||
unset($this->entity[$name][$res]);
|
||||
}
|
||||
}
|
||||
|
||||
function unregisterEvent($name,$callback) {
|
||||
$res = array_search($callback,$this->event[$name],true);
|
||||
if($res !== false) {
|
||||
unset($this->event[$name][$res]);
|
||||
}
|
||||
}
|
||||
|
||||
function dispatchValue($key,$val) {
|
||||
echo "dispatching: $key=>$val<br>";
|
||||
if(is_array($this->value[$key])) {
|
||||
foreach($this->value[$key] as $callback) {
|
||||
$callback->call($val);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function dispatchEntity($key,$val) {
|
||||
if(is_array($this->entity[$key])) {
|
||||
foreach($this->entity[$key] as $callback) {
|
||||
$callback->call($val);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function dispatchEvent($key,$val) {
|
||||
if(is_array($this->event[$key])) {
|
||||
foreach($this->event[$key] as $callback) {
|
||||
$callback->call($val);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
@ -1,71 +1,20 @@
|
||||
<?php
|
||||
class DataSourceHandler {
|
||||
private $source;
|
||||
private $alloc;
|
||||
|
||||
function DataSourceHandler() {
|
||||
$this->source = array();
|
||||
$this->alloc = array();
|
||||
}
|
||||
|
||||
function registerDataSource($src) {
|
||||
$i = sizeof($this->source);
|
||||
$this->source[$i] = $src;
|
||||
foreach($src->getTypes() as $elem) {
|
||||
//add to list
|
||||
$this->alloc[$elem] = $i;
|
||||
}
|
||||
function addSource($src) {
|
||||
$this->source[] = $src;
|
||||
}
|
||||
|
||||
function freeData($ident) {
|
||||
foreach($source as $elem) {
|
||||
$elem->freeData($ident);
|
||||
}
|
||||
}
|
||||
|
||||
function getData($ident,$query) { // SELECT ? FROM c_items WHERE q>='300'
|
||||
$matches = array();
|
||||
preg_match("#SELECT (\?|\*) FROM ([^ ]+) WHERE ([.]*)#", $query, $matches);
|
||||
|
||||
$mode = $matches[1];
|
||||
$type = $matches[2];
|
||||
$cond = $matches[3];
|
||||
|
||||
$tmp = $this->getDataSource($type);
|
||||
if($tmp == false) { // no datasource available for this ident
|
||||
return false;
|
||||
function drive($cid) {
|
||||
foreach($this->source as $elem) {
|
||||
$elem->drive($cid);
|
||||
}
|
||||
|
||||
return $tmp->getData($ident,$type,$mode,$cond);
|
||||
}
|
||||
|
||||
function writeData($ident,$query) { // INSERT INTO c_cache () VALUES ()
|
||||
$matches = array();
|
||||
preg_match("#INSERT INTO ([^ ]+) \(([^\)]*)\) VALUES \(([^\)]*)\)#", $query, $matches);
|
||||
|
||||
$type = $matches[1];
|
||||
$keys = $matches[2];
|
||||
$data = $matches[3];
|
||||
|
||||
$tmp = $this->getDataSource($type);
|
||||
if($tmp == false) { // no datasource available for this ident
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!$tmp->isWriteable()) { // can't write here
|
||||
return false;
|
||||
}
|
||||
|
||||
return $tmp->writeData($ident,$type,$keys,$data);
|
||||
}
|
||||
|
||||
|
||||
private function getDataSource(&$ident) {
|
||||
if(!$this->alloc[$ident]) {
|
||||
return false; //unknown type
|
||||
}
|
||||
|
||||
return $this->source[$this->alloc[$ident]];
|
||||
}
|
||||
}
|
||||
?>
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
abstract class SourceDriver {
|
||||
abstract function drive($cid);
|
||||
}
|
||||
?>
|
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
class ValueCache {
|
||||
private $char;
|
||||
|
||||
function ValueCache() {
|
||||
$this->char = false;
|
||||
}
|
||||
|
||||
function setChar($c) {
|
||||
$this->char = $c;
|
||||
}
|
||||
|
||||
function writeData($key,$val) {
|
||||
global $DBc;
|
||||
|
||||
$DBc->sendSQL("INSERT INTO ach_player_valuecache (apv_name,apv_player,apv_value,apv_date) VALUES ('".$this->user."','".$DBc->mre($key)."','".$DBc->mre($val)."','".time()."') ON DUPLICATE KEY UPDATE apv_value='".$DBc->mre($val)."', apv_date='".time()."'","NONE");
|
||||
}
|
||||
|
||||
function getData($key) {
|
||||
global $DBc;
|
||||
|
||||
$res = $DBc->sendSQL("SELECT apv_value as value, apv_date as date FROM ach_player_valuecache WHERE apv_name='".$DBc->mre($key)."' AND apv_player='".$this->char."'","ARRAY");
|
||||
|
||||
return $res[0];
|
||||
}
|
||||
}
|
||||
?>
|
@ -0,0 +1,99 @@
|
||||
<?php
|
||||
class PDRtoXMLdriver extends SourceDriver {
|
||||
private $conf;
|
||||
private $ignore;
|
||||
private $ignore_block;
|
||||
private $lock;
|
||||
|
||||
function PDRtoXMLdriver() {
|
||||
require_once("conf.php");
|
||||
|
||||
$this->conf = $_CONF;
|
||||
|
||||
|
||||
$this->lock = 0;
|
||||
|
||||
$this->ignore = array();
|
||||
$this->ignore[] = "XML";
|
||||
$this->ignore[] = "ENTITYBASE";
|
||||
$this->ignore[] = "NORMALPOSITIONS";
|
||||
$this->ignore[] = "_VEC";
|
||||
$this->ignore[] = "SESSIONID";
|
||||
$this->ignore[] = "POSSTATE";
|
||||
$this->ignore[] = "_PLAYERROOM";
|
||||
$this->ignore[] = "_INVENTORYID";
|
||||
$this->ignore[] = "_PHYSCHARACS";
|
||||
$this->ignore[] = "_PHYSSCORES";
|
||||
$this->ignore[] = "_SKILLS";
|
||||
$this->ignore[] = "_FAMES";
|
||||
|
||||
$this->ignore_block = array();
|
||||
$this->ignore_block[] = "_MEMORIZEDPHRASES";
|
||||
$this->ignore_block[] = "_FORBIDPOWERDATES";
|
||||
$this->ignore_block[] = "_INEFFECTIVEAURAS";
|
||||
$this->ignore_block[] = "_CONSUMABLEOVERDOSEENDDATES";
|
||||
$this->ignore_block[] = "_MODIFIERSINDB";
|
||||
$this->ignore_block[] = "_MISSIONS";
|
||||
$this->ignore_block[] = "_ITEMSINSHOPSTORE";
|
||||
$this->ignore_block[] = "RINGREWARDPOINTS";
|
||||
$this->ignore_block[] = "_PACT";
|
||||
$this->ignore_block[] = "_KNOWNPHRASES";
|
||||
$this->ignore_block[] = "STARTINGCHARACTERISTICVALUES";
|
||||
$this->ignore_block[] = "_ENCYCLOCHAR";
|
||||
$this->ignore_block[] = "_GAMEEVENT";
|
||||
$this->ignore_block[] = "_ENTITYPOSITION";
|
||||
}
|
||||
|
||||
function drive($cid) {
|
||||
global $CONF;
|
||||
|
||||
echo "kk";
|
||||
|
||||
#$uid = floor($cid/16);
|
||||
#$slot = ($cid%16);
|
||||
|
||||
#$file = $this->conf['xml_dir']."account_".$uid."_".$slot."_pdr.xml";
|
||||
$file = $_REQUEST['file'];
|
||||
|
||||
$xml_parser = xml_parser_create();
|
||||
xml_set_object($xml_parser,$this);
|
||||
xml_set_element_handler($xml_parser, "startElement", "endElement");
|
||||
|
||||
if(!xml_parse($xml_parser, file_get_contents($file))) {
|
||||
#error
|
||||
echo "error";
|
||||
}
|
||||
xml_parser_free($xml_parser);
|
||||
}
|
||||
|
||||
function startElement($parser, $name, $attrs) {
|
||||
global $_DISPATCHER;
|
||||
|
||||
if($this->lock == 1) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if(in_array($name,$this->ignore)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if(in_array($name,$this->ignore_block)) {
|
||||
$this->lock = 1;
|
||||
return null;
|
||||
}
|
||||
|
||||
if($attrs["VALUE"] != "") {
|
||||
echo "dispatching";
|
||||
$_DISPATCHER->dispatchValue(strtolower($name),$attrs["VALUE"]);
|
||||
}
|
||||
}
|
||||
|
||||
function endElement($parser, $name) {
|
||||
if(in_array($name,$this->ignore_block)) {
|
||||
$this->lock = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
?>
|
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
$_CONF = array();
|
||||
|
||||
$_CONF['xml_dir'] = ".";
|
||||
|
||||
?>
|
@ -0,0 +1,856 @@
|
||||
<?php
|
||||
function adm_render_menu(&$menu,$sub = 0) {
|
||||
$html = "<style>
|
||||
.ach_menu {
|
||||
display:block;
|
||||
padding:2px;
|
||||
border:1px solid #000000;
|
||||
margin-bottom:2px;
|
||||
color:#FFFFFF;
|
||||
}
|
||||
.ach_menu:hover {
|
||||
color:orange;
|
||||
}
|
||||
|
||||
.ach_mspan a {
|
||||
text-decoration:none;
|
||||
}
|
||||
</style>";
|
||||
|
||||
return $html.adm_render_mnode($menu,$sub);
|
||||
}
|
||||
|
||||
function adm_render_mnode(&$menu,$sub) {
|
||||
global $_CONF;
|
||||
|
||||
$iter = $menu->getIterator();
|
||||
while($iter->hasNext()) {
|
||||
$curr = $iter->getNext();
|
||||
#$sz = $menu->getSize();
|
||||
#for($i=0;$i<$sz;$i++) {
|
||||
# $curr = $menu->getChild($i);
|
||||
if($curr->inDev()) {
|
||||
#continue;
|
||||
}
|
||||
$html .= "<span class='ach_mspan'><a href='?mode=ach&cat=".$curr->getID()."'><table class='ach_menu'>
|
||||
<tr>";
|
||||
if($sub == 0) {
|
||||
$html .= "<td><img src='".$_CONF['image_url']."pic/menu/".$curr->getImage()."' /></td>";
|
||||
}
|
||||
$html .= "<td style='font-size:".(20-$sub)."px;font-weight:bold;";
|
||||
if($curr->isOpen()) {
|
||||
$html .= "color:orange;";
|
||||
}
|
||||
$html .= "'>".$curr->getName()."</td>
|
||||
</tr>
|
||||
</table></a></span>";
|
||||
if($curr->hasOpenCat() != 0) {
|
||||
$html .= "<div style='display:block;margin-left:25px;'>".adm_render_mnode($curr,($sub+4))."</div>";
|
||||
}
|
||||
}
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function adm_render_category(&$cat) {
|
||||
$html = "";
|
||||
|
||||
if($_REQUEST['confirm'] == "delete") {
|
||||
$tmp = $cat->getElementByPath($_REQUEST['id']);
|
||||
if($tmp != null) {
|
||||
$html .= "<div style='display:block;background-color:#FFFFFF;padding:3px;margin-bottom:5px;color:#000000;'>
|
||||
<fieldset>
|
||||
<legend>Delete</legend>
|
||||
Are you sure you want to delete <b>".$tmp->getName()."</b><p>
|
||||
<b>Any nested Perks/Objective/Atoms will be removed, as well as any player progress connected!</b>
|
||||
<p>
|
||||
<a href='?mode=ach&cat=".$_REQUEST['cat']."&act=delete&id=".$_REQUEST['id']."'><b>delete</b></a>
|
||||
</fieldset>
|
||||
</div>";
|
||||
}
|
||||
}
|
||||
|
||||
$html .= "<div style='display:block;background-color:#FFFFFF;padding:3px;margin-bottom:5px;color:#000000;'>
|
||||
<div style='display:block;text-align:right;'>
|
||||
<a href='javascript:hs(\"new_ach\",\"block\");'>
|
||||
<img src='pic/b_insrow.png'>
|
||||
</a>
|
||||
</div>
|
||||
<div id='new_ach' style='display: none;'>
|
||||
<form method='post' action='?mode=ach&cat=".$_REQUEST['cat']."&act=ach_insert'>
|
||||
<fieldset>
|
||||
<legend>add new achievement</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>name:</td>
|
||||
<td><input type='text' name='aal_name' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>naming template:</td>
|
||||
<td><input type='text' name='aal_template' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>cult:</td>
|
||||
<td>
|
||||
<select name='aa_tie_cult'>
|
||||
<option value='null' selected='selected'>any</option>
|
||||
<option value='c_neutral'>neutral</option>
|
||||
<option value='c_kami'>Kami</option>
|
||||
<option value='c_karavan'>Karavan</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>civilization:</td>
|
||||
<td>
|
||||
<select name='aa_tie_civ'>
|
||||
<option value='null' selected='selected'>any</option>
|
||||
<option value='c_neutral'>neutral</option>
|
||||
<option value='c_fyros'>Fyros</option>
|
||||
<option value='c_matis'>Matis</option>
|
||||
<option value='c_tryker'>Tryker</option>
|
||||
<option value='c_zorai'>Zorai</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>image:</td>
|
||||
<td><input type='text' name='aa_image' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><hr /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>perk name:</td>
|
||||
<td><input type='text' name='apl_name' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>naming template:</td>
|
||||
<td><input type='text' name='apl_template' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>perk yubopoints:</td>
|
||||
<td><input type='text' name='ap_value' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>condition:</td>
|
||||
<td>
|
||||
<select name='ap_condition'>
|
||||
<option value='all' selected='selected'>all</option>
|
||||
<option value='any'>any</option>
|
||||
<option value='value'>by value</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>condition value:</td>
|
||||
<td><input type='text' name='ap_condition_value' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><input type='submit' value='create' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>";
|
||||
|
||||
if($cat->isTiedCultDev() || $cat->isTiedCivDev()) {
|
||||
$html .= ach_render_tiebar($cat->getCurrentCult(),$cat->getCurrentCiv(),$cat);
|
||||
}
|
||||
|
||||
/*$iter = $cat->getDone();
|
||||
while($iter->hasNext()) {
|
||||
$curr = $cat->getChildByIdx($iter->getNext());
|
||||
#$sz = sizeof($tmp);
|
||||
#for($i=0;$i<$sz;$i++) {
|
||||
#echo "A";
|
||||
if($curr->inDev()) {
|
||||
continue;
|
||||
}
|
||||
$html .= ach_render_achievement_done($curr);
|
||||
}*/
|
||||
|
||||
$iter = $cat->getOpen();
|
||||
while($iter->hasNext()) {
|
||||
$curr = $iter->getNext();
|
||||
#$sz = sizeof($tmp);
|
||||
#for($i=0;$i<$sz;$i++) {
|
||||
#echo "B";
|
||||
if($curr->inDev()) {
|
||||
#continue;
|
||||
}
|
||||
$html .= ach_render_achievement_open($curr);
|
||||
}
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_achievement_done(&$ach) {
|
||||
global $_CONF;
|
||||
|
||||
$html = '<div style="display: block; margin-bottom: 5px;"><table cellpadding="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="3px"><img src="'.$_CONF['image_url'].'pic/bar_done_ul.png"></td>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_done_u.png);"></td>
|
||||
<td width="3px"><img src="'.$_CONF['image_url'].'pic/bar_done_ur.png"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_done_l.png);"></td>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_done_bg.png);">
|
||||
<center><table width="100%" cellspacing="0" cellpadding="0">
|
||||
<tbody><tr>
|
||||
<td rowspan="2" valign="top"><img src="'.$_CONF['image_url'].'pic/icon/'.$ach->getImage().'"></td>
|
||||
<td width="100%"><center><span style="font-weight:bold;font-size:24px;color:#000000;">'.$ach->getName().'</span></center></td>
|
||||
<td rowspan="2" valign="top" style="font-weight: bold; text-align: center; font-size: 30px;color:#000000;padding-right:10px;">
|
||||
'.$ach->getValueDone().'<br><img src="'.$_CONF['image_url'].'pic/yubo_done.png">
|
||||
</td>
|
||||
</tr><tr><td align="center" valign="top">';
|
||||
$html .= ach_render_perk_done($ach);
|
||||
$html .= '</td></tr></tbody></table></center>
|
||||
</td>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_done_r.png);"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="'.$_CONF['image_url'].'pic/bar_done_bl.png"></td>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_done_b.png);"></td>
|
||||
<td><img src="'.$_CONF['image_url'].'pic/bar_done_br.png"></td>
|
||||
</tr>
|
||||
</tbody></table></div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_achievement_open(&$ach) {
|
||||
global $_CONF,$menu;
|
||||
|
||||
$html = '<div style="display: block; margin-bottom: 5px;"><table cellpadding="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="3px"><img src="'.$_CONF['image_url'].'pic/bar_pending_ul.png"></td>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_pending_u.png);"></td>
|
||||
<td width="3px"><img src="'.$_CONF['image_url'].'pic/bar_pending_ur.png"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_pending_l.png);"></td>
|
||||
<td>
|
||||
<center><table width="100%" cellspacing="0" cellpadding="0">
|
||||
<tbody><tr>
|
||||
<td rowspan="2" valign="top"><img src="'.$_CONF['image_url'].'pic/icon/grey/'.$ach->getImage().'"></td>
|
||||
<td width="100%"><center><table><tr><td><span style="font-weight:bold;font-size:24px;color:#FFFFFF;">[ach:]'.$ach->getName().'</span></td>';
|
||||
|
||||
$html .= "<td style='background-color:#FFFFFF;padding:3px;'><nobr><a href='?mode=ach&cat=".$_REQUEST['cat']."&act=dev&state=".$ach->getDev()."&id=".$ach->getPathID()."'><img src='pic/";
|
||||
if($ach->inDev()) {
|
||||
$html .= "red";
|
||||
}
|
||||
else {
|
||||
$html .= "green";
|
||||
}
|
||||
$html .= ".gif' /></a> <a href='javascript:hs(\"edit_ach_".$ach->getID()."\",\"block\");'><img src='pic/icon_edit.gif'></a>";
|
||||
|
||||
$html .= " <a href='javascript:hs(\"new_perk_".$ach->getID()."\",\"block\");'><img src='pic/b_insrow.png'></a>";
|
||||
|
||||
$html .= " <a href='javascript:hs(\"opts_ach_".$ach->getID()."\",\"block\");'><img src='pic/b_tblops.png'></a>";
|
||||
|
||||
$html .= " <a href='?mode=ach&cat=".$_REQUEST['cat']."&confirm=delete&id=".$ach->getPathID()."'><img src='pic/b_drop.png'></a></nobr></td>
|
||||
</td></tr></table>";
|
||||
|
||||
$html .= '</center></td><td rowspan="2" valign="top" style="font-weight: bold; text-align: center; font-size: 30px;color:#FFFFFF;padding-right:10px;"><!--
|
||||
'.$ach->getValueOpen().'<br> --><img src="'.$_CONF['image_url'].'pic/yubo_pending.png">
|
||||
</td>
|
||||
</tr><tr><td align="center" valign="top">';
|
||||
|
||||
$html .= "<div id='edit_ach_".$ach->getID()."' style='margin-bottom:3px;margin-top:3px;display:none;color:#000000;background-color:#FFFFFF;'>
|
||||
<form method='post' action='?mode=ach&cat=".$_REQUEST['cat']."&id=".$ach->getID()."&act=ach_update'>
|
||||
<fieldset>
|
||||
<legend>edit achievement</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>name:</td>
|
||||
<td><input type='text' name='aal_name' value=\"".$ach->getName()."\" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>naming template:</td>
|
||||
<td><input type='text' name='aal_template' value=\"".$ach->getTemplate()."\" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>cult:</td>
|
||||
<td>
|
||||
<select name='aa_tie_cult'>
|
||||
<option value='null'"; if($ach->getTieCult() == null) { $html .= " selected='selected'"; } $html .= ">any</option>
|
||||
<option value='c_neutral'"; if($ach->getTieCult() == "c_neutral") { $html .= " selected='selected'"; } $html .= ">neutral</option>
|
||||
<option value='c_kami'"; if($ach->getTieCult() == "c_kami") { $html .= " selected='selected'"; } $html .= ">Kami</option>
|
||||
<option value='c_karavan'"; if($ach->getTieCult() == "c_karavan") { $html .= " selected='selected'"; } $html .= ">Karavan</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>civilization:</td>
|
||||
<td>
|
||||
<select name='aa_tie_civ'>
|
||||
<option value='null'"; if($ach->getTieCiv() == null) { $html .= " selected='selected'"; } $html .= ">any</option>
|
||||
<option value='c_neutral'"; if($ach->getTieCiv() == "c_neutral") { $html .= " selected='selected'"; } $html .= ">neutral</option>
|
||||
<option value='c_fyros'"; if($ach->getTieCiv() == "c_fyros") { $html .= " selected='selected'"; } $html .= ">Fyros</option>
|
||||
<option value='c_matis'"; if($ach->getTieCiv() == "c_matis") { $html .= " selected='selected'"; } $html .= ">Matis</option>
|
||||
<option value='c_tryker'"; if($ach->getTieCiv() == "c_tryker") { $html .= " selected='selected'"; } $html .= ">Tryker</option>
|
||||
<option value='c_zorai'"; if($ach->getTieCiv() == "c_zorai") { $html .= " selected='selected'"; } $html .= ">Zorai</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>image:</td>
|
||||
<td><input type='text' name='aa_image' value='".$ach->getImage()."' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><input type='submit' value='save' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>";
|
||||
|
||||
$html .= "<div id='new_perk_".$ach->getID()."' style='margin-bottom:3px;margin-top:3px;display:none;color:#000000;background-color:#FFFFFF;'>
|
||||
<form method='post' action='?mode=ach&cat=".$_REQUEST['cat']."&id=".$ach->getID()."&act=perk_insert'>
|
||||
<fieldset>
|
||||
<legend>add new perk</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>name:</td>
|
||||
<td><input type='text' name='apl_name' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>naming template:</td>
|
||||
<td><input type='text' name='apl_template' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>yubopoints:</td>
|
||||
<td><input type='text' name='ap_value' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>parent:</td>
|
||||
<td>
|
||||
<select name='ap_parent'>
|
||||
<option value='null' selected='selected'>[set as main perk]</option>";
|
||||
$iter = $ach->getOpen();
|
||||
while($iter->hasNext()) {
|
||||
$curr = $iter->getNext();
|
||||
$html .= "<option value='".$curr->getID()."'>".$curr->getName()."</option>";
|
||||
}
|
||||
|
||||
$html .= "</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>condition:</td>
|
||||
<td>
|
||||
<select name='ap_condition'>
|
||||
<option value='all' selected='selected'>all</option>
|
||||
<option value='any'>any</option>
|
||||
<option value='value'>by value</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>condition value:</td>
|
||||
<td><input type='text' name='ap_condition_value' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><input type='submit' value='add' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>";
|
||||
|
||||
$html .= "<div id='opts_ach_".$ach->getID()."' style='margin-bottom:3px;margin-top:3px;display:none;color:#000000;background-color:#FFFFFF;'>
|
||||
<form method='post' action='?mode=ach&cat=".$_REQUEST['cat']."&id=".$ach->getID()."&act=ach_move'>
|
||||
<fieldset>
|
||||
<legend>move achievement</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>new category:</td>
|
||||
<td>
|
||||
<select name='new_cat'>";
|
||||
$iter = $menu->getIterator();
|
||||
while($iter->hasNext()) {
|
||||
$curr = $iter->getNext();
|
||||
$html .= "<option value='".$curr->getID()."'>".$curr->getName()."</option>";
|
||||
|
||||
$iter2 = $curr->getIterator();
|
||||
while($iter2->hasNext()) {
|
||||
$curr2 = $iter2->getNext();
|
||||
$html .= "<option value='".$curr2->getID()."'> ".$curr2->getName()."</option>";
|
||||
}
|
||||
}
|
||||
|
||||
$html .= "</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><input type='submit' value='move' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>";
|
||||
|
||||
$html .= ach_render_perk_open($ach);
|
||||
$html .= '</td></tr></tbody></table></center>
|
||||
</td>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_pending_r.png);"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="'.$_CONF['image_url'].'pic/bar_pending_bl.png"></td>
|
||||
<td style="background-image: url('.$_CONF['image_url'].'pic/bar_pending_b.png);"></td>
|
||||
<td><img src="'.$_CONF['image_url'].'pic/bar_pending_br.png"></td>
|
||||
</tr>
|
||||
</tbody></table></div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_perk_open(&$ach) {
|
||||
#echo var_export($perk_list,true);
|
||||
$html = "";
|
||||
|
||||
$perk_list = $ach->getOpen();
|
||||
while($perk_list->hasNext()) {
|
||||
|
||||
$perk = $perk_list->getNext();
|
||||
|
||||
#$perk = $ach->getChild($perk_list[0]);
|
||||
|
||||
if($perk->inDev()) {
|
||||
#return $html;
|
||||
}
|
||||
|
||||
#if($perk->getName() != null) {
|
||||
$html .= "<table><tr><td><span style='color:#999999;font-weight:bold;display:block;'>[perk:]".$perk->getDisplayName()."</span></td>";
|
||||
|
||||
$html .= "<td style='background-color:#FFFFFF;padding:3px;'><nobr><a href='?mode=ach&cat=".$_REQUEST['cat']."&act=dev&state=".$perk->getDev()."&id=".$perk->getPathID()."'><img src='pic/";
|
||||
if($perk->inDev()) {
|
||||
$html .= "red";
|
||||
}
|
||||
else {
|
||||
$html .= "green";
|
||||
}
|
||||
$html .= ".gif' /></a> <a href='javascript:hs(\"edit_perk_".$perk->getID()."\",\"block\");'><img src='pic/icon_edit.gif'></a>";
|
||||
|
||||
$html .= " <a href='javascript:hs(\"new_obj_".$perk->getID()."\",\"block\");'><img src='pic/b_insrow.png'></a>";
|
||||
|
||||
$html .= " <a href='?mode=ach&cat=".$_REQUEST['cat']."&confirm=delete&id=".$perk->getPathID()."'><img src='pic/b_drop.png'></a></nobr></td>
|
||||
</td></tr></table>";
|
||||
|
||||
$html .= "<div id='edit_perk_".$perk->getID()."' style='margin-bottom:3px;margin-top:3px;display:none;color:#000000;background-color:#FFFFFF;'>
|
||||
<form method='post' action='?mode=ach&cat=".$_REQUEST['cat']."&id=".$perk->getPathID()."&act=perk_update'>
|
||||
<fieldset>
|
||||
<legend>edit perk</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>name:</td>
|
||||
<td><input type='text' name='apl_name' value='".$perk->getName()."' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>naming template:</td>
|
||||
<td><input type='text' name='apl_template' value=\"".$perk->getTemplate()."\" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>yubopoints:</td>
|
||||
<td><input type='text' name='ap_value' value='".$perk->getValue()."' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>parent:</td>
|
||||
<td>
|
||||
<select name='ap_parent'>
|
||||
<option value='null' selected='selected'>[set as main perk]</option>";
|
||||
$par = $perk->getParent();
|
||||
$iter = $par->getOpen();
|
||||
while($iter->hasNext()) {
|
||||
$curr = $iter->getNext();
|
||||
if($curr->getID() == $perk->getID()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$html .= "<option value='".$curr->getID()."'";
|
||||
if($curr->getID() == $perk->getParentID()) {
|
||||
$html .= " selected='selected'";
|
||||
}
|
||||
$html .= ">".$curr->getName()."</option>";
|
||||
}
|
||||
|
||||
$html .= "</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>condition:</td>
|
||||
<td>
|
||||
<select name='ap_condition'>
|
||||
<option value='all'"; if($perk->getCondition() == "all") { $html .= " selected='selected'"; } $html .= ">all</option>
|
||||
<option value='any'"; if($perk->getCondition() == "any") { $html .= " selected='selected'"; } $html .= ">any</option>
|
||||
<option value='value'"; if($perk->getCondition() == "value") { $html .= " selected='selected'"; } $html .= ">by value</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>condition value:</td>
|
||||
<td><input type='text' name='ap_condition_value' value='".$perk->getConditionValue()."' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><input type='submit' value='save' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>";
|
||||
|
||||
$html .= "<div id='new_obj_".$perk->getID()."' style='margin-bottom:3px;margin-top:3px;display:none;color:#000000;background-color:#FFFFFF;'>
|
||||
<form method='post' action='?mode=ach&cat=".$_REQUEST['cat']."&id=".$perk->getPathID()."&act=obj_insert'>
|
||||
<fieldset>
|
||||
<legend>add new objective</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>name:</td>
|
||||
<td><input type='text' name='aol_name' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>type:</td>
|
||||
<td>
|
||||
<select name='ao_display'>
|
||||
<option value='simple' selected='selected'>simple</option>
|
||||
<option value='hidden'>hidden</option>
|
||||
<option value='value'>value / progressbar</option>
|
||||
<option value='meta'>meta</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>trigger condition:</td>
|
||||
<td>
|
||||
<select name='ao_condition'>
|
||||
<option value='simple' selected='selected'>require all</option>
|
||||
<option value='hidden'>require any</option>
|
||||
<option value='value'>value / progressbar</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>trigger value:</td>
|
||||
<td><input type='text' name='ao_value' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>metalink:</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><input type='submit' value='add' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>";
|
||||
#}
|
||||
#if($perk->objDrawable()) {
|
||||
$html .= ach_render_obj_list($perk->getIterator());
|
||||
#}
|
||||
}
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_perk_done(&$ach) {
|
||||
global $_CONF;
|
||||
$html = "";
|
||||
|
||||
$perk_list = $ach->getDone();
|
||||
while($perk_list->hasNext()) {
|
||||
$perk = $perk_list->getNext();
|
||||
#foreach($perk_list as $elem) {
|
||||
#$perk = $ach->getChild($elem);
|
||||
if($perk->inDev()) {
|
||||
continue;
|
||||
}
|
||||
$html .= "<div style='display:block;'><span style='color:#66CC00;font-weight:bold;'>".$perk->getName()."</span> ( ".date('d.m.Y',$perk->getDone())." ) <img src='".$_CONF['image_url']."pic/yubo_done.png' width='15px' /> ".$perk->getValue()."</div>";
|
||||
}
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_obj_list($obj) {
|
||||
$html = "<center><table width='90%'>";
|
||||
|
||||
#$i = 0;
|
||||
#$skip = false;
|
||||
|
||||
while($obj->hasNext()) {
|
||||
#foreach($obj as $elem) {
|
||||
$elem = $obj->getNext();
|
||||
#if(($i%2) == 0) {
|
||||
$html .= "<tr><td><table><tr>";
|
||||
#}
|
||||
|
||||
switch($elem->getDisplay()) {
|
||||
case "meta":
|
||||
$html .= "<td>".ach_render_obj_meta($elem)."<td>";
|
||||
break;
|
||||
case "value":
|
||||
#if(($i%2) == 1) {
|
||||
# $html .= "</tr><tr>";
|
||||
#}
|
||||
$html .= "<td>".ach_render_obj_value($elem)."</td>";
|
||||
#$i++;
|
||||
break;
|
||||
case "simple":
|
||||
$html .= "<td>".ach_render_obj_simple($elem)."</td>";
|
||||
break;
|
||||
case "hidden":
|
||||
default:
|
||||
//do nothing
|
||||
#$skip = true;
|
||||
#if(($i%2) == 1) {
|
||||
# $html .= "</tr><tr>";
|
||||
#}
|
||||
$html .= "<td>".ach_render_obj_hidden($elem)."</td>";
|
||||
#$i++;
|
||||
break;
|
||||
}
|
||||
|
||||
$html .= "<td style='background-color:#FFFFFF;padding:3px;'><nobr><a href='javascript:hs(\"edit_obj_".$elem->getID()."\",\"block\");'><img src='pic/icon_edit.gif'></a>";
|
||||
|
||||
#$html .= " <a href='javascript:hs(\"edit_obj_".$elem->getID()."\",\"block\");'><img src='pic/b_insrow.png'></a>";
|
||||
|
||||
$html .= " <a href='?mode=ach&cat=".$_REQUEST['cat']."&confirm=delete&id=".$elem->getPathID()."'><img src='pic/b_drop.png'></a></nobr></td>
|
||||
</td></tr></table>";
|
||||
|
||||
#$perk = $elem->getParent();
|
||||
|
||||
$html .= "<div id='edit_obj_".$elem->getID()."' style='margin-bottom:3px;margin-top:3px;display:none;color:#000000;background-color:#FFFFFF;'>
|
||||
<form method='post' action='?mode=ach&cat=".$_REQUEST['cat']."&id=".$elem->getPathID()."&act=obj_update'>
|
||||
<fieldset>
|
||||
<legend>edit objective</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>name:</td>
|
||||
<td><input type='text' name='aol_name' value='".$elem->getName()."' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>type:</td>
|
||||
<td>
|
||||
<select name='ao_display'>
|
||||
<option value='simple'"; if($elem->getDisplay() == "simple") { $html .= " selected='selected'"; } $html .= ">simple</option>
|
||||
<option value='hidden'"; if($elem->getDisplay() == "hidden") { $html .= " selected='selected'"; } $html .= ">hidden</option>
|
||||
<option value='value'"; if($elem->getDisplay() == "value") { $html .= " selected='selected'"; } $html .= ">value / progressbar</option>
|
||||
<option value='meta'"; if($elem->getDisplay() == "meta") { $html .= " selected='selected'"; } $html .= ">meta</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>trigger condition:</td>
|
||||
<td>
|
||||
<select name='ao_condition'>
|
||||
<option value='simple'"; if($elem->getCondition() == "simple") { $html .= " selected='selected'"; } $html .= ">require all</option>
|
||||
<option value='hidden'"; if($elem->getCondition() == "hidden") { $html .= " selected='selected'"; } $html .= ">require any</option>
|
||||
<option value='value'"; if($elem->getCondition() == "value") { $html .= " selected='selected'"; } $html .= ">value / progressbar</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>trigger value:</td>
|
||||
<td><input type='text' name='ao_value' value='".$elem->getValue()."' /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>metalink:</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'><input type='submit' value='save' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>";
|
||||
|
||||
#if(($i%2) == 1) {
|
||||
$html .= "</td></tr>";
|
||||
#}
|
||||
|
||||
|
||||
#if(!$skip) {
|
||||
# $i++;
|
||||
#}
|
||||
#$skip = false;
|
||||
}
|
||||
|
||||
#if(($i%2) == 1) {
|
||||
# $html .= "</tr>";
|
||||
#}
|
||||
|
||||
$html .= "</table></center>";
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_obj_simple(&$obj) {
|
||||
global $_CONF;
|
||||
$html = "";
|
||||
if($obj->isdone()) {
|
||||
$html .= "<img src='".$_CONF['image_url']."pic/check.png' height='10px' /> <span style='color:#71BE02;'>";
|
||||
}
|
||||
else {
|
||||
$html .= "<img src='".$_CONF['image_url']."pic/pending.png' height='10px' /> <span style='color:#999999;'>";
|
||||
}
|
||||
|
||||
$html .= "[obj:]".$obj->getDisplayName()."</span>";
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_obj_meta(&$obj) {
|
||||
global $_CONF;
|
||||
$html = "";
|
||||
if($obj->isdone()) {
|
||||
$col = "#71BE02";
|
||||
$grey = "";
|
||||
}
|
||||
else {
|
||||
$col = "#999999";
|
||||
$grey = "grey/";
|
||||
}
|
||||
|
||||
return "<table cellspacing='0' cellpadding='0'>
|
||||
<tr>
|
||||
<td><img src='".$_CONF['image_url']."pic/icon/".$grey.$obj->getMetaImage()."' width='20px' /></td>
|
||||
<td valign='middle'><span style='color:".$col.";'> [obj:]".$obj->getDisplayName()."</span></td>
|
||||
</tr>
|
||||
</table>";
|
||||
}
|
||||
|
||||
function ach_render_obj_value(&$obj) {
|
||||
$html = "";
|
||||
#if($obj->getName() != null) {
|
||||
if($obj->isdone()) {
|
||||
$col = "#71BE02";
|
||||
}
|
||||
else {
|
||||
$col = "#999999";
|
||||
}
|
||||
$html .= "<div style='color:".$col.";display:block;'>[obj:]".$obj->getDisplayName()."</div>";
|
||||
#}
|
||||
|
||||
$html .= ach_render_progressbar($obj->getProgress(),$obj->getValue(),350);
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_obj_hidden(&$obj) {
|
||||
$html = "";
|
||||
#if($obj->getName() != null) {
|
||||
if($obj->isdone()) {
|
||||
$col = "#71BE02";
|
||||
}
|
||||
else {
|
||||
$col = "#999999";
|
||||
}
|
||||
$html .= "<div style='color:".$col.";display:block;'>[obj: untitled]</div>";
|
||||
#}
|
||||
|
||||
#$html .= ach_render_progressbar($obj->getProgress(),$obj->getValue(),350);
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
function ach_render_progressbar($prog,$val,$width) {
|
||||
$val = max(1,$val);
|
||||
$left = floor($width*(100*($prog/$val))/100);
|
||||
|
||||
$html = "
|
||||
<table width='".$width."px' cellspacing='0' cellpadding='0' style='border:1px solid #FFFFFF;color:#000000;'>
|
||||
<tr>
|
||||
<td bgcolor='#66CC00' width='".$left."px' align='right'>";
|
||||
if(($prog/$val) > 0.85) {
|
||||
$html .= " ".nf($prog)." / ".nf($val)." ";
|
||||
}
|
||||
$html .= "</td>
|
||||
<td align='left' style='color:#FFFFFF;'>";
|
||||
if(($prog/$val) <= 0.85) {
|
||||
$html .= " ".nf($prog)." / ".nf($val)." ";
|
||||
}
|
||||
$html .= "</td>
|
||||
</tr>
|
||||
</table>";
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
|
||||
function ach_render_tiebar($cult = "c_neutral", $civ = "c_neutral",&$cat) {
|
||||
global $_USER,$_CONF;
|
||||
|
||||
$html = "<style>
|
||||
.o {
|
||||
color:orange;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style='display:block;text-align:center;'><form method='post' action='?cat=".$cat->getID()."' id='cc_form'>
|
||||
<table>
|
||||
<tr>";
|
||||
if($cat->isTiedCult()) {
|
||||
$html.= "<td>
|
||||
<select name='cult' onchange='document.getElementById(\"cc_form\").submit();'>
|
||||
<option value='c_neutral'"; if($cult == "c_neutral") { $html.= " selected='selected'"; } $html .= ">".get_translation('ach_c_neutral',$_USER->getLang())."</option>
|
||||
<option value='c_kami'"; if($cult == "c_kami") { $html.= " selected='selected'"; } $html .= ">Kami</option>
|
||||
<option value='c_karavan'"; if($cult == "c_karavan") { $html.= " selected='selected'"; } $html .= ">Karavan</option>
|
||||
</select>
|
||||
</td>";
|
||||
}
|
||||
if($cat->isTiedCiv()) {
|
||||
$html.= "<td>
|
||||
<select name='civ' onchange='document.getElementById(\"cc_form\").submit();'>
|
||||
<option value='c_neutral'"; if($civ == "c_neutral") { $html.= " selected='selected'"; } $html .= ">".get_translation('ach_c_neutral',$_USER->getLang())."</option>
|
||||
<option value='c_fyros'"; if($civ == "c_fyros") { $html.= " selected='selected'"; } $html .= ">Fyros</option>
|
||||
<option value='c_matis'"; if($civ == "c_matis") { $html.= " selected='selected'"; } $html .= ">Matis</option>
|
||||
<option value='c_tryker'"; if($civ == "c_tryker") { $html.= " selected='selected'"; } $html .= ">Tryker</option>
|
||||
<option value='c_zorai'"; if($civ == "c_zorai") { $html.= " selected='selected'"; } $html .= ">Zorai</option>
|
||||
</select>
|
||||
</td>";
|
||||
}
|
||||
$html.= "</tr>
|
||||
</table>
|
||||
</form></div>
|
||||
|
||||
<div style='display:block;font-weight:bold;font-size:20px;color:#FFFFFF;text-align:center;margin-bottom:5px;'>";
|
||||
|
||||
if($cat->isTiedCult() && !$cat->isTiedCiv() && $cult == "c_neutral") { // neutral / xx
|
||||
#While being of neutral allegiance with the higher powers
|
||||
$html .= get_translation('ach_allegiance_neutral_cult',$_USER->getLang(),array("<span class='o'>".get_translation('ach_c_neutral',$_USER->getLang())."</span>"));
|
||||
}
|
||||
elseif($cat->isTiedCiv() && !$cat->isTiedCult() && $civ == "c_neutral") { // xx / neutral
|
||||
#While being of neutral allegiance with the homin civilizations
|
||||
$html .= get_translation('ach_allegiance_neutral_civ',$_USER->getLang(),array("<span class='o'>".get_translation('ach_c_neutral',$_USER->getLang())."</span>"));
|
||||
}
|
||||
elseif($cat->isTiedCiv() && $cat->isTiedCult() && $cult == "c_neutral" && $civ == "c_neutral") { // neutral / neutral
|
||||
#While being of neutral allegiance
|
||||
$html .= get_translation('ach_allegiance_neutral',$_USER->getLang(),array("<span class='o'>".get_translation('ach_c_neutral',$_USER->getLang())."</span>"));
|
||||
}
|
||||
else { //other
|
||||
#While being aligned with the
|
||||
$html .= get_translation('ach_allegiance_start',$_USER->getLang());
|
||||
if($cat->isTiedCult() && $cult != "c_neutral") {
|
||||
#CULT
|
||||
$html .= "<span class='o'>".ach_translate_cc($cult)."</span>";
|
||||
if($cat->isTiedCiv() && $civ != "c_neutral") {
|
||||
#and the CIV
|
||||
$html .= get_translation('ach_allegiance_and',$_USER->getLang())." <span class='o'>".ach_translate_cc($civ)."</span>";
|
||||
}
|
||||
}
|
||||
elseif($cat->isTiedCiv() && $civ != "c_neutral") {
|
||||
#CIV
|
||||
$html .= "<span class='o'>".ach_translate_cc($civ)."</span>";
|
||||
}
|
||||
}
|
||||
#, accomplish the following achievements:
|
||||
$html .= get_translation('ach_allegiance_end',$_USER->getLang())."</div>";
|
||||
|
||||
return $html;
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue