FuelPHP Bin
<?php /** * Fuel is a fast, lightweight, community driven PHP5 framework. * * @package Fuel * @version 1.7 * @author Fuel Development Team * @license MIT License * @copyright 2010 - 2013 Fuel Development Team * @link http://fuelphp.com */ class Controller_Game extends Controller_Base { public $template = 'tpl_game'; public function before() { parent::before(); if (Auth::check()) { if (!(Auth::member(3) || Auth::member(4) || Auth::member(5) || Auth::member(6))) { Auth::logout(); Session::set_flash('error', 'KEINE Berechtigung für diesen Bereich!'); Response::redirect('/'); } // Set Userinfo, UserID and UserName globally for all actions and sub-controller $this->userinfo = list($driver, $userid) = Auth::get_user_id(); $this->userid = $userid; $this->username = Auth::get_screen_name(); //Set Resourcecounts for actual user $this->resourcecounts = Model_Resourcecount::showUserResources($userid); // Check, if there are unread Exceptions, if yes, forward to Exception Page in Backend if (Auth::get_profile_fields('exceptions') != 0) { $this->exceptions = Model_Exceptionlog::find('first', array('where' => array(array('user_id' => $this->userid), array('shown' => 0)))); if (isset($this->exceptions)) { Response::redirect('/game/backend/exception'); } } } else { Response::redirect('/'); } // Template Settings for all actions $this->template->messages = View::forge('partials/messages'); $this->template->navheader = View::forge('partials/nav_header'); $this->template->navfooter = View::forge('partials/nav_footer'); $this->template->resources = View::forge('partials/resourcecounter'); View::set_global('resourcecounts', $this->resourcecounts, false); // TODO: Generate Actions Model $this->template->actions = View::forge('partials/actionlist'); } public function action_index() { $res_buildings = Model_Building::find('all', array('where' => array('category' => 'resources'))); //show only buildings of category resources foreach ($res_buildings as $key => $res_building) { // TODO: Check ob das Bild existiert, erst danach erzeugen // TODO: Defaultpic einbauen, wenn kein Bild vorhanden $image = Image::load(DOCROOT.'/images/'.$res_building->image['filename'])->preset('res_buildings')->save_pa('res_building_100_100_', ''); $res_building->image_filename = $res_building->image['filename']; $res_buildings[$key] = $res_building; } $def_buildings = Model_Building::find('all', array('where' => array('category' => 'defense'))); //show only buildings of category defense foreach ($def_buildings as $key => $def_building) { // TODO: Check ob das Bild existiert, erst danach erzeugen // TODO: Defaultpic einbauen, wenn kein Bild vorhanden $image = Image::load(DOCROOT.'/images/'.$def_building->image['filename'])->preset('def_buildings')->save_pa('def_building_70_70_', ''); $def_building->image_filename = $def_building->image['filename']; $def_buildings[$key] = $def_building; } $data['res_buildings'] = $res_buildings; $data['def_buildings'] = $def_buildings; $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/game/urban', $data); } public function action_village() { $res_buildings = Model_Building::find('all', array('where' => array('category' => 'resources'))); //show only buildings of category resources foreach ($res_buildings as $key => $res_building) { // TODO: Check ob das Bild existiert, erst danach erzeugen // TODO: Defaultpic einbauen, wenn kein Bild vorhanden $image = Image::load(DOCROOT.'/images/'.$res_building->image['filename'])->preset('res_buildings')->save_pa('res_building_100_100_', ''); $res_building->image_filename = $res_building->image['filename']; $res_buildings[$key] = $res_building; } $data['res_buildings'] = $res_buildings; $this->template->title = 'Tigers vs. Dragons - Das Spiel'; $this->template->content = View::forge('game/game/village', $data); } public function action_map() { #$data['resourcecounts'] = $this->resourcecounts; $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/game/map'); } public function action_news() { $data['resourcecounts'] = $this->resourcecounts; $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/game/news', $data); } }