Beispiel #1
0
 public static function insereNovaEquipe($time, $jogador)
 {
     $okTime = Time::insereTime($time);
     foreach ($jogador as $jogadores) {
         $okjogadores = Jogador::insereJogador($jogadores);
     }
     if ($okTime && $okjogadores) {
         $conexao = BD::ConnectBD();
         $time = TimeDao::buscaUltimoTime();
         $jogadores = JogadorDao::listaJogadoresLimite();
         foreach ($jogadores as $cadastro) {
             $insere = $conexao->prepare("INSERT INTO conecta_jogador_time (`id_conecta`, `conectaTime`, `conectaJogador`) VALUES (NULL,:idTime,:idJogador)");
             $insere->bindValue(":idTime", $time->getId_time(), PDO::PARAM_INT);
             $insere->bindValue(":idJogador", $cadastro->getId_jogador(), PDO::PARAM_INT);
             $insere->execute();
         }
     }
 }
Beispiel #2
0
require "../verifica.php";
include_once "../../model/class.jogos.php";
include_once "../../controller/class.jogos.php";
include_once "../../model/class.local.php";
include_once "../../controller/class.local.php";
include_once "../../model/class.tickets.php";
include_once "../../controller/class.tickets.php";
include_once "../../model/class.jogador.php";
include_once "../../controller/class.jogador.php";
include_once "../../model/class.caixa.php";
include_once "../../controller/class.caixa.php";
$ticket_id = isset($_GET["id"]) ? $_GET["id"] : 0;
$jogo_id = isset($_GET["jogo"]) ? $_GET["jogo"] : 0;
$jogo = new Jogo();
$local = new Local();
$jogador = new Jogador();
$ticket = new Ticket();
$caixa = new Caixa();
if ($jogo_id == 0 || !$jogo->buscar($jogo_id)) {
    echo "<script>\n                alert('Registro não encontrado!');\n                window.location = 'listagem.php';\n              </script>";
    exit;
}
if ($ticket_id == 0 || !$ticket->buscar($ticket_id)) {
    echo "<script>\n                alert('Registro não encontrado!');\n                window.location = 'cadastro.php?id={$jogo_id}';\n              </script>";
    exit;
}
if ($ticket->getJogoId() != $jogo_id) {
    echo "<script>\n                alert('Registro não encontrado!');\n                window.location = 'listagem.php';\n              </script>";
    exit;
}
$local->buscar($jogo->getLocalId());
Beispiel #3
0
include_once "../header.php";
require "../verifica.php";
include_once "../../model/class.jogos.php";
include_once "../../controller/class.jogos.php";
include_once "../../model/class.local.php";
include_once "../../controller/class.local.php";
include_once "../../model/class.jogador.php";
include_once "../../controller/class.jogador.php";
include_once "../../model/class.tickets.php";
include_once "../../controller/class.tickets.php";
$acao = isset($_GET["acao"]) ? $_GET["acao"] : "";
$codigo = isset($_GET["id"]) ? $_GET["id"] : 0;
$target = isset($_GET["target"]) ? $_GET["target"] : '';
$jogo = new Jogo();
$local = new Local();
$jogador = new Jogador();
$ticket = new Ticket();
$locais = $local->listar();
$jogadores = $jogador->listarAtivos();
$tickets = $ticket->listar($codigo);
if ($codigo > 0) {
    if (!$jogo->buscar($codigo)) {
        echo "<script>\n                    alert('Registro não encontrado!');\n                    window.location = 'listagem.php';\n                  </script>";
        exit;
    }
}
if ($acao == "excluir" && $codigo > 0 && $jogo->getFinalizado() == 0) {
    if ($jogo->excluir($codigo)) {
        echo "<script>window.location = 'listagem.php';</script>";
    } else {
        echo "<script>\n                    alert('Erro ao excluir o cadastro. Verifique as dependências e tente novamente.');\n                    window.location = 'listagem.php';\n                  </script>";
Beispiel #4
0
<?php

require 'common.php';
if (array_key_exists('personagem', $_GET)) {
    $id_personagem = intval($_GET['personagem']);
    if ($id_personagem > 0) {
        $personagem = Personagem::pegar($id_personagem);
        //$personagem->getImagemBase64();
        $personagem->exibeThumbnail(30);
    }
}
if (array_key_exists('jogador', $_GET)) {
    $id_jogador = intval($_GET['jogador']);
    if ($id_jogador > 0) {
        $jogador = new Jogador($id_jogador);
        $jogador->getImagemBase64();
        $jogador->exibeThumbnail(30);
    }
}
 public static function buscar($palavra)
 {
     $palavras = explode(' ', strtolower($palavra));
     $palavraChave = '%';
     foreach ($palavras as $palavra) {
         $palavraChave .= do_escape(strtolower(trim($palavra))) . "%";
     }
     $query = static::query();
     $query .= " \n            WHERE LOWER(jogador.nome) LIKE '{$palavraChave}'\n            AND jogador.id_jogador <> '" . do_escape(static::idJogadorAtual()) . "'\n        ";
     $query .= " ORDER BY jogador.nome";
     $jogadores = array();
     foreach (get_result($query) as $dados) {
         $jogador = new Jogador();
         $jogador->carregarDB($dados);
         $jogadores[] = $jogador;
     }
     return $jogadores;
 }
Beispiel #6
0
" alt="<?php 
            echo $jogador->getNome();
            ?>
" style="width: 60px; height: 60px; float: left" /></a>
                    <h6><a href="<?php 
            echo WEB_PATH;
            ?>
/perfil.php?jogador=<?php 
            echo $jogador->getIdJogador();
            ?>
"><?php 
            echo $jogador->getNome();
            ?>
</a></h6>
                    <?php 
            $amizadeSituacao = $jogador->eAmigo(Jogador::idJogadorAtual());
            ?>
                    <p>
                        <a class="aceitar-amizade" data-rel="<?php 
            echo $jogador->getIdJogador();
            ?>
" href="#">aceitar</a> ou 
                        <a class="desfazer-amizade" data-rel="<?php 
            echo $jogador->getIdJogador();
            ?>
" href="#">recusar</a>
                    </p>
                </li>
                <?php 
        }
        ?>
 public function eMestre()
 {
     return $this->id_mestre == Jogador::idJogadorAtual();
 }
            array_push($jogadores, $jogador);
        }
        ConectaDao::insereNovaEquipe($time, $jogadores);
    } else {
        if ($_GET['Acao'] == "Editar") {
            $time = Time::listaTime($_POST['idTime']);
            $time->setNome($_POST['nomeEquipe']);
            Time::alteraTime($time);
            $jogadores = ConectaDao::listaJogadoresTimeEscolhido($_POST['idTime']);
            $i = 0;
            foreach ($jogadores as $sm) {
                $sm->setNome_jogador($nome[$i]);
                $sm->setMatricula_jogador($matricula[$i]);
                $sm->setEmail_jogador($email[$i]);
                $i++;
                Jogador::alteraJogador($sm);
            }
        } else {
            $id = $_GET['idTime'];
            $time = Time::listaTime($id);
            $jogadores = Conecta::listaJogadoresTimeEscolhido($id);
            Time::removeTime($id);
            foreach ($jogadores as $jogador) {
                Jogador::removeJogador($jogador->getId_jogador());
            }
        }
    }
    header("location:../controller/ControllerHome.php");
} else {
    header("location:../index.php?&erro=\"Login\"");
}
Beispiel #9
0
<?php

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Controle de jogadores e fichas de poker, na modalidade cash game. */
/*              Desenvolvido por: Reinaldo Silveira                  */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
include_once "../header.php";
require "../verifica.php";
include_once "../../model/class.jogador.php";
include_once "../../controller/class.jogador.php";
$jogador = new Jogador();
$jogadores = $jogador->listar();
$cont = 0;
?>

  <script type="text/javascript" src="../js/jquery.dataTables.min.js"></script>
  <script type="text/javascript" src="../js/jquery-DT-pagination.js"></script>
  
  <script type="text/javascript">
  /* Table initialisation */
  $(document).ready(function() {
    $('#listagem').dataTable( {
        "bSort": true,          //sorting
        "iDisplayLength": 10,   //records per page
        "sDom": "t<'row'<'col-md-6'i><'col-md-6'p>>",
        "sPaginationType": "bootstrap"
      });
    });
  </script>
  
  <style>
        <a class="foto" href="#"><img src="<?php 
echo $jogador->getImagemBase64();
?>
" alt="<?php 
echo $jogador->getNome();
?>
" /></a>
        <a class="nome" href="#"><?php 
echo $jogador->getNome();
?>
</a>
        <?php 
$amizadeSituacao = $jogador->eAmigo(Jogador::idJogadorAtual());
?>
        <?php 
if ($jogador->getIdJogador() == Jogador::idJogadorAtual()) {
    ?>
        <p><a href="#"><?php 
    echo _("me");
    ?>
</a></p>
        <?php 
} elseif ($amizadeSituacao == 1) {
    ?>
        <p><a class="desfazer-amizade" data-rel="<?php 
    echo $jogador->getIdJogador();
    ?>
" href="#"><?php 
    echo _("friend");
    ?>
</a></p>
Beispiel #11
0
?>
/<?php 
echo LANG;
?>
/characters"><?php 
echo _("All");
?>
</a></li>
                <li><a href="<?php 
echo WEB_PATH;
?>
/<?php 
echo LANG;
?>
/characters/<?php 
echo Jogador::jogadorAtual()->getSlug();
?>
"><?php 
echo _("Only mines");
?>
</a></li>
                <!--li><a href="#">Apenas os que eu curti</a></li-->
                <!--li><a href="#"><?php 
//echo _("All my PCs");
?>
</a></li>
                <li><a href="#"><?php 
//echo _("All my NPCs");
?>
</a></li>
                <li><a href="#"><?php 
Beispiel #12
0
require 'core/ItemClass.php';
require 'core/ArmaduraClass.php';
require 'core/ArmaDanoClass.php';
require 'core/ArmaClass.php';
require 'core/ArmaDistanciaClass.php';
require 'core/ArmaMuscularClass.php';
require 'core/ArmaFogoClass.php';
require 'core/AcaoClass.php';
require 'core/AcaoPertoClass.php';
require 'core/AcaoDistanciaClass.php';
require 'core/AcaoArremessoClass.php';
require 'core/AcaoAtirarClass.php';
require 'core/PersonagemClass.php';
require 'core/VantagemClass.php';
require 'core/PersonagemPericiaClass.php';
require 'core/PersonagemArmaduraClass.php';
//require('PersonagemArmaClass.php');
require 'core/NpcClass.php';
require 'core/DadoClass.php';
require 'core/SessaoClass.php';
require 'core/GolpeClass.php';
require 'core/GolpePertoClass.php';
require 'core/GolpeDistanciaClass.php';
require 'core/GolpeArremessoClass.php';
require 'core/GolpeTiroClass.php';
require 'core/MapaClass.php';
require 'core/MapaAreaClass.php';
require 'core/FeedClass.php';
define('ID_JOGADOR', Jogador::idJogadorAtual());
define('USA_BETA', false);
Vantagem::inicializar();
Beispiel #13
0
<?php

require 'common.php';
require 'header.php';
?>
<div class="row">
    <div class="twelve columns">
        <div class="row">
            <?php 
if (is_null(Jogador::jogadorAtual())) {
    ?>
            <?php 
    require 'sidebar-nologin.php';
    ?>
            <?php 
}
?>
            <div class="<?php 
echo is_null(Jogador::jogadorAtual()) ? 'nine' : 'twelve';
?>
 columns">
            <?php 
include 'intro-' . LANG . ".inc.php";
?>
            </div>
        </div>
    </div>
</div>
<?php 
require 'footer.php';
Beispiel #14
0
<?php

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Controle de jogadores e fichas de poker, na modalidade cash game. */
/*              Desenvolvido por: Reinaldo Silveira                  */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
include_once "../header.php";
require "../verifica.php";
include_once "../../model/class.jogador.php";
include_once "../../controller/class.jogador.php";
$jogador = new Jogador();
$acao = isset($_GET["acao"]) ? $_GET["acao"] : "";
$codigo = isset($_GET["id"]) ? $_GET["id"] : 0;
if ($codigo > 0) {
    if (!$jogador->buscar($codigo)) {
        echo "<script>\n                    alert('Registro não encontrado!');\n                    window.location = 'listagem.php';\n                  </script>";
        exit;
    }
}
if ($acao == "excluir" && $codigo > 0) {
    if ($jogador->excluir($codigo)) {
        echo "<script>window.location = 'listagem.php';</script>";
    } else {
        echo "<script>\n                    alert('Erro ao excluir o cadastro. Verifique as dependências e tente novamente.');\n                    window.location = 'listagem.php';\n                  </script>";
    }
}
if ($_POST) {
    if ($codigo == 0) {
        if ($jogador->incluir()) {
            echo "<script>window.location = 'listagem.php';</script>";
        } else {
Beispiel #15
0
		});
	});
  </script>

  <!-- IE Fix for HTML5 Tags -->
  <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  <![endif]-->

</head>

<body>

	<div class="row">
            <?php 
$jogador = Jogador::jogadorAtual();
?>
            <div class="five columns">
                <a href="/"><img src="<?php 
echo WEB_PATH;
?>
/images/logo.png" alt="DungeonBlazer" /></a>
            </div>
            <div class="four columns">
                <form method="GET" action="<?php 
echo WEB_PATH;
?>
/<?php 
echo LANG;
?>
/search" style="margin: 0px">
Beispiel #16
0
    $Jog->Alterar($app, $idJogador, $app->request->getBody());
});
$app->put('/Jogador/Recomendar/:idJogador/', function ($idJogador) use($app) {
    $Jog = new Jogador();
    $Jog->Recomendar($app, $idJogador, $app->request->getBody());
});
$app->put('/Jogador/New/', function () use($app) {
    $Jog = new Jogador();
    $Jog->NovoJogador($app, $app->request->getBody());
});
$app->get('/Jogador/:idJogador/', function ($idJogador) use($app) {
    $Jog = new Jogador();
    $Jog->CarregarDados($app, $idJogador);
});
$app->put('/Jogadores/Pesquisar/', function () use($app) {
    $Jog = new Jogador();
    $Jog->Pesquisar($app, $app->request->getBody());
});
$app->get('/Time/byJogador/:idJogador/', function ($idJogador) use($app) {
    $Time = new Times();
    $Time->CarregarTimebyIdJogador($app, $idJogador);
});
$app->get('/Feed/', function () use($app) {
    $Feed = new Feed();
    $Feed->CarregarFeed($app);
});
$app->put('/RegistrarFeed/', function () use($app) {
    $Feed = new Feed();
    $Feed->RegistrarFeed($app, $app->request->getBody());
});
/*
Beispiel #17
0
">Alterar</a></li>
            </ul>
        </div>
        <h6><a href="<?php 
echo WEB_PATH;
?>
/mapa-hex.php?map=<?php 
echo $mapa->id_mapa;
?>
"><?php 
echo $mapa->nome;
?>
</a></h6>
    </p>
    <?php 
$jogador = new Jogador($mapa->id_jogador);
?>
    <div class="personagem-jogador">
        <a class="foto" href="<?php 
echo WEB_PATH;
?>
/perfil.php?jogador=<?php 
echo $jogador->getIdJogador();
?>
"><img src="<?php 
echo $jogador->getImagemBase64();
?>
" alt="<?php 
echo $jogador->getNome();
?>
" /></a>