Skip to content

Commit

Permalink
Documentação e ajustes finos
Browse files Browse the repository at this point in the history
  • Loading branch information
coppolaop committed Oct 25, 2019
1 parent ec5be49 commit 68d0c11
Show file tree
Hide file tree
Showing 14 changed files with 34 additions and 34 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ dentro dela é contida uma pasta pdm para imagens dos PDMs, e uma pj, para image
- resources
-- pj
-- pdm
-- efeito
-- log
-- img
---pj
Expand Down
Binary file modified modelagem/Class Diagram.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified modelagem/DungeonManager.zip
Binary file not shown.
Binary file modified modelagem/UseCase Diagram.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified modelagem/UseCaseDescription/DCU0001-ManterPersonagens.xlsx
Binary file not shown.
Binary file modified modelagem/UseCaseDescription/DCU0010-RemoverPersonagem.xlsx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 1 addition & 2 deletions src/br/com/darksun/control/EfeitoController.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ public Efeito carregar( String path )
public void criarEfeito( Integer idEfeito, String nome, Integer duracaoPadrao, Boolean isPositivo,
String atributoAfetado, Boolean isContinuo )
{
String filePath = "resources/efeito/" + nome + ".json";
criarEfeito( new Efeito( idEfeito, filePath, nome, duracaoPadrao, isPositivo, atributoAfetado, isContinuo ) );
criarEfeito( new Efeito( idEfeito, null, nome, duracaoPadrao, isPositivo, atributoAfetado, isContinuo ) );
}

@SuppressWarnings( "unchecked" )
Expand Down
30 changes: 15 additions & 15 deletions src/br/com/darksun/entity/Personagem.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
public class Personagem implements Cloneable
{
private Integer idPersonagem = 0;
private String filePath = "";
private String nome = "";
private String filePath = "";
private String classe = "";
private String imagem = "";
private String descricao = "";
Expand All @@ -21,23 +21,24 @@ public class Personagem implements Cloneable
private Boolean status = true;
private Integer replica = 0;

private List< Condicao > condicoes = new ArrayList< Condicao >( );
private List< Condicao > condicoes = new ArrayList< Condicao >( );

public Personagem( )
{

}

public Personagem( Integer idPersonagem, String filePath, String nome, String classe, String imagem, Integer ca,
Integer bonusIniciativa, Integer iniciativa, Integer hpMaximo, Integer hpAtual, Boolean isPJ,
Boolean status, Integer replica, String descricao )
public Personagem( Integer idPersonagem, String nome, String filePath, String classe, String imagem,
String descricao, Integer ca, Integer bonusIniciativa, Integer iniciativa, Integer hpMaximo,
Integer hpAtual, Boolean isPJ, Boolean status, Integer replica )
{
super( );
this.idPersonagem = idPersonagem;
this.filePath = filePath;
this.nome = nome;
this.filePath = filePath;
this.classe = classe;
this.imagem = imagem;
this.descricao = descricao;
this.ca = ca;
this.bonusIniciativa = bonusIniciativa;
this.iniciativa = iniciativa;
Expand All @@ -46,7 +47,6 @@ public Personagem( Integer idPersonagem, String filePath, String nome, String cl
this.isPJ = isPJ;
this.status = status;
this.replica = replica;
this.descricao = descricao;
}

@Override
Expand All @@ -67,24 +67,24 @@ public void setIdPersonagem( Integer idPersonagem )
this.idPersonagem = idPersonagem;
}

public String getFilePath( )
public String getNome( )
{
return filePath;
return nome;
}

public void setFilePath( String filePath )
public void setNome( String nome )
{
this.filePath = filePath;
this.nome = nome;
}

public String getNome( )
public String getFilePath( )
{
return nome;
return filePath;
}

public void setNome( String nome )
public void setFilePath( String filePath )
{
this.nome = nome;
this.filePath = filePath;
}

public String getClasse( )
Expand Down
2 changes: 1 addition & 1 deletion src/br/com/darksun/gui/JFPrincipal.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

public class JFPrincipal extends JFrame
{
private final String SYSTEM_VERSION = "2.0.0";
private final String SYSTEM_VERSION = "1.4.0";
private final String SYSTEM_BETA = "";
private final Boolean SYSTEM_IS_IN_BETA = !SYSTEM_BETA.equals( "" );
private final String SYSTEM_ICON = SYSTEM_IS_IN_BETA ? "img/DungeonManagerHomologacao.png"
Expand Down
32 changes: 16 additions & 16 deletions src/br/com/darksun/test/CombateControllerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ class CombateControllerTest
void setUp( ) throws Exception
{
// Instanciando PJs
PJ1 = new Personagem( 1, "resources/pj/Marcos.properties", "Marcos", "Guerreiro", "", 32, 2, 16, 180, 180, true,
true, 0, "" );
PJ2 = new Personagem( 2, "resources/pj/Igor.properties", "Igor", "Guerreiro", "", 22, 4, 14, 180, 150, true,
true, 0, "" );
PJ3 = new Personagem( 3, "resources/pj/Abel.properties", "Abel", "Clérigo", "", 26, 0, 10, 160, 150, true, true,
0, "" );
PJ1 = new Personagem( 1, "Marcos" , "resources/pj/Marcos.properties", "Guerreiro", "", "", 32, 2, 16, 180, 180, true,
true, 0 );
PJ2 = new Personagem( 2, "resources/pj/Igor.properties", "Igor", "Guerreiro", "", "", 22, 4, 14, 180, 150, true,
true, 0 );
PJ3 = new Personagem( 3, "Abel", "resources/pj/Abel.properties", "Clérigo", "", "", 26, 0, 10, 160, 150, true, true,
0 );
// Instanciando PDMs
PDM1 = new Personagem( 4, "resources/pdm/Elfo_Arqueiro.properties", "Elfo arqueiro", "Patrulheiro", "", 26, 6,
16, 100, 100, false, true, 1, "" );
PDM2 = new Personagem( 5, "resources/pdm/Fantasma.properties", "Fantasma", "Morto-vivo", "", 12, 2, 14, 70, 70,
false, true, 1, "" );
PDM3 = new Personagem( 6, "resources/pdm/Lobo_Gigante.properties", "Lobo Gigante", "Animal Selvagem", "", 20,
10, 10, 60, 80, false, true, 1, "" );
PDM4 = new Personagem( 5, "resources/pdm/Fantasma.properties", "Fantasma", "Morto-vivo", "", 12, 2, 22, 40, 70,
false, true, 2, "" );
PDM1 = new Personagem( 4, "Elfo arqueiro", "resources/pdm/Elfo_Arqueiro.properties", "Patrulheiro", "", "", 26, 6,
16, 100, 100, false, true, 1);
PDM2 = new Personagem( 5, "Fantasma", "resources/pdm/Fantasma.properties", "Morto-vivo", "", "", 12, 2, 14, 70, 70,
false, true, 1 );
PDM3 = new Personagem( 6, "Lobo Gigante", "resources/pdm/Lobo_Gigante.properties", "Animal Selvagem", "", "", 20,
10, 10, 60, 80, false, true, 1 );
PDM4 = new Personagem( 5, "Fantasma", "resources/pdm/Fantasma.properties", "Morto-vivo", "", "", 12, 2, 22, 40, 70,
false, true, 2);
// Criando Listas
List< Personagem > PJs = new ArrayList< Personagem >( );
List< Personagem > PDMs = new ArrayList< Personagem >( );
Expand Down Expand Up @@ -113,8 +113,8 @@ void testFinalizarTurnoUltimo( )
@Test
void testAdicionarPersonagem( )
{
Personagem PDM5 = new Personagem( 5, "resources/pdm/Fantasma.properties", "Fantasma", "Morto-vivo", "", 12, 2,
22, 40, 70, false, true, 3, "" );
Personagem PDM5 = new Personagem( 5, "Fantasma", "resources/pdm/Fantasma.properties", "Morto-vivo", "", "", 12, 2,
22, 40, 70, false, true, 3 );
controller.adicionarPersonagem( PDM5, 1 );
Assert.assertEquals( PDM5, controller.getModel( ).getPersonagem( 7 ) );
}
Expand Down

0 comments on commit 68d0c11

Please sign in to comment.