function awards() { if (isset($this->viewList[$this->view])) { return call_user_func_array($this->viewList[$this->view], array(&$this)); } global $smarty; $awardboxes = array(); // top killers $tklist = new TopList_Kills(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('topkillers'), Language::get('kills'), "kills", "eagle"); $awardboxes[] = $tkbox->generate(); // top scorers if (config::get('kill_points')) { $tklist = new TopList_Score(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('topscorers'), Language::get('top_points'), "points", "redcross"); $awardboxes[] = $tkbox->generate(); } // top solo killers $tklist = new TopList_SoloKiller(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('top_solo'), Language::get('top_solo_desc'), "kills", "cross"); $awardboxes[] = $tkbox->generate(); // top damage dealers $tklist = new TopList_DamageDealer(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('top_damage'), Language::get('top_damage_desc'), "kills", "wing1"); $awardboxes[] = $tkbox->generate(); // top final blows $tklist = new TopList_FinalBlow(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('top_final'), Language::get('top_final_desc'), "kills", "skull"); $awardboxes[] = $tkbox->generate(); // top podkillers $tklist = new TopList_Kills(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->addVictimShipClass(2); // pod $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('top_podkill'), Language::get('top_podkill_desc'), "kills", "globe"); $awardboxes[] = $tkbox->generate(); // top griefers $tklist = new TopList_Kills(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->addVictimShipClass(20); // freighter $tklist->addVictimShipClass(22); // exhumer $tklist->addVictimShipClass(7); // industrial $tklist->addVictimShipClass(12); // barge $tklist->addVictimShipClass(14); // transport $tklist->addVictimShipClass(39); // industrial command $tklist->addVictimShipClass(43); // exploration ship $tklist->addVictimShipClass(29); // capital industrial $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('top_griefer'), Language::get('top_griefer_desc'), "kills", "star"); $awardboxes[] = $tkbox->generate(); // top capital killers $tklist = new TopList_Kills(); $tklist->setMonth($this->month); $tklist->setYear($this->year); involved::load($tklist, 'kill'); $tklist->addVictimShipClass(20); // freighter $tklist->addVictimShipClass(19); // dread $tklist->addVictimShipClass(27); // carrier $tklist->addVictimShipClass(28); // mothership $tklist->addVictimShipClass(26); // titan $tklist->addVictimShipClass(29); // cap. industrial $tklist->generate(); $tkbox = new AwardBox($tklist, Language::get('top_isk_kill'), Language::get('top_isk_kill_desc'), "kills", "wing2"); $awardboxes[] = $tkbox->generate(); $monthname = kbdate("F", strtotime("2000-" . $this->month . "-2")); $smarty->assignByRef('awardboxes', $awardboxes); $smarty->assign('month', $monthname); $smarty->assign('year', $this->year); $smarty->assign('boxcount', count($awardboxes)); $smarty->assign('page_title', Language::get('page_awards_for') . " " . $monthname . " " . $this->year); return $smarty->fetch(get_tpl('awards')); }
/** * Build the killlists that are needed for the options selected. */ function killList() { global $smarty; if (isset($this->viewList[$this->view])) { return call_user_func_array($this->viewList[$this->view], array(&$this)); } $args = array(); if ($this->crp_external_id) { $args[] = array('crp_ext_id', $this->crp_external_id, true); } else { $args[] = array('crp_id', $this->crp_id, true); } $pyear = array('y', $this->pyear, true); $nyear = array('y', $this->nyear, true); $pmonth = array('m', $this->pmonth, true); $nmonth = array('m', $this->nmonth, true); switch ($this->view) { case "": $list = new KillList(); $list->setOrdered(true); $list->setLimit(10); $list->addInvolvedCorp($this->crp_id); if ($this->scl_id) { $list->addVictimShipClass($this->scl_id); } else { $list->setPodsNoobShips(config::get('podnoobs')); } if (config::get('comments_count')) { $list->setCountComments(true); } if (config::get('killlist_involved')) { $list->setCountInvolved(true); } $ktab = new KillListTable($list); $ktab->setLimit(10); $smarty->assign('kills', $ktab->generate()); $list = new KillList(); $list->setOrdered(true); $list->setLimit(10); $list->addVictimCorp($this->crp_id); if ($this->scl_id) { $list->addVictimShipClass($this->scl_id); } else { $list->setPodsNoobShips(config::get('podnoobs')); } if (config::get('comments_count')) { $list->setCountComments(true); } if (config::get('killlist_involved')) { $list->setCountInvolved(true); } $ltab = new KillListTable($list); $ltab->setLimit(10); $smarty->assign('losses', $ltab->generate()); return $smarty->fetch(get_tpl('detail_kl_default')); break; case "kills": $list = new KillList(); $list->setOrdered(true); $list->addInvolvedCorp($this->crp_id); if ($this->scl_id) { $list->addVictimShipClass($this->scl_id); } else { $list->setPodsNoobShips(config::get('podnoobs')); } $list->setPageSplit(config::get('killcount')); $pagesplitter = new PageSplitter($list->getCount(), config::get('killcount')); $table = new KillListTable($list); $smarty->assign('splitter', $pagesplitter->generate()); $smarty->assign('kills', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_kills')); break; case "losses": $list = new KillList(); $list->setOrdered(true); $list->addVictimCorp($this->crp_id); if ($this->scl_id) { $list->addVictimShipClass($this->scl_id); } else { $list->setPodsNoobShips(config::get('podnoobs')); } $list->setPageSplit(config::get('killcount')); $pagesplitter = new PageSplitter($list->getCount(), config::get('killcount')); $table = new KillListTable($list); $smarty->assign('splitter', $pagesplitter->generate()); $smarty->assign('losses', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_losses')); break; case "pilot_kills": $smarty->assign('title', 'Top Killers'); $smarty->assign('month', $this->monthname); $smarty->assign('year', $this->year); $smarty->assign('pmonth', $this->pmonth); $smarty->assign('pyear', $this->pyear); $smarty->assign('nmonth', $this->nmonth); $smarty->assign('nyear', $this->nyear); $smarty->assign('crp_id', $this->crp_id); $smarty->assign('url_previous', edkURI::build($args, array('view', 'pilot_kills', true), $pyear, $pmonth)); $smarty->assign('url_next', edkURI::build($args, array('view', 'pilot_kills', true), $nyear, $nmonth)); $list = new TopList_Kills(); $list->setLimit(30); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $list->setMonth($this->month); $list->setYear($this->year); $table = new TopTable_Pilot($list, "Kills"); $smarty->assign('monthly_stats', $table->generate()); $list = new TopList_Kills(); $list->setLimit(30); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $table = new TopTable_Pilot($list, "Kills"); $smarty->assign('total_stats', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_monthly')); break; case "pilot_scores": $smarty->assign('title', 'Top Scorers'); $smarty->assign('month', $this->monthname); $smarty->assign('year', $this->year); $smarty->assign('pmonth', $this->pmonth); $smarty->assign('pyear', $this->pyear); $smarty->assign('nmonth', $this->nmonth); $smarty->assign('nyear', $this->nyear); $smarty->assign('crp_id', $this->crp_id); $smarty->assign('url_previous', edkURI::build($args, array('view', 'pilot_scores', true), $pyear, $pmonth)); $smarty->assign('url_next', edkURI::build($args, array('view', 'pilot_scores', true), $nyear, $nmonth)); $list = new TopList_Score(); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $list->setMonth($this->month); $list->setYear($this->year); $table = new TopTable_Pilot($list, "Points"); $smarty->assign('monthly_stats', $table->generate()); $list = new TopList_Score(); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $table = new TopTable_Pilot($list, "Points"); $smarty->assign('total_stats', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_monthly')); break; case "pilot_solo": $smarty->assign('title', 'Top Solokillers'); $smarty->assign('month', $this->monthname); $smarty->assign('year', $this->year); $smarty->assign('pmonth', $this->pmonth); $smarty->assign('pyear', $this->pyear); $smarty->assign('nmonth', $this->nmonth); $smarty->assign('nyear', $this->nyear); $smarty->assign('crp_id', $this->crp_id); $smarty->assign('url_previous', edkURI::build($args, array('view', 'pilot_solo', true), $pyear, $pmonth)); $smarty->assign('url_next', edkURI::build($args, array('view', 'pilot_solo', true), $nyear, $nmonth)); $list = new TopList_SoloKiller(); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $list->setMonth($this->month); $list->setYear($this->year); $table = new TopTable_Pilot($list, "Solokills"); $smarty->assign('monthly_stats', $table->generate()); $list = new TopList_SoloKiller(); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $table = new TopTable_Pilot($list, "Solokills"); $smarty->assign('total_stats', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_monthly')); break; case "pilot_damage": $smarty->assign('title', 'Top Damagedealers'); $smarty->assign('month', $this->monthname); $smarty->assign('year', $this->year); $smarty->assign('pmonth', $this->pmonth); $smarty->assign('pyear', $this->pyear); $smarty->assign('nmonth', $this->nmonth); $smarty->assign('nyear', $this->nyear); $smarty->assign('crp_id', $this->crp_id); $smarty->assign('url_previous', edkURI::build($args, array('view', 'pilot_damage', true), $pyear, $pmonth)); $smarty->assign('url_next', edkURI::build($args, array('view', 'pilot_damage', true), $nyear, $nmonth)); $list = new TopList_DamageDealer(); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $list->setMonth($this->month); $list->setYear($this->year); $table = new TopTable_Pilot($list, "Kills"); $smarty->assign('monthly_stats', $table->generate()); $list = new TopList_DamageDealer(); $list->addInvolvedCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $table = new TopTable_Pilot($list, "Kills"); $smarty->assign('total_stats', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_monthly')); break; case "pilot_griefer": $smarty->assign('title', 'Top Griefers'); $smarty->assign('month', $this->monthname); $smarty->assign('year', $this->year); $smarty->assign('pmonth', $this->pmonth); $smarty->assign('pyear', $this->pyear); $smarty->assign('nmonth', $this->nmonth); $smarty->assign('nyear', $this->nyear); $smarty->assign('crp_id', $this->crp_id); $smarty->assign('url_previous', edkURI::build($args, array('view', 'pilot_griefer', true), $pyear, $pmonth)); $smarty->assign('url_next', edkURI::build($args, array('view', 'pilot_griefer', true), $nyear, $nmonth)); $list = new TopList_Kills(); $list->addVictimShipClass(20); // freighter $list->addVictimShipClass(22); // exhumer $list->addVictimShipClass(7); // industrial $list->addVictimShipClass(12); // barge $list->addVictimShipClass(14); // transport $list->addInvolvedCorp($this->crp_id); $list->setMonth($this->month); $list->setYear($this->year); $table = new TopTable_Pilot($list, "Kills"); $smarty->assign('monthly_stats', $table->generate()); $list = new TopList_Kills(); $list->addVictimShipClass(20); // freighter $list->addVictimShipClass(22); // exhumer $list->addVictimShipClass(7); // industrial $list->addVictimShipClass(12); // barge $list->addVictimShipClass(14); // transport $list->addInvolvedCorp($this->crp_id); $table = new TopTable_Pilot($list, "Kills"); $smarty->assign('total_stats', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_monthly')); break; case "pilot_losses": $smarty->assign('title', 'Top Losers'); $smarty->assign('month', $this->monthname); $smarty->assign('year', $this->year); $smarty->assign('pmonth', $this->pmonth); $smarty->assign('pyear', $this->pyear); $smarty->assign('nmonth', $this->nmonth); $smarty->assign('nyear', $this->nyear); $smarty->assign('crp_id', $this->crp_id); $smarty->assign('url_previous', edkURI::build($args, array('view', 'pilot_losses', true), $pyear, $pmonth)); $smarty->assign('url_next', edkURI::build($args, array('view', 'pilot_losses', true), $nyear, $nmonth)); $list = new TopList_Losses(); $list->addVictimCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $list->setMonth($this->month); $list->setYear($this->year); $table = new TopTable_Pilot($list, "Losses"); $smarty->assign('monthly_stats', $table->generate()); $list = new TopList_Losses(); $list->addVictimCorp($this->crp_id); $list->setPodsNoobShips(config::get('podnoobs')); $table = new TopTable_Pilot($list, "Losses"); $smarty->assign('total_stats', $table->generate()); return $smarty->fetch(get_tpl('detail_kl_monthly')); break; case "ships_weapons": $shiplist = new TopList_Ship(); $shiplist->addInvolvedCorp($this->crp_id); $shiplisttable = new TopTable_Ship($shiplist); $smarty->assign('ships', $shiplisttable->generate()); $weaponlist = new TopList_Weapon(); $weaponlist->addInvolvedCorp($this->crp_id); $weaponlisttable = new TopTable_Weapon($weaponlist); $smarty->assign('weapons', $weaponlisttable->generate()); return $smarty->fetch(get_tpl('detail_kl_ships_weapons')); break; case 'history': $crpsum = new corpSummary($this->crp_id); $smarty->assign('title', Language::get('history')); $smarty->assign('summary', $crpsum->getMonthlySummary()); return $smarty->fetch(get_tpl('detail_history')); break; case 'violent_systems': $smarty->assign('title', 'Most violent systems'); $smarty->assign('month', $this->monthname); $smarty->assign('year', $this->year); $smarty->assign('pmonth', $this->pmonth); $smarty->assign('pyear', $this->pyear); $smarty->assign('nmonth', $this->nmonth); $smarty->assign('nyear', $this->nyear); $smarty->assign('crp_id', $this->crp_id); $smarty->assign('url_previous', edkURI::build($args, array('view', 'violent_systems', true), $pyear, $pmonth)); $smarty->assign('url_next', edkURI::build($args, array('view', 'violent_systems', true), $nyear, $nmonth)); $startdate = gmdate('Y-m-d H:i', makeStartDate(0, $this->year, $this->month)); $enddate = gmdate('Y-m-d H:i', makeEndDate(0, $this->year, $this->month)); $sql = "select sys.sys_name, sys.sys_sec, sys.sys_id, count(kll.kll_id) as kills\n\t\t\t\t\t\t\tfrom kb3_systems sys, kb3_kills kll, kb3_inv_crp inc\n\t\t\t\t\t\t\twhere kll.kll_system_id = sys.sys_id\n\t\t\t\t\t\t\tand inc.inc_kll_id = kll.kll_id\n\t\t\t\t\t\t\tand inc.inc_crp_id = " . $this->crp_id; $sql .= " and kll.kll_timestamp > '{$startdate}'\n\t\t\t\t\t\t\tand kll.kll_timestamp < '{$enddate}'\n\t\t\t\t\t\t\tand inc.inc_timestamp > '{$startdate}'\n\t\t\t\t\t\t\tand inc.inc_timestamp < '{$enddate}'\n\t\t\t\t\t\t\tgroup by sys.sys_id\n\t\t\t\t\t\t\torder by kills desc, sys.sys_name asc\n\t\t\t\t\t\t\tlimit 25"; $qry = DBFactory::getDBQuery(); $qry->execute($sql); $odd = false; $counter = 1; $syslist = array(); while ($row = $qry->getRow()) { if (!$odd) { $odd = true; $rowclass = 'kb-table-row-odd'; } else { $odd = false; $rowclass = 'kb-table-row-even'; } $syslist[] = array("counter" => $counter, "url" => edkURI::build(array(array('a', 'system_detail', true), array('sys_id', $row['sys_id'], true))), "name" => $row['sys_name'], "sec" => roundsec($row['sys_sec']), "kills" => $row['kills']); $counter++; } $smarty->assignByRef('syslist', $syslist); $smarty->assign('monthly_stats', $smarty->fetch(get_tpl('violent_systems'))); $sql = "select sys.sys_name, sys.sys_id, sys.sys_sec, count(kll.kll_id) as kills\n\t\t\t\t\t\t\tfrom kb3_systems sys, kb3_kills kll, kb3_inv_crp inc\n\t\t\t\t\t\t\twhere kll.kll_system_id = sys.sys_id\n\t\t\t\t\t\t\tand inc.inc_kll_id = kll.kll_id\n\t\t\t\t\t\t\tand inc.inc_crp_id = " . $this->crp_id; $sql .= " group by sys.sys_id\n\t\t\t\t\t\t\torder by kills desc, sys.sys_name asc\n\t\t\t\t\t\t\tlimit 25"; $qry = DBFactory::getDBQuery(); $qry->execute($sql); $odd = false; $counter = 1; $syslist = array(); while ($row = $qry->getRow()) { if (!$odd) { $odd = true; $rowclass = 'kb-table-row-odd'; } else { $odd = false; $rowclass = 'kb-table-row-even'; } $syslist[] = array("counter" => $counter, "url" => edkURI::build(array(array('a', 'system_detail', true), array('sys_id', $row['sys_id'], true))), "name" => $row['sys_name'], "sec" => roundsec($row['sys_sec']), "kills" => $row['kills']); $counter++; } $smarty->assignByRef('syslist', $syslist); $smarty->assign('total_stats', $smarty->fetch(get_tpl('violent_systems'))); return $smarty->fetch(get_tpl('detail_kl_monthly')); break; } return $html; }