prefix
stringlengths 82
32.6k
| middle
stringlengths 5
470
| suffix
stringlengths 0
81.2k
| file_path
stringlengths 6
168
| repo_name
stringlengths 16
77
| context
listlengths 5
5
| lang
stringclasses 4
values | ground_truth
stringlengths 5
470
|
---|---|---|---|---|---|---|---|
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.
|
println("Total de saques: " + conta.getTotalSaques());
|
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
|
src/relatorios/Relatorio.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.9313609600067139
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tcase 2:\n\t\t\t\tif (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {\n\t\t\t\t\tRelatorio.tributacaoCC((ContaCorrente) conta);\n\t\t\t\t\tEscritor.relatorioTributacaoCC((ContaCorrente) conta);\n\t\t\t\t} else {\n\t\t\t\t\tSystem.out.println();\n\t\t\t\t\tSystem.out.println(\"Desculpe, você não possui Conta Corrente.\");\n\t\t\t\t}\n\t\t\t\tmenuRelatorio(conta, cliente);\n\t\t\t\tbreak;",
"score": 0.9093083143234253
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\tpublic static void relatorioTributacaoCC(ContaCorrente conta) {\n\t\tSUB_CAMINHO = conta.getCpf() + \"_\" + conta.getTitular().getNome() + \"_\" + conta.getTitular().getTipoDeUsuario();\n\t\tnew File(CAMINHO + \"\\\\\" + SUB_CAMINHO).mkdir();\n\t\tString hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern(\"dd_MM_yy\"));\n\t\tString arquivo = conta.getCpf() + \"_\" + conta.getAgencia() + \"_\" + hojeFormatado + \"_\"\n\t\t\t\t+ \"relatorioTributacaoCC\";\n\t\ttry (BufferedWriter bw = new BufferedWriter(\n\t\t\t\tnew FileWriter(CAMINHO + \"\\\\\" + SUB_CAMINHO + \"\\\\\" + arquivo + EXTENSAO, true))) {\n\t\t\tString linha = \"*************** TOTAL DE TRIBUTAÇÕES *****************\";\n\t\t\tbw.append(linha + \"\\n\\n\");",
"score": 0.8986412286758423
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tconta.sacar(valor, conta);\n\t\t\t\tEscritor.comprovanteSaque(conta, valor);\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\tSystem.out.printf(\"Insira o valor para depósito: R$ \");\n\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\tconta.depositar(valor, conta);\n\t\t\t\tEscritor.comprovanteDeposito(conta, valor); \n\t\t\t\tSystem.out.printf(\"Saldo atual: R$ %.2f\", conta.getSaldo());",
"score": 0.8877679705619812
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8868615627288818
}
] |
java
|
println("Total de saques: " + conta.getTotalSaques());
|
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
|
capitalBancoSaldo += lista.getSaldo();
|
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
|
src/relatorios/Relatorio.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\t\t\tcase 1:\n\t\t\t\t\t\t\tSystem.out.println();\n\t\t\t\t\t\t\tRelatorio.informacoesClientes(listaContas, conta, funcionario);\n\t\t\t\t\t\t\tmenuFuncionario(funcionario, conta, listaContas, cpf, cliente);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 2:\n\t\t\t\t\t\t\tSystem.out.println();\n\t\t\t\t\t\t\tRelatorio.valorTotalCapitalBanco(listaContas, conta, funcionario);\n\t\t\t\t\t\t\tmenuFuncionario(funcionario, conta, listaContas, cpf, cliente);\n\t\t\t\t\t\t\tbreak;",
"score": 0.9178810715675354
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t}\n\tpublic static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {\n\t\tSUB_CAMINHO = conta.getCpf() + \"_\" + conta.getTitular().getNome() + \"_\" + funcionario.getTipoDeUsuario();\n\t\tnew File(CAMINHO + \"\\\\\" + SUB_CAMINHO).mkdir();\n\t\tString hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern(\"dd_MM_yy\"));\n\t\tString arquivo = conta.getCpf() + \"_\" + hojeFormatado + \"_\" + \"relatorioCapitalBanco\";\n\t\ttry (BufferedWriter bw = new BufferedWriter(\n\t\t\t\tnew FileWriter(CAMINHO + \"\\\\\" + SUB_CAMINHO + \"\\\\\" + arquivo + EXTENSAO, true))) {\n\t\t\tdouble capitalTotalBanco = 0;\n\t\t\tString linha = \"******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********\";",
"score": 0.913476824760437
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tfor (Conta lista : listaContas) {\n\t\t\t\tcapitalTotalBanco += lista.getSaldo();\n\t\t\t}\n\t\t\tlinha = \"Total do Capital armazenado no banco: R$ \" + capitalTotalBanco;\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tString date = LocalDateTime.now().format(DateTimeFormatter.ofPattern(\"dd/MM/yyyy HH:mm:ss\"));\n\t\t\tlinha = \"Operação realizada em: \" + date;\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"******************************************************\";",
"score": 0.8941981792449951
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tfor (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {\n\t\t\t\tbw.append(listaMovimentacao.toString() + \"\\n\");\n\t\t\t}\n\t\t\tbw.append(\"\\n\");\n\t\t\tif (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {\n\t\t\t\tlinha = \"Total gasto em tributos = R$\"\n\t\t\t\t\t\t+ String.format(\"%.2f\", ((ContaCorrente) conta).getTotalTarifas());\n\t\t\t\tbw.append(linha + \"\\n\");\n\t\t\t}\n\t\t\tif (Menu.contratoSeguro == true) {",
"score": 0.8809113502502441
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tconta.sacar(valor, conta);\n\t\t\t\tEscritor.comprovanteSaque(conta, valor);\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\tSystem.out.printf(\"Insira o valor para depósito: R$ \");\n\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\tconta.depositar(valor, conta);\n\t\t\t\tEscritor.comprovanteDeposito(conta, valor); \n\t\t\t\tSystem.out.printf(\"Saldo atual: R$ %.2f\", conta.getSaldo());",
"score": 0.8782269954681396
}
] |
java
|
capitalBancoSaldo += lista.getSaldo();
|
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println
|
("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
|
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
|
src/relatorios/Relatorio.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.9270473718643188
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Total gasto em transações = R$\" + conta.getTotalTarifas();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para saque = \" + ContaCorrente.getTarifaSaque();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de saques realizados = \" + conta.getTotalSaques();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para deposito = \" + ContaCorrente.getTarifaDeposito();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de depósitos realizados = \" + conta.getTotalDepositos();\n\t\t\tbw.append(linha + \"\\n\\n\");",
"score": 0.9036471843719482
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Taxa para tranferência = \" + ContaCorrente.getTarifaTransferencia();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de tranferências realizadas = \" + conta.getTotalTransferencias();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tif (Menu.contratoSeguro == true) {\n\t\t\t\tlinha = \"Valor segurado do Seguro de Vida = R$ \"\n\t\t\t\t\t\t+ String.format(\"%.2f\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\t}\n\t\t\tString date = LocalDateTime.now().format(DateTimeFormatter.ofPattern(\"dd/MM/yyyy HH:mm:ss\"));",
"score": 0.8939040899276733
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8899183869361877
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tfor (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {\n\t\t\t\tbw.append(listaMovimentacao.toString() + \"\\n\");\n\t\t\t}\n\t\t\tbw.append(\"\\n\");\n\t\t\tif (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {\n\t\t\t\tlinha = \"Total gasto em tributos = R$\"\n\t\t\t\t\t\t+ String.format(\"%.2f\", ((ContaCorrente) conta).getTotalTarifas());\n\t\t\t\tbw.append(linha + \"\\n\");\n\t\t\t}\n\t\t\tif (Menu.contratoSeguro == true) {",
"score": 0.8855694532394409
}
] |
java
|
("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
|
package colas;
public class Ejercicios {
public void Ejercicio1(Queue queue) {
int acum = 0;
Nodo pointer = queue.getHead();
while (pointer != null) {
acum += (int) pointer.getElement();
pointer = (Nodo) pointer.getNext();
}
if (!queue.isEmpty()){
System.out.println("El promedio es:"+(double)(acum/queue.getSize()));
}
Nodo pointer2 = (Nodo) queue.getHead();
int cont = queue.getSize()-1;
int cont2 = 0;
int cont3 =0;
boolean firstTime = true;
while ((pointer2 != queue.getHead() || firstTime)){
firstTime = false;
while (cont2 < cont) {
pointer2 = (Nodo) pointer2.getNext();
cont2++;
}
System
|
.out.println(pointer2.getElement());
|
cont--;
cont2 = 0;
pointer2 = (Nodo) queue.getHead().getNext();
cont3++;
if (cont3 == queue.getSize()){
break;
}
}
}
}
|
Semana 7/Lunes/Colas/src/colas/Ejercicios.java
|
Estructura-de-Datos-2223-3-S2-Ejercicios-en-clase-c874295
|
[
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " while (true) {\n Nodo pointer2 = getHead();\n while (cont2 < cont) {\n pointer2 = pointer2.getNext();\n cont2++;\n }\n aux2 += pointer2.getElement();\n cont--;\n cont2=0;\n System.out.println(\"aux \"+aux+\" aux2 \"+aux2);",
"score": 0.9175291061401367
},
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n }\n } else {\n System.out.println(\"Error in index\");\n }",
"score": 0.9022115468978882
},
{
"filename": "Semana 7/Lunes/Colas/src/colas/ArrayQueue.java",
"retrieved_chunk": " }\n @Override\n public void printQueue() {\n Nodo pointer = getArray()[getHead()];\n while (pointer.getNext() != null) {\n System.out.println(\"NODO:\"+pointer.getElement());\n pointer = getArray()[(int) pointer.getNext()];\n }\n System.out.println(\"NODO:\"+ getArray()[getTail()].getElement());\n }",
"score": 0.8878425359725952
},
{
"filename": "Semana 6/Colas/src/colas/ArrayQueue.java",
"retrieved_chunk": " }\n @Override\n public void printQueue() {\n Nodo pointer = getArray()[getHead()];\n while (pointer.getNext() != null) {\n System.out.println(\"NODO:\"+pointer.getElement());\n pointer = getArray()[(int) pointer.getNext()];\n }\n System.out.println(\"NODO:\"+ getArray()[getTail()].getElement());\n }",
"score": 0.8878425359725952
},
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " System.out.print(\"[ \"+pointer.getElement()+\" ]\");\n pointer = (Nodo) pointer.getNext();\n }\n }\n}",
"score": 0.8795416951179504
}
] |
java
|
.out.println(pointer2.getElement());
|
package menus;
import java.io.IOException;
import java.util.ArrayList;
import java.util.InputMismatchException;
import java.util.List;
import java.util.Locale;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import io.Escritor;
import pessoas.Cliente;
import pessoas.Funcionario;
import principal.SistemaBancario;
import relatorios.Relatorio;
import segurosDeVida.SeguroDeVida;
public class Menu {
public static boolean contratoSeguro = false;
public static void menuEntrada() throws InputMismatchException, NullPointerException, IOException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
try {
System.out.println();
System.out.println("______ ___ _ _ _____ _____ _____ _____ _____ _____ ");
System.out.println("| ___ \\/ _ \\| \\ | / __ \\ _ | / ___| ___|_ _| ___|");
System.out.println("| |_/ / /_\\ \\ \\| | / \\/ | | | \\ `--.| |__ | | | |__ ");
System.out.println("| ___ \\ _ | . ` | | | | | | `--. \\ __| | | | __| ");
System.out.println("| |_/ / | | | |\\ | \\__/\\ \\_/ / /\\__/ / |___ | | | |___ ");
System.out.println("\\____/\\_| |_|_| \\_/\\____/\\___/ \\____/\\____/ \\_/ \\____/ ");
System.out.println();
System.out.println("******** Menu Inicial **********");
System.out.println("[1] Login");
System.out.println("[2] Encerrar");
int opcao = sc.nextInt();
switch (opcao) {
case 1:
menuInicial();
break;
case 2:
System.out.println();
Escritor.registroDeDadosAtualizados();
System.out.println("Sistema encerrado.");
System.exit(0);
break;
default:
menuEntrada();
break;
}
} catch (InputMismatchException e) {
System.out.println();
System.out.println("Ocorreu um erro.");
System.out.println("Possível solução para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuEntrada();
}
sc.close();
}
public static void menuInicial() throws InputMismatchException, IOException, NullPointerException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
Cliente cliente;
Conta conta;
Funcionario funcionario;
int senha = 0;
try {
do {
System.out.println();
System.out.println("******** Menu de Login **********");
System.out.print("[ Digite seu CPF ]: ");
String cpf = sc.nextLine();
System.out.print("[ Digite sua senha ]: ");
senha = sc.nextInt();
sc.nextLine();
System.out.println("**********************************");
cliente = SistemaBancario.mapaDeClientes.get(cpf);
conta = SistemaBancario.mapaDeContas.get(cpf);
funcionario = SistemaBancario.mapaDeFuncionarios.get(cpf);
List<Conta> listaContas = new ArrayList<>(SistemaBancario.mapaDeContas.values());
if (conta != null && funcionario != null) {
if (funcionario.getSenha() == senha) {
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
}
} else if (conta != null && cliente != null) {
if (cliente.getSenha() == senha) {
Menu.menuCliente(conta, cliente);
} else {
System.out.println("DADOS INCORRETOS. Digite novamente \n");
}
}
} while (conta == null || cliente == null || cliente.getSenha() != senha
|| funcionario.getSenha() != senha);
}
catch (InputMismatchException e) {
System.out.println("Ocorreu um erro.");
System.out.println("Possível solução para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuInicial();
}
sc.close();
}
public static void menuFuncionario(Funcionario funcionario, Conta conta, List<Conta> listaContas, String cpf,
Cliente cliente) throws IOException, NullPointerException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
int opcao = 0;
System.out.println();
System.out.println("Olá " + funcionario.getTipoDeUsuario().getTipoPessoa() + " " + funcionario.getNome() + ".");
System.out.println();
try {
do {
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Entrar como Cliente");
System.out.println("[2] Entrar como " + funcionario.getTipoDeUsuario().getTipoPessoa());
System.out.println("[3] Logout");
opcao = sc.nextInt();
switch (opcao) {
case 1:
Menu.menuCliente(conta, cliente);
break;
case 2:
switch (funcionario.getTipoDeUsuario()) {
case GERENTE:
System.out.println();
System.out.println("******** Menu Gerente ********");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Consulta de contas da sua agência ");
System.out.println("[2] Retornar ao menu anterior");
opcao = sc.nextInt();
switch (opcao) {
case 1:
Relatorio.numDeContasNaAgencia(conta, cpf, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 2:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
default:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
}
break;
case DIRETOR:
System.out.println();
System.out.println("******** Menu Diretor ********");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Relatório de informações dos clientes do banco");
System.out.println("[2] Retornar ao menu anterior");
opcao = sc.nextInt();
switch (opcao) {
case 1:
Relatorio.informacoesClientes(listaContas, conta, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 2:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
default:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
}
break;
case PRESIDENTE:
System.out.println();
System.out.println("******** Menu Presidente ********");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Relatório de informações dos clientes do banco");
System.out.println("[2] Relatório do capital total armazenado");
System.out.println("[3] Retornar ao menu anterior");
opcao = sc.nextInt();
switch (opcao) {
case 1:
System.out.println();
Relatorio.informacoesClientes(listaContas, conta, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 2:
System.out.println();
Relatorio.valorTotalCapitalBanco(listaContas, conta, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 3:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
default:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
}
break;
default:
break;
}
case 3:
contratoSeguro = false;
menuEntrada();
break;
}
} while (opcao != 1 || opcao != 2 || opcao != 3);
} catch (InputMismatchException e) {
System.out.println("Ocorreu um erro.");
System.out.println("Possíveis soluções para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
System.out.println("- Digite números ao invés de letras");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
}
sc.close();
}
public static void menuCliente(Conta conta, Cliente cliente) throws IOException, NullPointerException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
try {
System.out.println();
System.out.println("******** Menu cliente ********\n");
System.out.println("Olá " + cliente.getNome() + "!");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Saque");
System.out.println("[2] Depósito");
System.out.println("[3] Transferência para outra conta");
System.out.println("[4] Extrato da conta");
System.out.println("[5] Relatórios e Saldo");
System.out.println("[6] Logout");
int opcao = sc.nextInt();
switch (opcao) {
case 1:
System.out.print("Insira o valor do saque: R$ ");
double valor = sc.nextDouble();
conta.sacar(valor, conta);
Escritor.comprovanteSaque(conta, valor);
menuCliente(conta, cliente);
break;
case 2:
System.out.printf("Insira o valor para depósito: R$ ");
valor = sc.nextDouble();
conta.depositar(valor, conta);
Escritor.comprovanteDeposito(conta, valor);
System.out.printf("Saldo atual: R$ %.2f", conta.getSaldo());
System.out.println();
menuCliente(conta, cliente);
break;
case 3:
System.out.printf("Insira o valor da transferencia: R$ ");
valor = sc.nextDouble();
if (valor < 0) {
System.out.println("Insira um valor válido.");
menuCliente(conta, cliente);
}
if (valor > conta.getSaldo()) {
System.out.println("Saldo insuficiente.");
menuCliente(conta, cliente);
}
sc.nextLine();
System.out.printf("Insira o CPF do destinatário: ");
String cpfDestinatario = sc.nextLine();
while (cpfDestinatario.equals(conta.getCpf())) {
System.out.println();
System.out.println("Você não pode fazer transferência para si mesmo!");
System.out.printf("Entre com um CPF válido: ");
cpfDestinatario = sc.nextLine();
}
Conta contaDestino = SistemaBancario.mapaDeContas.get(cpfDestinatario);
conta.transferir(contaDestino, valor, conta);
Escritor.comprovanteTransferencia(conta, contaDestino, valor);
System.out.println("Transferência realizada com sucesso.");
menuCliente(conta, cliente);
break;
case 4:
|
conta.imprimeExtrato(conta);
|
Escritor.extratoConta(conta);
menuCliente(conta, cliente);
break;
case 5:
menuRelatorio(conta, cliente);
break;
case 6:
contratoSeguro = false;
menuEntrada();
break;
default:
System.out.println();
System.out.println("Opção não existe. Digite o número correto.");
break;
}
} catch (InputMismatchException e) {
System.out.println();
System.out.println("Ocorreu um erro na transferência.");
System.out.println("Possível solução para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
} catch (NullPointerException e) {
System.out.println("Erro: " + e.getMessage());
} finally {
menuCliente(conta, cliente);
}
sc.close();
}
public static void menuRelatorio(Conta conta, Cliente cliente) throws IOException, NullPointerException {
System.out.println();
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
System.out.println("******** Menu relatório ********");
System.out.println();
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Saldo");
System.out.println("[2] Relatório de Tributação da Conta Corrente");
System.out.println("[3] Relatório de Rendimento da Conta Poupança");
System.out.println("[4] Seguro de vida");
System.out.println("[5] Retornar ao menu anterior");
int opcao = 0;
try {
opcao = sc.nextInt();
switch (opcao) {
case 1:
Relatorio.imprimirSaldo(conta);
menuRelatorio(conta, cliente);
break;
case 2:
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
Relatorio.tributacaoCC((ContaCorrente) conta);
Escritor.relatorioTributacaoCC((ContaCorrente) conta);
} else {
System.out.println();
System.out.println("Desculpe, você não possui Conta Corrente.");
}
menuRelatorio(conta, cliente);
break;
case 3:
if (conta.getTipoDeConta().equals(ContasEnum.POUPANCA)) {
Relatorio.simularRendimentoPoupanca(conta, cliente);
} else {
System.out.println();
System.out.println("Desculpe, você não possui Conta Poupança.");
menuRelatorio(conta, cliente);
}
break;
case 4:
if (contratoSeguro == true) {
System.out.println();
System.out.println("Você ja contratou esse serviço.");
} else if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
System.out
.println("Ao realizar a contratação do seguro de vida, você pagará 20% do valor como taxa");
System.out.println("Deseja contratar um seguro de vida? Sim [1] Não [2] ");
do {
opcao = sc.nextInt();
switch (opcao) {
case 1:
System.out.print("Qual o valor que será segurado? R$ ");
double valor = sc.nextDouble();
while (valor < 0) {
System.out.print("Insira um valor válido: R$ ");
valor = sc.nextDouble();
}
SeguroDeVida.setValorSeguro(valor);
conta.debitarSeguro(valor, conta, cliente);
contratoSeguro = true;
menuRelatorio(conta, cliente);
break;
case 2:
menuRelatorio(conta, cliente);
break;
default:
System.out.println();
System.out.println("Insira um valor válido. ");
System.out.println("Deseja contratar um seguro de vida? Sim [1] Não [2] ");
break;
}
} while (opcao != 1 || opcao != 2);
} else {
System.out.println();
System.out.println("Desculpe, você não possui Conta Corrente.");
menuRelatorio(conta, cliente);
}
case 5:
menuCliente(conta, cliente);
break;
default:
menuRelatorio(conta, cliente);
break;
}
} catch (InputMismatchException e) {
System.out.println();
System.out.println("Ocorreu um erro.");
System.out.println("Possíveis soluções para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
System.out.println("- Digite números ao invés de letras");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuRelatorio(conta, cliente);
}
sc.close();
}
}
|
src/menus/Menu.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"Saque realizado com sucesso.\");\n\t\t\tExtrato saque = new Extrato(LocalDate.now(), \"Saque\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(saque);\n\t\t}\n\t}\n\t@Override\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");\n\t\t} else if (valor < 0) {",
"score": 0.9033420085906982
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t} else if (valor < 0) {\n\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t} else {\n\t\t\tthis.saldo -= (valor + TARIFA_TRANSFERENCIA);\n\t\t\tcontaDestino.saldo += valor;\n\t\t\ttotalTransferencias++;\n\t\t\tExtrato transferencia = new Extrato(LocalDate.now(), \"Transferêcia\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(transferencia);\n\t\t}\n\t}",
"score": 0.9021674990653992
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tExtrato deposito = new Extrato(LocalDate.now(), \"Depósito\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(deposito);\n\t\t} else {\n\t\t\tSystem.out.println(\"Valor inválido\");\n\t\t}\n\t}\n\t@Override\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");",
"score": 0.9017494916915894
},
{
"filename": "src/contas/Conta.java",
"retrieved_chunk": "\t\t\tExtrato saque = new Extrato(LocalDate.now(), \"Saque\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(saque);\n\t\t}\n\t}\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");\n\t\t} else if (valor < 0) {\n\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t} else {",
"score": 0.8987127542495728
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t} else {\n\t\t\tthis.saldo -= valor;\n\t\t\tcontaDestino.saldo += valor;\n\t\t\tExtrato transferencia = new Extrato(LocalDate.now(), \"Transferêcia\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(transferencia);\n\t\t}\n\t}\n\t@Override\n\tpublic void depositar(double valor, Conta conta) {",
"score": 0.89641934633255
}
] |
java
|
conta.imprimeExtrato(conta);
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha
|
= "Agência: " + conta.getAgencia();
|
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8850778341293335
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8732333183288574
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8730521202087402
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8699644804000854
},
{
"filename": "src/contas/Conta.java",
"retrieved_chunk": "\t\t\tthis.saldo -= valor;\n\t\t\tcontaDestino.saldo += valor;\n\t\t\tExtrato transferencia = new Extrato(LocalDate.now(), \"Transferêcia\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(transferencia);\n\t\t}\n\t}\n\tpublic abstract void debitarSeguro(double valor, Conta conta, Cliente cliente);\n\tpublic String imprimeCPF(String CPF) {\n\t\treturn (CPF.substring(0, 3) + \".\" + CPF.substring(3, 6) + \".\" + CPF.substring(6, 9) + \"-\"\n\t\t\t\t+ CPF.substring(9, 11));",
"score": 0.8585102558135986
}
] |
java
|
= "Agência: " + conta.getAgencia();
|
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento
|
= valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
|
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
|
src/relatorios/Relatorio.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\t\t\tcase 1:\n\t\t\t\t\t\t\tSystem.out.print(\"Qual o valor que será segurado? R$ \");\n\t\t\t\t\t\t\tdouble valor = sc.nextDouble();\n\t\t\t\t\t\t\twhile (valor < 0) {\n\t\t\t\t\t\t\t\tSystem.out.print(\"Insira um valor válido: R$ \");\n\t\t\t\t\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tSeguroDeVida.setValorSeguro(valor);\n\t\t\t\t\t\t\tconta.debitarSeguro(valor, conta, cliente);\n\t\t\t\t\t\t\tcontratoSeguro = true;",
"score": 0.8917412161827087
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tconta.sacar(valor, conta);\n\t\t\t\tEscritor.comprovanteSaque(conta, valor);\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\tSystem.out.printf(\"Insira o valor para depósito: R$ \");\n\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\tconta.depositar(valor, conta);\n\t\t\t\tEscritor.comprovanteDeposito(conta, valor); \n\t\t\t\tSystem.out.printf(\"Saldo atual: R$ %.2f\", conta.getSaldo());",
"score": 0.8769808411598206
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"[2] Depósito\");\n\t\t\tSystem.out.println(\"[3] Transferência para outra conta\");\n\t\t\tSystem.out.println(\"[4] Extrato da conta\");\n\t\t\tSystem.out.println(\"[5] Relatórios e Saldo\");\n\t\t\tSystem.out.println(\"[6] Logout\");\n\t\t\tint opcao = sc.nextInt();\n\t\t\tswitch (opcao) {\n\t\t\tcase 1:\n\t\t\t\tSystem.out.print(\"Insira o valor do saque: R$ \");\n\t\t\t\tdouble valor = sc.nextDouble();",
"score": 0.8676797151565552
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tSystem.out.println();\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 3:\n\t\t\t\tSystem.out.printf(\"Insira o valor da transferencia: R$ \");\n\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\tif (valor < 0) {\n\t\t\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\t}",
"score": 0.8670027852058411
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\tif (valor > 0) {\n\t\t\tsaldo += valor;\n\t\t\tExtrato deposito = new Extrato(LocalDate.now(), \"Depósito\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(deposito);\n\t\t} else {\n\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t}\n\t}\n}",
"score": 0.8572765588760376
}
] |
java
|
= valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
|
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double
|
tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
|
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
|
src/relatorios/Relatorio.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.9204610586166382
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Total gasto em transações = R$\" + conta.getTotalTarifas();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para saque = \" + ContaCorrente.getTarifaSaque();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de saques realizados = \" + conta.getTotalSaques();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para deposito = \" + ContaCorrente.getTarifaDeposito();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de depósitos realizados = \" + conta.getTotalDepositos();\n\t\t\tbw.append(linha + \"\\n\\n\");",
"score": 0.8991019129753113
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tconta.sacar(valor, conta);\n\t\t\t\tEscritor.comprovanteSaque(conta, valor);\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\tSystem.out.printf(\"Insira o valor para depósito: R$ \");\n\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\tconta.depositar(valor, conta);\n\t\t\t\tEscritor.comprovanteDeposito(conta, valor); \n\t\t\t\tSystem.out.printf(\"Saldo atual: R$ %.2f\", conta.getSaldo());",
"score": 0.896088719367981
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8960049152374268
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "import segurosDeVida.SeguroDeVida;\npublic class ContaCorrente extends Conta {\n\tprivate final static double TARIFA_SAQUE = 0.1;\n\tprivate final static double TARIFA_DEPOSITO = 0.1;\n\tprivate final static double TARIFA_TRANSFERENCIA = 0.2;\n\tprivate double totalSaques;\n\tprivate double totalDepositos;\n\tprivate double totalTransferencias;\n\tpublic ContaCorrente() {\n\t\tsuper();",
"score": 0.891849935054779
}
] |
java
|
tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" +
|
ag.getNumAgencia());
|
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/principal/SistemaBancario.java",
"retrieved_chunk": "\tpublic static Map<String, Conta> mapaDeContas = new HashMap<>();\n\tpublic static List<Agencia> listaAgencias = new ArrayList<>();\n\tpublic static void main(String[] args) throws InputMismatchException, NullPointerException, IOException {\n\t\tLeitor.leitura(\".\\\\database\\\\registrodedados.txt\");\t\t\n\t\tMenu.menuEntrada();\n\t}\n}",
"score": 0.8434655666351318
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "package io;\nimport java.io.BufferedReader;\nimport java.io.FileReader;\nimport java.io.IOException;\nimport agencias.Agencia;\nimport contas.ContaCorrente;\nimport contas.ContaPoupanca;\nimport contas.enums.ContasEnum;\nimport pessoas.Cliente;\nimport pessoas.Diretor;",
"score": 0.8384453058242798
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 0.8383923768997192
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 0.8297637701034546
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tEscritor.registroDeDadosAtualizados();\n\t\t\t\tSystem.out.println(\"Sistema encerrado.\");\n\t\t\t\tSystem.exit(0);\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tmenuEntrada();\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (InputMismatchException e) {\n\t\t\tSystem.out.println();",
"score": 0.829235315322876
}
] |
java
|
ag.getNumAgencia());
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular(
|
).getNome() + "_" + conta.getTitular().getTipoDeUsuario();
|
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.870751142501831
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.866421639919281
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8645639419555664
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tconta.sacar(valor, conta);\n\t\t\t\tEscritor.comprovanteSaque(conta, valor);\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\tSystem.out.printf(\"Insira o valor para depósito: R$ \");\n\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\tconta.depositar(valor, conta);\n\t\t\t\tEscritor.comprovanteDeposito(conta, valor); \n\t\t\t\tSystem.out.printf(\"Saldo atual: R$ %.2f\", conta.getSaldo());",
"score": 0.8605085611343384
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 0.8595075011253357
}
] |
java
|
).getNome() + "_" + conta.getTitular().getTipoDeUsuario();
|
package colas;
public class Ejercicios {
public void Ejercicio1(Queue queue) {
int acum = 0;
Nodo pointer = queue.getHead();
while (pointer != null) {
acum += (int) pointer.getElement();
pointer = (Nodo) pointer.getNext();
}
if (!queue.isEmpty()){
System.out.println("El promedio es:"+(double)(acum/queue.getSize()));
}
Nodo pointer2 = (Nodo) queue.getHead();
int cont = queue.getSize()-1;
int cont2 = 0;
int cont3 =0;
boolean firstTime = true;
while ((pointer2 != queue.getHead() || firstTime)){
firstTime = false;
while (cont2 < cont) {
pointer2 = (Nodo) pointer2.getNext();
cont2++;
}
System.out.println(pointer2.getElement());
cont--;
cont2 = 0;
pointer2 = (Nodo) queue.getHead().getNext();
cont3++;
if (cont3 ==
|
queue.getSize()){
|
break;
}
}
}
}
|
Semana 7/Lunes/Colas/src/colas/Ejercicios.java
|
Estructura-de-Datos-2223-3-S2-Ejercicios-en-clase-c874295
|
[
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n }\n } else {\n System.out.println(\"Error in index\");\n }",
"score": 0.9172651171684265
},
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " while (true) {\n Nodo pointer2 = getHead();\n while (cont2 < cont) {\n pointer2 = pointer2.getNext();\n cont2++;\n }\n aux2 += pointer2.getElement();\n cont--;\n cont2=0;\n System.out.println(\"aux \"+aux+\" aux2 \"+aux2);",
"score": 0.9128345251083374
},
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n } else {\n System.out.println(\"Error in index\");\n }\n }\n }",
"score": 0.8925355672836304
},
{
"filename": "Semana 7/Lunes/Colas/src/colas/Queue.java",
"retrieved_chunk": " pointer = (Nodo) pointer.getNext();\n }\n }\n}",
"score": 0.8925053477287292
},
{
"filename": "Semana 6/Colas/src/colas/Queue.java",
"retrieved_chunk": " pointer = (Nodo) pointer.getNext();\n }\n }\n}",
"score": 0.8925053477287292
}
] |
java
|
queue.getSize()){
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha =
|
"Agência : " + conta.getAgencia();
|
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8738037943840027
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8736791014671326
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8668615818023682
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8612585067749023
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8577130436897278
}
] |
java
|
"Agência : " + conta.getAgencia();
|
package colas;
public class Ejercicios {
public void Ejercicio1(Queue queue) {
int acum = 0;
Nodo pointer = queue.getHead();
while (pointer != null) {
acum += (int) pointer.getElement();
pointer = (Nodo) pointer.getNext();
}
if (!queue.isEmpty()){
System.out.println("El promedio es:"+(double)(acum/queue.getSize()));
}
Nodo pointer2 = (Nodo) queue.getHead();
int cont = queue.getSize()-1;
int cont2 = 0;
int cont3 =0;
boolean firstTime = true;
while ((pointer2 != queue.getHead() || firstTime)){
firstTime = false;
while (cont2 < cont) {
pointer2 = (Nodo) pointer2.getNext();
cont2++;
}
System.out.println(pointer2.getElement());
cont--;
cont2 = 0;
pointer2
|
= (Nodo) queue.getHead().getNext();
|
cont3++;
if (cont3 == queue.getSize()){
break;
}
}
}
}
|
Semana 7/Lunes/Colas/src/colas/Ejercicios.java
|
Estructura-de-Datos-2223-3-S2-Ejercicios-en-clase-c874295
|
[
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " while (true) {\n Nodo pointer2 = getHead();\n while (cont2 < cont) {\n pointer2 = pointer2.getNext();\n cont2++;\n }\n aux2 += pointer2.getElement();\n cont--;\n cont2=0;\n System.out.println(\"aux \"+aux+\" aux2 \"+aux2);",
"score": 0.9271338582038879
},
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n }\n } else {\n System.out.println(\"Error in index\");\n }",
"score": 0.910170316696167
},
{
"filename": "Semana 3/ListasDobles/src/listasdobles/ListaDoble.java",
"retrieved_chunk": " while ( cont< index-1 && pointer != null) {\n pointer = (NodoDoble) pointer.getNext();\n cont++;\n }\n pointer2 = pointer.getNext();\n pointer.setNext(pointer2.getNext());\n pointer2.getNext().setPrevious(pointer);\n pointer2.setNext(null);\n pointer2.setPrevious(null);\n return pointer2;",
"score": 0.8808342814445496
},
{
"filename": "Semana 2/Miercoles/Lista/src/lista/Lista.java",
"retrieved_chunk": " int cont = 0;\n while ( cont< index-1 && pointer != null) {\n pointer = (Nodo) pointer.getNext();\n cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n } else {",
"score": 0.8745172023773193
},
{
"filename": "Semana 7/Lunes/Colas/src/colas/Queue.java",
"retrieved_chunk": " pointer = (Nodo) pointer.getNext();\n }\n }\n}",
"score": 0.87408846616745
}
] |
java
|
= (Nodo) queue.getHead().getNext();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf(
|
) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
|
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"Saque realizado com sucesso.\");\n\t\t\tExtrato saque = new Extrato(LocalDate.now(), \"Saque\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(saque);\n\t\t}\n\t}\n\t@Override\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");\n\t\t} else if (valor < 0) {",
"score": 0.8762767314910889
},
{
"filename": "src/contas/Conta.java",
"retrieved_chunk": "\t\t\tExtrato saque = new Extrato(LocalDate.now(), \"Saque\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(saque);\n\t\t}\n\t}\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");\n\t\t} else if (valor < 0) {\n\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t} else {",
"score": 0.8746115565299988
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tExtrato deposito = new Extrato(LocalDate.now(), \"Depósito\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(deposito);\n\t\t} else {\n\t\t\tSystem.out.println(\"Valor inválido\");\n\t\t}\n\t}\n\t@Override\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");",
"score": 0.8742294907569885
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\t\tSystem.out.printf(\"Entre com um CPF válido: \");\n\t\t\t\t\tcpfDestinatario = sc.nextLine();\n\t\t\t\t}\n\t\t\t\tConta contaDestino = SistemaBancario.mapaDeContas.get(cpfDestinatario);\n\t\t\t\tconta.transferir(contaDestino, valor, conta);\n\t\t\t\tEscritor.comprovanteTransferencia(conta, contaDestino, valor);\n\t\t\t\tSystem.out.println(\"Transferência realizada com sucesso.\");\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 4:",
"score": 0.8726453185081482
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 0.8682749271392822
}
] |
java
|
) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
|
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
|
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8569093942642212
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8561094999313354
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8524898290634155
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tsc.close();\n\t}\n\tpublic static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {\n\t\tint totalContas = 0;\n\t\tGerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Contas na agência do Gerente ******\");\n\t\ttry {\n\t\t\tif (gerente.getCpf().equals(cpf)) {\n\t\t\t\tfor (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {",
"score": 0.8482227921485901
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8480899333953857
}
] |
java
|
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta
|
.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
|
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8692419528961182
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8683927059173584
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8680692911148071
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 0.8619064688682556
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8583834767341614
}
] |
java
|
.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " +
|
conta.getTipoDeConta();
|
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8539918661117554
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.841500461101532
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.841050922870636
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8385218977928162
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8371385335922241
}
] |
java
|
conta.getTipoDeConta();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha =
|
"Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
|
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.873209536075592
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8617146611213684
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8610935211181641
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8578938245773315
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8522979021072388
}
] |
java
|
"Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " +
|
conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
|
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8533902168273926
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8528624176979065
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8521913886070251
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8442597389221191
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8415268063545227
}
] |
java
|
conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: "
|
+ conta.imprimeCPF(conta.getCpf());
|
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8785425424575806
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8676412105560303
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8670695424079895
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8628367781639099
},
{
"filename": "src/contas/Conta.java",
"retrieved_chunk": "\t}\n\tpublic abstract void imprimeExtrato(Conta conta);\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Numero = \" + getNumConta() + \", agencia = \" + agencia + \", titular = \" + titular + \", cpf = \" + cpf\n\t\t\t\t+ \", saldo = \" + saldo;\n\t}\n}",
"score": 0.858863353729248
}
] |
java
|
+ conta.imprimeCPF(conta.getCpf());
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: "
|
+ conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
|
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8574191927909851
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8571280837059021
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8538070321083069
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8465971946716309
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8421745896339417
}
] |
java
|
+ conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (
|
Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
|
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8769893050193787
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8761548399925232
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t}\n\t\tSystem.out.println(\"**********************************************************\");\n\t\tSystem.out.println();\n\t\tEscritor.relatorioClientes(contas, conta, funcionario);\n\t}\n\tpublic static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"********* Consulta do Capital do Banco ***********\");\n\t\tdouble capitalBancoSaldo = 0;\n\t\tfor (Conta lista : listaContas) {",
"score": 0.8529505729675293
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8486855030059814
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8420892953872681
}
] |
java
|
Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
|
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
|
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.9081851840019226
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tcase 2:\n\t\t\t\tif (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {\n\t\t\t\t\tRelatorio.tributacaoCC((ContaCorrente) conta);\n\t\t\t\t\tEscritor.relatorioTributacaoCC((ContaCorrente) conta);\n\t\t\t\t} else {\n\t\t\t\t\tSystem.out.println();\n\t\t\t\t\tSystem.out.println(\"Desculpe, você não possui Conta Corrente.\");\n\t\t\t\t}\n\t\t\t\tmenuRelatorio(conta, cliente);\n\t\t\t\tbreak;",
"score": 0.8939548134803772
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8918161988258362
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8905576467514038
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8904155492782593
}
] |
java
|
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome(
|
) + "_" + conta.getTitular().getTipoDeUsuario();
|
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8814007043838501
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8775844573974609
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8622086644172668
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8609029054641724
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 0.855782151222229
}
] |
java
|
) + "_" + conta.getTitular().getTipoDeUsuario();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha
|
= "Agencia: " + conta.getAgencia();
|
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8971251249313354
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8812202215194702
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8796186447143555
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8778875470161438
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 0.8642263412475586
}
] |
java
|
= "Agencia: " + conta.getAgencia();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
|
linha = "Tipo: " + conta.getTipoDeConta();
|
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.9059038758277893
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8919810056686401
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8691239953041077
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 0.8626599311828613
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8610485792160034
}
] |
java
|
linha = "Tipo: " + conta.getTipoDeConta();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf(
|
) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
|
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8916210532188416
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8900671005249023
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 0.8738142251968384
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8698772192001343
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8664528131484985
}
] |
java
|
) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
|
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
|
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.918345034122467
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.868625819683075
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tdouble somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;\n\t\tSystem.out.println(\"Soma de todas as tarifas: R$\" + somaTarifas);\n\t\tSystem.out.println();\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor adicionado para seu seguro foi de: R$%.2f%n\",\n\t\t\t\t\tSeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t}\n\tpublic static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {\n\t\tScanner sc = new Scanner(System.in);",
"score": 0.8656690120697021
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tdo {\n\t\t\tSystem.out.printf(\"Quantos dias deseja saber o rendimento: \");\n\t\t\tdias = sc.nextInt();\n\t\t\tif (dias < 0)\n\t\t\t\tSystem.out.println(\"Insira um valor positivo de dias. \\n\");\n\t\t} while (dias < 0 || dias == null);\n\t\tDouble rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);\n\t\tdouble totalFinal = valorSimulado + rendimento;\n\t\tSystem.out.printf(\"O rendimento para o prazo informado: R$ %.2f%n\", rendimento);\n\t\tSystem.out.printf(\"Valor final ficaria: R$ %.2f\", totalFinal);",
"score": 0.8553183078765869
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8511710166931152
}
] |
java
|
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha =
|
"Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
|
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.910542905330658
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.892012894153595
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8896080851554871
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8892799615859985
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8726359605789185
}
] |
java
|
"Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha
|
= "Simulação para CPF: " + conta.getCpf();
|
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8745418787002563
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.868863582611084
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8627758622169495
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8627059459686279
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8528477549552917
}
] |
java
|
= "Simulação para CPF: " + conta.getCpf();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha =
|
"Agência : " + conta.getAgencia().getNumAgencia();
|
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8418678045272827
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t\t\t\tif (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()\n\t\t\t\t\t\t\t.equals(gerente.getAgencia().getNumAgencia())) {\n\t\t\t\t\t\tSystem.out.println(SistemaBancario.mapaDeContas.get(cpfConta));\n\t\t\t\t\t\ttotalContas++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tSystem.out.println(\"Total de contas na agência : \" + totalContas);\n\t\t\t\tSystem.out.println(\"******************************************\");\n\t\t\t\tEscritor.relatorioContasPorAgencia(conta, funcionario);\n\t\t\t}",
"score": 0.8405057191848755
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8367900848388672
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tsc.close();\n\t}\n\tpublic static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {\n\t\tint totalContas = 0;\n\t\tGerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Contas na agência do Gerente ******\");\n\t\ttry {\n\t\t\tif (gerente.getCpf().equals(cpf)) {\n\t\t\t\tfor (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {",
"score": 0.8358598351478577
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8349689245223999
}
] |
java
|
"Agência : " + conta.getAgencia().getNumAgencia();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha
|
= "Total gasto em transações = R$" + conta.getTotalTarifas();
|
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8725036382675171
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8613260984420776
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8580012917518616
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8556256294250488
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.853056788444519
}
] |
java
|
= "Total gasto em transações = R$" + conta.getTotalTarifas();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format(
|
"%.2f", ((ContaCorrente) conta).getTotalTarifas());
|
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8656049966812134
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 0.8653813600540161
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8635616302490234
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t}\n\t\tSystem.out.println(\"**********************************************************\");\n\t\tSystem.out.println();\n\t\tEscritor.relatorioClientes(contas, conta, funcionario);\n\t}\n\tpublic static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"********* Consulta do Capital do Banco ***********\");\n\t\tdouble capitalBancoSaldo = 0;\n\t\tfor (Conta lista : listaContas) {",
"score": 0.8600437641143799
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8567185401916504
}
] |
java
|
"%.2f", ((ContaCorrente) conta).getTotalTarifas());
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf(
|
) + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
|
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.9113152027130127
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tdouble somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;\n\t\tSystem.out.println(\"Soma de todas as tarifas: R$\" + somaTarifas);\n\t\tSystem.out.println();\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor adicionado para seu seguro foi de: R$%.2f%n\",\n\t\t\t\t\tSeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t}\n\tpublic static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {\n\t\tScanner sc = new Scanner(System.in);",
"score": 0.8656927943229675
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8578755259513855
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "package contas;\nimport java.text.SimpleDateFormat;\nimport java.time.LocalDate;\nimport java.util.Date;\nimport agencias.Agencia;\nimport contas.enums.ContasEnum;\nimport extratos.Extrato;\nimport pessoas.Cliente;\npublic class ContaPoupanca extends Conta {\n\tprivate static final double TAXA_RENDIMENTO_MES = 0.005;",
"score": 0.8537311553955078
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tdo {\n\t\t\tSystem.out.printf(\"Quantos dias deseja saber o rendimento: \");\n\t\t\tdias = sc.nextInt();\n\t\t\tif (dias < 0)\n\t\t\t\tSystem.out.println(\"Insira um valor positivo de dias. \\n\");\n\t\t} while (dias < 0 || dias == null);\n\t\tDouble rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);\n\t\tdouble totalFinal = valorSimulado + rendimento;\n\t\tSystem.out.printf(\"O rendimento para o prazo informado: R$ %.2f%n\", rendimento);\n\t\tSystem.out.printf(\"Valor final ficaria: R$ %.2f\", totalFinal);",
"score": 0.8522487282752991
}
] |
java
|
) + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
|
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
|
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8572205305099487
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8538601994514465
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.845462441444397
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8452103137969971
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8450312614440918
}
] |
java
|
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha
|
= "Taxa para saque = " + ContaCorrente.getTarifaSaque();
|
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8901178240776062
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8857290148735046
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8753545880317688
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "import io.Escritor;\nimport menus.Menu;\nimport pessoas.Cliente;\nimport pessoas.Funcionario;\nimport pessoas.Gerente;\nimport principal.SistemaBancario;\nimport segurosDeVida.SeguroDeVida;\npublic class Relatorio {\n\tpublic static void imprimirSaldo(Conta conta) {\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");",
"score": 0.8714214563369751
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8655645251274109
}
] |
java
|
= "Taxa para saque = " + ContaCorrente.getTarifaSaque();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha
|
= "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
|
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8964440822601318
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8756531476974487
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8728033304214478
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.8661672472953796
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8600635528564453
}
] |
java
|
= "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
|
/*
* This file is part of CheckHost4J - https://github.com/FlorianMichael/CheckHost4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.checkhost4j.types;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import de.florianmichael.checkhost4j.CheckHostAPI;
import de.florianmichael.checkhost4j.results.*;
import java.io.IOException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class InternalInterface {
static Map<CHServer, PingResult> ping(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject
|
main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
|
Map<CHServer, PingResult> result = new HashMap<>();
for (CHServer server : servers) {
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
JsonArray jsonArray = main.get(server.name()).getAsJsonArray();
for (int k = 0; k < jsonArray.size(); k++) {
final JsonElement element = jsonArray.get(k);
if (element.isJsonArray()) {
JsonArray innerJsonArray = element.getAsJsonArray();
List<PingResult.PingEntry> pEntries = new ArrayList<>();
for (int j = 0; j < innerJsonArray.size(); j++) {
if (!innerJsonArray.get(j).isJsonArray()) continue;
JsonArray ja3 = innerJsonArray.get(j).getAsJsonArray();
if (ja3.size() != 2 && ja3.size() != 3) {
pEntries.add(new PingResult.PingEntry("Unable to resolve domain name.", -1, null));
continue;
}
String status = ja3.get(0).getAsString();
double ping = ja3.get(1).getAsDouble();
String addr = null;
if (ja3.size() > 2) {
addr = ja3.get(2).getAsString();
}
PingResult.PingEntry pEntry = new PingResult.PingEntry(status, ping, addr);
pEntries.add(pEntry);
}
result.put(server, new PingResult(pEntries));
}
}
}
return result;
}
static Map<CHServer, TCPResult> tcp(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, TCPResult> result = new HashMap<CHServer, TCPResult>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
JsonObject obj = ja.get(0).getAsJsonObject();
String error = null;
if (obj.has("error")) {
error = obj.get("error").getAsString();
}
String addr = null;
if (obj.has("address")) {
addr = obj.get("address").getAsString();
}
double ping = 0;
if (obj.has("time")) {
ping = obj.get("time").getAsDouble();
}
TCPResult res = new TCPResult(ping, addr, error);
result.put(server, res);
}
return result;
}
static Map<CHServer, UDPResult> udp(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, UDPResult> result = new HashMap<>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
JsonObject obj = ja.get(0).getAsJsonObject();
String error = null;
if (obj.has("error")) {
error = obj.get("error").getAsString();
}
String addr = null;
if (obj.has("address")) {
addr = obj.get("address").getAsString();
}
double ping = 0;
if (obj.has("time")) {
ping = obj.get("time").getAsDouble();
}
double timeout = 0;
if (obj.has("timeout")) {
timeout = obj.get("timeout").getAsDouble();
}
UDPResult res = new UDPResult(timeout, ping, addr, error);
result.put(server, res);
}
return result;
}
static Map<CHServer, HTTPResult> http(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, HTTPResult> result = new HashMap<CHServer, HTTPResult>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
ja = ja.get(0).getAsJsonArray();
double ping = ja.get(1).getAsDouble();
String status = ja.get(2).getAsString();
int error = ja.size() > 3 && ja.get(3).isJsonPrimitive() ? ja.get(3).getAsInt() : -1;
if (error == -1)
continue;
String addr = ja.size() > 4 && ja.get(4).isJsonPrimitive() ? ja.get(4).getAsString() : null;
HTTPResult res = new HTTPResult(status, ping, addr, error);
result.put(server, res);
}
return result;
}
static Map<CHServer, DNSResult> dns(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, DNSResult> result = new HashMap<CHServer, DNSResult>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
JsonObject obj = ja.get(0).getAsJsonObject();
Map<String, String[]> domainInfos = new HashMap<String, String[]>();
for (Map.Entry<String, JsonElement> entry : obj.entrySet()) {
if (entry.getKey().equals("TTL") || !entry.getValue().isJsonArray())
continue;
JsonArray ja2 = entry.getValue().getAsJsonArray();
String[] values = new String[ja2.size()];
for (int k = 0; k < ja2.size(); k++) {
if (ja2.get(k).isJsonPrimitive()) {
values[k] = ja2.get(k).getAsString();
}
}
domainInfos.put(entry.getKey(), values);
}
DNSResult res = new DNSResult(obj.has("TTL") && obj.get("TTL").isJsonPrimitive() ? obj.get("TTL").getAsInt() : -1, domainInfos);
result.put(server, res);
}
return result;
}
}
|
src/main/java/de/florianmichael/checkhost4j/types/InternalInterface.java
|
FlorianMichael-CheckHost4J-b580631
|
[
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "import java.util.Map.Entry;\npublic final class CheckHostAPI {\n\tpublic final static Gson GSON = new Gson();\n\tpublic static CHResult<Map<CHServer, PingResult>> createPingRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.PING, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.PING, entry.getKey(), entry.getValue());\n\t}\n\tpublic static CHResult<Map<CHServer, TCPResult>> createTCPRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.TCP, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.TCP, entry.getKey(), entry.getValue());",
"score": 0.8838960528373718
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.DNS, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.DNS, entry.getKey(), entry.getValue());\n\t}\n\tprivate static Entry<String, List<CHServer>> sendCheckHostRequest(ResultTypes type, String host, int maxNodes) throws IOException {\n\t\tfinal JsonObject main = performGetRequest(\"https://check-host.net/check-\" + type.value.toLowerCase(Locale.ROOT) + \"?host=\" + URLEncoder.encode(host, StandardCharsets.UTF_8) + \"&max_nodes=\" + maxNodes);\n\t\tif(!main.has(\"nodes\")) throw new IOException(\"Invalid response!\");\n\t\tfinal List<CHServer> servers = new ArrayList<>();\n\t\tJsonObject nodes = main.get(\"nodes\").getAsJsonObject();\n\t\tfor(Entry<String, JsonElement> entry : nodes.entrySet()) {\n\t\t\tfinal JsonArray list = entry.getValue().getAsJsonArray();",
"score": 0.8478965163230896
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/types/CHResult.java",
"retrieved_chunk": "import java.util.Map.Entry;\npublic class CHResult<T> {\n\tprivate final ResultTypes type;\n\tprivate final List<CHServer> servers;\n\tprivate final String requestId;\n\tprivate T result;\n\tpublic CHResult(ResultTypes type, String requestId, List<CHServer> servers) throws IOException {\n\t\tthis.type = type;\n\t\tthis.requestId = requestId;\n\t\tthis.servers = servers;",
"score": 0.8375924825668335
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "\t}\n\tpublic static CHResult<Map<CHServer, UDPResult>> createUDPRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.UDP, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.UDP, entry.getKey(), entry.getValue());\n\t}\n\tpublic static CHResult<Map<CHServer, HTTPResult>> createHTTPRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.HTTP, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.HTTP, entry.getKey(), entry.getValue());\n\t}\n\tpublic static CHResult<Map<CHServer, DNSResult>> createDNSRequest(String host, int maxNodes) throws IOException {",
"score": 0.832216203212738
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "import de.florianmichael.checkhost4j.results.ResultTypes;\nimport de.florianmichael.checkhost4j.results.*;\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.net.HttpURLConnection;\nimport java.net.URL;\nimport java.net.URLEncoder;\nimport java.nio.charset.StandardCharsets;\nimport java.util.*;",
"score": 0.8221378922462463
}
] |
java
|
main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha =
|
"Total de saques realizados = " + conta.getTotalSaques();
|
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8504871129989624
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8449479937553406
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 0.8399745225906372
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.83757084608078
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8372957706451416
}
] |
java
|
"Total de saques realizados = " + conta.getTotalSaques();
|
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha =
|
"Total de tranferências realizadas = " + conta.getTotalTransferencias();
|
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
|
src/io/Escritor.java
|
filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d
|
[
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 0.8970696330070496
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 0.8858821392059326
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 0.879243016242981
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 0.8734815120697021
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 0.8719130754470825
}
] |
java
|
"Total de tranferências realizadas = " + conta.getTotalTransferencias();
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.util;
import de.florianmichael.classic4j.model.CookieStore;
import java.net.URLEncoder;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.charset.StandardCharsets;
public class WebRequests {
public final static HttpClient HTTP_CLIENT = HttpClient.newHttpClient();
@SafeVarargs
public static String createRequestBody(final Pair<String, String>... parameters) {
final StringBuilder builder = new StringBuilder();
for (int i = 0; i < parameters.length; i++) {
final Pair<String, String> parameter = parameters[i];
if (parameter.key() == null || parameter.value() == null) continue;
builder.append(parameter.key()).append("=").
append(URLEncoder.encode(parameter.value(), StandardCharsets.UTF_8));
if (i != parameters.length - 1) {
builder.append("&");
}
}
return builder.toString();
}
public static HttpRequest buildWithCookies(final CookieStore cookieStore, final HttpRequest.Builder builder) {
return
|
cookieStore.appendCookies(builder).build();
|
}
public static void updateCookies(final CookieStore cookieStore, final HttpResponse<?> response) {
cookieStore.mergeFromResponse(response);
}
}
|
src/main/java/de/florianmichael/classic4j/util/WebRequests.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " this.merge(store);\n }\n public HttpRequest.Builder appendCookies(HttpRequest.Builder builder) {\n builder.header(\"Cookie\", this.toString());\n return builder;\n }\n public static CookieStore parse(final String value) {\n final char[] characters = value.toCharArray();\n StringBuilder currentKey = new StringBuilder();\n StringBuilder currentValue = new StringBuilder();",
"score": 0.8524593710899353
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " values.put(currentKey.toString(), currentValue.toString());\n continue;\n }\n if (key) {\n currentKey.append(character);\n } else {\n currentValue.append(character);\n }\n }\n return new CookieStore(values);",
"score": 0.8120826482772827
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " return builder.toString();\n }\n public void mergeFromResponse(HttpResponse<?> response) {\n final Optional<String> setCookieHeaderOptional = response.headers()\n .firstValue(\"set-cookie\");\n if (setCookieHeaderOptional.isEmpty()) {\n return;\n }\n final String setCookieHeader = setCookieHeaderOptional.get();\n final CookieStore store = CookieStore.parse(setCookieHeader);",
"score": 0.807152271270752
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " }\n public Map<String, String> getMap() {\n return Collections.unmodifiableMap(values);\n }\n public void merge(CookieStore cookieStore) {\n this.values.putAll(cookieStore.getMap());\n }\n @Override\n public String toString() {\n final StringBuilder builder = new StringBuilder();",
"score": 0.8012776970863342
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " int i = 0;\n for (Map.Entry<String, String> entry : values.entrySet()) {\n if (i != 0) {\n builder.append(\";\");\n }\n builder.append(entry.getKey());\n builder.append(\"=\");\n builder.append(entry.getValue());\n i++;\n }",
"score": 0.7855123281478882
}
] |
java
|
cookieStore.appendCookies(builder).build();
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.util;
import de.florianmichael.classic4j.model.CookieStore;
import java.net.URLEncoder;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.charset.StandardCharsets;
public class WebRequests {
public final static HttpClient HTTP_CLIENT = HttpClient.newHttpClient();
@SafeVarargs
public static String createRequestBody(final Pair<String, String>... parameters) {
final StringBuilder builder = new StringBuilder();
for (int i = 0; i < parameters.length; i++) {
final Pair<String, String> parameter = parameters[i];
if (parameter.key() == null || parameter.value() == null) continue;
builder.append(parameter.key()).append("=").
append(URLEncoder.encode(parameter.value(), StandardCharsets.UTF_8));
if (i != parameters.length - 1) {
builder.append("&");
}
}
return builder.toString();
}
public static HttpRequest buildWithCookies(final CookieStore cookieStore, final HttpRequest.Builder builder) {
return cookieStore.appendCookies(builder).build();
}
public static void updateCookies(final CookieStore cookieStore, final HttpResponse<?> response) {
|
cookieStore.mergeFromResponse(response);
|
}
}
|
src/main/java/de/florianmichael/classic4j/util/WebRequests.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " return builder.toString();\n }\n public void mergeFromResponse(HttpResponse<?> response) {\n final Optional<String> setCookieHeaderOptional = response.headers()\n .firstValue(\"set-cookie\");\n if (setCookieHeaderOptional.isEmpty()) {\n return;\n }\n final String setCookieHeader = setCookieHeaderOptional.get();\n final CookieStore store = CookieStore.parse(setCookieHeader);",
"score": 0.8872037529945374
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " this.merge(store);\n }\n public HttpRequest.Builder appendCookies(HttpRequest.Builder builder) {\n builder.header(\"Cookie\", this.toString());\n return builder;\n }\n public static CookieStore parse(final String value) {\n final char[] characters = value.toCharArray();\n StringBuilder currentKey = new StringBuilder();\n StringBuilder currentValue = new StringBuilder();",
"score": 0.872861921787262
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " }\n public Map<String, String> getMap() {\n return Collections.unmodifiableMap(values);\n }\n public void merge(CookieStore cookieStore) {\n this.values.putAll(cookieStore.getMap());\n }\n @Override\n public String toString() {\n final StringBuilder builder = new StringBuilder();",
"score": 0.8169151544570923
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " values.put(currentKey.toString(), currentValue.toString());\n continue;\n }\n if (key) {\n currentKey.append(character);\n } else {\n currentValue.append(character);\n }\n }\n return new CookieStore(values);",
"score": 0.8126541376113892
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": "import java.util.HashMap;\nimport java.util.Map;\nimport java.util.Optional;\npublic class CookieStore {\n private final Map<String, String> values;\n public CookieStore() {\n this.values = new HashMap<>();\n }\n public CookieStore(Map<String, String> values) {\n this.values = values;",
"score": 0.7870653867721558
}
] |
java
|
cookieStore.mergeFromResponse(response);
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
configurator.loadConfiguration();
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader =
|
new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
|
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
|
src/main/java/net/dragondelve/downfall/DownfallMain.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " saveRealm.setOnAction(e -> saveRealmAction());\n saveRealmTo.setOnAction(e -> saveRealmToAction());\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n minimizeButton.setStage(stage);\n maximizeButton.setStage(stage);\n exitButton.setStage(stage);\n menuBar.setOnMousePressed(e->{\n xOffset = stage.getX() - e.getScreenX();\n yOffset = stage.getY() - e.getScreenY();",
"score": 0.8925552368164062
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": "import net.dragondelve.downfall.util.Configurator;\nimport net.dragondelve.downfall.util.DownfallUtil;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.fxml.FXML;\nimport javafx.scene.control.*;\nimport javafx.scene.layout.AnchorPane;\nimport javafx.stage.Stage;\nimport javafx.util.converter.NumberStringConverter;\nimport java.io.File;",
"score": 0.8828648328781128
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/DownfallUtil.java",
"retrieved_chunk": " }\n try {\n URLDownfallMainFXML = new URL(\"file:\" + DOWNFALL_MAIN_FXML_PATHNAME);\n } catch (MalformedURLException e) {\n informOfMalformedURL(\"file:\" + DOWNFALL_MAIN_FXML_PATHNAME);\n }\n try {\n URLRealmScreenFXML = new URL(\"file:\" + REALM_SCREEN_FXML_PATHNAME);\n } catch (MalformedURLException e) {\n informOfMalformedURL(\"file:\" + REALM_SCREEN_FXML_PATHNAME);",
"score": 0.8643183708190918
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " */\npublic class DownfallMainController implements StageController {\n @FXML\n private MenuItem buildingsEditItem;\n @FXML\n private MenuItem materialsEditItem;\n @FXML\n private MenuItem tagsEditItem;\n @FXML\n private MenuItem importRulesItem;",
"score": 0.8529622554779053
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " @FXML\n private MenuItem exportRulesItem;\n @FXML\n private AnchorPane realmAnchorPane;\n @FXML\n private BorderPane rootPane;\n @FXML\n private MinimizeButton minimizeButton;\n @FXML\n private MaximizeButton maximizeButton;",
"score": 0.8517789840698242
}
] |
java
|
new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty() .unbindBidirectional(tag.tagProperty());
isFactionalCheckBox.
|
selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
|
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " */\n private void enableTradable() {\n exportPriceTextField.setDisable(false);\n }\n /**\n * Unbinds the properties of a given materials from all TextFields and CheckBoxes.\n * @param template template to be unbound.\n */\n private void unbindMaterial(VisualMaterialTemplate template) {\n nameTextField.textProperty() .unbindBidirectional(template.nameProperty());",
"score": 0.847334623336792
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 0.8434779644012451
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " private TextField treasuryTextField;\n @FXML\n private TextField stabilityTextField;\n @FXML\n private SimpleTableEditor<Tag> tagEditor;\n @FXML\n private SimpleTableEditor<Material> stockpileEditor;\n private static final String STOCKPILE_NAME_COLUMN_NAME = \"Stockpile\";\n private static final String STOCKPILE_AMOUNT_COLUMN_NAME = \"Amount\";\n Stage stage = new Stage();",
"score": 0.8045527935028076
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " isExportableCheckBox.selectedProperty() .unbindBidirectional(template.isExportableProperty());\n pathToGFXTextField.textProperty() .unbindBidirectional(template.pathToGFXProperty());\n exportPriceTextField.textProperty() .unbindBidirectional(template.defExportPriceProperty());\n importPriceTextField.textProperty() .unbindBidirectional(template.defImportPriceProperty());\n }\n /**\n * Binds the properties of a given material to all TextFields and CheckBoxes.\n * @param materialTemplate template to be displayed\n */\n private void displayMaterial(VisualMaterialTemplate materialTemplate) {",
"score": 0.7942696809768677
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " //init Tag Editor\n TableColumn<Tag, String> tagColumn = new TableColumn<>(\"Tag\");\n tagColumn.setCellValueFactory(e->e.getValue().tagProperty());\n VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();\n visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));\n tagEditor.setFetcher(visualTagFetcher);\n tagEditor.setItems(realm.getTags());\n tagEditor.getTableView().getColumns().add(tagColumn);\n //Init file chooser buttons\n realmGFXButton.setOutput(realmGFXTextField);",
"score": 0.79380863904953
}
] |
java
|
selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
import java.util.List;
/**
* Template that is used when new buildings are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="visual-building-template")
public final class VisualBuildingTemplate extends BuildingTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. Generates an invalid instance with id set to -1
*/
public VisualBuildingTemplate() {
this(-1, "",-1,-1,false);
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param defConstructionCost construction cost per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
*/
public VisualBuildingTemplate(Integer id, String name, Integer defConstructionCost, Integer defConstructionTime, Boolean operatesImmediately) {
this(id, name
|
, null, null, defConstructionCost, null, defConstructionTime, operatesImmediately, Configurator.getInstance().getDefBuildingGFXPathname());
|
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param inputMaterials a list of input materials that are used in production in this building per turn
* @param outputMaterials a list of output materials that are produced in this building per turn
* @param defConstructionCost construction cost per turn of construction
* @param constructionMaterials a list of materials consumed during construction per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public VisualBuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately, String pathToGFX) {
super(id, name, inputMaterials, outputMaterials, defConstructionCost, constructionMaterials, defConstructionTime, operatesImmediately);
this.pathToGFXProperty.setValue(pathToGFX);
this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname());
}
/**
* Lightweight Accessor Method
* @return pathname to an image file that represents this building as a property. That Image should be square, but isn't required to be square
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Lightweight Accessor Method
* @return String pathname to an image file that represents this building.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Accessor Method that initiates graphics if they haven't been initialized
* @return Image that represents this Building.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.set(pathToGFX);
}
/**
* Updates the Image representation building to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
}
|
src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * @param defConstructionTime number of turns it takes to construct a building\n * @param operatesImmediately does the building operate immediately or do you need to finish its construction\n */\n public BuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately) {\n this.idProperty.setValue(id);\n this.inputMaterials.clear();\n if(inputMaterials != null)\n this.inputMaterials.addAll(inputMaterials);\n this.outputMaterials.clear();\n if(outputMaterials != null)",
"score": 0.9151206016540527
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java",
"retrieved_chunk": " * @param defExportPrice Default export price\n * @param defImportPrice Default import price\n * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n this(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname());\n }\n /**\n *",
"score": 0.8690187931060791
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Building.java",
"retrieved_chunk": " public Building() {\n this.id.set(-1);\n this.isOperating.set(false);\n }\n /**\n *\n * @param id id of the building template associated with this building.\n * @param isOperating flag that determines if the building is operating right now.\n */\n public Building(Integer id, Boolean isOperating) {",
"score": 0.8689903020858765
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " super();\n }\n /**\n *\n * @param id unique identifier used to differentiate different templates\n * @param name a human-readable name of the template.\n * @param inputMaterials a list of input materials that are used in production in this building per turn\n * @param outputMaterials a list of output materials that are produced in this building per turn\n * @param defConstructionCost construction cost per turn of construction\n * @param constructionMaterials a list of materials consumed during construction per turn of construction",
"score": 0.8674818277359009
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java",
"retrieved_chunk": " * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price\n * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n * @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square\n */\n public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral, String pathToGFX) {\n super(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral);",
"score": 0.8549995422363281
}
] |
java
|
, null, null, defConstructionCost, null, defConstructionTime, operatesImmediately, Configurator.getInstance().getDefBuildingGFXPathname());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Savegame;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Simple implementation of save manager that uses the Configurator class to store the LastSavegamePathname.
* If a savegame is loaded it also tries to find, load and apply the rules that were used when last saving this savegame.
*/
final class SimpleSaveManager implements SaveManager{
/**
* Loads and applies the savegame from last pathname used and attempts to find,
* load and validate the rules that are referenced in the savegame.
*/
@Override
public void loadFromLast() {
loadFrom(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Loads and applies the savegame from a given pathname and attempts to find,
* load and validate the rules that are referenced in the savegame.
* @param pathname pathname to a savegame file.
*/
@Override
public void loadFrom(String pathname) {
File saveFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Savegame savegame = (Savegame) unmarshaller.unmarshal(saveFile);
Configurator.getInstance(
|
).setUserRealm(savegame.getUserRealm());
|
Configurator.getInstance().loadAndApplyRules(savegame.getPathToRules());
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame config loading successfully completed.");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Savegame config loading failed, loading default ");
}
}
/**
* Formulates a new Savegame based on the state of the Configurator and then saves it
* to the last pathname used.
*/
@Override
public void saveToLast() {
saveTo(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Formulates a new Savegame ba
* @param pathname pathname to a file in which the savegame data will be recorded.
*/
@Override
public void saveTo(String pathname) {
Savegame savegame = new Savegame();
savegame.setPathToRules(Configurator.getInstance().getLastRulesPathname());
savegame.setUserRealm(Configurator.getInstance().getUserRealm());
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(savegame, file);
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Savegame to path: "+pathname);
}
}
}
|
src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " */\n private Rules loadRules(String pathname) {\n File rulesFile = new File(pathname);\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules loading initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Unmarshaller unmarshaller = context.createUnmarshaller();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules config loading successfully completed.\");\n Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);\n configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());",
"score": 0.886682391166687
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " marshaller.marshal(configuration, config);\n } catch (JAXBException | IllegalArgumentException e) {\n e.printStackTrace();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,\"Configuration saving failed =C\");\n }\n }\n /**\n * Loads rules from a specific provided pathname.\n * @param pathname pathname to an xml file where rules to be downloaded are located.\n * @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.",
"score": 0.8585010766983032
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " try {\n file.createNewFile();\n } catch (IOException ioException) {\n ioException.printStackTrace();\n }\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, \"Rules saving initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Marshaller marshaller = context.createMarshaller();\n marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);",
"score": 0.8550636768341064
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SaveManager.java",
"retrieved_chunk": " * Loads and applies the savegame from last pathname used and attempts to find,\n * load and validate the rules that are referenced in the savegame.\n */\n void loadFromLast();\n /**\n * Loads and applies the savegame from a given pathname and attempts to find,\n * load and validate the rules that are referenced in the savegame.\n * @param pathname pathname to a savegame file.\n */\n void loadFrom(String pathname);",
"score": 0.852321982383728
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " saveConfiguration();\n return rules;\n } catch (JAXBException | IllegalArgumentException e) {\n e.printStackTrace();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,\"Rules config loading failed, loading default \");\n Rules rules = loadDefaultRules();\n saveRules(rules, pathname);\n return rules;\n }\n }",
"score": 0.8481466770172119
}
] |
java
|
).setUserRealm(savegame.getUserRealm());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Savegame;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Simple implementation of save manager that uses the Configurator class to store the LastSavegamePathname.
* If a savegame is loaded it also tries to find, load and apply the rules that were used when last saving this savegame.
*/
final class SimpleSaveManager implements SaveManager{
/**
* Loads and applies the savegame from last pathname used and attempts to find,
* load and validate the rules that are referenced in the savegame.
*/
@Override
public void loadFromLast() {
loadFrom(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Loads and applies the savegame from a given pathname and attempts to find,
* load and validate the rules that are referenced in the savegame.
* @param pathname pathname to a savegame file.
*/
@Override
public void loadFrom(String pathname) {
File saveFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Savegame savegame = (Savegame) unmarshaller.unmarshal(saveFile);
Configurator.getInstance().setUserRealm(savegame.getUserRealm());
Configurator.getInstance(
|
).loadAndApplyRules(savegame.getPathToRules());
|
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame config loading successfully completed.");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Savegame config loading failed, loading default ");
}
}
/**
* Formulates a new Savegame based on the state of the Configurator and then saves it
* to the last pathname used.
*/
@Override
public void saveToLast() {
saveTo(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Formulates a new Savegame ba
* @param pathname pathname to a file in which the savegame data will be recorded.
*/
@Override
public void saveTo(String pathname) {
Savegame savegame = new Savegame();
savegame.setPathToRules(Configurator.getInstance().getLastRulesPathname());
savegame.setUserRealm(Configurator.getInstance().getUserRealm());
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(savegame, file);
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Savegame to path: "+pathname);
}
}
}
|
src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " */\n private Rules loadRules(String pathname) {\n File rulesFile = new File(pathname);\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules loading initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Unmarshaller unmarshaller = context.createUnmarshaller();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules config loading successfully completed.\");\n Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);\n configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());",
"score": 0.9205224514007568
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SaveManager.java",
"retrieved_chunk": " * Loads and applies the savegame from last pathname used and attempts to find,\n * load and validate the rules that are referenced in the savegame.\n */\n void loadFromLast();\n /**\n * Loads and applies the savegame from a given pathname and attempts to find,\n * load and validate the rules that are referenced in the savegame.\n * @param pathname pathname to a savegame file.\n */\n void loadFrom(String pathname);",
"score": 0.8895584344863892
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " marshaller.marshal(configuration, config);\n } catch (JAXBException | IllegalArgumentException e) {\n e.printStackTrace();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,\"Configuration saving failed =C\");\n }\n }\n /**\n * Loads rules from a specific provided pathname.\n * @param pathname pathname to an xml file where rules to be downloaded are located.\n * @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.",
"score": 0.8876540064811707
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " try {\n file.createNewFile();\n } catch (IOException ioException) {\n ioException.printStackTrace();\n }\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, \"Rules saving initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Marshaller marshaller = context.createMarshaller();\n marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);",
"score": 0.8774164915084839
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " saveConfiguration();\n return rules;\n } catch (JAXBException | IllegalArgumentException e) {\n e.printStackTrace();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,\"Rules config loading failed, loading default \");\n Rules rules = loadDefaultRules();\n saveRules(rules, pathname);\n return rules;\n }\n }",
"score": 0.8743842244148254
}
] |
java
|
).loadAndApplyRules(savegame.getPathToRules());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
import java.util.List;
/**
* Template that is used when new buildings are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="visual-building-template")
public final class VisualBuildingTemplate extends BuildingTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. Generates an invalid instance with id set to -1
*/
public VisualBuildingTemplate() {
this(-1, "",-1,-1,false);
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param defConstructionCost construction cost per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
*/
public VisualBuildingTemplate(Integer id, String name, Integer defConstructionCost, Integer defConstructionTime, Boolean operatesImmediately) {
this(id, name, null, null, defConstructionCost, null, defConstructionTime, operatesImmediately, Configurator.getInstance().getDefBuildingGFXPathname());
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param inputMaterials a list of input materials that are used in production in this building per turn
* @param outputMaterials a list of output materials that are produced in this building per turn
* @param defConstructionCost construction cost per turn of construction
* @param constructionMaterials a list of materials consumed during construction per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public VisualBuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately, String pathToGFX) {
super(id, name, inputMaterials, outputMaterials, defConstructionCost, constructionMaterials, defConstructionTime, operatesImmediately);
this.pathToGFXProperty.setValue(pathToGFX);
|
this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname());
|
}
/**
* Lightweight Accessor Method
* @return pathname to an image file that represents this building as a property. That Image should be square, but isn't required to be square
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Lightweight Accessor Method
* @return String pathname to an image file that represents this building.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Accessor Method that initiates graphics if they haven't been initialized
* @return Image that represents this Building.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.set(pathToGFX);
}
/**
* Updates the Image representation building to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
}
|
src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * @param defConstructionTime number of turns it takes to construct a building\n * @param operatesImmediately does the building operate immediately or do you need to finish its construction\n */\n public BuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately) {\n this.idProperty.setValue(id);\n this.inputMaterials.clear();\n if(inputMaterials != null)\n this.inputMaterials.addAll(inputMaterials);\n this.outputMaterials.clear();\n if(outputMaterials != null)",
"score": 0.9234623908996582
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java",
"retrieved_chunk": " * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price\n * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n * @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square\n */\n public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral, String pathToGFX) {\n super(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral);",
"score": 0.8933557271957397
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java",
"retrieved_chunk": " * @param defExportPrice Default export price\n * @param defImportPrice Default import price\n * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n this(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname());\n }\n /**\n *",
"score": 0.879069983959198
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " super();\n }\n /**\n *\n * @param id unique identifier used to differentiate different templates\n * @param name a human-readable name of the template.\n * @param inputMaterials a list of input materials that are used in production in this building per turn\n * @param outputMaterials a list of output materials that are produced in this building per turn\n * @param defConstructionCost construction cost per turn of construction\n * @param constructionMaterials a list of materials consumed during construction per turn of construction",
"score": 0.8706377744674683
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " private ObservableList<Material> outputMaterials = FXCollections.observableArrayList();\n private final IntegerProperty defConstructionCostProperty = new SimpleIntegerProperty();\n private ObservableList<Material> constructionMaterials = FXCollections.observableArrayList();\n private final IntegerProperty defConstructionTimeProperty = new SimpleIntegerProperty();\n private final BooleanProperty operatesImmediatelyProperty = new SimpleBooleanProperty();\n private final BooleanProperty ephemeralProperty = new SimpleBooleanProperty();\n /**\n * Default constructor. Does not provide any default values\n */\n public BuildingTemplate() {",
"score": 0.8564019799232483
}
] |
java
|
this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
configurator.loadConfiguration();
|
configurator.loadAndApplyRules();
|
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
|
src/main/java/net/dragondelve/downfall/DownfallMain.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " /**\n * Private constructor to make this class non instantiable.\n */\n private Configurator() {super();}\n /**\n * loads and applies rules stored as lastLoadedRules in the current configuration\n */\n public void loadAndApplyRules() {\n loadAndApplyRules(configuration.getLastRulesPathname());\n }",
"score": 0.8220031261444092
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " @Override\n public void initialize(Stage parent, ObservableList<Tag> items) {\n stage = new Stage();\n if(parent != null)\n stage.initOwner(parent);\n Scene scene = new Scene(this);\n stage.setScene(scene);\n tableView.setItems(Objects.requireNonNullElseGet(items, () -> FXCollections.observableList(Configurator.getInstance().getRules().getActorTags())));\n }\n /**",
"score": 0.8062790036201477
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " stockpileTableView.getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);\n stockpileTableView.setItems(Configurator.getInstance().getUserRealm().getStockpile());\n initializeTabs();\n update();\n }\n /**\n * Lightweight Mutator Method.\n * Always should be called before the stage is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */",
"score": 0.8012630939483643
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " Configurator.getInstance().loadAndApplyRules(selectedFile.getPath());\n }\n /**\n * loads the content of RealmScreen.fxml and puts its root node into the \"Realm\" tab.\n */\n private void initializeRealmTab() {\n try {\n FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLRealmScreenFXML());\n loader.setController(realmScreenController);\n Node screen = loader.load();",
"score": 0.8008974194526672
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " private void exportRules() {\n FileChooser fileChooser = new FileChooser();\n fileChooser.setTitle(\"Export Rules\");\n fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter(\"xml rules file\",\"*.xml\"));\n fileChooser.setInitialDirectory(new File(\"rules\"));\n File selectedFile = fileChooser.showSaveDialog(stage);\n if(selectedFile != null)\n Configurator.getInstance().saveRules(selectedFile.getPath());\n }\n /**",
"score": 0.7971817255020142
}
] |
java
|
configurator.loadAndApplyRules();
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
configurator.loadConfiguration();
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
|
configurator.saveRules();
|
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
|
src/main/java/net/dragondelve/downfall/DownfallMain.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " saveRealm.setOnAction(e -> saveRealmAction());\n saveRealmTo.setOnAction(e -> saveRealmToAction());\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n minimizeButton.setStage(stage);\n maximizeButton.setStage(stage);\n exitButton.setStage(stage);\n menuBar.setOnMousePressed(e->{\n xOffset = stage.getX() - e.getScreenX();\n yOffset = stage.getY() - e.getScreenY();",
"score": 0.8447394371032715
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": "import net.dragondelve.downfall.util.Configurator;\nimport net.dragondelve.downfall.util.DownfallUtil;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.fxml.FXML;\nimport javafx.scene.control.*;\nimport javafx.scene.layout.AnchorPane;\nimport javafx.stage.Stage;\nimport javafx.util.converter.NumberStringConverter;\nimport java.io.File;",
"score": 0.8414000272750854
},
{
"filename": "src/main/java/net/dragondelve/mabel/button/MaximizeButton.java",
"retrieved_chunk": " if(stage != null)\n stage.setMaximized(!stage.isMaximized());\n else {\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"MaximizeButton attempted to maximize a stage that was equal to null.\");\n }\n });\n }\n}",
"score": 0.8321681022644043
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " ObservableList<Tag> tags = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 0.8301836252212524
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " stage.setTitle(title);\n stage.showAndWait();\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n /**\n * Exports current ruleset to an XML File at a destination selected by a user with a JavaFX FileChooser.\n * Saves the new destination as lastLoadedRules in the Configuration.\n */",
"score": 0.8292309045791626
}
] |
java
|
configurator.saveRules();
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger
|
.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
|
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
|
src/main/java/net/dragondelve/downfall/util/Configurator.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " */\n private boolean validateMaterial(VisualMaterialTemplate materialTemplate) {\n File checkFile = new File(pathToGFXTextField.getText());\n if(checkFile.canRead()) {\n return true;\n } else {\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"Could not Find file: \"+pathToGFXTextField.getText()+\" when trying to check integrity during material template save.\");\n Alert alert = new Alert(Alert.AlertType.ERROR);\n alert.setHeaderText(\"Could not find file: \"+pathToGFXTextField.getText());\n alert.setContentText(pathToGFXTextField.getText()+\" must be a path to a valid readable file\");",
"score": 0.8146135807037354
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualMaterialTemplate on request.\n * @return a new instance of VisualMaterialTemplate with its id set to be one larger than the last VisualMaterialTemplate in the currently selected rules\n */\n @Override\n public VisualMaterialTemplate retrieve() {\n VisualMaterialTemplate template = new VisualMaterialTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n //if there are any MaterialTemplates in the current rules\n if(Configurator.getInstance().getRules().getMaterialTemplates().size() > 1)",
"score": 0.8116934299468994
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).nameProperty();\n });\n TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);\n stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));\n stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());\n stockpileAmountColumn.setEditable(true);\n ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();\n visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));\n stockpileEditor.setFetcher(visualMaterialFetcher);",
"score": 0.8115322589874268
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).nameProperty();\n });\n TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);\n stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));\n stockpileAmountColumn.setCellValueFactory(e -> e.getValue().amountProperty().asObject());\n stockpileAmountColumn.setEditable(true);\n stockpileAmountColumn.setPrefWidth(STOCKPILE_AMOUNT_COLUMN_WIDTH);\n stockpileAmountColumn.setMinWidth(STOCKPILE_AMOUNT_COLUMN_WIDTH*1.5);\n stockpileAmountColumn.setMaxWidth(STOCKPILE_AMOUNT_COLUMN_WIDTH*2);",
"score": 0.7990750074386597
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " Configurator.getInstance().getRules().getMaterialTemplates().addAll(materials);\n Configurator.getInstance().saveRules();\n }\n}",
"score": 0.7926759719848633
}
] |
java
|
.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator
|
= Configurator.getInstance();
|
configurator.loadConfiguration();
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
|
src/main/java/net/dragondelve/downfall/DownfallMain.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**",
"score": 0.8172621130943298
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " stockpileTableView.getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);\n stockpileTableView.setItems(Configurator.getInstance().getUserRealm().getStockpile());\n initializeTabs();\n update();\n }\n /**\n * Lightweight Mutator Method.\n * Always should be called before the stage is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */",
"score": 0.8114997148513794
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " this.stage = stage;\n }\n}",
"score": 0.805880606174469
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " configureMaterialEditor(constructionMaterialEditor, \"Material\", \"Amount\");\n //other inits\n pathToGFXButton.setOutput(pathToGFXTextField);\n okButton.setOnAction(e -> stage.close());\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage the stage that is displaying the editor.\n */",
"score": 0.8045207262039185
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " stockpileEditor.setItems(realm.getStockpile());\n stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {",
"score": 0.8002071380615234
}
] |
java
|
= Configurator.getInstance();
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
/**
* Template that is used when new materials are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="gfx-material-template")
public final class VisualMaterialTemplate extends MaterialTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. it generates an invalid VisualMaterialTemplate with an id of -1
*/
public VisualMaterialTemplate() {
this("",-1,-1,-1,false, false);
}
/**
* Initializes pathToGFX to the default MaterialGFXPathname defined in the current configuration.
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {
this(name, id, defExportPrice
|
, defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname());
|
}
/**
*
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral, String pathToGFX) {
super(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral);
this.pathToGFXProperty.setValue(pathToGFX);
this.pathToGFXProperty.setValue(Configurator.getInstance().getDefMaterialGFXPathname());
}
/**
* Lightweight accessor method.
* @return pathname to an image file that represents this material as a property.
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Updates the Image representation material to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
//TODO: I think something second loads these Graphics. MaterialEditorController (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
/**
* Lightweight accessor method that initiates graphics if they haven't been initialized
* @return Image that represents this material.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight accessor method.
* @return String pathname to an image file that represents this material.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.setValue(pathToGFX);
}
}
|
src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public MaterialTemplate(String name, Integer id, Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n super();\n this.nameProperty.setValue(name);\n this.idProperty.setValue(id);\n this.defExportPriceProperty .setValue(defExportPrice);\n this.defImportPriceProperty.setValue(defImportPrice);\n this.isExportableProperty.setValue(isExportable);",
"score": 0.935950756072998
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " */\n public MaterialTemplate() {\n super();\n }\n /**\n *\n * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price",
"score": 0.9100891947746277
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java",
"retrieved_chunk": " * @param id unique identifier used to differentiate different templates\n * @param name a human-readable name of the template.\n * @param defConstructionCost construction cost per turn of construction\n * @param defConstructionTime number of turns it takes to construct a building\n * @param operatesImmediately does the building operate immediately or do you need to finish its construction\n */\n public VisualBuildingTemplate(Integer id, String name, Integer defConstructionCost, Integer defConstructionTime, Boolean operatesImmediately) {\n this(id, name, null, null, defConstructionCost, null, defConstructionTime, operatesImmediately, Configurator.getInstance().getDefBuildingGFXPathname());\n }\n /**",
"score": 0.8689800500869751
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": "@XmlRootElement(name = \"material-template\")\npublic abstract class MaterialTemplate {\n private final StringProperty nameProperty = new SimpleStringProperty();\n private final IntegerProperty idProperty = new SimpleIntegerProperty(-1);\n private final IntegerProperty defExportPriceProperty = new SimpleIntegerProperty(-1);\n private final IntegerProperty defImportPriceProperty = new SimpleIntegerProperty(-1);\n private final BooleanProperty isExportableProperty = new SimpleBooleanProperty(false);\n private final BooleanProperty isEphemeralProperty = new SimpleBooleanProperty(false);\n /**\n * Default Constructor. Does not provide default values",
"score": 0.8597073554992676
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " super();\n }\n /**\n *\n * @param id unique identifier used to differentiate different templates\n * @param name a human-readable name of the template.\n * @param inputMaterials a list of input materials that are used in production in this building per turn\n * @param outputMaterials a list of output materials that are produced in this building per turn\n * @param defConstructionCost construction cost per turn of construction\n * @param constructionMaterials a list of materials consumed during construction per turn of construction",
"score": 0.8482279181480408
}
] |
java
|
, defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.button;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.image.ImageView;
/**
* a JavaFX TableColumn that displays an image for each row that corresponds to pathname of this cell's String value
* @param <S> Class of an object that is displayed in the TableView
*/
public class LogoTableColumn<S> extends TableColumn<S, String> {
public static final double DEFAULT_IMAGE_HEIGHT = 24;
public static final double DEFAULT_IMAGE_WIDTH = 24;
public static final double DEFAULT_COLUMN_WIDTH = 42;
private final DoubleProperty imageHeightProperty = new SimpleDoubleProperty(DEFAULT_IMAGE_HEIGHT);
private final DoubleProperty imageWidthProperty = new SimpleDoubleProperty(DEFAULT_IMAGE_WIDTH);
/**
* Lightweight accessor method
* @return image height property
*/
DoubleProperty ImageHeightProperty() {
return imageHeightProperty;
}
/**
* Lightweight accessor method
* @return image width property
*/
DoubleProperty ImageWidthProperty() {
return imageWidthProperty;
}
/**
* Lightweight accessor method
* @return numeric value of imageHeightProperty
*/
public Double getImageHeight() {
return imageHeightProperty.get();
}
/**
* Lightweight accessor method
* @return numeric value of imageWidthProperty
*/
public Double getImageWidth() {
return imageWidthProperty.get();
}
/**
* Lightweight mutator method
* @param height desired height of the image inside the column
*/
public void setImageHeight(Double height) {
imageHeightProperty.setValue(height);
}
/**
* Lightweight mutator method
* @param width desired width of the image inside the column
*/
public void setImageWidth(Double width) {
imageWidthProperty.setValue(width);
}
/**
* Default constructor. does not initialize the column title.
*/
public LogoTableColumn() {
super();
initializeCells();
}
/**
* Constructor that initializes the column title
* @param name title text of the column.
*/
public LogoTableColumn(String name) {
super(name);
initializeCells();
}
/**
* Sets default resize policy for the column. It is recommended to call this method before the column is displayed.
*/
public void setDefaultSizePolicy() {
this.minWidthProperty().setValue(DEFAULT_COLUMN_WIDTH);
this.prefWidthProperty().setValue(DEFAULT_COLUMN_WIDTH);
this.maxWidthProperty().setValue(DEFAULT_COLUMN_WIDTH);
}
/**
* Initializes the cell factory for this column to display an image that is loaded from pathname of the String value of the column
*/
private void initializeCells() {
setCellFactory(param -> {
ImageView view = new ImageView();
view.fitHeightProperty().bind(imageHeightProperty);
view.fitWidthProperty().bind(imageWidthProperty);
TableCell<S, String> cell = new TableCell<>() {
public void updateItem(String item, boolean empty) {
if (item != null) {
view.setImage(
|
DownfallUtil.getInstance().loadImage(item));
|
} else
view.setImage(null);
}
};
cell.setGraphic(view);
return cell;
});
}
}
|
src/main/java/net/dragondelve/mabel/button/LogoTableColumn.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " stockpileLogoColumn.setCellValueFactory(e-> {\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).pathToGFXProperty();\n });\n TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);\n stockpileNameColumn.setCellValueFactory(e ->{\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)",
"score": 0.8392537236213684
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " stockpileLogoColumn.setCellValueFactory(e-> {\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).pathToGFXProperty();\n });\n TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);\n stockpileNameColumn.setCellValueFactory(e ->{\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)",
"score": 0.8392537236213684
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " materialImageColumn.setCellValueFactory(param -> param.getValue().pathToGFXProperty());\n materialTemplateEditor.getTableView().getColumns().addAll(materialImageColumn, materialNameColumn);\n //listening for changes in selection made by the user in materials table view to update data displayed.\n materialTemplateEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {\n if(oldValue != null) {\n if (!validateMaterial(oldValue))\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"Material Editor Controller saving an invalid tag\");\n else\n unbindMaterial(oldValue);\n }",
"score": 0.8381115794181824
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " TableColumn<Material, String> nameColumn = new TableColumn<>(nameColumnTitle);\n nameColumn.setCellValueFactory(e ->{\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).nameProperty();\n });\n TableColumn<Material, Integer> amountColumn = new TableColumn<>(amountColumnTitle);\n amountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));\n amountColumn.setEditable(true);",
"score": 0.8370519280433655
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " ObservableList<Tag> tags = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 0.8164348602294922
}
] |
java
|
DownfallUtil.getInstance().loadImage(item));
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty() .unbindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty
|
() .bindBidirectional(tag.isFactionalProperty());
|
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 0.8397479057312012
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " */\n private void enableTradable() {\n exportPriceTextField.setDisable(false);\n }\n /**\n * Unbinds the properties of a given materials from all TextFields and CheckBoxes.\n * @param template template to be unbound.\n */\n private void unbindMaterial(VisualMaterialTemplate template) {\n nameTextField.textProperty() .unbindBidirectional(template.nameProperty());",
"score": 0.8343313336372375
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " isExportableCheckBox.selectedProperty() .unbindBidirectional(template.isExportableProperty());\n pathToGFXTextField.textProperty() .unbindBidirectional(template.pathToGFXProperty());\n exportPriceTextField.textProperty() .unbindBidirectional(template.defExportPriceProperty());\n importPriceTextField.textProperty() .unbindBidirectional(template.defImportPriceProperty());\n }\n /**\n * Binds the properties of a given material to all TextFields and CheckBoxes.\n * @param materialTemplate template to be displayed\n */\n private void displayMaterial(VisualMaterialTemplate materialTemplate) {",
"score": 0.8326438665390015
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());\n treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());\n diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());\n powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());\n legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());\n prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());\n infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());\n stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());\n realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());\n rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());",
"score": 0.8090403079986572
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " isFactional.set(false);\n }\n public Tag(Integer id, String tag, Boolean isFactional) {\n super();\n this.id.set(id);\n this.tag.set(tag);\n this.isFactional.set(isFactional);\n }\n /**\n * returns the tag value of the tag so that it can be made human-readable.",
"score": 0.8033713102340698
}
] |
java
|
() .bindBidirectional(tag.isFactionalProperty());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty()
|
.unbindBidirectional(tag.tagProperty());
|
isFactionalCheckBox.selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " */\n private void enableTradable() {\n exportPriceTextField.setDisable(false);\n }\n /**\n * Unbinds the properties of a given materials from all TextFields and CheckBoxes.\n * @param template template to be unbound.\n */\n private void unbindMaterial(VisualMaterialTemplate template) {\n nameTextField.textProperty() .unbindBidirectional(template.nameProperty());",
"score": 0.83431077003479
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 0.8317345976829529
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " private TextField treasuryTextField;\n @FXML\n private TextField stabilityTextField;\n @FXML\n private SimpleTableEditor<Tag> tagEditor;\n @FXML\n private SimpleTableEditor<Material> stockpileEditor;\n private static final String STOCKPILE_NAME_COLUMN_NAME = \"Stockpile\";\n private static final String STOCKPILE_AMOUNT_COLUMN_NAME = \"Amount\";\n Stage stage = new Stage();",
"score": 0.8200917840003967
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " this.stage = stage;\n }\n}",
"score": 0.8173041343688965
},
{
"filename": "src/main/java/net/dragondelve/mabel/button/StageControlButton.java",
"retrieved_chunk": " public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**\n * Overridden in subclasses to init the setOnAction to a particular action\n */\n protected void initBehaviour() {\n }\n}",
"score": 0.8143436312675476
}
] |
java
|
.unbindBidirectional(tag.tagProperty());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.button;
import net.dragondelve.downfall.util.DownfallUtil;
import net.dragondelve.downfall.util.PathRelativisor;
import javafx.scene.control.Button;
import javafx.scene.control.TextInputControl;
import javafx.stage.FileChooser;
import java.io.File;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* JavaFX Button that creates a FileChooser on action. the FileChooser is pre-configured to filter for images. Its initial directory is the gfx folder in the installation directory
*/
public class ImageChooserButton extends Button {
TextInputControl output;
/**
* Default constructor. If you use the default constructor you must set output before the button can be triggered by the user.
*/
public ImageChooserButton() {
this(null);
}
/**
* If you use this constructor the text title of the button will be set the default value of to "..."
* @param output a TextInputControl into which pathname to the chosen image will be written
*/
public ImageChooserButton(TextInputControl output) {
super();
textProperty().set("...");
this.output = output;
initBehaviour();
}
/**
*
* @param output a TextInputControl into which pathname to the chosen image will be written
* @param title text that is going to be displayed on the button.
*/
public ImageChooserButton(TextInputControl output,String title) {
super(title);
this.output = output;
initBehaviour();
}
/**
* Lightweight mutator method
* @param output a TextInputControl into which pathname to the chosen image will be written
*/
public void setOutput(TextInputControl output) {
this.output = output;
}
/**
* Initializes the default behaviour of the button.
*/
private void initBehaviour() {
setOnAction(e->{
FileChooser chooser = new FileChooser();
chooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("image","*.png"));
chooser.setInitialDirectory(new File("gfx"));
chooser.setTitle("Choose Your Image Wisely");
File fileChosen = chooser.showOpenDialog(this.getScene().getWindow());
if(output != null)
if(fileChosen != null) {
PathRelativisor relativisor = new PathRelativisor(fileChosen);
output.setText
|
(relativisor.relativize());
|
}
else
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.INFO, "ImageChooserButton: No File Chosen, content of output was not changed.");
else
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "Attempting to set Text without setting an output first.");
});
}
}
|
src/main/java/net/dragondelve/mabel/button/ImageChooserButton.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter(\"xml save file\",\"*.xml\"));\n fileChooser.setInitialDirectory(new File(\"save\"));\n File selectedFile = fileChooser.showSaveDialog(stage);\n if(selectedFile != null)\n Configurator.getInstance().getSaveManager().saveTo(selectedFile.getPath());\n }\n }",
"score": 0.8433380126953125
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " fileChooserButton.setOutput(pathToGFXTextField);\n okButton.setOnAction(e-> stage.close());\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {",
"score": 0.8379635810852051
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " private Button okButton;\n @FXML\n private TextField pathToGFXTextField;\n @FXML\n private ImageChooserButton fileChooserButton;\n @FXML\n private SplitPane rootPane;\n ObservableList<VisualMaterialTemplate> materials = FXCollections.emptyObservableList();\n Stage stage;\n /**",
"score": 0.8341054320335388
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " private TextField pathToGFXTextField;\n @FXML\n private Button okButton;\n @FXML\n private CheckBox operatesImmediatelyCheckBox;\n @FXML\n private BorderPane rootPane;\n ObservableList<VisualBuildingTemplate> buildingTemplates = FXCollections.emptyObservableList();\n ObservableList<Material> inputMaterials = FXCollections.emptyObservableList();\n ObservableList<Material> outputMaterials = FXCollections.emptyObservableList();",
"score": 0.8323119878768921
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " private TextField realmGFXTextField;\n @FXML\n private TextField realmNameTextField;\n @FXML\n private BorderPane rootPane;\n @FXML\n private ImageChooserButton rulerGFXButton;\n @FXML\n private TextField rulerGFXTextField;\n @FXML",
"score": 0.823721170425415
}
] |
java
|
(relativisor.relativize());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.fetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
/**
* Simple implementation of Fetcher class that returns a new instance of Tag on request
*/
public final class SimpleTagFetcher implements Fetcher<Tag> {
/**
* This method is used to return a new instance of Tag on request.
* @return a new instance of Tag with its id set to be one larger than the last Tag in the currently selected rules
*/
@Override
public Tag retrieve() {
Tag tag = new Tag();
//TODO:Replace this mess with a proper solution distributing IDs.
//if there are any Tags in the current rules
if(Configurator.getInstance().getRules().getActorTags().size() > 1)
//set the new instance's id to be equal of the last item in that list incremented by one
tag.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);
else
tag.setId(1);
|
tag.setTag("New Tag");
|
return tag;
}
}
|
src/main/java/net/dragondelve/mabel/fetcher/SimpleTagFetcher.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualMaterialTemplate on request.\n * @return a new instance of VisualMaterialTemplate with its id set to be one larger than the last VisualMaterialTemplate in the currently selected rules\n */\n @Override\n public VisualMaterialTemplate retrieve() {\n VisualMaterialTemplate template = new VisualMaterialTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n //if there are any MaterialTemplates in the current rules\n if(Configurator.getInstance().getRules().getMaterialTemplates().size() > 1)",
"score": 0.8490456938743591
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " //set the new instance's id to be equal of the last item in that list incremented by one\n template.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);\n else\n template.setId(1);\n template.setName(\"New Template\");\n return template;\n }\n}",
"score": 0.8488064408302307
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " //retrieving full list of tags in current rules.\n tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());\n //configuring Table Editor\n tagTableEditor.setFetcher(new SimpleTagFetcher());\n //Configuring Table View\n tagTableEditor.getTableView().setItems(tags);\n tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);\n //Configuring Columns\n TableColumn<Tag, String> tagColumn = new TableColumn<>();\n tagColumn.setText(\"Tag\");",
"score": 0.8408223390579224
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleBuildingTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualBuildingTemplate on request.\n * @return A new instance of VisualBuildingTemplate with its id set to be one larger than the last VisualBuildingTemplate in the currently selected rules\n */\n @Override\n public VisualBuildingTemplate retrieve() {\n VisualBuildingTemplate template = new VisualBuildingTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n if(Configurator.getInstance().getRules().getBuildingTemplates().size() > 1)\n template.setId(Configurator.getInstance().getRules().getBuildingTemplates().get(Configurator.getInstance().getRules().getBuildingTemplates().size()-1).getId()+1);",
"score": 0.8325434923171997
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " */\n@XmlRootElement(name = \"tag\")\npublic class Tag {\n private final IntegerProperty id = new SimpleIntegerProperty();\n private final StringProperty tag = new SimpleStringProperty();\n private final BooleanProperty isFactional = new SimpleBooleanProperty();\n public Tag() {\n super();\n id.set(-1);\n tag.set(\"\");",
"score": 0.8108505010604858
}
] |
java
|
tag.setTag("New Tag");
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.main.tabs;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.Accordion;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.*;
/**
* A controller that controls the content of the Realm Tab.
* It displays user's realm Data allowing the user to see a quick overview of the state of their realm.
* Controls /fxml/main/tabs/RealmScreenController.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmScreenController {
@FXML
private Label diploRepLabel;
@FXML
private ImageView dynastyImageView;
@FXML
private Label govRankLabel;
@FXML
private Label infamyLabel;
@FXML
private Label legitimacyLabel;
@FXML
private Label nationalUnrestLabel;
@FXML
private Label nuicpLabel;
@FXML
private Label powerProjectionLabel;
@FXML
private Label prestigeLabel;
@FXML
private ImageView realmImageView;
@FXML
private GridPane stabilityNegativeGrid;
@FXML
private Label stabilityPerMonthLabel;
@FXML
private GridPane stabilityPositiveGrid;
@FXML
private VBox rootPane;
@FXML
private Label stabilityLabel;
@FXML
private Label realmNameLabel;
@FXML
private Pane stabilityCirclePane;
@FXML
private ListView<Tag> realmTagListView;
@FXML
private ListView<Tag> nonRealmTagListView;
@FXML
private Accordion tagsAccordion;
@FXML
private Pane realmPane;
@FXML
private Pane dynastyPane;
@FXML
private Pane negStabilityPane1;
@FXML
private Pane negStabilityPane2;
@FXML
private Pane negStabilityPane3;
@FXML
private Pane negStabilityPane4;
@FXML
private Pane negStabilityPane5;
@FXML
private Pane posStabilityPane1;
@FXML
private Pane posStabilityPane2;
@FXML
private Pane posStabilityPane3;
@FXML
private Pane posStabilityPane4;
@FXML
private Pane posStabilityPane5;
private final static Double IMAGE_PANE_GAP = 10.0;
private final static Double IMAGE_PANE_HEIGHT = 200.0;
private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();
private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
realmTagListView.setItems(realmTags);
nonRealmTagListView.setItems(nonRealmTags);
tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));
//Update ImageView Positions.
realmImageView.setX(10);
realmImageView.setY(10);
dynastyImageView.setX(10);
dynastyImageView.setY(10);
update();
}
/**
* Updates values on all labels if there was an action or an event that could have changed them.
* Also updates ImageViews and the tag table.
*/
public void update() {
//update user realm
Realm userRealm =
|
Configurator.getInstance().getUserRealm();
|
//update Labels
realmNameLabel .setText(userRealm.getName());
diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());
stabilityLabel .setText(userRealm.getStability().toString());
legitimacyLabel .setText(userRealm.getLegitimacy().toString());
powerProjectionLabel .setText(userRealm.getPowerProjection().toString());
infamyLabel .setText(userRealm.getInfamy().toString());
prestigeLabel .setText(userRealm.getPrestige().toString());
//TODO: Add Gouvernment Rank
//govRankLabel.setText(userRealm.getGouvernmentRank());
//update Image views
updateImageView(realmPane, new Image("file:"+userRealm.getRealmPathToGFX()), realmImageView);
updateImageView(dynastyPane, new Image("file:"+userRealm.getRulerPathToGFX()), dynastyImageView);
//update Stability Bar
updateStabilityBar();
//update realm tags
realmTags.clear();
nonRealmTags.clear();
userRealm.getTags().forEach(e->{
if(e.isFactional())
realmTags.add(e);
else
nonRealmTags.add(e);
});
}
/**
* Updates the given ImageView to contain the given Image, if image provided is not null, forces the width of the container to conform to the ImageView's Image width
* modified so that the image keeps its aspect ratio, plus some gaps that are defined in IMAGE_PANE_GAP. If the image equals to null it forces the ImageView
* to conform to IMAGE_PANE_HEIGHT in both Width and Height.
* @param container Container Pane that contains the ImageView. It will be resized to have a height of IMAGE_PANE_HEIGHT. It's width will depend on the aspect ratio of the Image provided.
* @param image Image to be set into the ImageView. It's aspect ratio is used to define container's width.
* @param imageView Image view to be set with a given image. It's best if ImageView's parent is the container argument, but it's not required.
*/
private void updateImageView(Pane container, Image image, ImageView imageView) {
imageView.setImage(image);
if(image != null && !image.isError()) {
double ratio = imageView.getFitHeight()/image.getHeight();
forceDimensions(container, IMAGE_PANE_HEIGHT, realmImageView.getImage().getWidth() * ratio + IMAGE_PANE_GAP * 2);
} else
forceDimensions(container, IMAGE_PANE_HEIGHT, IMAGE_PANE_HEIGHT);
}
/**
* Forces the dimension of the pane to conform to the parameters specified.
* @param pane Pane whose width and height you want to fix to particular values.
* @param height Height to which you want to set the pane's height.
* @param width Width to which you want to set the pane's width.
*/
private void forceDimensions(Pane pane, Double height, Double width) {
pane.setMinWidth(width);
pane.setMaxWidth(width);
pane.setPrefWidth(width);
pane.setMinHeight(height);
pane.setPrefHeight(height);
pane.setMaxHeight(height);
}
/**
* Updates the Stability bar to display the current stability in a visual way.
*/
private void updateStabilityBar() {
//update user realm
BackgroundFill negFill = new BackgroundFill(DownfallUtil.HIGHLIGHT_COLOR, null, null);
BackgroundFill posFill = new BackgroundFill(DownfallUtil.CONFIRM_COLOR, null, null);
BackgroundFill neutralFill = new BackgroundFill(DownfallUtil.BACKGROUND_COLOR, null, null);
updateStabilityPane(negStabilityPane5, neutralFill, negFill, -5.0, true);
updateStabilityPane(negStabilityPane4, neutralFill, negFill, -4.0, true);
updateStabilityPane(negStabilityPane3, neutralFill, negFill, -3.0, true);
updateStabilityPane(negStabilityPane2, neutralFill, negFill, -2.0, true);
updateStabilityPane(negStabilityPane1, neutralFill, negFill, -1.0, true);
updateStabilityPane(posStabilityPane1, neutralFill, posFill, 1.0, false);
updateStabilityPane(posStabilityPane2, neutralFill, posFill, 2.0, false);
updateStabilityPane(posStabilityPane3, neutralFill, posFill, 3.0, false);
updateStabilityPane(posStabilityPane4, neutralFill, posFill, 4.0, false);
updateStabilityPane(posStabilityPane5, neutralFill, posFill, 5.0, false);
}
/**
* Binds the background property to a new Background that is created with one of the two fills depending on whether the Stability of the realm "exceeds" the threshold given.
* "exceeds" for the purposes of this method means less than or equal to threshold if lessThanThreshold is true and greater or equal to the threshold if it is false.
* @param stabilityPane Pane whose background needs to be updated.
* @param neutralFill BackgroundFill to be used if the userRealm's stability does not "exceed" the threshold.
* @param activeFill BackgroundFill to be used if the userRealm's stability "exceeds" the threshold.
* @param threshold Value of the threshold that needs to be "exceeded" in order for the active fill to be used instead of neutralFill.
* @param lessThanThreshold Controls if the threshold is "exceeded" when the UserRealm's stability is less than or equal to, or greater than or equal to the threshold provided.
*/
private void updateStabilityPane( Pane stabilityPane, BackgroundFill neutralFill, BackgroundFill activeFill, Double threshold,Boolean lessThanThreshold) {
//TODO:Find a more refined way of doing this.
if (lessThanThreshold) {
if (Configurator.getInstance().getUserRealm().getStability() <= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
} else {
if (Configurator.getInstance().getUserRealm().getStability() >= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
}
}
}
|
src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 0.8508120775222778
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " updateTabs();\n }\n /**\n * Forces an update on all tabs.\n */\n private void updateTabs() {\n updateRealmTab();\n }\n /**\n * Forces an upgrade on Realm Tab",
"score": 0.8367305397987366
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " userRealm.setName(realm.getName());\n userRealm.setTreasury(realm.getTreasury());\n userRealm.setInfamy(realm.getInfamy());\n userRealm.setLegitimacy(realm.getLegitimacy());\n userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());\n userRealm.setPowerProjection(realm.getPowerProjection());\n userRealm.setPrestige(realm.getPrestige());\n userRealm.setStability(realm.getStability());\n userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());\n userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());",
"score": 0.8201169967651367
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " //init Tag Editor\n TableColumn<Tag, String> tagColumn = new TableColumn<>(\"Tag\");\n tagColumn.setCellValueFactory(e->e.getValue().tagProperty());\n VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();\n visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));\n tagEditor.setFetcher(visualTagFetcher);\n tagEditor.setItems(realm.getTags());\n tagEditor.getTableView().getColumns().add(tagColumn);\n //Init file chooser buttons\n realmGFXButton.setOutput(realmGFXTextField);",
"score": 0.8122822642326355
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " */\n private void updateRealmTab() {\n realmScreenController.update();\n }\n /**\n * Loads test realm\n */\n private void loadRealmAction() {\n FileChooser fileChooser = new FileChooser();\n fileChooser.setTitle(\"Choose Savegame\");",
"score": 0.8053386211395264
}
] |
java
|
Configurator.getInstance().getUserRealm();
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.fetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
/**
* Simple implementation of Fetcher class that returns a new instance of Tag on request
*/
public final class SimpleTagFetcher implements Fetcher<Tag> {
/**
* This method is used to return a new instance of Tag on request.
* @return a new instance of Tag with its id set to be one larger than the last Tag in the currently selected rules
*/
@Override
public Tag retrieve() {
Tag tag = new Tag();
//TODO:Replace this mess with a proper solution distributing IDs.
//if there are any Tags in the current rules
if(Configurator.getInstance().getRules().getActorTags().size() > 1)
//set the new instance's id to be equal of the last item in that list incremented by one
tag.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);
else
|
tag.setId(1);
|
tag.setTag("New Tag");
return tag;
}
}
|
src/main/java/net/dragondelve/mabel/fetcher/SimpleTagFetcher.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualMaterialTemplate on request.\n * @return a new instance of VisualMaterialTemplate with its id set to be one larger than the last VisualMaterialTemplate in the currently selected rules\n */\n @Override\n public VisualMaterialTemplate retrieve() {\n VisualMaterialTemplate template = new VisualMaterialTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n //if there are any MaterialTemplates in the current rules\n if(Configurator.getInstance().getRules().getMaterialTemplates().size() > 1)",
"score": 0.8736425042152405
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " //set the new instance's id to be equal of the last item in that list incremented by one\n template.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);\n else\n template.setId(1);\n template.setName(\"New Template\");\n return template;\n }\n}",
"score": 0.8560693860054016
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleBuildingTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualBuildingTemplate on request.\n * @return A new instance of VisualBuildingTemplate with its id set to be one larger than the last VisualBuildingTemplate in the currently selected rules\n */\n @Override\n public VisualBuildingTemplate retrieve() {\n VisualBuildingTemplate template = new VisualBuildingTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n if(Configurator.getInstance().getRules().getBuildingTemplates().size() > 1)\n template.setId(Configurator.getInstance().getRules().getBuildingTemplates().get(Configurator.getInstance().getRules().getBuildingTemplates().size()-1).getId()+1);",
"score": 0.8507699966430664
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " //retrieving full list of tags in current rules.\n tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());\n //configuring Table Editor\n tagTableEditor.setFetcher(new SimpleTagFetcher());\n //Configuring Table View\n tagTableEditor.getTableView().setItems(tags);\n tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);\n //Configuring Columns\n TableColumn<Tag, String> tagColumn = new TableColumn<>();\n tagColumn.setText(\"Tag\");",
"score": 0.8273674249649048
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " * This method will show a new stage with showAndWait(). after a selection is made by the user this function will return a Tag selected.\n * @return a tag selected from a TableView if a selection is made in the table, if there is no selection made returns null instead.\n */\n @Override\n public Tag retrieve() {\n stage.showAndWait();\n if(selectionIsMade)\n return tableView.getSelectionModel().getSelectedItem();\n return null;\n }",
"score": 0.8003600835800171
}
] |
java
|
tag.setId(1);
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.main.tabs;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.Accordion;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.*;
/**
* A controller that controls the content of the Realm Tab.
* It displays user's realm Data allowing the user to see a quick overview of the state of their realm.
* Controls /fxml/main/tabs/RealmScreenController.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmScreenController {
@FXML
private Label diploRepLabel;
@FXML
private ImageView dynastyImageView;
@FXML
private Label govRankLabel;
@FXML
private Label infamyLabel;
@FXML
private Label legitimacyLabel;
@FXML
private Label nationalUnrestLabel;
@FXML
private Label nuicpLabel;
@FXML
private Label powerProjectionLabel;
@FXML
private Label prestigeLabel;
@FXML
private ImageView realmImageView;
@FXML
private GridPane stabilityNegativeGrid;
@FXML
private Label stabilityPerMonthLabel;
@FXML
private GridPane stabilityPositiveGrid;
@FXML
private VBox rootPane;
@FXML
private Label stabilityLabel;
@FXML
private Label realmNameLabel;
@FXML
private Pane stabilityCirclePane;
@FXML
private ListView<Tag> realmTagListView;
@FXML
private ListView<Tag> nonRealmTagListView;
@FXML
private Accordion tagsAccordion;
@FXML
private Pane realmPane;
@FXML
private Pane dynastyPane;
@FXML
private Pane negStabilityPane1;
@FXML
private Pane negStabilityPane2;
@FXML
private Pane negStabilityPane3;
@FXML
private Pane negStabilityPane4;
@FXML
private Pane negStabilityPane5;
@FXML
private Pane posStabilityPane1;
@FXML
private Pane posStabilityPane2;
@FXML
private Pane posStabilityPane3;
@FXML
private Pane posStabilityPane4;
@FXML
private Pane posStabilityPane5;
private final static Double IMAGE_PANE_GAP = 10.0;
private final static Double IMAGE_PANE_HEIGHT = 200.0;
private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();
private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
realmTagListView.setItems(realmTags);
nonRealmTagListView.setItems(nonRealmTags);
tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));
//Update ImageView Positions.
realmImageView.setX(10);
realmImageView.setY(10);
dynastyImageView.setX(10);
dynastyImageView.setY(10);
update();
}
/**
* Updates values on all labels if there was an action or an event that could have changed them.
* Also updates ImageViews and the tag table.
*/
public void update() {
//update user realm
Realm userRealm = Configurator.getInstance().getUserRealm();
//update Labels
realmNameLabel .setText(userRealm.getName());
diploRepLabel
|
.setText(userRealm.getDiplomaticReputation().toString());
|
stabilityLabel .setText(userRealm.getStability().toString());
legitimacyLabel .setText(userRealm.getLegitimacy().toString());
powerProjectionLabel .setText(userRealm.getPowerProjection().toString());
infamyLabel .setText(userRealm.getInfamy().toString());
prestigeLabel .setText(userRealm.getPrestige().toString());
//TODO: Add Gouvernment Rank
//govRankLabel.setText(userRealm.getGouvernmentRank());
//update Image views
updateImageView(realmPane, new Image("file:"+userRealm.getRealmPathToGFX()), realmImageView);
updateImageView(dynastyPane, new Image("file:"+userRealm.getRulerPathToGFX()), dynastyImageView);
//update Stability Bar
updateStabilityBar();
//update realm tags
realmTags.clear();
nonRealmTags.clear();
userRealm.getTags().forEach(e->{
if(e.isFactional())
realmTags.add(e);
else
nonRealmTags.add(e);
});
}
/**
* Updates the given ImageView to contain the given Image, if image provided is not null, forces the width of the container to conform to the ImageView's Image width
* modified so that the image keeps its aspect ratio, plus some gaps that are defined in IMAGE_PANE_GAP. If the image equals to null it forces the ImageView
* to conform to IMAGE_PANE_HEIGHT in both Width and Height.
* @param container Container Pane that contains the ImageView. It will be resized to have a height of IMAGE_PANE_HEIGHT. It's width will depend on the aspect ratio of the Image provided.
* @param image Image to be set into the ImageView. It's aspect ratio is used to define container's width.
* @param imageView Image view to be set with a given image. It's best if ImageView's parent is the container argument, but it's not required.
*/
private void updateImageView(Pane container, Image image, ImageView imageView) {
imageView.setImage(image);
if(image != null && !image.isError()) {
double ratio = imageView.getFitHeight()/image.getHeight();
forceDimensions(container, IMAGE_PANE_HEIGHT, realmImageView.getImage().getWidth() * ratio + IMAGE_PANE_GAP * 2);
} else
forceDimensions(container, IMAGE_PANE_HEIGHT, IMAGE_PANE_HEIGHT);
}
/**
* Forces the dimension of the pane to conform to the parameters specified.
* @param pane Pane whose width and height you want to fix to particular values.
* @param height Height to which you want to set the pane's height.
* @param width Width to which you want to set the pane's width.
*/
private void forceDimensions(Pane pane, Double height, Double width) {
pane.setMinWidth(width);
pane.setMaxWidth(width);
pane.setPrefWidth(width);
pane.setMinHeight(height);
pane.setPrefHeight(height);
pane.setMaxHeight(height);
}
/**
* Updates the Stability bar to display the current stability in a visual way.
*/
private void updateStabilityBar() {
//update user realm
BackgroundFill negFill = new BackgroundFill(DownfallUtil.HIGHLIGHT_COLOR, null, null);
BackgroundFill posFill = new BackgroundFill(DownfallUtil.CONFIRM_COLOR, null, null);
BackgroundFill neutralFill = new BackgroundFill(DownfallUtil.BACKGROUND_COLOR, null, null);
updateStabilityPane(negStabilityPane5, neutralFill, negFill, -5.0, true);
updateStabilityPane(negStabilityPane4, neutralFill, negFill, -4.0, true);
updateStabilityPane(negStabilityPane3, neutralFill, negFill, -3.0, true);
updateStabilityPane(negStabilityPane2, neutralFill, negFill, -2.0, true);
updateStabilityPane(negStabilityPane1, neutralFill, negFill, -1.0, true);
updateStabilityPane(posStabilityPane1, neutralFill, posFill, 1.0, false);
updateStabilityPane(posStabilityPane2, neutralFill, posFill, 2.0, false);
updateStabilityPane(posStabilityPane3, neutralFill, posFill, 3.0, false);
updateStabilityPane(posStabilityPane4, neutralFill, posFill, 4.0, false);
updateStabilityPane(posStabilityPane5, neutralFill, posFill, 5.0, false);
}
/**
* Binds the background property to a new Background that is created with one of the two fills depending on whether the Stability of the realm "exceeds" the threshold given.
* "exceeds" for the purposes of this method means less than or equal to threshold if lessThanThreshold is true and greater or equal to the threshold if it is false.
* @param stabilityPane Pane whose background needs to be updated.
* @param neutralFill BackgroundFill to be used if the userRealm's stability does not "exceed" the threshold.
* @param activeFill BackgroundFill to be used if the userRealm's stability "exceeds" the threshold.
* @param threshold Value of the threshold that needs to be "exceeded" in order for the active fill to be used instead of neutralFill.
* @param lessThanThreshold Controls if the threshold is "exceeded" when the UserRealm's stability is less than or equal to, or greater than or equal to the threshold provided.
*/
private void updateStabilityPane( Pane stabilityPane, BackgroundFill neutralFill, BackgroundFill activeFill, Double threshold,Boolean lessThanThreshold) {
//TODO:Find a more refined way of doing this.
if (lessThanThreshold) {
if (Configurator.getInstance().getUserRealm().getStability() <= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
} else {
if (Configurator.getInstance().getUserRealm().getStability() >= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
}
}
}
|
src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 0.8594478964805603
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());\n treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());\n diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());\n powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());\n legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());\n prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());\n infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());\n stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());\n realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());\n rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());",
"score": 0.8353363275527954
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " userRealm.setName(realm.getName());\n userRealm.setTreasury(realm.getTreasury());\n userRealm.setInfamy(realm.getInfamy());\n userRealm.setLegitimacy(realm.getLegitimacy());\n userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());\n userRealm.setPowerProjection(realm.getPowerProjection());\n userRealm.setPrestige(realm.getPrestige());\n userRealm.setStability(realm.getStability());\n userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());\n userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());",
"score": 0.8312528729438782
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " updateTabs();\n }\n /**\n * Forces an update on all tabs.\n */\n private void updateTabs() {\n updateRealmTab();\n }\n /**\n * Forces an upgrade on Realm Tab",
"score": 0.823663592338562
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " //init Tag Editor\n TableColumn<Tag, String> tagColumn = new TableColumn<>(\"Tag\");\n tagColumn.setCellValueFactory(e->e.getValue().tagProperty());\n VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();\n visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));\n tagEditor.setFetcher(visualTagFetcher);\n tagEditor.setItems(realm.getTags());\n tagEditor.getTableView().getColumns().add(tagColumn);\n //Init file chooser buttons\n realmGFXButton.setOutput(realmGFXTextField);",
"score": 0.8162461519241333
}
] |
java
|
.setText(userRealm.getDiplomaticReputation().toString());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
|
configurator.loadConfiguration();
|
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
|
src/main/java/net/dragondelve/downfall/DownfallMain.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " stockpileTableView.getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);\n stockpileTableView.setItems(Configurator.getInstance().getUserRealm().getStockpile());\n initializeTabs();\n update();\n }\n /**\n * Lightweight Mutator Method.\n * Always should be called before the stage is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */",
"score": 0.8163775205612183
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**",
"score": 0.8115073442459106
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " configureMaterialEditor(constructionMaterialEditor, \"Material\", \"Amount\");\n //other inits\n pathToGFXButton.setOutput(pathToGFXTextField);\n okButton.setOnAction(e -> stage.close());\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage the stage that is displaying the editor.\n */",
"score": 0.8030257225036621
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " @Override\n public void initialize(Stage parent, ObservableList<Tag> items) {\n stage = new Stage();\n if(parent != null)\n stage.initOwner(parent);\n Scene scene = new Scene(this);\n stage.setScene(scene);\n tableView.setItems(Objects.requireNonNullElseGet(items, () -> FXCollections.observableList(Configurator.getInstance().getRules().getActorTags())));\n }\n /**",
"score": 0.7997883558273315
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " stockpileEditor.setItems(realm.getStockpile());\n stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {",
"score": 0.7976939678192139
}
] |
java
|
configurator.loadConfiguration();
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm;
import net.dragondelve.downfall.realm.template.MaterialTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
/**
* Represents a bundle of materials, like 30 Wood or 15 Stone.
* Each Material has a template and is used to both show income and amount stockpiled. It is also used to show costs of operating a building
*/
@XmlRootElement(name="material")
public class Material {
private final IntegerProperty idProperty = new SimpleIntegerProperty(-1);
//I honestly would have overloaded +- operators for Material because you can just add/subtract their amounts if they have the same ID
private final IntegerProperty amountProperty = new SimpleIntegerProperty(0);
/**
* Initializes amount to a default value of 0.
* @param template Template from which this material will be generated from
*/
public Material(VisualMaterialTemplate template) {
this(template, 0);
}
/**
*
* @param template Template from which this material will be generated from
* @param amount Amount of materials in this bundle.
*/
public Material(MaterialTemplate template, Integer amount) {
idProperty
|
.setValue(template.getId());
|
amountProperty.setValue(amount);
}
/**
* Default Constructor. it creates an invalid material. Its id is set to -1 and amount is set 0.
*/
public Material(){
this(-1, 0);
}
/**
*
* @param id Material Template id of a template that this bundle of materials represents
* @param amount Amount of materials in this bundle.
*/
public Material(Integer id, Integer amount) {
idProperty.setValue(id);
amountProperty.setValue(amount);
}
/**
* Lightweight Accessor Method
* @return Material Template id of a template that this bundle of materials represents
*/
public IntegerProperty idProperty() {
return idProperty;
}
/**
* Lightweight Accessor Method
* @return Amount of materials in this bundle as a property.
*/
public IntegerProperty amountProperty() {
return amountProperty;
}
/**
* Lightweight Accessor Method
* @return Material Template id of a template that this bundle of materials represents
*/
@XmlElement(name = "template-id")
public Integer getTemplateId() {
return idProperty.get();
}
/**
* Lightweight Accessor Method
* @return Amount of materials in this bundle.
*/
@XmlElement(name = "amount")
public Integer getAmount() {
return amountProperty.get();
}
/**
* Lightweight Mutator Method
* @param id Material Template id of a template that this bundle of materials represents
*/
public void setTemplateId(Integer id) {
idProperty.setValue(id);
}
/**
* Lightweight Mutator Method
* @param amount Amount of materials in this bundle.
*/
public void setAmount(Integer amount) {
amountProperty.setValue(amount);
}
}
|
src/main/java/net/dragondelve/downfall/realm/Material.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public MaterialTemplate(String name, Integer id, Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n super();\n this.nameProperty.setValue(name);\n this.idProperty.setValue(id);\n this.defExportPriceProperty .setValue(defExportPrice);\n this.defImportPriceProperty.setValue(defImportPrice);\n this.isExportableProperty.setValue(isExportable);",
"score": 0.8244180083274841
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " */\n public MaterialTemplate() {\n super();\n }\n /**\n *\n * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price",
"score": 0.8104507923126221
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " /**\n * Lightweight mutator method\n * @param name Human-readable name of the materials to be generated with this template\n */\n public void setName(String name) {\n this.nameProperty.setValue(name);\n }\n /**\n * Lightweight mutator method\n * @param idProperty Unique identifier used to differentiate different material templates",
"score": 0.8086039423942566
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": "@XmlRootElement(name = \"material-template\")\npublic abstract class MaterialTemplate {\n private final StringProperty nameProperty = new SimpleStringProperty();\n private final IntegerProperty idProperty = new SimpleIntegerProperty(-1);\n private final IntegerProperty defExportPriceProperty = new SimpleIntegerProperty(-1);\n private final IntegerProperty defImportPriceProperty = new SimpleIntegerProperty(-1);\n private final BooleanProperty isExportableProperty = new SimpleBooleanProperty(false);\n private final BooleanProperty isEphemeralProperty = new SimpleBooleanProperty(false);\n /**\n * Default Constructor. Does not provide default values",
"score": 0.8042467832565308
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " constructionMaterialEditor.setItems(template.getConstructionMaterials());\n }\n}",
"score": 0.8018556833267212
}
] |
java
|
.setValue(template.getId());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags
|
= FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
|
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty() .unbindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n //retrieving the list of material templates in current rules.\n materials = FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates());\n //Configuring Template Editor",
"score": 0.9266678690910339
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n Realm realm = new Realm();\n //bind textFields",
"score": 0.9023191928863525
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " ObservableList<Material> constructionMaterials = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 0.9010043740272522
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();\n private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n realmTagListView.setItems(realmTags);\n nonRealmTagListView.setItems(nonRealmTags);\n tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));",
"score": 0.899370014667511
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " @Override\n public void initialize(Stage parent, ObservableList<Tag> items) {\n stage = new Stage();\n if(parent != null)\n stage.initOwner(parent);\n Scene scene = new Scene(this);\n stage.setScene(scene);\n tableView.setItems(Objects.requireNonNullElseGet(items, () -> FXCollections.observableList(Configurator.getInstance().getRules().getActorTags())));\n }\n /**",
"score": 0.8852802515029907
}
] |
java
|
= FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.model.betacraft;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
public class BCServerList {
private final List<BCServerInfo> servers;
public BCServerList(final List<BCServerInfo> servers) {
this.servers = servers;
}
public static BCServerList fromDocument(final Document document) {
final List<BCServerInfo> servers = new LinkedList<>();
final Elements serverElements = document.getElementsByClass("online");
for (final Element serverElement : serverElements) {
final String joinUrl = serverElement.attr("href");
if (joinUrl.length() < 7) {
continue;
}
final String substringedUrl = joinUrl.substring(7);
final String[] urlParts = substringedUrl.split("/");
if (urlParts.length != 4) {
continue;
}
final String hostAndPort = urlParts[0];
final int portColonIndex = hostAndPort.lastIndexOf(":");
if (portColonIndex == -1) {
continue;
}
// We're using substring here in-case someone uses IPv6 for their server.
final String portStr = hostAndPort.substring(Math.min(portColonIndex + 1, hostAndPort.length() - 1));
final int port;
try {
port = Integer.parseInt(portStr);
} catch (NumberFormatException ignored) {
continue;
}
// We're doing this .replace operation because some server entries somehow manage to duplicate their port.
final String host = hostAndPort.substring(0, portColonIndex).replace(":" + port, "");
final String versionIdentifier = urlParts[3];
final BCVersion version = BCVersion.fromString(versionIdentifier);
final String rawNameStr = serverElement.text();
final int firstIndexOfClosingSquareBracket = rawNameStr.indexOf("]");
if (firstIndexOfClosingSquareBracket == -1) {
continue;
}
final String halfParsedNameStr = rawNameStr.substring(Math.min(firstIndexOfClosingSquareBracket + 2, rawNameStr.length() - 1));
final boolean onlineMode = halfParsedNameStr.endsWith("[Online Mode]");
final String parsedNameStr = onlineMode ? halfParsedNameStr.replace("[Online Mode]", "") : halfParsedNameStr;
final Element playerCountElement = serverElement.nextElementSibling();
if (playerCountElement == null) {
continue;
}
final String playerCountContent = playerCountElement.text();
final int indexOfOpeningBracket = playerCountContent.indexOf("(");
final int indexOfClosingBracket = playerCountContent.indexOf(")");
if (indexOfOpeningBracket == -1 || indexOfClosingBracket == -1) {
continue;
}
final String playerCountActualContent = playerCountContent.substring(indexOfOpeningBracket + 1, indexOfClosingBracket)
.replace(" ", "");
final String[] splitPlayerCount = playerCountActualContent.split("/");
if (splitPlayerCount.length != 2) {
continue;
}
final int playerCount;
final int playerLimit;
try {
playerCount = Integer.parseInt(splitPlayerCount[0]);
playerLimit = Integer.parseInt(splitPlayerCount[1]);
} catch (NumberFormatException ignored) {
continue;
}
final BCServerInfo server = new BCServerInfo(parsedNameStr, playerCount, playerLimit, host, port, version, onlineMode, joinUrl, versionIdentifier);
servers.add(server);
}
return new BCServerList(servers);
}
public List<BCServerInfo> servers() {
return Collections.unmodifiableList(this.servers);
}
public List<BCServerInfo> serversOfVersion(final BCVersion version) {
final List<BCServerInfo> serverListCopy = this.servers();
return serverListCopy.stream().filter(s -> s.version().equals(version)).toList();
}
public List<BCServerInfo> serversWithOnlineMode(final boolean on) {
return this.servers().stream().filter(s -> s.onlineMode() == on).toList();
}
public List<BCServerInfo> withGameVersion(final String gameVersion) {
return this.servers().stream().filter
|
(s -> s.gameVersion().equals(gameVersion)).toList();
|
}
}
|
src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerList.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " private final int playerLimit;\n private final String host;\n private final int port;\n private final BCVersion version;\n private final boolean onlineMode;\n private final String joinUrl;\n private final String gameVersion;\n public BCServerInfo(final String name, final int playerCount, final int playerLimit, final String host, final int port, final BCVersion version, final boolean onlineMode, final String joinUrl, final String gameVersion) {\n this.name = name.trim();\n this.playerCount = playerCount;",
"score": 0.8215880393981934
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/CCServerList.java",
"retrieved_chunk": " private final List<CCServerInfo> servers;\n public CCServerList(final List<CCServerInfo> servers) {\n this.servers = servers;\n }\n public List<CCServerInfo> servers() {\n return this.servers;\n }\n public static CCServerList fromJson(final String json) {\n return ClassiCubeHandler.GSON.fromJson(json, CCServerList.class);\n }",
"score": 0.7950962781906128
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": " .post()\n .quirksMode(Document.QuirksMode.quirks);\n } catch (Exception e) {\n e.printStackTrace();\n return null;\n }\n return BCServerList.fromDocument(document);\n });\n }\n}",
"score": 0.7937653064727783
},
{
"filename": "src/main/java/de/florianmichael/classic4j/BetaCraftHandler.java",
"retrieved_chunk": "import java.util.function.Consumer;\npublic class BetaCraftHandler {\n public final static URI SERVER_LIST = URI.create(\"https://betacraft.uk/serverlist\");\n public static void requestServerList(final Consumer<BCServerList> complete) {\n requestServerList(complete, Throwable::printStackTrace);\n }\n public static void requestServerList(final Consumer<BCServerList> complete, final Consumer<Throwable> throwableConsumer) {\n BCServerListRequest.send().whenComplete((bcServerList, throwable) -> {\n if (throwable != null) {\n throwableConsumer.accept(throwable);",
"score": 0.7935117483139038
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCVersion.java",
"retrieved_chunk": " }\n public String[] versionPrefixes() {\n final String[] copy = new String[versionPrefixes.length];\n System.arraycopy(versionPrefixes, 0, copy, 0, versionPrefixes.length);\n return copy;\n }\n public static BCVersion fromString(final String versionString) {\n final String lowercaseVersionString = versionString.toLowerCase();\n return Arrays.stream(BCVersion.values())\n .filter(v -> Arrays.stream(v.versionPrefixes).anyMatch(lowercaseVersionString::startsWith))",
"score": 0.785554826259613
}
] |
java
|
(s -> s.gameVersion().equals(gameVersion)).toList();
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.model.betacraft;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
public class BCServerList {
private final List<BCServerInfo> servers;
public BCServerList(final List<BCServerInfo> servers) {
this.servers = servers;
}
public static BCServerList fromDocument(final Document document) {
final List<BCServerInfo> servers = new LinkedList<>();
final Elements serverElements = document.getElementsByClass("online");
for (final Element serverElement : serverElements) {
final String joinUrl = serverElement.attr("href");
if (joinUrl.length() < 7) {
continue;
}
final String substringedUrl = joinUrl.substring(7);
final String[] urlParts = substringedUrl.split("/");
if (urlParts.length != 4) {
continue;
}
final String hostAndPort = urlParts[0];
final int portColonIndex = hostAndPort.lastIndexOf(":");
if (portColonIndex == -1) {
continue;
}
// We're using substring here in-case someone uses IPv6 for their server.
final String portStr = hostAndPort.substring(Math.min(portColonIndex + 1, hostAndPort.length() - 1));
final int port;
try {
port = Integer.parseInt(portStr);
} catch (NumberFormatException ignored) {
continue;
}
// We're doing this .replace operation because some server entries somehow manage to duplicate their port.
final String host = hostAndPort.substring(0, portColonIndex).replace(":" + port, "");
final String versionIdentifier = urlParts[3];
final BCVersion version =
|
BCVersion.fromString(versionIdentifier);
|
final String rawNameStr = serverElement.text();
final int firstIndexOfClosingSquareBracket = rawNameStr.indexOf("]");
if (firstIndexOfClosingSquareBracket == -1) {
continue;
}
final String halfParsedNameStr = rawNameStr.substring(Math.min(firstIndexOfClosingSquareBracket + 2, rawNameStr.length() - 1));
final boolean onlineMode = halfParsedNameStr.endsWith("[Online Mode]");
final String parsedNameStr = onlineMode ? halfParsedNameStr.replace("[Online Mode]", "") : halfParsedNameStr;
final Element playerCountElement = serverElement.nextElementSibling();
if (playerCountElement == null) {
continue;
}
final String playerCountContent = playerCountElement.text();
final int indexOfOpeningBracket = playerCountContent.indexOf("(");
final int indexOfClosingBracket = playerCountContent.indexOf(")");
if (indexOfOpeningBracket == -1 || indexOfClosingBracket == -1) {
continue;
}
final String playerCountActualContent = playerCountContent.substring(indexOfOpeningBracket + 1, indexOfClosingBracket)
.replace(" ", "");
final String[] splitPlayerCount = playerCountActualContent.split("/");
if (splitPlayerCount.length != 2) {
continue;
}
final int playerCount;
final int playerLimit;
try {
playerCount = Integer.parseInt(splitPlayerCount[0]);
playerLimit = Integer.parseInt(splitPlayerCount[1]);
} catch (NumberFormatException ignored) {
continue;
}
final BCServerInfo server = new BCServerInfo(parsedNameStr, playerCount, playerLimit, host, port, version, onlineMode, joinUrl, versionIdentifier);
servers.add(server);
}
return new BCServerList(servers);
}
public List<BCServerInfo> servers() {
return Collections.unmodifiableList(this.servers);
}
public List<BCServerInfo> serversOfVersion(final BCVersion version) {
final List<BCServerInfo> serverListCopy = this.servers();
return serverListCopy.stream().filter(s -> s.version().equals(version)).toList();
}
public List<BCServerInfo> serversWithOnlineMode(final boolean on) {
return this.servers().stream().filter(s -> s.onlineMode() == on).toList();
}
public List<BCServerInfo> withGameVersion(final String gameVersion) {
return this.servers().stream().filter(s -> s.gameVersion().equals(gameVersion)).toList();
}
}
|
src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerList.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " public int port() {\n return port;\n }\n public BCVersion version() {\n return version;\n }\n public boolean onlineMode() {\n return onlineMode;\n }\n public String joinUrl() {",
"score": 0.8171014189720154
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " private final int playerLimit;\n private final String host;\n private final int port;\n private final BCVersion version;\n private final boolean onlineMode;\n private final String joinUrl;\n private final String gameVersion;\n public BCServerInfo(final String name, final int playerCount, final int playerLimit, final String host, final int port, final BCVersion version, final boolean onlineMode, final String joinUrl, final String gameVersion) {\n this.name = name.trim();\n this.playerCount = playerCount;",
"score": 0.8160034418106079
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCVersion.java",
"retrieved_chunk": " }\n public String[] versionPrefixes() {\n final String[] copy = new String[versionPrefixes.length];\n System.arraycopy(versionPrefixes, 0, copy, 0, versionPrefixes.length);\n return copy;\n }\n public static BCVersion fromString(final String versionString) {\n final String lowercaseVersionString = versionString.toLowerCase();\n return Arrays.stream(BCVersion.values())\n .filter(v -> Arrays.stream(v.versionPrefixes).anyMatch(lowercaseVersionString::startsWith))",
"score": 0.7864105701446533
},
{
"filename": "src/main/java/de/florianmichael/classic4j/JSPBetaCraftHandler.java",
"retrieved_chunk": "import java.net.URI;\nimport java.net.URL;\nimport java.security.MessageDigest;\nimport java.util.Formatter;\nimport java.util.Scanner;\npublic class JSPBetaCraftHandler {\n public final static URI GET_MP_PASS = URI.create(\"http://api.betacraft.uk/getmppass.jsp\");\n public static String requestMPPass(final String username, final String ip, final int port, final JoinServerInterface joinServerInterface) {\n try {\n final String server = InetAddress.getByName(ip).getHostAddress() + \":\" + port;",
"score": 0.7796500325202942
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": " .post()\n .quirksMode(Document.QuirksMode.quirks);\n } catch (Exception e) {\n e.printStackTrace();\n return null;\n }\n return BCServerList.fromDocument(document);\n });\n }\n}",
"score": 0.7787165641784668
}
] |
java
|
BCVersion.fromString(versionIdentifier);
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j;
import de.florianmichael.classic4j.api.JoinServerInterface;
import java.io.InputStream;
import java.net.InetAddress;
import java.net.URI;
import java.net.URL;
import java.security.MessageDigest;
import java.util.Formatter;
import java.util.Scanner;
public class JSPBetaCraftHandler {
public final static URI GET_MP_PASS = URI.create("http://api.betacraft.uk/getmppass.jsp");
public static String requestMPPass(final String username, final String ip, final int port, final JoinServerInterface joinServerInterface) {
try {
final String server = InetAddress.getByName(ip).getHostAddress() + ":" + port;
|
joinServerInterface.sendAuthRequest(sha1(server.getBytes()));
|
final InputStream connection = new URL(GET_MP_PASS + "?user=" + username + "&server=" + server).openStream();
Scanner scanner = new Scanner(connection);
StringBuilder response = new StringBuilder();
while (scanner.hasNext()) {
response.append(scanner.next());
}
connection.close();
if (response.toString().contains("FAILED") || response.toString().contains("SERVER NOT FOUND")) return "0";
return response.toString();
} catch (Throwable t) {
t.printStackTrace();
return "0";
}
}
private static String sha1(final byte[] input) {
try {
Formatter formatter = new Formatter();
final byte[] hash = MessageDigest.getInstance("SHA-1").digest(input);
for (byte b : hash) {
formatter.format("%02x", b);
}
return formatter.toString();
} catch (Exception e) {
return null;
}
}
}
|
src/main/java/de/florianmichael/classic4j/JSPBetaCraftHandler.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": "import org.jsoup.nodes.Document;\nimport java.util.concurrent.CompletableFuture;\npublic class BCServerListRequest {\n public static CompletableFuture<BCServerList> send() {\n return CompletableFuture.supplyAsync(() -> {\n Document document;\n try {\n document = Jsoup.connect(BetaCraftHandler.SERVER_LIST.toString())\n .userAgent(\"Java/\" + Runtime.version())\n .header(\"Accept\", \"text/html, image/gif, image/jpeg, ; q=.2,/*; q=.2\")",
"score": 0.8192775845527649
},
{
"filename": "src/main/java/de/florianmichael/classic4j/BetaCraftHandler.java",
"retrieved_chunk": "import java.util.function.Consumer;\npublic class BetaCraftHandler {\n public final static URI SERVER_LIST = URI.create(\"https://betacraft.uk/serverlist\");\n public static void requestServerList(final Consumer<BCServerList> complete) {\n requestServerList(complete, Throwable::printStackTrace);\n }\n public static void requestServerList(final Consumer<BCServerList> complete, final Consumer<Throwable> throwableConsumer) {\n BCServerListRequest.send().whenComplete((bcServerList, throwable) -> {\n if (throwable != null) {\n throwableConsumer.accept(throwable);",
"score": 0.8074831962585449
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": " * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage de.florianmichael.classic4j.request.betacraft;\nimport de.florianmichael.classic4j.BetaCraftHandler;\nimport de.florianmichael.classic4j.model.betacraft.BCServerList;\nimport org.jsoup.Jsoup;",
"score": 0.8072863221168518
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerInfoRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.URI;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.List;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerInfoRequest {\n private static URI generateUri(final List<String> serverHashes) {\n final String joined = String.join(\",\", serverHashes);\n return ClassiCubeHandler.SERVER_INFO_URI.resolve(joined);",
"score": 0.8039966821670532
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/CCServerInfo.java",
"retrieved_chunk": " @SerializedName(\"mppass\") private final String mpPass;\n public CCServerInfo(String hash, int maxPlayers, String name, int players, String software, long uptime, String countryCode, boolean web, boolean featured, String ip, int port, String mpPass) {\n this.hash = hash;\n this.maxPlayers = maxPlayers;\n this.name = name;\n this.players = players;\n this.software = software;\n this.uptime = uptime;\n this.countryCode = countryCode;\n this.web = web;",
"score": 0.799973726272583
}
] |
java
|
joinServerInterface.sendAuthRequest(sha1(server.getBytes()));
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.main.tabs;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.Accordion;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.*;
/**
* A controller that controls the content of the Realm Tab.
* It displays user's realm Data allowing the user to see a quick overview of the state of their realm.
* Controls /fxml/main/tabs/RealmScreenController.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmScreenController {
@FXML
private Label diploRepLabel;
@FXML
private ImageView dynastyImageView;
@FXML
private Label govRankLabel;
@FXML
private Label infamyLabel;
@FXML
private Label legitimacyLabel;
@FXML
private Label nationalUnrestLabel;
@FXML
private Label nuicpLabel;
@FXML
private Label powerProjectionLabel;
@FXML
private Label prestigeLabel;
@FXML
private ImageView realmImageView;
@FXML
private GridPane stabilityNegativeGrid;
@FXML
private Label stabilityPerMonthLabel;
@FXML
private GridPane stabilityPositiveGrid;
@FXML
private VBox rootPane;
@FXML
private Label stabilityLabel;
@FXML
private Label realmNameLabel;
@FXML
private Pane stabilityCirclePane;
@FXML
private ListView<Tag> realmTagListView;
@FXML
private ListView<Tag> nonRealmTagListView;
@FXML
private Accordion tagsAccordion;
@FXML
private Pane realmPane;
@FXML
private Pane dynastyPane;
@FXML
private Pane negStabilityPane1;
@FXML
private Pane negStabilityPane2;
@FXML
private Pane negStabilityPane3;
@FXML
private Pane negStabilityPane4;
@FXML
private Pane negStabilityPane5;
@FXML
private Pane posStabilityPane1;
@FXML
private Pane posStabilityPane2;
@FXML
private Pane posStabilityPane3;
@FXML
private Pane posStabilityPane4;
@FXML
private Pane posStabilityPane5;
private final static Double IMAGE_PANE_GAP = 10.0;
private final static Double IMAGE_PANE_HEIGHT = 200.0;
private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();
private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
realmTagListView.setItems(realmTags);
nonRealmTagListView.setItems(nonRealmTags);
tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));
//Update ImageView Positions.
realmImageView.setX(10);
realmImageView.setY(10);
dynastyImageView.setX(10);
dynastyImageView.setY(10);
update();
}
/**
* Updates values on all labels if there was an action or an event that could have changed them.
* Also updates ImageViews and the tag table.
*/
public void update() {
//update user realm
Realm userRealm = Configurator.getInstance().getUserRealm();
//update Labels
realmNameLabel .setText(userRealm.getName());
diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());
stabilityLabel .setText(userRealm.getStability().toString());
|
legitimacyLabel .setText(userRealm.getLegitimacy().toString());
|
powerProjectionLabel .setText(userRealm.getPowerProjection().toString());
infamyLabel .setText(userRealm.getInfamy().toString());
prestigeLabel .setText(userRealm.getPrestige().toString());
//TODO: Add Gouvernment Rank
//govRankLabel.setText(userRealm.getGouvernmentRank());
//update Image views
updateImageView(realmPane, new Image("file:"+userRealm.getRealmPathToGFX()), realmImageView);
updateImageView(dynastyPane, new Image("file:"+userRealm.getRulerPathToGFX()), dynastyImageView);
//update Stability Bar
updateStabilityBar();
//update realm tags
realmTags.clear();
nonRealmTags.clear();
userRealm.getTags().forEach(e->{
if(e.isFactional())
realmTags.add(e);
else
nonRealmTags.add(e);
});
}
/**
* Updates the given ImageView to contain the given Image, if image provided is not null, forces the width of the container to conform to the ImageView's Image width
* modified so that the image keeps its aspect ratio, plus some gaps that are defined in IMAGE_PANE_GAP. If the image equals to null it forces the ImageView
* to conform to IMAGE_PANE_HEIGHT in both Width and Height.
* @param container Container Pane that contains the ImageView. It will be resized to have a height of IMAGE_PANE_HEIGHT. It's width will depend on the aspect ratio of the Image provided.
* @param image Image to be set into the ImageView. It's aspect ratio is used to define container's width.
* @param imageView Image view to be set with a given image. It's best if ImageView's parent is the container argument, but it's not required.
*/
private void updateImageView(Pane container, Image image, ImageView imageView) {
imageView.setImage(image);
if(image != null && !image.isError()) {
double ratio = imageView.getFitHeight()/image.getHeight();
forceDimensions(container, IMAGE_PANE_HEIGHT, realmImageView.getImage().getWidth() * ratio + IMAGE_PANE_GAP * 2);
} else
forceDimensions(container, IMAGE_PANE_HEIGHT, IMAGE_PANE_HEIGHT);
}
/**
* Forces the dimension of the pane to conform to the parameters specified.
* @param pane Pane whose width and height you want to fix to particular values.
* @param height Height to which you want to set the pane's height.
* @param width Width to which you want to set the pane's width.
*/
private void forceDimensions(Pane pane, Double height, Double width) {
pane.setMinWidth(width);
pane.setMaxWidth(width);
pane.setPrefWidth(width);
pane.setMinHeight(height);
pane.setPrefHeight(height);
pane.setMaxHeight(height);
}
/**
* Updates the Stability bar to display the current stability in a visual way.
*/
private void updateStabilityBar() {
//update user realm
BackgroundFill negFill = new BackgroundFill(DownfallUtil.HIGHLIGHT_COLOR, null, null);
BackgroundFill posFill = new BackgroundFill(DownfallUtil.CONFIRM_COLOR, null, null);
BackgroundFill neutralFill = new BackgroundFill(DownfallUtil.BACKGROUND_COLOR, null, null);
updateStabilityPane(negStabilityPane5, neutralFill, negFill, -5.0, true);
updateStabilityPane(negStabilityPane4, neutralFill, negFill, -4.0, true);
updateStabilityPane(negStabilityPane3, neutralFill, negFill, -3.0, true);
updateStabilityPane(negStabilityPane2, neutralFill, negFill, -2.0, true);
updateStabilityPane(negStabilityPane1, neutralFill, negFill, -1.0, true);
updateStabilityPane(posStabilityPane1, neutralFill, posFill, 1.0, false);
updateStabilityPane(posStabilityPane2, neutralFill, posFill, 2.0, false);
updateStabilityPane(posStabilityPane3, neutralFill, posFill, 3.0, false);
updateStabilityPane(posStabilityPane4, neutralFill, posFill, 4.0, false);
updateStabilityPane(posStabilityPane5, neutralFill, posFill, 5.0, false);
}
/**
* Binds the background property to a new Background that is created with one of the two fills depending on whether the Stability of the realm "exceeds" the threshold given.
* "exceeds" for the purposes of this method means less than or equal to threshold if lessThanThreshold is true and greater or equal to the threshold if it is false.
* @param stabilityPane Pane whose background needs to be updated.
* @param neutralFill BackgroundFill to be used if the userRealm's stability does not "exceed" the threshold.
* @param activeFill BackgroundFill to be used if the userRealm's stability "exceeds" the threshold.
* @param threshold Value of the threshold that needs to be "exceeded" in order for the active fill to be used instead of neutralFill.
* @param lessThanThreshold Controls if the threshold is "exceeded" when the UserRealm's stability is less than or equal to, or greater than or equal to the threshold provided.
*/
private void updateStabilityPane( Pane stabilityPane, BackgroundFill neutralFill, BackgroundFill activeFill, Double threshold,Boolean lessThanThreshold) {
//TODO:Find a more refined way of doing this.
if (lessThanThreshold) {
if (Configurator.getInstance().getUserRealm().getStability() <= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
} else {
if (Configurator.getInstance().getUserRealm().getStability() >= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
}
}
}
|
src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " userRealm.setName(realm.getName());\n userRealm.setTreasury(realm.getTreasury());\n userRealm.setInfamy(realm.getInfamy());\n userRealm.setLegitimacy(realm.getLegitimacy());\n userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());\n userRealm.setPowerProjection(realm.getPowerProjection());\n userRealm.setPrestige(realm.getPrestige());\n userRealm.setStability(realm.getStability());\n userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());\n userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());",
"score": 0.8560550212860107
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 0.8527721166610718
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());\n treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());\n diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());\n powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());\n legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());\n prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());\n infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());\n stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());\n realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());\n rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());",
"score": 0.8464720845222473
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " //init Tag Editor\n TableColumn<Tag, String> tagColumn = new TableColumn<>(\"Tag\");\n tagColumn.setCellValueFactory(e->e.getValue().tagProperty());\n VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();\n visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));\n tagEditor.setFetcher(visualTagFetcher);\n tagEditor.setItems(realm.getTags());\n tagEditor.getTableView().getColumns().add(tagColumn);\n //Init file chooser buttons\n realmGFXButton.setOutput(realmGFXTextField);",
"score": 0.8348090052604675
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " updateTabs();\n }\n /**\n * Forces an update on all tabs.\n */\n private void updateTabs() {\n updateRealmTab();\n }\n /**\n * Forces an upgrade on Realm Tab",
"score": 0.8288934826850891
}
] |
java
|
legitimacyLabel .setText(userRealm.getLegitimacy().toString());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
/**
* Template that is used when new materials are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="gfx-material-template")
public final class VisualMaterialTemplate extends MaterialTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. it generates an invalid VisualMaterialTemplate with an id of -1
*/
public VisualMaterialTemplate() {
this("",-1,-1,-1,false, false);
}
/**
* Initializes pathToGFX to the default MaterialGFXPathname defined in the current configuration.
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {
this(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname());
}
/**
*
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral, String pathToGFX) {
super(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral);
this.pathToGFXProperty.setValue(pathToGFX);
this
|
.pathToGFXProperty.setValue(Configurator.getInstance().getDefMaterialGFXPathname());
|
}
/**
* Lightweight accessor method.
* @return pathname to an image file that represents this material as a property.
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Updates the Image representation material to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
//TODO: I think something second loads these Graphics. MaterialEditorController (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
/**
* Lightweight accessor method that initiates graphics if they haven't been initialized
* @return Image that represents this material.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight accessor method.
* @return String pathname to an image file that represents this material.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.setValue(pathToGFX);
}
}
|
src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public MaterialTemplate(String name, Integer id, Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n super();\n this.nameProperty.setValue(name);\n this.idProperty.setValue(id);\n this.defExportPriceProperty .setValue(defExportPrice);\n this.defImportPriceProperty.setValue(defImportPrice);\n this.isExportableProperty.setValue(isExportable);",
"score": 0.9107551574707031
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java",
"retrieved_chunk": " */\n public VisualBuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately, String pathToGFX) {\n super(id, name, inputMaterials, outputMaterials, defConstructionCost, constructionMaterials, defConstructionTime, operatesImmediately);\n this.pathToGFXProperty.setValue(pathToGFX);\n this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname());\n }\n /**\n * Lightweight Accessor Method\n * @return pathname to an image file that represents this building as a property. That Image should be square, but isn't required to be square\n */",
"score": 0.8740288019180298
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " */\n public MaterialTemplate() {\n super();\n }\n /**\n *\n * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price",
"score": 0.8649758696556091
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configuration.java",
"retrieved_chunk": " */\n public void setDefMaterialGFXPathname(String defMaterialGFXPathname) {\n this.defMaterialGFXPathname.set(defMaterialGFXPathname);\n }\n /**\n * Lightweight mutator method.\n * @param defBuildingGFXPathname Pathname to the default image used for VisualBuildingTemplate\n */\n public void setDefBuildingGFXPathname(String defBuildingGFXPathname) {\n this.defBuildingGFXPathname.set(defBuildingGFXPathname);",
"score": 0.8479911088943481
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java",
"retrieved_chunk": "import javafx.beans.property.StringProperty;\nimport javafx.scene.image.Image;\nimport java.util.List;\n/**\n * Template that is used when new buildings are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.\n * This Class if fully annotated for use with JAXB to be exported to an XML File.\n */\n@XmlRootElement(name=\"visual-building-template\")\npublic final class VisualBuildingTemplate extends BuildingTemplate{\n private final StringProperty pathToGFXProperty = new SimpleStringProperty();",
"score": 0.8477420806884766
}
] |
java
|
.pathToGFXProperty.setValue(Configurator.getInstance().getDefMaterialGFXPathname());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.
|
setLegitimacy(realm.getLegitimacy());
|
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
|
src/main/java/net/dragondelve/downfall/util/Configurator.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 0.9055048823356628
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 0.8307780027389526
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 0.823609471321106
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " @XmlElement(name = \"user-realm\")\n public Realm getUserRealm() {\n return userRealm;\n }\n /**\n * Lightweight mutator method.\n * @param pathToRules pathname to the rules that were used for this Save\n */\n public void setPathToRules(String pathToRules) {\n this.pathToRules = pathToRules;",
"score": 0.8161996603012085
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Realm.java",
"retrieved_chunk": " * Lightweight mutator method\n * @param realmPathToGFX path to the image of a flag/coat of arms that represents the realm.\n */\n public void setRealmPathToGFX(String realmPathToGFX) {\n this.realmPathToGFX.set(realmPathToGFX);\n }\n /**\n * Lightweight mutator method\n * @param rulerPathToGFX path to the image of a flag/coat of arms that represents the ruling body.\n */",
"score": 0.8123649954795837
}
] |
java
|
setLegitimacy(realm.getLegitimacy());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
|
userRealm.setPowerProjection(realm.getPowerProjection());
|
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
|
src/main/java/net/dragondelve/downfall/util/Configurator.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 0.9026221036911011
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 0.8528052568435669
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 0.8368200659751892
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Realm.java",
"retrieved_chunk": " *\n * @param id Unique realm identifier. Should be unique for every save file\n * @param name A human-readable name of the realm.\n * @param treasury Amount of money in the treasury.\n * @param stockpile List of all materials in realm's stockpile\n * @param ownedBuildings List of all owned buildings\n * @param tags List of all tags applied to the realm\n * @param diplomaticReputation a measure of diplomatic reputation of the Realm. Used when taking diplomatic actions.\n * @param powerProjection a measure of perceived power of the realm. Used when evaluating threats and taking DoW decisions\n * @param legitimacy a measure of legitimacy of the ruler. Affects unrest.",
"score": 0.8225311636924744
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " @XmlElement(name = \"user-realm\")\n public Realm getUserRealm() {\n return userRealm;\n }\n /**\n * Lightweight mutator method.\n * @param pathToRules pathname to the rules that were used for this Save\n */\n public void setPathToRules(String pathToRules) {\n this.pathToRules = pathToRules;",
"score": 0.8211460709571838
}
] |
java
|
userRealm.setPowerProjection(realm.getPowerProjection());
|
/**
*
*/
package org.lunifera.gpt.commands.impl;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Supplier;
import org.lunifera.gpt.commands.api.ICommand;
import org.lunifera.gpt.commands.api.ICommandApi;
import org.lunifera.gpt.commands.api.IPrompter;
import com.theokanning.openai.completion.chat.ChatCompletionChoice;
import com.theokanning.openai.completion.chat.ChatCompletionRequest;
import com.theokanning.openai.completion.chat.ChatMessage;
import com.theokanning.openai.completion.chat.ChatMessageRole;
import com.theokanning.openai.service.OpenAiService;
/**
*
*/
public class CommandApi implements ICommandApi {
private static final String GPT_4 = "gpt-4";
private final String OPENAI_KEY;
private IPrompter prompter = new Prompter();
private Supplier<List<? extends ICommand>> commands;
public CommandApi(String OPENAI_KEY) {
this.OPENAI_KEY = OPENAI_KEY;
}
public void setPrompter(IPrompter prompter) {
this.prompter = prompter;
}
/**
* Returns the {@link IPrompter}.
*
* @return
*/
public IPrompter getPrompter() {
return prompter;
}
public void setCommands(Supplier<List<? extends ICommand>> commands) {
this.commands = commands;
}
/**
* Returns the supplier of commands.
*
* @return
*/
public Supplier<List<? extends ICommand>> getCommands() {
return commands;
}
@Override
public ICommand queryCommand(String userInput) {
List<ChatMessage> messages = createMessages(userInput);
ChatCompletionRequest chatCompletionRequest = ChatCompletionRequest.builder().model(GPT_4).messages(messages)
.n(1).temperature(0d).maxTokens(50).build();
OpenAiService service = new OpenAiService(OPENAI_KEY);
List<ChatCompletionChoice> choices = service.createChatCompletion(chatCompletionRequest).getChoices();
String commandText = choices.get(0).getMessage().getContent();
return
|
prompter.findCommand(commandText, commands);
|
}
protected List<ChatMessage> createMessages(String userInput) {
List<ChatMessage> messages = new ArrayList<>();
ChatMessage systemMessage = new ChatMessage(ChatMessageRole.SYSTEM.value(), prompter.getSystemPrompt(commands));
messages.add(systemMessage);
ChatMessage userMessage = new ChatMessage(ChatMessageRole.USER.value(), userInput);
messages.add(userMessage);
return messages;
}
}
|
src/main/java/org/lunifera/gpt/commands/impl/CommandApi.java
|
florianpirchner-java-gpt-commands-8f92fe9
|
[
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandApi.java",
"retrieved_chunk": "\t * @return\n\t */\n\tICommand queryCommand(String userInput);\n}",
"score": 0.8773000240325928
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandApi.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.api;\nimport java.util.List;\nimport java.util.function.Supplier;\n/**\n * The command api builds the prompts for a given input and sends them to\n * https://platform.openai.com/docs/api-reference/chat/create, to get a proper\n * command.\n * \n * @author Florian\n *",
"score": 0.8118399381637573
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.impl;\nimport java.util.List;\nimport java.util.function.Supplier;\nimport org.lunifera.gpt.commands.api.ErrorCommand;\nimport org.lunifera.gpt.commands.api.ICommand;\nimport org.lunifera.gpt.commands.api.ICommandWrapper;\nimport org.lunifera.gpt.commands.api.IPrompter;\nimport org.lunifera.gpt.commands.api.InvalidCommand;\npublic class Prompter implements IPrompter {\n\tprivate ICommandWrapper commandWrapper = ICommandWrapper.DEFAULT;",
"score": 0.8096648454666138
},
{
"filename": "src/test/java/org/lunifera/gpt/commands/minimalhint/CommandTest.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.minimalhint;\nimport static org.junit.Assert.assertEquals;\nimport java.util.ArrayList;\nimport java.util.List;\nimport org.junit.Test;\nimport org.lunifera.gpt.commands.api.ICommand;\nimport org.lunifera.gpt.commands.impl.CommandApi;\npublic class CommandTest {\n\tprivate final String OPENAI_KEY = System.getProperty(\"OPENAI_KEY\");\n\t@Test",
"score": 0.8038593530654907
},
{
"filename": "src/test/java/org/lunifera/gpt/commands/minimalhint/AskYourFriendsCommand.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.minimalhint;\nimport org.lunifera.gpt.commands.impl.AbstractCommand;\npublic class AskYourFriendsCommand extends AbstractCommand {\n\tpublic static final String NAME = \"ASK_YOUR_FRIENDS\";\n\tpublic static final String HINT = \"Ask your friends\";\n\tpublic AskYourFriendsCommand() {\n\t\tsuper(NAME, HINT);\n\t}\n}",
"score": 0.7999065518379211
}
] |
java
|
prompter.findCommand(commandText, commands);
|
/**
*
*/
package org.lunifera.gpt.commands.impl;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Supplier;
import org.lunifera.gpt.commands.api.ICommand;
import org.lunifera.gpt.commands.api.ICommandApi;
import org.lunifera.gpt.commands.api.IPrompter;
import com.theokanning.openai.completion.chat.ChatCompletionChoice;
import com.theokanning.openai.completion.chat.ChatCompletionRequest;
import com.theokanning.openai.completion.chat.ChatMessage;
import com.theokanning.openai.completion.chat.ChatMessageRole;
import com.theokanning.openai.service.OpenAiService;
/**
*
*/
public class CommandApi implements ICommandApi {
private static final String GPT_4 = "gpt-4";
private final String OPENAI_KEY;
private IPrompter prompter = new Prompter();
private Supplier<List<? extends ICommand>> commands;
public CommandApi(String OPENAI_KEY) {
this.OPENAI_KEY = OPENAI_KEY;
}
public void setPrompter(IPrompter prompter) {
this.prompter = prompter;
}
/**
* Returns the {@link IPrompter}.
*
* @return
*/
public IPrompter getPrompter() {
return prompter;
}
public void setCommands(Supplier<List<? extends ICommand>> commands) {
this.commands = commands;
}
/**
* Returns the supplier of commands.
*
* @return
*/
public Supplier<List<? extends ICommand>> getCommands() {
return commands;
}
@Override
public ICommand queryCommand(String userInput) {
List<ChatMessage> messages = createMessages(userInput);
ChatCompletionRequest chatCompletionRequest = ChatCompletionRequest.builder().model(GPT_4).messages(messages)
.n(1).temperature(0d).maxTokens(50).build();
OpenAiService service = new OpenAiService(OPENAI_KEY);
List<ChatCompletionChoice> choices = service.createChatCompletion(chatCompletionRequest).getChoices();
String commandText = choices.get(0).getMessage().getContent();
return prompter.findCommand(commandText, commands);
}
protected List<ChatMessage> createMessages(String userInput) {
List<ChatMessage> messages = new ArrayList<>();
ChatMessage systemMessage = new ChatMessage(ChatMessageRole.SYSTEM.value()
|
, prompter.getSystemPrompt(commands));
|
messages.add(systemMessage);
ChatMessage userMessage = new ChatMessage(ChatMessageRole.USER.value(), userInput);
messages.add(userMessage);
return messages;
}
}
|
src/main/java/org/lunifera/gpt/commands/impl/CommandApi.java
|
florianpirchner-java-gpt-commands-8f92fe9
|
[
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandApi.java",
"retrieved_chunk": "\t * @return\n\t */\n\tICommand queryCommand(String userInput);\n}",
"score": 0.8117446899414062
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandApi.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.api;\nimport java.util.List;\nimport java.util.function.Supplier;\n/**\n * The command api builds the prompts for a given input and sends them to\n * https://platform.openai.com/docs/api-reference/chat/create, to get a proper\n * command.\n * \n * @author Florian\n *",
"score": 0.803559422492981
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t@Override\n\tpublic String getSystemPrompt(Supplier<List<? extends ICommand>> commands) {\n\t\tString template = getDefaultSystemPromptTemplate(commandWrapper);\n\t\tString prompt = template.replaceFirst(COMMAND_LIST_TEMPLATE, createCommdansPromptSection(commands));\n\t\treturn prompt;\n\t}\n\t@Override\n\tpublic void setCommandWrapper(ICommandWrapper commandWrapper) {\n\t\tthis.commandWrapper = commandWrapper;\n\t}",
"score": 0.7957272529602051
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t\t\tsb.append(c.toPrompt(ICommandWrapper.DEFAULT));\n\t\t\tsb.append(\"\\n\");\n\t\t});\n\t\treturn sb.toString();\n\t}\n\t@Override\n\tpublic ICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands) {\n\t\tString unwrappedCommandString = unwrapRawCommand(commandString);\n\t\tif (unwrappedCommandString.isEmpty()) {\n\t\t\treturn createErrorCommand(\"No response\");",
"score": 0.7943154573440552
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.impl;\nimport java.util.List;\nimport java.util.function.Supplier;\nimport org.lunifera.gpt.commands.api.ErrorCommand;\nimport org.lunifera.gpt.commands.api.ICommand;\nimport org.lunifera.gpt.commands.api.ICommandWrapper;\nimport org.lunifera.gpt.commands.api.IPrompter;\nimport org.lunifera.gpt.commands.api.InvalidCommand;\npublic class Prompter implements IPrompter {\n\tprivate ICommandWrapper commandWrapper = ICommandWrapper.DEFAULT;",
"score": 0.7884014844894409
}
] |
java
|
, prompter.getSystemPrompt(commands));
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
|
loadAndApplyRules(configuration.getLastRulesPathname());
|
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
|
src/main/java/net/dragondelve/downfall/util/Configurator.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java",
"retrieved_chunk": " Configurator.getInstance().loadAndApplyRules(savegame.getPathToRules());\n Configurator.getInstance().setLastSavegamePathname(pathname);\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Savegame config loading successfully completed.\");\n } catch (JAXBException | IllegalArgumentException e) {\n e.printStackTrace();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,\"Savegame config loading failed, loading default \");\n }\n }\n /**\n * Formulates a new Savegame based on the state of the Configurator and then saves it",
"score": 0.8437228798866272
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java",
"retrieved_chunk": "import java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n/**\n * Simple implementation of save manager that uses the Configurator class to store the LastSavegamePathname.\n * If a savegame is loaded it also tries to find, load and apply the rules that were used when last saving this savegame.\n */\nfinal class SimpleSaveManager implements SaveManager{\n /**\n * Loads and applies the savegame from last pathname used and attempts to find,",
"score": 0.8422373533248901
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java",
"retrieved_chunk": " * load and validate the rules that are referenced in the savegame.\n */\n @Override\n public void loadFromLast() {\n loadFrom(Configurator.getInstance().getLastSavegamePathname());\n }\n /**\n * Loads and applies the savegame from a given pathname and attempts to find,\n * load and validate the rules that are referenced in the savegame.\n * @param pathname pathname to a savegame file.",
"score": 0.8335092067718506
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SaveManager.java",
"retrieved_chunk": " * Loads and applies the savegame from last pathname used and attempts to find,\n * load and validate the rules that are referenced in the savegame.\n */\n void loadFromLast();\n /**\n * Loads and applies the savegame from a given pathname and attempts to find,\n * load and validate the rules that are referenced in the savegame.\n * @param pathname pathname to a savegame file.\n */\n void loadFrom(String pathname);",
"score": 0.8195314407348633
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java",
"retrieved_chunk": " @Override\n public void saveTo(String pathname) {\n Savegame savegame = new Savegame();\n savegame.setPathToRules(Configurator.getInstance().getLastRulesPathname());\n savegame.setUserRealm(Configurator.getInstance().getUserRealm());\n File file = new File(pathname);\n try {\n file.createNewFile();\n } catch (IOException ioException) {\n ioException.printStackTrace();",
"score": 0.8182515501976013
}
] |
java
|
loadAndApplyRules(configuration.getLastRulesPathname());
|
package org.lunifera.gpt.commands.api;
import java.util.List;
import java.util.function.Supplier;
/**
* An interface with the responsibility to create prompts. And to convert the
* received command string to a proper command.
*
* @author Florian
*/
public interface IPrompter {
public static final String PREFIX_TEMPLATE = "\\{___PREFIX___}";
public static final String POSTFIX_TEMPLATE = "\\{___POSTFIX___}";
public static final String COMMAND_LIST_TEMPLATE = "\\{___COMMAND_LIST___}";
/**
* Parts of this prompt are copied and/or modified from "[Auto-GPT"](https://github.com/Torantulino/Auto-GPT).
*
* {___PREFIX___}, {___POSTFIX___} and {___COMMAND_LIST___} need to be replaced
* later.
*/
public static final String DEFAULT_SYSTEM_PROMPT = //
"You are a CommandEngine. Your only task is to deliver the best matching {___PREFIX___}COMMAND{___POSTFIX___} from a list of COMMANDS as a response.\n" //
+ "\n" //
+ "To make your decision, you receive a text. Based on this text, you choose the best matching {___PREFIX___}COMMAND{___POSTFIX___} and respond with it.\n" //
+ "\n" //
+ "\n" //
+ "COMMANDS:\n" //
+ "{___COMMAND_LIST___}" //
+ "\n" //
+ "You will never ask a follow-up question!\n" + "\n" //
+ "And you MUST only answer the {COMMAND}!"; //
/**
* Returns the DEFAULT_SYSTEM_PROMPT but replaces the pre- and postfix.
*
* @return
*/
default String getDefaultSystemPromptTemplate(ICommandWrapper delimiter) {
|
return DEFAULT_SYSTEM_PROMPT.replaceAll(PREFIX_TEMPLATE, delimiter.getPrefix())//
.replaceAll(POSTFIX_TEMPLATE, delimiter.getPostfix());
|
}
/**
* Returns the "system" prompt to be used in the OpenAI Chat API.
*
* @param see {@link ICommandApi#setCommands(Supplier)}
*
* @return
*/
String getSystemPrompt(Supplier<List<? extends ICommand>> commands);
/**
* Returns a proper command for the given commandString in respect to the system
* prompt.
*
* @param commandString
* @param commands
* @return
*/
ICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands);
/**
* Sets the command delimiter. See {@link ICommandWrapper}.
*
* @param wrapper
*/
void setCommandWrapper(ICommandWrapper wrapper);
/**
* Returns the command delimiter. See {@link ICommandWrapper}.
*
* @return
*/
default ICommandWrapper getCommandWrapper() {
return ICommandWrapper.DEFAULT;
}
}
|
src/main/java/org/lunifera/gpt/commands/api/IPrompter.java
|
florianpirchner-java-gpt-commands-8f92fe9
|
[
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t@Override\n\tpublic String getSystemPrompt(Supplier<List<? extends ICommand>> commands) {\n\t\tString template = getDefaultSystemPromptTemplate(commandWrapper);\n\t\tString prompt = template.replaceFirst(COMMAND_LIST_TEMPLATE, createCommdansPromptSection(commands));\n\t\treturn prompt;\n\t}\n\t@Override\n\tpublic void setCommandWrapper(ICommandWrapper commandWrapper) {\n\t\tthis.commandWrapper = commandWrapper;\n\t}",
"score": 0.8462629318237305
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommand.java",
"retrieved_chunk": "\t * command properly. They are also part of the general description in the in system prompt.\n\t * \n\t * @return\n\t */\n\tString toPrompt(ICommandWrapper wrapper);\n}",
"score": 0.8210752010345459
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/InvalidCommand.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.api;\npublic class InvalidCommand implements ICommand {\n\t@Override\n\tpublic String getName() {\n\t\treturn \"__INVALID_COMMAND\";\n\t}\n\t@Override\n\tpublic String toPrompt(ICommandWrapper delimiter) {\n\t\tthrow new UnsupportedOperationException();\n\t}",
"score": 0.804502010345459
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommand.java",
"retrieved_chunk": "\t * @return\n\t */\n\tString getName();\n\t/**\n\t * Returns a String representation of this command to be used by the\n\t * {@link IPrompter}. It is important, to wrap the command inside the delimiter\n\t * pre- and postfix, if they are not blank.\n\t * <p>\n\t * Eg command WEB_SEARCH. Prefix = { and postfix = }. So the command needs to be\n\t * wrapped inside {WEB_SEARCH}. Pre- and postfix allow gpt to recognize the",
"score": 0.7966452836990356
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ErrorCommand.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.api;\npublic class ErrorCommand implements ICommand {\n\t@Override\n\tpublic String getName() {\n\t\treturn \"__ERROR_COMMAND\";\n\t}\n\t@Override\n\tpublic String toPrompt(ICommandWrapper delimiter) {\n\t\tthrow new UnsupportedOperationException();\n\t}",
"score": 0.7955410480499268
}
] |
java
|
return DEFAULT_SYSTEM_PROMPT.replaceAll(PREFIX_TEMPLATE, delimiter.getPrefix())//
.replaceAll(POSTFIX_TEMPLATE, delimiter.getPostfix());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm
|
.setRulerPathToGFX(realm.getRulerPathToGFX());
|
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
|
src/main/java/net/dragondelve/downfall/util/Configurator.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 0.8951388001441956
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 0.8799998164176941
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 0.8748509287834167
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Realm.java",
"retrieved_chunk": " */\n@XmlRootElement(name = \"realm\")\npublic class Realm extends Actor{\n private final IntegerProperty diplomaticReputation = new SimpleIntegerProperty();\n private final IntegerProperty powerProjection = new SimpleIntegerProperty();\n private final IntegerProperty legitimacy = new SimpleIntegerProperty();\n private final IntegerProperty prestige = new SimpleIntegerProperty();\n private final IntegerProperty infamy = new SimpleIntegerProperty();\n private final DoubleProperty stability = new SimpleDoubleProperty();\n private final StringProperty realmPathToGFX = new SimpleStringProperty();",
"score": 0.8721579313278198
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Realm.java",
"retrieved_chunk": " * @param prestige a measure of a ruler's prestige. Expended and gained as a diplomatic resource\n * @param infamy a measure of the ruler's infamy. Affects unrest, used when taking diplomatic actions.\n * @param stability a measure of the realm's stability. affects unrest.\n * @param realmPathToGFX path to the image of a flag/coat of arms that represents the realm.\n * @param rulerPathToGFX path to the image of a flag/coat of arms that represents the ruling body.\n */\n public Realm(Integer id, String name, Integer treasury, ObservableList<Material> stockpile, ObservableList<Building> ownedBuildings, ObservableList<Tag> tags, Integer diplomaticReputation, Integer powerProjection, Integer legitimacy, Integer prestige, Integer infamy,Double stability, String realmPathToGFX, String rulerPathToGFX) {\n super(id, name, treasury, stockpile, ownedBuildings, tags);\n this.diplomaticReputation.set(diplomaticReputation);\n this.powerProjection.set(powerProjection);",
"score": 0.8686621785163879
}
] |
java
|
.setRulerPathToGFX(realm.getRulerPathToGFX());
|
package org.lunifera.gpt.commands.impl;
import java.util.List;
import java.util.function.Supplier;
import org.lunifera.gpt.commands.api.ErrorCommand;
import org.lunifera.gpt.commands.api.ICommand;
import org.lunifera.gpt.commands.api.ICommandWrapper;
import org.lunifera.gpt.commands.api.IPrompter;
import org.lunifera.gpt.commands.api.InvalidCommand;
public class Prompter implements IPrompter {
private ICommandWrapper commandWrapper = ICommandWrapper.DEFAULT;
@Override
public String getSystemPrompt(Supplier<List<? extends ICommand>> commands) {
String template = getDefaultSystemPromptTemplate(commandWrapper);
String prompt = template.replaceFirst(COMMAND_LIST_TEMPLATE, createCommdansPromptSection(commands));
return prompt;
}
@Override
public void setCommandWrapper(ICommandWrapper commandWrapper) {
this.commandWrapper = commandWrapper;
}
/**
* Returns the commands text to be included in the prompt.
*
* @param commands
* @return
*/
private String createCommdansPromptSection(Supplier<List<? extends ICommand>> commands) {
StringBuilder sb = new StringBuilder();
commands.get().forEach(c -> {
sb.append("- ");
sb.append(c.toPrompt(ICommandWrapper.DEFAULT));
sb.append("\n");
});
return sb.toString();
}
@Override
public ICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands) {
String unwrappedCommandString = unwrapRawCommand(commandString);
if (unwrappedCommandString.isEmpty()) {
return createErrorCommand("No response");
}
ICommand command = commands.get().stream().filter(c -> c.getName().equals(unwrappedCommandString)).findFirst()
.orElse(null);
if (command == null) {
command = createInvalidCommand();
}
return command;
}
protected ICommand createErrorCommand(String text) {
return new ErrorCommand();
}
protected InvalidCommand createInvalidCommand() {
return new InvalidCommand();
}
/**
* GPT will return the command in the form {Prefix}COMMAND{POSTFIX}.
* <p>
* Eg. {WEB_SEARCH}. So we will remove the pre- and postfix here to get the raw
* command WEB_SEARCH.
*
* @param commandString
* @return
*/
protected String unwrapRawCommand(String commandString) {
|
return commandWrapper.unwrapCommand(commandString);
|
}
}
|
src/main/java/org/lunifera/gpt/commands/impl/Prompter.java
|
florianpirchner-java-gpt-commands-8f92fe9
|
[
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\tDefaultCommandWrapper DEFAULT = new DefaultCommandWrapper(\"{\", \"}\");\n\tString getPrefix();\n\tString getPostfix();\n\t/**\n\t * WEB_SEARCH to {WEB_SEARCH}, if pre- and postfix is { and }.\n\t * \n\t * @param command\n\t * @return\n\t */\n\tString wrapCommand(String command);",
"score": 0.8482420444488525
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\t\t@Override\n\t\tpublic String wrapCommand(String command) {\n\t\t\tif (prefix == null) {\n\t\t\t\treturn command;\n\t\t\t}\n\t\t\treturn prefix + command + postfix;\n\t\t}\n\t\t@Override\n\t\tpublic String unwrapCommand(String wrappedCommand) {\n\t\t\tif (prefix == null) {",
"score": 0.843863308429718
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\t\t\t\treturn wrappedCommand;\n\t\t\t}\n\t\t\tString command = wrappedCommand.trim();\n\t\t\tif (wrappedCommand.startsWith(prefix)) {\n\t\t\t\tcommand = wrappedCommand.substring(1, wrappedCommand.length());\n\t\t\t}\n\t\t\tif (command.endsWith(postfix)) {\n\t\t\t\tcommand = command.substring(0, command.length() - 1);\n\t\t\t}\n\t\t\treturn command;",
"score": 0.8322376608848572
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\t/**\n\t * {WEB_SEARCH} to WEB_SEARCH, if pre- and postfix is { and }.\n\t * \n\t * @param wrappedCommand\n\t * @return\n\t */\n\tString unwrapCommand(String wrappedCommand);\n\t/**\n\t * Describes how to wrap the command. By default, the command will be wrapped\n\t * following the format \"{%s}\". This is required, to ensure that gpt-4 can",
"score": 0.8277009129524231
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.api;\n/**\n * Describes how to wrap the command. By default, the command will be wrapped\n * following the format \"PREFIX%sPOSTFIX\". This is required, to ensure that\n * gpt-4 can recognize the raw command part properly.\n * <p>\n * Eg: WEB_SEARCH to {WEB_SEARCH}, if pre- and postfix is { and } and vies\n * versa.\n */\npublic interface ICommandWrapper {",
"score": 0.8228963017463684
}
] |
java
|
return commandWrapper.unwrapCommand(commandString);
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField
|
.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
|
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n //retrieving the list of material templates in current rules.\n materials = FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates());\n //Configuring Template Editor",
"score": 0.8795881271362305
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 0.8791297078132629
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " ObservableList<Material> constructionMaterials = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 0.876304566860199
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " ObservableList<Tag> tags = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 0.8749703764915466
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " saveRealm.setOnAction(e -> saveRealmAction());\n saveRealmTo.setOnAction(e -> saveRealmToAction());\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n minimizeButton.setStage(stage);\n maximizeButton.setStage(stage);\n exitButton.setStage(stage);\n menuBar.setOnMousePressed(e->{\n xOffset = stage.getX() - e.getScreenX();\n yOffset = stage.getY() - e.getScreenY();",
"score": 0.8678139448165894
}
] |
java
|
.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField.
|
textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
|
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 0.8840808868408203
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " saveRealm.setOnAction(e -> saveRealmAction());\n saveRealmTo.setOnAction(e -> saveRealmToAction());\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n minimizeButton.setStage(stage);\n maximizeButton.setStage(stage);\n exitButton.setStage(stage);\n menuBar.setOnMousePressed(e->{\n xOffset = stage.getX() - e.getScreenX();\n yOffset = stage.getY() - e.getScreenY();",
"score": 0.8746557235717773
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " @FXML\n private VBox rootPane;\n @FXML\n private Label stabilityLabel;\n @FXML\n private Label realmNameLabel;\n @FXML\n private Pane stabilityCirclePane;\n @FXML\n private ListView<Tag> realmTagListView;",
"score": 0.8649351596832275
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " @FXML\n private Label prestigeLabel;\n @FXML\n private ImageView realmImageView;\n @FXML\n private GridPane stabilityNegativeGrid;\n @FXML\n private Label stabilityPerMonthLabel;\n @FXML\n private GridPane stabilityPositiveGrid;",
"score": 0.8647605180740356
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 0.8634752035140991
}
] |
java
|
textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j;
import de.florianmichael.classic4j.request.betacraft.BCServerListRequest;
import de.florianmichael.classic4j.model.betacraft.BCServerList;
import java.net.URI;
import java.util.function.Consumer;
public class BetaCraftHandler {
public final static URI SERVER_LIST = URI.create("https://betacraft.uk/serverlist");
public static void requestServerList(final Consumer<BCServerList> complete) {
requestServerList(complete, Throwable::printStackTrace);
}
public static void requestServerList(final Consumer<BCServerList> complete, final Consumer<Throwable> throwableConsumer) {
|
BCServerListRequest.send().whenComplete((bcServerList, throwable) -> {
|
if (throwable != null) {
throwableConsumer.accept(throwable);
return;
}
complete.accept(bcServerList);
});
}
}
|
src/main/java/de/florianmichael/classic4j/BetaCraftHandler.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": "import org.jsoup.nodes.Document;\nimport java.util.concurrent.CompletableFuture;\npublic class BCServerListRequest {\n public static CompletableFuture<BCServerList> send() {\n return CompletableFuture.supplyAsync(() -> {\n Document document;\n try {\n document = Jsoup.connect(BetaCraftHandler.SERVER_LIST.toString())\n .userAgent(\"Java/\" + Runtime.version())\n .header(\"Accept\", \"text/html, image/gif, image/jpeg, ; q=.2,/*; q=.2\")",
"score": 0.8837928771972656
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": " * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage de.florianmichael.classic4j.request.betacraft;\nimport de.florianmichael.classic4j.BetaCraftHandler;\nimport de.florianmichael.classic4j.model.betacraft.BCServerList;\nimport org.jsoup.Jsoup;",
"score": 0.8743208646774292
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": "public class ClassiCubeHandler {\n public final static Gson GSON = new GsonBuilder().serializeNulls().create();\n public final static URI CLASSICUBE_ROOT_URI = URI.create(\"https://www.classicube.net\");\n public final static URI AUTHENTICATION_URI = CLASSICUBE_ROOT_URI.resolve(\"/api/login/\");\n public final static URI SERVER_INFO_URI = CLASSICUBE_ROOT_URI.resolve(\"/api/server/\");\n public final static URI SERVER_LIST_INFO_URI = CLASSICUBE_ROOT_URI.resolve(\"/api/servers/\");\n public static void requestServerList(final CCAccount account, final Consumer<CCServerList> complete) {\n requestServerList(account, complete, Throwable::printStackTrace);\n }\n public static void requestServerList(final CCAccount account, final Consumer<CCServerList> complete, final Consumer<Throwable> throwableConsumer) {",
"score": 0.8564161062240601
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " CCServerListRequest.send(account).whenComplete((ccServerList, throwable) -> {\n if (throwable != null) {\n throwableConsumer.accept(throwable);\n return;\n }\n complete.accept(ccServerList);\n });\n }\n public static void requestServerInfo(final CCAccount account, final String serverHash, final Consumer<CCServerList> complete) {\n requestServerInfo(account, serverHash, complete, Throwable::printStackTrace);",
"score": 0.8448055982589722
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " }\n public static void requestServerInfo(final CCAccount account, final String serverHash, final Consumer<CCServerList> complete, final Consumer<Throwable> throwableConsumer) {\n requestServerInfo(account, List.of(serverHash), complete, throwableConsumer);\n }\n public static void requestServerInfo(final CCAccount account, final List<String> serverHashes, final Consumer<CCServerList> complete) {\n requestServerInfo(account, serverHashes, complete, Throwable::printStackTrace);\n }\n public static void requestServerInfo(final CCAccount account, final List<String> serverHashes, final Consumer<CCServerList> complete, final Consumer<Throwable> throwableConsumer) {\n CCServerInfoRequest.send(account, serverHashes).whenComplete((ccServerList, throwable) -> {\n if (throwable != null) {",
"score": 0.8366402387619019
}
] |
java
|
BCServerListRequest.send().whenComplete((bcServerList, throwable) -> {
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.request.classicube.auth;
import de.florianmichael.classic4j.ClassiCubeHandler;
import de.florianmichael.classic4j.request.classicube.auth.base.CCAuthenticationResponse;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAuthenticationData;
import de.florianmichael.classic4j.util.Pair;
import de.florianmichael.classic4j.util.WebRequests;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.concurrent.CompletableFuture;
public class CCAuthenticationLoginRequest {
public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account, final CCAuthenticationResponse previousResponse, final String loginCode) {
return CompletableFuture.supplyAsync(() -> {
final CCAuthenticationData
|
authenticationData = new CCAuthenticationData(account.username(), account.password(), previousResponse.token, loginCode);
|
final String requestBody = WebRequests.createRequestBody(
new Pair<>("username", authenticationData.username()),
new Pair<>("password", authenticationData.password()),
new Pair<>("token", authenticationData.previousToken()),
new Pair<>("login_code", authenticationData.loginCode())
);
final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder()
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.uri(ClassiCubeHandler.AUTHENTICATION_URI)
.header("content-type", "application/x-www-form-urlencoded"));
final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();
WebRequests.updateCookies(account.cookieStore, response);
final String responseBody = response.body();
return CCAuthenticationResponse.fromJson(responseBody);
});
}
}
|
src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationLoginRequest.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationTokenRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCAuthenticationTokenRequest {\n public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.AUTHENTICATION_URI).build();\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 0.9228134751319885
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " throwableConsumer.accept(throwable);\n return;\n }\n complete.accept(ccServerList);\n });\n }\n public static void requestAuthentication(final CCAccount account, final String loginCode, final LoginProcessHandler processHandler) {\n CCAuthenticationTokenRequest.send(account).whenComplete((initialTokenResponse, throwable) -> {\n if (throwable != null) {\n processHandler.handleException(throwable);",
"score": 0.853355884552002
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " private final String previousToken;\n private final String loginCode;\n public CCAuthenticationData(final String username, final String password, final String previousToken) {\n this(username, password, previousToken, null);\n }\n public CCAuthenticationData(final String username, final String password, final String previousToken, final String loginCode) {\n this.username = username;\n this.password = password;\n this.previousToken = previousToken;\n this.loginCode = loginCode;",
"score": 0.8503504991531372
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " }\n public CCAuthenticationData withLoginCode(final String loginCode) {\n return new CCAuthenticationData(this.username, this.password, this.previousToken, loginCode);\n }\n public String username() {\n return username;\n }\n public String password() {\n return password;\n }",
"score": 0.8500822186470032
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerListRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerListRequest {\n public static CompletableFuture<CCServerList> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.SERVER_LIST_INFO_URI));\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 0.8458309173583984
}
] |
java
|
authenticationData = new CCAuthenticationData(account.username(), account.password(), previousResponse.token, loginCode);
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.request.classicube.auth;
import de.florianmichael.classic4j.ClassiCubeHandler;
import de.florianmichael.classic4j.request.classicube.auth.base.CCAuthenticationResponse;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAuthenticationData;
import de.florianmichael.classic4j.util.Pair;
import de.florianmichael.classic4j.util.WebRequests;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.concurrent.CompletableFuture;
public class CCAuthenticationLoginRequest {
public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account, final CCAuthenticationResponse previousResponse, final String loginCode) {
return CompletableFuture.supplyAsync(() -> {
final CCAuthenticationData authenticationData = new CCAuthenticationData(account.username(), account.password(), previousResponse.token, loginCode);
final String requestBody = WebRequests.createRequestBody(
new Pair<>("username", authenticationData.username()),
new Pair<>("password", authenticationData.password()),
new Pair<>("token", authenticationData.previousToken()),
new Pair
|
<>("login_code", authenticationData.loginCode())
);
|
final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder()
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.uri(ClassiCubeHandler.AUTHENTICATION_URI)
.header("content-type", "application/x-www-form-urlencoded"));
final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();
WebRequests.updateCookies(account.cookieStore, response);
final String responseBody = response.body();
return CCAuthenticationResponse.fromJson(responseBody);
});
}
}
|
src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationLoginRequest.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationTokenRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCAuthenticationTokenRequest {\n public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.AUTHENTICATION_URI).build();\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 0.8942447900772095
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " throwableConsumer.accept(throwable);\n return;\n }\n complete.accept(ccServerList);\n });\n }\n public static void requestAuthentication(final CCAccount account, final String loginCode, final LoginProcessHandler processHandler) {\n CCAuthenticationTokenRequest.send(account).whenComplete((initialTokenResponse, throwable) -> {\n if (throwable != null) {\n processHandler.handleException(throwable);",
"score": 0.8706924319267273
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " return;\n }\n // There should NEVER be any errors on the initial token response!\n if (initialTokenResponse.shouldError()) {\n final String errorDisplay = initialTokenResponse.getErrorDisplay();\n processHandler.handleException(new LoginException(errorDisplay));\n return;\n }\n account.token = initialTokenResponse.token;\n CCAuthenticationLoginRequest.send(account, initialTokenResponse, loginCode).whenComplete((loginResponse, throwable1) -> {",
"score": 0.8506134748458862
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " }\n public CCAuthenticationData withLoginCode(final String loginCode) {\n return new CCAuthenticationData(this.username, this.password, this.previousToken, loginCode);\n }\n public String username() {\n return username;\n }\n public String password() {\n return password;\n }",
"score": 0.8481919169425964
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " private final String previousToken;\n private final String loginCode;\n public CCAuthenticationData(final String username, final String password, final String previousToken) {\n this(username, password, previousToken, null);\n }\n public CCAuthenticationData(final String username, final String password, final String previousToken, final String loginCode) {\n this.username = username;\n this.password = password;\n this.previousToken = previousToken;\n this.loginCode = loginCode;",
"score": 0.837812066078186
}
] |
java
|
<>("login_code", authenticationData.loginCode())
);
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleMaterialTemplateFetcher;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;
import javafx.util.converter.NumberStringConverter;
import java.io.File;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class MaterialsEditorController implements StageController {
@FXML
private TextField exportPriceTextField;
@FXML
private TextField importPriceTextField;
@FXML
private SimpleTableEditor<VisualMaterialTemplate> materialTemplateEditor;
@FXML
private CheckBox isExportableCheckBox;
@FXML
private AnchorPane leftAnchor;
@FXML
private TextField nameTextField;
@FXML
private Button okButton;
@FXML
private TextField pathToGFXTextField;
@FXML
private ImageChooserButton fileChooserButton;
@FXML
private SplitPane rootPane;
ObservableList<VisualMaterialTemplate> materials = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving the list of material templates in current rules.
materials = FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates());
//Configuring Template Editor
materialTemplateEditor.setFetcher(new SimpleMaterialTemplateFetcher());
//Configuring Table View
materialTemplateEditor.getTableView().setItems(materials);
materialTemplateEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Creating Table Columns for the editor to display
TableColumn<VisualMaterialTemplate, String> materialNameColumn = new TableColumn<>();
materialNameColumn.setText("Material");
materialNameColumn.setCellValueFactory(param -> param.getValue().nameProperty());
LogoTableColumn<VisualMaterialTemplate> materialImageColumn = new LogoTableColumn<>();
materialImageColumn.setDefaultSizePolicy();
materialImageColumn.setCellValueFactory(param -> param.getValue().pathToGFXProperty());
materialTemplateEditor.getTableView().getColumns().addAll(materialImageColumn, materialNameColumn);
//listening for changes in selection made by the user in materials table view to update data displayed.
materialTemplateEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null) {
if (!validateMaterial(oldValue))
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Material Editor Controller saving an invalid tag");
else
unbindMaterial(oldValue);
}
displayMaterial(newValue);
});
//other inits
disableTradable();
isExportableCheckBox.selectedProperty().addListener((observable, oldValue, newValue) -> {
if(newValue)
enableTradable();
else
disableTradable();
});
fileChooserButton.setOutput(pathToGFXTextField);
okButton.setOnAction(e-> stage.close());
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Disables the exportPriceTextField as you should not set a price for non-tradeable materials.
*/
private void disableTradable() {
exportPriceTextField.setDisable(true);
}
/**
* Enables the exportPriceTextField as you should be abel to set a price for tradeable materials.
*/
private void enableTradable() {
exportPriceTextField.setDisable(false);
}
/**
* Unbinds the properties of a given materials from all TextFields and CheckBoxes.
* @param template template to be unbound.
*/
private void unbindMaterial(VisualMaterialTemplate template) {
nameTextField.textProperty() .unbindBidirectional(template.nameProperty());
isExportableCheckBox.selectedProperty() .unbindBidirectional(template.isExportableProperty());
pathToGFXTextField.textProperty() .unbindBidirectional(template.pathToGFXProperty());
exportPriceTextField.textProperty() .unbindBidirectional(template.defExportPriceProperty());
importPriceTextField.textProperty() .unbindBidirectional(template.defImportPriceProperty());
}
/**
* Binds the properties of a given material to all TextFields and CheckBoxes.
* @param materialTemplate template to be displayed
*/
private void displayMaterial(VisualMaterialTemplate materialTemplate) {
nameTextField.textProperty() .bindBidirectional(materialTemplate.nameProperty());
isExportableCheckBox.selectedProperty() .bindBidirectional(materialTemplate.isExportableProperty());
pathToGFXTextField.
|
textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty());
|
exportPriceTextField.textProperty() .bindBidirectional(materialTemplate.defExportPriceProperty(), new NumberStringConverter());
importPriceTextField.textProperty() .bindBidirectional(materialTemplate.defImportPriceProperty(), new NumberStringConverter());
}
/**
* Checks that it can read a file that is set as a pathToGFX.
* @param materialTemplate VisualMaterialTemplate to be validated.
* @return true if file can be read. False if it cannot be read.
*/
private boolean validateMaterial(VisualMaterialTemplate materialTemplate) {
File checkFile = new File(pathToGFXTextField.getText());
if(checkFile.canRead()) {
return true;
} else {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Could not Find file: "+pathToGFXTextField.getText()+" when trying to check integrity during material template save.");
Alert alert = new Alert(Alert.AlertType.ERROR);
alert.setHeaderText("Could not find file: "+pathToGFXTextField.getText());
alert.setContentText(pathToGFXTextField.getText()+" must be a path to a valid readable file");
alert.showAndWait();
return false;
}
}
/**
* Removes the old Material Templates from the current Ruleset, adds all materialTemplates in materials field, and then force saves the rules at a lastLoadedRules location.
*/
@Deprecated
private void saveChanges() {
Configurator.getInstance().getRules().getMaterialTemplates().clear();
Configurator.getInstance().getRules().getMaterialTemplates().addAll(materials);
Configurator.getInstance().saveRules();
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " * @param template template that was selected by the user to be displayed and edited.\n */\n private void displayBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().bindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().bindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().bindBidirectional(template.defConstructionCostProperty(), new NumberStringConverter());\n constructionTimeField.textProperty().bindBidirectional(template.defConstructionTimeProperty(), new NumberStringConverter());\n operatesImmediatelyCheckBox.selectedProperty().bindBidirectional(template.operatesImmediatelyProperty());\n inputMaterialEditor.setItems(template.getInputMaterials());\n outputMaterialEditor.setItems(template.getOutputMaterials());",
"score": 0.8827135562896729
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 0.8778082132339478
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " private TextField pathToGFXTextField;\n @FXML\n private Button okButton;\n @FXML\n private CheckBox operatesImmediatelyCheckBox;\n @FXML\n private BorderPane rootPane;\n ObservableList<VisualBuildingTemplate> buildingTemplates = FXCollections.emptyObservableList();\n ObservableList<Material> inputMaterials = FXCollections.emptyObservableList();\n ObservableList<Material> outputMaterials = FXCollections.emptyObservableList();",
"score": 0.8468388319015503
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " //Configuring table columns\n LogoTableColumn<VisualBuildingTemplate> buildingLogoColumn = new LogoTableColumn<>();\n buildingLogoColumn.setDefaultSizePolicy();\n buildingLogoColumn.setCellValueFactory(e-> e.getValue().pathToGFXProperty());\n TableColumn<VisualBuildingTemplate, String> buildingNameColumn = new TableColumn<>(\"Building\");\n buildingNameColumn.setCellValueFactory(e -> e.getValue().nameProperty());\n buildingEditor.getTableView().getColumns().addAll(buildingLogoColumn, buildingNameColumn);\n //configuring material editors\n configureMaterialEditor(inputMaterialEditor, \"Material\", \"Amount\");\n configureMaterialEditor(outputMaterialEditor, \"Material\", \"Amount\");",
"score": 0.8379920125007629
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " private TextField constructionTimeField;\n @FXML\n private SimpleTableEditor<Material> outputMaterialEditor;\n @FXML\n private TextField nameTextField;\n @FXML\n private SimpleTableEditor<Material> constructionMaterialEditor;\n @FXML\n private ImageChooserButton pathToGFXButton;\n @FXML",
"score": 0.8364233374595642
}
] |
java
|
textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty());
|
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.request.classicube.auth;
import de.florianmichael.classic4j.ClassiCubeHandler;
import de.florianmichael.classic4j.request.classicube.auth.base.CCAuthenticationResponse;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAuthenticationData;
import de.florianmichael.classic4j.util.Pair;
import de.florianmichael.classic4j.util.WebRequests;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.concurrent.CompletableFuture;
public class CCAuthenticationLoginRequest {
public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account, final CCAuthenticationResponse previousResponse, final String loginCode) {
return CompletableFuture.supplyAsync(() -> {
final CCAuthenticationData authenticationData = new CCAuthenticationData(account.username()
|
, account.password(), previousResponse.token, loginCode);
|
final String requestBody = WebRequests.createRequestBody(
new Pair<>("username", authenticationData.username()),
new Pair<>("password", authenticationData.password()),
new Pair<>("token", authenticationData.previousToken()),
new Pair<>("login_code", authenticationData.loginCode())
);
final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder()
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.uri(ClassiCubeHandler.AUTHENTICATION_URI)
.header("content-type", "application/x-www-form-urlencoded"));
final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();
WebRequests.updateCookies(account.cookieStore, response);
final String responseBody = response.body();
return CCAuthenticationResponse.fromJson(responseBody);
});
}
}
|
src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationLoginRequest.java
|
FlorianMichael-Classic4J-6e0a2ff
|
[
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationTokenRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCAuthenticationTokenRequest {\n public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.AUTHENTICATION_URI).build();\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 0.922975480556488
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " throwableConsumer.accept(throwable);\n return;\n }\n complete.accept(ccServerList);\n });\n }\n public static void requestAuthentication(final CCAccount account, final String loginCode, final LoginProcessHandler processHandler) {\n CCAuthenticationTokenRequest.send(account).whenComplete((initialTokenResponse, throwable) -> {\n if (throwable != null) {\n processHandler.handleException(throwable);",
"score": 0.8558984994888306
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " }\n public CCAuthenticationData withLoginCode(final String loginCode) {\n return new CCAuthenticationData(this.username, this.password, this.previousToken, loginCode);\n }\n public String username() {\n return username;\n }\n public String password() {\n return password;\n }",
"score": 0.8507788181304932
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " private final String previousToken;\n private final String loginCode;\n public CCAuthenticationData(final String username, final String password, final String previousToken) {\n this(username, password, previousToken, null);\n }\n public CCAuthenticationData(final String username, final String password, final String previousToken, final String loginCode) {\n this.username = username;\n this.password = password;\n this.previousToken = previousToken;\n this.loginCode = loginCode;",
"score": 0.8503537774085999
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerListRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerListRequest {\n public static CompletableFuture<CCServerList> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.SERVER_LIST_INFO_URI));\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 0.8458551168441772
}
] |
java
|
, account.password(), previousResponse.token, loginCode);
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
rulerGFXTextField
|
.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
|
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 0.8683699369430542
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 0.8526977300643921
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " @FXML\n private Label prestigeLabel;\n @FXML\n private ImageView realmImageView;\n @FXML\n private GridPane stabilityNegativeGrid;\n @FXML\n private Label stabilityPerMonthLabel;\n @FXML\n private GridPane stabilityPositiveGrid;",
"score": 0.8524996638298035
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 0.8513199687004089
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 0.8485572338104248
}
] |
java
|
.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
|
package com.flyjingfish.titlebar;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
import com.flyjingfish.titlebarlib.TitleBar;
public class MainActivity extends BaseActivity {
private TitleBar titleBar2;
@Override
public String getTitleString() {
return "这里是标题";
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// titleBar2 = findViewById(R.id.title_bar);
// StatusBarHelper.translucent(this);
// StatusBarHelper.setStatusBarLightMode(this);
View view = new View(this);
view.setBackgroundColor(Color.RED);
// titleBar2.setCustomView(view );
// titleBar2.setBackgroundColor(Color.RED);
// titleBar.setShadow(20,Color.BLACK, TitleBar.ShadowType.GRADIENT);
Log.d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this));
}
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_1:
StatusBarHelper.translucent(this);
|
StatusBarHelper.setStatusBarLightMode(this);
|
titleBar.setStatusBarBackgroundColor(Color.BLUE);
titleBar.setTitleGravity(TitleBar.TitleGravity.START);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.BLACK);
titleBar.getRightImageView().setVisibility(View.GONE);
titleBar.setDisplayShadow(true);
titleBar.setAboveContent(false);
titleBar.getBackTextView().setText("back");
break;
case R.id.btn_2:
titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);
titleBar.getRightTextView().setVisibility(View.GONE);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.WHITE);
titleBar.getRightImageView().setOnClickListener(v -> Toast.makeText(v.getContext(),"more",Toast.LENGTH_SHORT).show());
// titleBar.hideShadow();
titleBar.setAboveContent(true);
ViewGroup content = findViewById(android.R.id.content);
int[] contentLat = new int[2];
content.getLocationOnScreen(contentLat);
Log.e("getLocationOnScreen",contentLat[0]+"=="+contentLat[1]);
Rect rect = new Rect();
content.getLocalVisibleRect(rect);
Log.e("getLocationOnScreen",content.getTop()+"");
break;
case R.id.btn_3:
titleBar.getRightTextView().setVisibility(View.VISIBLE);
titleBar.setTitleGravity(TitleBar.TitleGravity.END);
titleBar.getRightTextView().setText("11111");
titleBar.getRightTextView().setTextColor(Color.BLUE);
break;
}
}
}
|
app/src/main/java/com/flyjingfish/titlebar/MainActivity.java
|
FlyJingFish-TitleBar-24dc5b6
|
[
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": " protected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n titleBar = new TitleBar(this);\n titleBar.setShadow(4, Color.parseColor(\"#406200EE\"), TitleBar.ShadowType.GRADIENT);\n titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);\n titleBar.setOnBackViewClickListener(v -> finish());\n if (isShowTitleBar()){\n titleBar.show();\n }else {\n titleBar.hide();",
"score": 0.868412435054779
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " leftContainer = rootView.findViewById(R.id.left_container);\n int statusBarHeight = StatusBarHelper.getStatusbarHeight(getContext());\n ViewGroup.LayoutParams layoutParams = titleBarStatusBar.getLayoutParams();\n layoutParams.height = statusBarHeight;\n titleBarStatusBar.setLayoutParams(layoutParams);\n setOnBackViewClickListener(v -> ((Activity) context).finish());\n if (pendingSetBackground != null) {\n setBackground(pendingSetBackground);\n }\n int minHeight = a.getDimensionPixelOffset(R.styleable.TitleBar_android_minHeight, getResources().getDimensionPixelOffset(R.dimen.title_bar_minHeight));",
"score": 0.8615144491195679
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " View rootView = LayoutInflater.from(context).inflate(R.layout.layout_title_bar, this, true);\n backgroundView = rootView.findViewById(R.id.iv_title_bar_bg);\n titleBarContainer = rootView.findViewById(R.id.fl_title_bar_container);\n titleBarStatusBar = rootView.findViewById(R.id.iv_title_bar_status_bar);\n int titleStyle = a.getResourceId(R.styleable.TitleBar_title_bar_title_style, R.style.title_bar_title_style);\n titleView = LayoutInflater.from(new ContextThemeWrapper(getContext(), titleStyle)).inflate(R.layout.layout_title_bar_title_view, titleBarContainer, true).findViewById(R.id.tv_title_bar_title);\n setTitleViewParams(titleView, titleStyle);\n customViewContainer = rootView.findViewById(R.id.fl_custom_view);\n shadowView = rootView.findViewById(R.id.shadow_line);\n rightContainer = rootView.findViewById(R.id.right_container);",
"score": 0.8566019535064697
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " int oldVisibility = titleBarStatusBar.getVisibility();\n if (viewParent == windowView) {\n int paddingTop = (int) (contentLat[1] == 0 ? TitleBar.this.getHeight() - shadowView.getShadowMaxLength() : titleBarContainer.getHeight());\n int titleBarVisibility = getVisibility();\n if (titleBarVisibility != GONE){\n content.setPadding(0, aboveContent ? paddingTop : 0, 0, 0);\n }\n if (oldVisibility != VISIBLE) {\n titleBarStatusBar.setVisibility(VISIBLE);\n }",
"score": 0.8556653261184692
},
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": "package com.flyjingfish.titlebar;\nimport android.graphics.Color;\nimport android.os.Bundle;\nimport android.view.ViewGroup;\nimport android.widget.FrameLayout;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\nimport com.flyjingfish.titlebarlib.TitleBar;\npublic class BaseActivity extends AppCompatActivity {\n protected TitleBar titleBar;",
"score": 0.8546903729438782
}
] |
java
|
StatusBarHelper.setStatusBarLightMode(this);
|
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.ProductRecordDto;
import com.brinquedomania.api.models.ProductModel;
import com.brinquedomania.api.repositories.ProductRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.*;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do produto.
*/
@RestController
@CrossOrigin(origins = "*")
public class ProductController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do produto no banco de dados
*/
@Autowired
ProductRepository productRepository;
/**
* Metodo/Rota responsavel por realizar o cadastro do produto
* @param productRecordDto - DTO que contem os dados do produto para realizar o cadastro
* @return - Retorna o produto que foi cadastrado
*/
@PostMapping("/product/register")
public ResponseEntity<ProductModel> saveProduct(@RequestBody @Valid ProductRecordDto productRecordDto) {
var productModel = new ProductModel();
BeanUtils.copyProperties(productRecordDto, productModel);
return ResponseEntity.status(HttpStatus.CREATED).body(productRepository.save(productModel));
}
/**
* Metodo/Rota responsavel por listar todos os produtos cadastrados
* @return - Retorna uma lista com todos os produtos cadastrados
*/
@GetMapping("/product/listAll")
public ResponseEntity<List<ProductModel>> getAllProduct() {
return ResponseEntity.status(HttpStatus.OK).body(productRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um produto especifico
* @param id - ID do produto que deseja listar
* @return - Retorna o produto que foi encontrado
*/
@GetMapping("/product/listOne/{id}")
public ResponseEntity<Object> getOneProductById(@PathVariable(value = "id") UUID id) {
Optional<ProductModel>
|
product0 = productRepository.findById(id);
|
if (product0.isEmpty()) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado.");
}
return ResponseEntity.status(HttpStatus.OK).body(product0.get());
}
/**
* Metodo/Rota responsavel por editar um produto especifico
* @param id - ID do produto que deseja editar
* @param productRecordDto - DTO que contem os dados do produto para realizar a edicao
* @return - Retorna o produto que foi editado
*/
@PutMapping("/product/edit/{id}")
public ResponseEntity<Object> updateUser(@PathVariable(value="id") UUID id,
@RequestBody @Valid ProductRecordDto productRecordDto) {
Optional<ProductModel> product0 = productRepository.findById(id);
if(product0.isEmpty()) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var productModel = product0.get();
BeanUtils.copyProperties(productRecordDto, productModel);
return ResponseEntity.status(HttpStatus.OK).body(productRepository.save(productModel));
}
/**
* Metodo/Rota responsavel por deletar um produto especifico
* @param id - ID do produto que deseja deletar
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/product/delete/{id}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="id") UUID id) {
Optional<ProductModel> product0 = productRepository.findById(id);
if(product0.isEmpty()) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
productRepository.delete(product0.get());
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
}
|
src/main/java/com/brinquedomania/api/controllers/ProductController.java
|
Francisco-Jean-API-BRINQUEDOMANIA-0013ce2
|
[
{
"filename": "src/main/java/com/brinquedomania/api/repositories/ProductRepository.java",
"retrieved_chunk": "public interface ProductRepository extends JpaRepository<ProductModel, UUID> {\n /**\n * Metodo responsavel por buscar um produto pelo seu id\n * @param id id do produto\n * @return lista de produtos que possuem o id passado como parametro\n */\n Optional<ProductModel> findById(UUID id);\n}",
"score": 0.8988025188446045
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/UserController.java",
"retrieved_chunk": " * @param identifier - Identificador do usuario\n * @return - Retorna o usuario que possui o identificador passado como parametro\n */\n @GetMapping(\"/user/listOne/{identifier}\")\n public ResponseEntity<Object> getOneUser(@PathVariable(value = \"identifier\") String identifier) {\n UserModel user0 = userRepository.findByIdentifier(identifier);\n if (user0 == null) {\n return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"usuario nao encontrado\");\n }\n return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));",
"score": 0.8660627007484436
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/CartController.java",
"retrieved_chunk": " public ResponseEntity<Object> readCart(@PathVariable UUID idClient){\n Optional<CartModel> cart = cartRepository.findByIdClient(idClient);\n if (cart.isEmpty()){\n return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"Seu carrinho de compras esta vazio\");\n }\n return ResponseEntity.status(HttpStatus.OK).body(cart);\n }\n /**\n * Metodo/Rota responsavel por editar um carrinho de compras (adicionar ou remover produtos)\n * @return novo carrinho de compras",
"score": 0.8639519214630127
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/CartController.java",
"retrieved_chunk": " }\n cartModel.setAmount(amount);\n return ResponseEntity.status(HttpStatus.CREATED).body(cartRepository.save(cartModel));\n }\n /**\n * Metodo/Rota responsavel por acessar um carrinho de compras pelo ID do cliente\n * @param idClient ID do cliente\n * @return Carrinho de compras do cliente ou mensagem de erro\n */\n @GetMapping(\"/cart/readByIdUser/{idClient}\")",
"score": 0.858659565448761
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/UserController.java",
"retrieved_chunk": " /**\n * Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados\n * @return - Retorna todos os usuarios cadastrados no banco de dados\n */\n @GetMapping(\"/user/listAll\")\n public ResponseEntity<List<UserModel>> getAllUsers() {\n return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());\n }\n /**\n * Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador",
"score": 0.8521031737327576
}
] |
java
|
product0 = productRepository.findById(id);
|
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField
|
.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
|
rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
|
src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java
|
FitzHastings-DownfallEAM-f1a06ef
|
[
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 0.8749901056289673
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 0.8586848378181458
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " userRealm.setName(realm.getName());\n userRealm.setTreasury(realm.getTreasury());\n userRealm.setInfamy(realm.getInfamy());\n userRealm.setLegitimacy(realm.getLegitimacy());\n userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());\n userRealm.setPowerProjection(realm.getPowerProjection());\n userRealm.setPrestige(realm.getPrestige());\n userRealm.setStability(realm.getStability());\n userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());\n userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());",
"score": 0.8545557260513306
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " @FXML\n private Label prestigeLabel;\n @FXML\n private ImageView realmImageView;\n @FXML\n private GridPane stabilityNegativeGrid;\n @FXML\n private Label stabilityPerMonthLabel;\n @FXML\n private GridPane stabilityPositiveGrid;",
"score": 0.8534756302833557
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 0.850371778011322
}
] |
java
|
.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
|
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel user0 = userRepository.findByEmail(email);
if (user0 == null || !Objects.equals(user0.getPassword(), senha)) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel
|
user0 = userRepository.findByIdentifier(identifier);
|
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
|
src/main/java/com/brinquedomania/api/controllers/UserController.java
|
Francisco-Jean-API-BRINQUEDOMANIA-0013ce2
|
[
{
"filename": "src/main/java/com/brinquedomania/api/repositories/UserRepository.java",
"retrieved_chunk": "@Repository\npublic interface UserRepository extends JpaRepository<UserModel, UUID> {\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu identificador\n * @param identifier Identificador do usuario\n * @return - Retorna o usuario que possui o identificador passado como parametro\n */\n UserModel findByIdentifier(String identifier);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu id\n * @param id id do usuario\n * @return Retorna o usuario que possui o id passado como parametro",
"score": 0.8898643255233765
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " }\n /**\n * Metodo/Rota responsavel por listar um produto especifico\n * @param id - ID do produto que deseja listar\n * @return - Retorna o produto que foi encontrado\n */\n @GetMapping(\"/product/listOne/{id}\")\n public ResponseEntity<Object> getOneProductById(@PathVariable(value = \"id\") UUID id) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if (product0.isEmpty()) {",
"score": 0.8732314109802246
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " }\n /**\n * Metodo/Rota responsavel por deletar um produto especifico\n * @param id - ID do produto que deseja deletar\n * @return - Retorna uma mensagem de sucesso ou erro\n */\n @DeleteMapping(\"/product/delete/{id}\")\n public ResponseEntity<Object> deleteUser(@PathVariable(value=\"id\") UUID id) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if(product0.isEmpty()) {",
"score": 0.8366115093231201
},
{
"filename": "src/main/java/com/brinquedomania/api/repositories/UserRepository.java",
"retrieved_chunk": " */\n Optional<UserModel> findById(UUID id);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu username\n * @param username username do usuario\n * @return Retorna o usuario que possui o username passado como parametro\n */\n UserModel findByEmail(String username);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu tipo\n * @param Type tipo do usuario (Seller, Client ou User)\n * @return Retorna o usuario que possui o tipo passado como parametro",
"score": 0.8342764973640442
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"Usuario nao encontrado.\");\n }\n productRepository.delete(product0.get());\n return ResponseEntity.status(HttpStatus.OK).body(\"Usuario deletado com sucesso.\");\n }\n}",
"score": 0.8239456415176392
}
] |
java
|
user0 = userRepository.findByIdentifier(identifier);
|
package com.flyjingfish.titlebar;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
import com.flyjingfish.titlebarlib.TitleBar;
public class MainActivity extends BaseActivity {
private TitleBar titleBar2;
@Override
public String getTitleString() {
return "这里是标题";
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// titleBar2 = findViewById(R.id.title_bar);
// StatusBarHelper.translucent(this);
// StatusBarHelper.setStatusBarLightMode(this);
View view = new View(this);
view.setBackgroundColor(Color.RED);
// titleBar2.setCustomView(view );
// titleBar2.setBackgroundColor(Color.RED);
// titleBar.setShadow(20,Color.BLACK, TitleBar.ShadowType.GRADIENT);
Log.d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this));
}
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_1:
|
StatusBarHelper.translucent(this);
|
StatusBarHelper.setStatusBarLightMode(this);
titleBar.setStatusBarBackgroundColor(Color.BLUE);
titleBar.setTitleGravity(TitleBar.TitleGravity.START);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.BLACK);
titleBar.getRightImageView().setVisibility(View.GONE);
titleBar.setDisplayShadow(true);
titleBar.setAboveContent(false);
titleBar.getBackTextView().setText("back");
break;
case R.id.btn_2:
titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);
titleBar.getRightTextView().setVisibility(View.GONE);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.WHITE);
titleBar.getRightImageView().setOnClickListener(v -> Toast.makeText(v.getContext(),"more",Toast.LENGTH_SHORT).show());
// titleBar.hideShadow();
titleBar.setAboveContent(true);
ViewGroup content = findViewById(android.R.id.content);
int[] contentLat = new int[2];
content.getLocationOnScreen(contentLat);
Log.e("getLocationOnScreen",contentLat[0]+"=="+contentLat[1]);
Rect rect = new Rect();
content.getLocalVisibleRect(rect);
Log.e("getLocationOnScreen",content.getTop()+"");
break;
case R.id.btn_3:
titleBar.getRightTextView().setVisibility(View.VISIBLE);
titleBar.setTitleGravity(TitleBar.TitleGravity.END);
titleBar.getRightTextView().setText("11111");
titleBar.getRightTextView().setTextColor(Color.BLUE);
break;
}
}
}
|
app/src/main/java/com/flyjingfish/titlebar/MainActivity.java
|
FlyJingFish-TitleBar-24dc5b6
|
[
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": " protected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n titleBar = new TitleBar(this);\n titleBar.setShadow(4, Color.parseColor(\"#406200EE\"), TitleBar.ShadowType.GRADIENT);\n titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);\n titleBar.setOnBackViewClickListener(v -> finish());\n if (isShowTitleBar()){\n titleBar.show();\n }else {\n titleBar.hide();",
"score": 0.8746275305747986
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " leftContainer = rootView.findViewById(R.id.left_container);\n int statusBarHeight = StatusBarHelper.getStatusbarHeight(getContext());\n ViewGroup.LayoutParams layoutParams = titleBarStatusBar.getLayoutParams();\n layoutParams.height = statusBarHeight;\n titleBarStatusBar.setLayoutParams(layoutParams);\n setOnBackViewClickListener(v -> ((Activity) context).finish());\n if (pendingSetBackground != null) {\n setBackground(pendingSetBackground);\n }\n int minHeight = a.getDimensionPixelOffset(R.styleable.TitleBar_android_minHeight, getResources().getDimensionPixelOffset(R.dimen.title_bar_minHeight));",
"score": 0.8664357662200928
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " int oldVisibility = titleBarStatusBar.getVisibility();\n if (viewParent == windowView) {\n int paddingTop = (int) (contentLat[1] == 0 ? TitleBar.this.getHeight() - shadowView.getShadowMaxLength() : titleBarContainer.getHeight());\n int titleBarVisibility = getVisibility();\n if (titleBarVisibility != GONE){\n content.setPadding(0, aboveContent ? paddingTop : 0, 0, 0);\n }\n if (oldVisibility != VISIBLE) {\n titleBarStatusBar.setVisibility(VISIBLE);\n }",
"score": 0.8642082214355469
},
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": "package com.flyjingfish.titlebar;\nimport android.graphics.Color;\nimport android.os.Bundle;\nimport android.view.ViewGroup;\nimport android.widget.FrameLayout;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\nimport com.flyjingfish.titlebarlib.TitleBar;\npublic class BaseActivity extends AppCompatActivity {\n protected TitleBar titleBar;",
"score": 0.8613076210021973
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " View rootView = LayoutInflater.from(context).inflate(R.layout.layout_title_bar, this, true);\n backgroundView = rootView.findViewById(R.id.iv_title_bar_bg);\n titleBarContainer = rootView.findViewById(R.id.fl_title_bar_container);\n titleBarStatusBar = rootView.findViewById(R.id.iv_title_bar_status_bar);\n int titleStyle = a.getResourceId(R.styleable.TitleBar_title_bar_title_style, R.style.title_bar_title_style);\n titleView = LayoutInflater.from(new ContextThemeWrapper(getContext(), titleStyle)).inflate(R.layout.layout_title_bar_title_view, titleBarContainer, true).findViewById(R.id.tv_title_bar_title);\n setTitleViewParams(titleView, titleStyle);\n customViewContainer = rootView.findViewById(R.id.fl_custom_view);\n shadowView = rootView.findViewById(R.id.shadow_line);\n rightContainer = rootView.findViewById(R.id.right_container);",
"score": 0.8611669540405273
}
] |
java
|
StatusBarHelper.translucent(this);
|
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel user0 = userRepository.findByEmail(email);
if (user0
|
== null || !Objects.equals(user0.getPassword(), senha)) {
|
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
|
src/main/java/com/brinquedomania/api/controllers/UserController.java
|
Francisco-Jean-API-BRINQUEDOMANIA-0013ce2
|
[
{
"filename": "src/main/java/com/brinquedomania/api/dtos/UserLoginRecordDto.java",
"retrieved_chunk": "package com.brinquedomania.api.dtos;\nimport jakarta.validation.constraints.Email;\nimport jakarta.validation.constraints.NotBlank;\n/**Valida os dados de entrada do login do usuario, nao permitindo que campos obrigatorios estejam vazios\n * @param email - email\n * @param password - not blank\n */\npublic record UserLoginRecordDto(@Email String email,\n @NotBlank String password) {\n}",
"score": 0.8679039478302002
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " @Autowired\n ProductRepository productRepository;\n /**\n * Metodo/Rota responsavel por realizar o cadastro do produto\n * @param productRecordDto - DTO que contem os dados do produto para realizar o cadastro\n * @return - Retorna o produto que foi cadastrado\n */\n @PostMapping(\"/product/register\")\n public ResponseEntity<ProductModel> saveProduct(@RequestBody @Valid ProductRecordDto productRecordDto) {\n var productModel = new ProductModel();",
"score": 0.8303140997886658
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " @PutMapping(\"/product/edit/{id}\")\n public ResponseEntity<Object> updateUser(@PathVariable(value=\"id\") UUID id,\n @RequestBody @Valid ProductRecordDto productRecordDto) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if(product0.isEmpty()) {\n return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"Usuario nao encontrado.\");\n }\n var productModel = product0.get();\n BeanUtils.copyProperties(productRecordDto, productModel);\n return ResponseEntity.status(HttpStatus.OK).body(productRepository.save(productModel));",
"score": 0.821801483631134
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"usuario nao encontrado.\");\n }\n return ResponseEntity.status(HttpStatus.OK).body(product0.get());\n }\n /**\n * Metodo/Rota responsavel por editar um produto especifico\n * @param id - ID do produto que deseja editar\n * @param productRecordDto - DTO que contem os dados do produto para realizar a edicao\n * @return - Retorna o produto que foi editado\n */",
"score": 0.8156282901763916
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/CartController.java",
"retrieved_chunk": " @Autowired\n ProductRepository productRepository;\n /**\n * Metodo/Rota responsavel por criar um carrinho de compras\n * @param cartRecordDto DTO com os dados do carrinho de compras\n * @return Carrinho de compras criado\n */\n @PostMapping(\"/cart/creat\")\n public ResponseEntity<Object> saveCart(@RequestBody @Valid CartRecordDto cartRecordDto){\n var cartModel = new CartModel();",
"score": 0.8128025531768799
}
] |
java
|
== null || !Objects.equals(user0.getPassword(), senha)) {
|
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel
|
user0 = userRepository.findByEmail(email);
|
if (user0 == null || !Objects.equals(user0.getPassword(), senha)) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
|
src/main/java/com/brinquedomania/api/controllers/UserController.java
|
Francisco-Jean-API-BRINQUEDOMANIA-0013ce2
|
[
{
"filename": "src/main/java/com/brinquedomania/api/dtos/UserLoginRecordDto.java",
"retrieved_chunk": "package com.brinquedomania.api.dtos;\nimport jakarta.validation.constraints.Email;\nimport jakarta.validation.constraints.NotBlank;\n/**Valida os dados de entrada do login do usuario, nao permitindo que campos obrigatorios estejam vazios\n * @param email - email\n * @param password - not blank\n */\npublic record UserLoginRecordDto(@Email String email,\n @NotBlank String password) {\n}",
"score": 0.8585833311080933
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " @Autowired\n ProductRepository productRepository;\n /**\n * Metodo/Rota responsavel por realizar o cadastro do produto\n * @param productRecordDto - DTO que contem os dados do produto para realizar o cadastro\n * @return - Retorna o produto que foi cadastrado\n */\n @PostMapping(\"/product/register\")\n public ResponseEntity<ProductModel> saveProduct(@RequestBody @Valid ProductRecordDto productRecordDto) {\n var productModel = new ProductModel();",
"score": 0.8417647480964661
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/CartController.java",
"retrieved_chunk": " @Autowired\n ProductRepository productRepository;\n /**\n * Metodo/Rota responsavel por criar um carrinho de compras\n * @param cartRecordDto DTO com os dados do carrinho de compras\n * @return Carrinho de compras criado\n */\n @PostMapping(\"/cart/creat\")\n public ResponseEntity<Object> saveCart(@RequestBody @Valid CartRecordDto cartRecordDto){\n var cartModel = new CartModel();",
"score": 0.8261653184890747
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"usuario nao encontrado.\");\n }\n return ResponseEntity.status(HttpStatus.OK).body(product0.get());\n }\n /**\n * Metodo/Rota responsavel por editar um produto especifico\n * @param id - ID do produto que deseja editar\n * @param productRecordDto - DTO que contem os dados do produto para realizar a edicao\n * @return - Retorna o produto que foi editado\n */",
"score": 0.8165525794029236
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " @PutMapping(\"/product/edit/{id}\")\n public ResponseEntity<Object> updateUser(@PathVariable(value=\"id\") UUID id,\n @RequestBody @Valid ProductRecordDto productRecordDto) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if(product0.isEmpty()) {\n return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"Usuario nao encontrado.\");\n }\n var productModel = product0.get();\n BeanUtils.copyProperties(productRecordDto, productModel);\n return ResponseEntity.status(HttpStatus.OK).body(productRepository.save(productModel));",
"score": 0.8123996257781982
}
] |
java
|
user0 = userRepository.findByEmail(email);
|
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel user0 = userRepository.findByEmail(email);
if (user0 == null || !Objects.equals(user0.getPassword(), senha)) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus
|
.OK).body(userRepository.findByIdentifier(identifier));
|
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
|
src/main/java/com/brinquedomania/api/controllers/UserController.java
|
Francisco-Jean-API-BRINQUEDOMANIA-0013ce2
|
[
{
"filename": "src/main/java/com/brinquedomania/api/repositories/UserRepository.java",
"retrieved_chunk": "@Repository\npublic interface UserRepository extends JpaRepository<UserModel, UUID> {\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu identificador\n * @param identifier Identificador do usuario\n * @return - Retorna o usuario que possui o identificador passado como parametro\n */\n UserModel findByIdentifier(String identifier);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu id\n * @param id id do usuario\n * @return Retorna o usuario que possui o id passado como parametro",
"score": 0.8779711723327637
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " }\n /**\n * Metodo/Rota responsavel por listar um produto especifico\n * @param id - ID do produto que deseja listar\n * @return - Retorna o produto que foi encontrado\n */\n @GetMapping(\"/product/listOne/{id}\")\n public ResponseEntity<Object> getOneProductById(@PathVariable(value = \"id\") UUID id) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if (product0.isEmpty()) {",
"score": 0.8669360280036926
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"Usuario nao encontrado.\");\n }\n productRepository.delete(product0.get());\n return ResponseEntity.status(HttpStatus.OK).body(\"Usuario deletado com sucesso.\");\n }\n}",
"score": 0.8407107591629028
},
{
"filename": "src/main/java/com/brinquedomania/api/repositories/UserRepository.java",
"retrieved_chunk": " */\n Optional<UserModel> findById(UUID id);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu username\n * @param username username do usuario\n * @return Retorna o usuario que possui o username passado como parametro\n */\n UserModel findByEmail(String username);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu tipo\n * @param Type tipo do usuario (Seller, Client ou User)\n * @return Retorna o usuario que possui o tipo passado como parametro",
"score": 0.8312631845474243
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " }\n /**\n * Metodo/Rota responsavel por deletar um produto especifico\n * @param id - ID do produto que deseja deletar\n * @return - Retorna uma mensagem de sucesso ou erro\n */\n @DeleteMapping(\"/product/delete/{id}\")\n public ResponseEntity<Object> deleteUser(@PathVariable(value=\"id\") UUID id) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if(product0.isEmpty()) {",
"score": 0.8278923630714417
}
] |
java
|
.OK).body(userRepository.findByIdentifier(identifier));
|
package com.flyjingfish.titlebar;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
import com.flyjingfish.titlebarlib.TitleBar;
public class MainActivity extends BaseActivity {
private TitleBar titleBar2;
@Override
public String getTitleString() {
return "这里是标题";
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// titleBar2 = findViewById(R.id.title_bar);
// StatusBarHelper.translucent(this);
// StatusBarHelper.setStatusBarLightMode(this);
View view = new View(this);
view.setBackgroundColor(Color.RED);
// titleBar2.setCustomView(view );
// titleBar2.setBackgroundColor(Color.RED);
// titleBar.setShadow(20,Color.BLACK, TitleBar.ShadowType.GRADIENT);
Log.
|
d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this));
|
}
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_1:
StatusBarHelper.translucent(this);
StatusBarHelper.setStatusBarLightMode(this);
titleBar.setStatusBarBackgroundColor(Color.BLUE);
titleBar.setTitleGravity(TitleBar.TitleGravity.START);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.BLACK);
titleBar.getRightImageView().setVisibility(View.GONE);
titleBar.setDisplayShadow(true);
titleBar.setAboveContent(false);
titleBar.getBackTextView().setText("back");
break;
case R.id.btn_2:
titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);
titleBar.getRightTextView().setVisibility(View.GONE);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.WHITE);
titleBar.getRightImageView().setOnClickListener(v -> Toast.makeText(v.getContext(),"more",Toast.LENGTH_SHORT).show());
// titleBar.hideShadow();
titleBar.setAboveContent(true);
ViewGroup content = findViewById(android.R.id.content);
int[] contentLat = new int[2];
content.getLocationOnScreen(contentLat);
Log.e("getLocationOnScreen",contentLat[0]+"=="+contentLat[1]);
Rect rect = new Rect();
content.getLocalVisibleRect(rect);
Log.e("getLocationOnScreen",content.getTop()+"");
break;
case R.id.btn_3:
titleBar.getRightTextView().setVisibility(View.VISIBLE);
titleBar.setTitleGravity(TitleBar.TitleGravity.END);
titleBar.getRightTextView().setText("11111");
titleBar.getRightTextView().setTextColor(Color.BLUE);
break;
}
}
}
|
app/src/main/java/com/flyjingfish/titlebar/MainActivity.java
|
FlyJingFish-TitleBar-24dc5b6
|
[
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": " protected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n titleBar = new TitleBar(this);\n titleBar.setShadow(4, Color.parseColor(\"#406200EE\"), TitleBar.ShadowType.GRADIENT);\n titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);\n titleBar.setOnBackViewClickListener(v -> finish());\n if (isShowTitleBar()){\n titleBar.show();\n }else {\n titleBar.hide();",
"score": 0.8980774879455566
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " leftContainer = rootView.findViewById(R.id.left_container);\n int statusBarHeight = StatusBarHelper.getStatusbarHeight(getContext());\n ViewGroup.LayoutParams layoutParams = titleBarStatusBar.getLayoutParams();\n layoutParams.height = statusBarHeight;\n titleBarStatusBar.setLayoutParams(layoutParams);\n setOnBackViewClickListener(v -> ((Activity) context).finish());\n if (pendingSetBackground != null) {\n setBackground(pendingSetBackground);\n }\n int minHeight = a.getDimensionPixelOffset(R.styleable.TitleBar_android_minHeight, getResources().getDimensionPixelOffset(R.dimen.title_bar_minHeight));",
"score": 0.8902655839920044
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " View rootView = LayoutInflater.from(context).inflate(R.layout.layout_title_bar, this, true);\n backgroundView = rootView.findViewById(R.id.iv_title_bar_bg);\n titleBarContainer = rootView.findViewById(R.id.fl_title_bar_container);\n titleBarStatusBar = rootView.findViewById(R.id.iv_title_bar_status_bar);\n int titleStyle = a.getResourceId(R.styleable.TitleBar_title_bar_title_style, R.style.title_bar_title_style);\n titleView = LayoutInflater.from(new ContextThemeWrapper(getContext(), titleStyle)).inflate(R.layout.layout_title_bar_title_view, titleBarContainer, true).findViewById(R.id.tv_title_bar_title);\n setTitleViewParams(titleView, titleStyle);\n customViewContainer = rootView.findViewById(R.id.fl_custom_view);\n shadowView = rootView.findViewById(R.id.shadow_line);\n rightContainer = rootView.findViewById(R.id.right_container);",
"score": 0.8893702030181885
},
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": "package com.flyjingfish.titlebar;\nimport android.graphics.Color;\nimport android.os.Bundle;\nimport android.view.ViewGroup;\nimport android.widget.FrameLayout;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\nimport com.flyjingfish.titlebarlib.TitleBar;\npublic class BaseActivity extends AppCompatActivity {\n protected TitleBar titleBar;",
"score": 0.8846869468688965
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " ((ViewGroup) ((Activity) getContext()).getWindow().getDecorView()).addView(this, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));\n setTitleBarPaddings();\n }\n private void setTitleBarPaddings() {\n if (!(getContext() instanceof Activity)) {\n return;\n }\n ViewParent viewParent = getParent();\n View windowView = ((Activity) getContext()).getWindow().getDecorView();\n if (viewParent == windowView) {",
"score": 0.8736041188240051
}
] |
java
|
d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this));
|
package com.tqqn.particles.managers;
import com.tqqn.particles.Particles;
import com.tqqn.particles.particles.LobbyParticles;
import com.tqqn.particles.tasks.PlayParticleRunnable;
import org.bukkit.entity.Player;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.UUID;
public class ParticleManager {
private final Particles plugin;
private final HashMap<UUID, LobbyParticles> playerLobbyParticles = new HashMap<>();
private final ArrayList<String> customParticles = new ArrayList<>();
private final HashMap<UUID, PlayParticleRunnable> playParticleRunnableHashMap = new HashMap<>();
public ParticleManager(Particles plugin) {
this.plugin = plugin;
}
/**
* Adding Particle names to Array
*/
public void addParticleNamesToArray() {
for (LobbyParticles lobbyParticles : LobbyParticles.values()) {
customParticles.add(lobbyParticles.name());
}
}
/**
* Checks if the Player has a particle.
* @param player Player
* @return true or false
*/
public boolean doesPlayerParticleExist(Player player) {
return playerLobbyParticles.containsKey(player.getUniqueId());
}
/**
* Add a particle to the player.
* @param player Player
* @param lobbyParticles Particle
*/
public void addParticleToPlayer(Player player, LobbyParticles lobbyParticles) {
playerLobbyParticles.remove(player.getUniqueId());
if (playParticleRunnableHashMap.containsKey(player.getUniqueId())) {
playParticleRunnableHashMap.get(player.getUniqueId()).cancel();
playParticleRunnableHashMap.remove(player.getUniqueId());
}
PlayParticleRunnable playParticleRunnable = new PlayParticleRunnable
|
(plugin.getParticleManager(), lobbyParticles, player);
|
playParticleRunnable.runTaskTimerAsynchronously(plugin, 0, 10L);
playParticleRunnableHashMap.put(player.getUniqueId(), playParticleRunnable);
playerLobbyParticles.put(player.getUniqueId(), lobbyParticles);
}
/**
* Remove the equipped particle from the player.
* @param player Player
*/
public void removeParticleFromPlayer(Player player) {
playerLobbyParticles.remove(player.getUniqueId());
if (!playParticleRunnableHashMap.containsKey(player.getUniqueId())) return;
playParticleRunnableHashMap.get(player.getUniqueId()).cancel();
playParticleRunnableHashMap.remove(player.getUniqueId());
}
/**
* Returns the size of LoadedParticles
* @return int size
*/
public int getParticlesMapSize() {
return customParticles.size();
}
}
|
Particles/src/main/java/com/tqqn/particles/managers/ParticleManager.java
|
flytegg-ls-projects-d0e70ee
|
[
{
"filename": "Particles/src/main/java/com/tqqn/particles/tasks/PlayParticleRunnable.java",
"retrieved_chunk": " if (!(particleManager.doesPlayerParticleExist(player))) {\n cancel();\n }\n Location playerLocation = new Location(player.getWorld(), player.getLocation().getX(), player.getLocation().getY()+1.5, player.getLocation().getZ());\n player.spawnParticle(lobbyParticles.getParticle(), playerLocation, lobbyParticles.getCount());\n }\n}",
"score": 0.9083234071731567
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/tasks/PlayParticleRunnable.java",
"retrieved_chunk": "package com.tqqn.particles.tasks;\nimport com.tqqn.particles.managers.ParticleManager;\nimport com.tqqn.particles.particles.LobbyParticles;\nimport org.bukkit.Location;\nimport org.bukkit.entity.Player;\nimport org.bukkit.scheduler.BukkitRunnable;\npublic class PlayParticleRunnable extends BukkitRunnable {\n private final LobbyParticles lobbyParticles;\n private final Player player;\n private final ParticleManager particleManager;",
"score": 0.8879355192184448
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/tasks/PlayParticleRunnable.java",
"retrieved_chunk": " public PlayParticleRunnable(ParticleManager particleManager, LobbyParticles lobbyParticles, Player player) {\n this.particleManager = particleManager;\n this.lobbyParticles = lobbyParticles;\n this.player = player;\n }\n /**\n * Runnable that will check/give the particle if the player still has the particle equipped. If not remove/cancel it.\n */\n @Override\n public void run() {",
"score": 0.8827810287475586
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/listeners/PlayerInventoryClickListener.java",
"retrieved_chunk": " }\n return;\n }\n //Check if the clicked item is in the loaded MaterialMap for the particles.\n if (!plugin.getParticleMenu().doesMaterialExistInMap(event.getCurrentItem())) return;\n //Remove the particle from a player if the player has one equipped.\n plugin.getParticleManager().removeParticleFromPlayer(player);\n LobbyParticles lobbyParticles = plugin.getParticleMenu().getLobbyParticlesFromMap(event.getCurrentItem());\n //If player has permission for that specific particle, give the particle.\n if (player.hasPermission(lobbyParticles.getPermission())) {",
"score": 0.8509750366210938
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/listeners/PlayerInventoryClickListener.java",
"retrieved_chunk": " plugin.getParticleManager().addParticleToPlayer(player, lobbyParticles);\n player.sendMessage(Color.translate(\"&6You enabled the &c\" + lobbyParticles.getItemName() + \" &6particle.\"));\n } else {\n player.sendMessage(Color.translate(\"&cYou don't have permission to use this command.\"));\n }\n closePlayerInventory(player);\n }\n /**\n * Async Scheduler to close the inventory after one tick.\n * @param player Player",
"score": 0.8439124822616577
}
] |
java
|
(plugin.getParticleManager(), lobbyParticles, player);
|
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if (
|
DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
|
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
|
DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java
|
flytegg-ls-projects-d0e70ee
|
[
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " return false;\n }\n final CompletableFuture<String> codeTask = DiscordVerifierAPI.generateCode(DiscordVerifier.getInstance().getConfig().getInt(\"code-length\"));\n codeTask.thenRun(() -> {\n String code = DiscordVerifierAPI.get(codeTask);\n DiscordVerifier.getDiscordCodes().put(player.getUniqueId(), Pair.of(code, DiscordVerifier.getInstance().getConfig().getInt(\"code-timeout\")));\n sendCodeMessage(player);\n });\n return true;\n }",
"score": 0.817904531955719
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " private boolean hasCode(Player player) {\n return DiscordVerifier.getDiscordCodes().get(player.getUniqueId()) != null;\n }\n private void sendCodeMessage(Player player) {\n int time = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getRight();\n String code = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getLeft();\n String rawMsg = DiscordVerifierAPI.cc(DiscordVerifier.getInstance().getConfig().getString(\"messages.code-generated\"))\n .replace(\"{code}\", code)\n .replace(\"{time}\", String.valueOf(time));\n ComponentBuilder builder = new ComponentBuilder(rawMsg);",
"score": 0.7683942317962646
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " return;\n }\n String code = codeOption.getAsString();\n AtomicBoolean failed = new AtomicBoolean(true);\n // Check the code\n DiscordVerifier.getDiscordCodes().forEach((uuid, data) -> {\n boolean caseSensitive = DiscordVerifier.getInstance().getConfig().getBoolean(\"should-code-be-case-sensitive\");\n if (!caseSensitive) {\n if (data.getLeft().equalsIgnoreCase(code)) {\n setSuccessful(e, code, failed, uuid);",
"score": 0.7464011907577515
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n return;\n }\n if (data.getLeft().equals(code)) {\n setSuccessful(e, code, failed, uuid);\n }\n });\n if (failed.get()) {\n e.getHook().editOriginal(DiscordVerifier.getInstance().getConfig().getString(\"messages.code-invalid\")).queue();\n return;",
"score": 0.7381200790405273
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n }\n private void setSuccessful(SlashCommandInteractionEvent e, String code, AtomicBoolean failed, UUID uuid) {\n e.getHook().editOriginal(DiscordVerifier.getInstance().getConfig().getString(\"messages.verification-successful-discord\")).queue();\n DiscordVerifier.getDiscordCodes().remove(uuid);\n final Player player = Bukkit.getPlayer(uuid);\n failed.set(false);\n attemptSendMCMessage(uuid);\n Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {Bukkit.getPluginManager().callEvent(new AsyncPlayerVerifyEvent(uuid, e.getId(), code));});\n Role given = Objects.requireNonNull(e.getGuild()).getRoleById(DiscordVerifier.getInstance().getConfig().getString(\"discord.role-given\"));",
"score": 0.7373342514038086
}
] |
java
|
DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
|
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if (DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
|
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
|
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
|
DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java
|
flytegg-ls-projects-d0e70ee
|
[
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n List<String> commands = DiscordVerifier.getInstance().getConfig().getStringList(\"Minecraft.Command\");\n Bukkit.getScheduler().runTask(DiscordVerifier.getInstance(), () -> {\n for (String cmd : commands) {\n Bukkit.dispatchCommand(Bukkit.getConsoleSender(), cmd.replace(\"{player}\", name));\n }\n });\n //Bukkit.dispatchCommand(Bukkit.getConsoleSender(), command.replace(\"{player}\", name));\n }\n private void attemptSendMCMessage(@NotNull UUID uuid) {",
"score": 0.8380088806152344
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " final Player player = DiscordVerifier.getInstance().getServer().getPlayer(uuid);\n if (player == null || !player.isOnline() || !player.isValid()) return;\n player.sendMessage(DiscordVerifierAPI.cc(DiscordVerifier.getInstance().getConfig().getString(\"messages.verification-successful-mc\")));\n }\n}",
"score": 0.8333821296691895
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n }\n private void setSuccessful(SlashCommandInteractionEvent e, String code, AtomicBoolean failed, UUID uuid) {\n e.getHook().editOriginal(DiscordVerifier.getInstance().getConfig().getString(\"messages.verification-successful-discord\")).queue();\n DiscordVerifier.getDiscordCodes().remove(uuid);\n final Player player = Bukkit.getPlayer(uuid);\n failed.set(false);\n attemptSendMCMessage(uuid);\n Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {Bukkit.getPluginManager().callEvent(new AsyncPlayerVerifyEvent(uuid, e.getId(), code));});\n Role given = Objects.requireNonNull(e.getGuild()).getRoleById(DiscordVerifier.getInstance().getConfig().getString(\"discord.role-given\"));",
"score": 0.8308913707733154
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordVerifier.java",
"retrieved_chunk": "import xyz.alonefield.discordverifier.api.DiscordVerifierAPI;\nimport java.sql.Connection;\nimport java.sql.DriverManager;\nimport java.util.Map;\nimport java.util.UUID;\nimport java.util.concurrent.ConcurrentHashMap;\npublic final class DiscordVerifier extends JavaPlugin {\n private static DiscordVerifier instance;\n private static Connection dbConnection;\n private static final Map<UUID, Pair<String, Integer>> discordCodes = new ConcurrentHashMap<>();",
"score": 0.8291884064674377
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordVerifier.java",
"retrieved_chunk": " ).addOption(OptionType.STRING, \"code\", \"The code you received in-game\", true)\n ).queue();\n setupLoop();\n setupDatabase();\n getCommand(\"verify\").setExecutor(new MinecraftVerifyCommand());\n }\n private void setupLoop() {\n getLogger().info(\"Starting data loop\");\n Bukkit.getScheduler().runTaskTimerAsynchronously(this, () -> {\n discordCodes.forEach((uuid, data) -> {",
"score": 0.8279972076416016
}
] |
java
|
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
|
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
|
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
|
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if (DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
|
DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java
|
flytegg-ls-projects-d0e70ee
|
[
{
"filename": "ProximityChat/src/main/java/cc/stormlabs/proximitychat/utils/CustomColor.java",
"retrieved_chunk": "package cc.stormlabs.proximitychat.utils;\nimport org.bukkit.ChatColor;\npublic class CustomColor {\n public static String translate(String message) {\n return ChatColor.translateAlternateColorCodes('&', message);\n }\n}",
"score": 0.8289061784744263
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " return false;\n }\n final CompletableFuture<String> codeTask = DiscordVerifierAPI.generateCode(DiscordVerifier.getInstance().getConfig().getInt(\"code-length\"));\n codeTask.thenRun(() -> {\n String code = DiscordVerifierAPI.get(codeTask);\n DiscordVerifier.getDiscordCodes().put(player.getUniqueId(), Pair.of(code, DiscordVerifier.getInstance().getConfig().getInt(\"code-timeout\")));\n sendCodeMessage(player);\n });\n return true;\n }",
"score": 0.8268439173698425
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " private boolean hasCode(Player player) {\n return DiscordVerifier.getDiscordCodes().get(player.getUniqueId()) != null;\n }\n private void sendCodeMessage(Player player) {\n int time = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getRight();\n String code = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getLeft();\n String rawMsg = DiscordVerifierAPI.cc(DiscordVerifier.getInstance().getConfig().getString(\"messages.code-generated\"))\n .replace(\"{code}\", code)\n .replace(\"{time}\", String.valueOf(time));\n ComponentBuilder builder = new ComponentBuilder(rawMsg);",
"score": 0.8103447556495667
},
{
"filename": "FreezeWand/src/profile/Profile.java",
"retrieved_chunk": " public void sendMessage(@NotNull final String message) {\n Objects.requireNonNull(Bukkit.getPlayer(uniqueId))\n .sendMessage(ChatColor.translateAlternateColorCodes('&', message));\n }\n}",
"score": 0.8088220953941345
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/utils/Color.java",
"retrieved_chunk": "package com.tqqn.particles.utils;\nimport org.bukkit.ChatColor;\npublic class Color {\n public static String translate(String string) {\n return ChatColor.translateAlternateColorCodes('&', string);\n }\n}",
"score": 0.8045896291732788
}
] |
java
|
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
|
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if (DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
|
Connection connection = DiscordVerifier.getDatabaseConnection();
|
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
|
DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java
|
flytegg-ls-projects-d0e70ee
|
[
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordVerifier.java",
"retrieved_chunk": "import xyz.alonefield.discordverifier.api.DiscordVerifierAPI;\nimport java.sql.Connection;\nimport java.sql.DriverManager;\nimport java.util.Map;\nimport java.util.UUID;\nimport java.util.concurrent.ConcurrentHashMap;\npublic final class DiscordVerifier extends JavaPlugin {\n private static DiscordVerifier instance;\n private static Connection dbConnection;\n private static final Map<UUID, Pair<String, Integer>> discordCodes = new ConcurrentHashMap<>();",
"score": 0.8200883865356445
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n List<String> commands = DiscordVerifier.getInstance().getConfig().getStringList(\"Minecraft.Command\");\n Bukkit.getScheduler().runTask(DiscordVerifier.getInstance(), () -> {\n for (String cmd : commands) {\n Bukkit.dispatchCommand(Bukkit.getConsoleSender(), cmd.replace(\"{player}\", name));\n }\n });\n //Bukkit.dispatchCommand(Bukkit.getConsoleSender(), command.replace(\"{player}\", name));\n }\n private void attemptSendMCMessage(@NotNull UUID uuid) {",
"score": 0.8190268874168396
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordVerifier.java",
"retrieved_chunk": " ).addOption(OptionType.STRING, \"code\", \"The code you received in-game\", true)\n ).queue();\n setupLoop();\n setupDatabase();\n getCommand(\"verify\").setExecutor(new MinecraftVerifyCommand());\n }\n private void setupLoop() {\n getLogger().info(\"Starting data loop\");\n Bukkit.getScheduler().runTaskTimerAsynchronously(this, () -> {\n discordCodes.forEach((uuid, data) -> {",
"score": 0.8166127800941467
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " final Player player = DiscordVerifier.getInstance().getServer().getPlayer(uuid);\n if (player == null || !player.isOnline() || !player.isValid()) return;\n player.sendMessage(DiscordVerifierAPI.cc(DiscordVerifier.getInstance().getConfig().getString(\"messages.verification-successful-mc\")));\n }\n}",
"score": 0.8119568228721619
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/AsyncPlayerVerifyEvent.java",
"retrieved_chunk": " super(true); // Async!!!!\n this.player = player;\n this.codeUsed = codeUsed;\n this.discordId = discordId;\n }\n public UUID getPlayer() {\n return player;\n }\n public String getCodeUsed() {\n return codeUsed;",
"score": 0.7996460199356079
}
] |
java
|
Connection connection = DiscordVerifier.getDatabaseConnection();
|
package com.tqqn.particles.tasks;
import com.tqqn.particles.managers.ParticleManager;
import com.tqqn.particles.particles.LobbyParticles;
import org.bukkit.Location;
import org.bukkit.entity.Player;
import org.bukkit.scheduler.BukkitRunnable;
public class PlayParticleRunnable extends BukkitRunnable {
private final LobbyParticles lobbyParticles;
private final Player player;
private final ParticleManager particleManager;
public PlayParticleRunnable(ParticleManager particleManager, LobbyParticles lobbyParticles, Player player) {
this.particleManager = particleManager;
this.lobbyParticles = lobbyParticles;
this.player = player;
}
/**
* Runnable that will check/give the particle if the player still has the particle equipped. If not remove/cancel it.
*/
@Override
public void run() {
if (!(particleManager.doesPlayerParticleExist(player))) {
cancel();
}
Location playerLocation = new Location(player.getWorld(), player.getLocation().getX(), player.getLocation().getY()+1.5, player.getLocation().getZ());
player.spawnParticle(
|
lobbyParticles.getParticle(), playerLocation, lobbyParticles.getCount());
|
}
}
|
Particles/src/main/java/com/tqqn/particles/tasks/PlayParticleRunnable.java
|
flytegg-ls-projects-d0e70ee
|
[
{
"filename": "Particles/src/main/java/com/tqqn/particles/managers/ParticleManager.java",
"retrieved_chunk": " playParticleRunnableHashMap.get(player.getUniqueId()).cancel();\n playParticleRunnableHashMap.remove(player.getUniqueId());\n }\n PlayParticleRunnable playParticleRunnable = new PlayParticleRunnable(plugin.getParticleManager(), lobbyParticles, player);\n playParticleRunnable.runTaskTimerAsynchronously(plugin, 0, 10L);\n playParticleRunnableHashMap.put(player.getUniqueId(), playParticleRunnable);\n playerLobbyParticles.put(player.getUniqueId(), lobbyParticles);\n }\n /**\n * Remove the equipped particle from the player.",
"score": 0.8984502553939819
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/managers/ParticleManager.java",
"retrieved_chunk": " return playerLobbyParticles.containsKey(player.getUniqueId());\n }\n /**\n * Add a particle to the player.\n * @param player Player\n * @param lobbyParticles Particle\n */\n public void addParticleToPlayer(Player player, LobbyParticles lobbyParticles) {\n playerLobbyParticles.remove(player.getUniqueId());\n if (playParticleRunnableHashMap.containsKey(player.getUniqueId())) {",
"score": 0.8568388223648071
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/listeners/PlayerInventoryClickListener.java",
"retrieved_chunk": " }\n return;\n }\n //Check if the clicked item is in the loaded MaterialMap for the particles.\n if (!plugin.getParticleMenu().doesMaterialExistInMap(event.getCurrentItem())) return;\n //Remove the particle from a player if the player has one equipped.\n plugin.getParticleManager().removeParticleFromPlayer(player);\n LobbyParticles lobbyParticles = plugin.getParticleMenu().getLobbyParticlesFromMap(event.getCurrentItem());\n //If player has permission for that specific particle, give the particle.\n if (player.hasPermission(lobbyParticles.getPermission())) {",
"score": 0.8554297685623169
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/listeners/PlayerInventoryClickListener.java",
"retrieved_chunk": " plugin.getParticleManager().addParticleToPlayer(player, lobbyParticles);\n player.sendMessage(Color.translate(\"&6You enabled the &c\" + lobbyParticles.getItemName() + \" &6particle.\"));\n } else {\n player.sendMessage(Color.translate(\"&cYou don't have permission to use this command.\"));\n }\n closePlayerInventory(player);\n }\n /**\n * Async Scheduler to close the inventory after one tick.\n * @param player Player",
"score": 0.8387537598609924
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/commands/OpenParticleMenuCommand.java",
"retrieved_chunk": " }\n @Override\n public boolean onCommand(CommandSender sender, Command command, String particle, String[] args) {\n if (!(sender instanceof Player)) return true;\n Player player = (Player) sender;\n if (!(player.hasPermission(\"lobbyplugin.particles\"))) return false;\n plugin.getParticleMenu().openInventory(player);\n return true;\n }\n}",
"score": 0.8286715745925903
}
] |
java
|
lobbyParticles.getParticle(), playerLocation, lobbyParticles.getCount());
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.