-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
89 lines (68 loc) · 1.91 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
require_once 'classes/core/autoloader.php';
TesteDesempenho::inicio();
// Investimento inicial
$vetorInicial = array(0.3, 0.25, 0.20, 0.15, 0.10, 0.0, 0.0, 0.0, 0.0, 0.0);
// Aleatoriza o array;
if (isset($_GET['aleatorio'])) {
shuffle($vetorInicial);
$link_aleat = "aleatorio=1&";
}
// Escolhe a versão a ser exibida
$versao = 2;
$link_vers = "versao=1";
$label_vers = "Completa";
if ($_GET['versao'] == 1) {
$versao = 1;
$link_vers = "versao=2";
$label_vers = "Compacta";
}
// BUSCA
$busca = new Busca($vetorInicial);
// Executa a busca pela melhor carteira
$busca->executar();
// Melhores carteiras encontradas
$carteiras = $busca->getCarteiras();
// Carteira Inicial
$decorator = new CarteiraDecorator($busca->getCarteiraInicial());
if ($versao == 1) {
$html_tabela .= $decorator->render();
} else {
$html_tabela .= $decorator->renderLight();
}
// Carteiras da Busca
foreach ($carteiras as $carteira) {
$decorator = new CarteiraDecorator($carteira);
if ($versao == 1) {
$html_tabela .= $decorator->render();
} else {
$html_tabela .= $decorator->renderLight();
}
}
/*
* Monta o HTM final
*/
$html_menu = "
<div id=\"nav\">
<a href=\"index.php?inicial=1\">Inicial</a> |
<a href=\"index.php?aleatorio=1\">Busca Aleatoria</a> |
<a href=\"index.php?$link_aleat" . "$link_vers\">Versão $label_vers</a> |
<a href=\"relatorio.php?acao=add&escolha=" . implode(',', $vetorInicial) . "&$link_aleat\">Add no relatório</a> |
<a href=\"relatorio.php?acao=ver\">Ver relatório</a> |
</div>
";
if ($_GET['msg'] != '') {
$html_msg = "<div class=\"aviso\">" . $_GET['msg'] . "</div>";
}
$html_final = "
$html_menu
$html_msg
$html_tabela
";
$replaces['body'] = $html_final;
/*
* Lança seleciona o template e exibe
*/
$tpl = new Template('includes/template.html');
$tpl->setParams($replaces);
$tpl->show();