bugs menores y aniadidos 2 personajes

This commit is contained in:
Guillermo Roche 2020-02-21 16:24:54 +01:00
parent 1c3b48c533
commit 245bcf4b8a
39 changed files with 106 additions and 60 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
core/assets/p4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 MiB

BIN
core/assets/p5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 MiB

BIN
core/assets/sagat/alto1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
core/assets/sagat/alto2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
core/assets/sagat/bajo1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
core/assets/sagat/bajo2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

1
core/bin/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/main/

View File

@ -1 +0,0 @@
/com/

View File

@ -1,9 +0,0 @@
/Menu.class
/MenuInicio.class
/MenuOpcions.class
/Battle.class
/MenuSeleccion.class
/Caratula.class
/MenuSeleccion2p.class
/Battle2.class
/Fin.class

View File

@ -1,7 +0,0 @@
/Gifs.class
/Personaje.class
/Barra.class
/Bot.class
/Personaje2.class
/Araque.class
/Ataque.class

View File

@ -1,7 +1,5 @@
package menus;
import java.time.LocalTime;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.graphics.Texture;
@ -18,10 +16,10 @@ public class Battle extends Menu{
float contador;
boolean cambio;
boolean finalRound;
LocalTime tiempo;
LocalTime aux;
long tiempo;
long aux;
public Battle(String np1, String np2) {
tiempo=LocalTime.now();
tiempo=System.currentTimeMillis();
this.finalRound=false;
this.cambio=true;
this.p2=new Bot(np2, true);
@ -84,10 +82,10 @@ public class Battle extends Menu{
if(p1.muerto()) {
font.draw(batch, "Has perdido", Gdx.graphics.getWidth()/4,Gdx.graphics.getHeight()/2.6f);
}else if(p2.muerto()){
String puntos = ""+(aux.getSecond()+this.tiempo.getSecond());
String puntos = ""+(aux-this.tiempo)/1000;
font.draw(batch, "Has ganado en "+puntos+"s", Gdx.graphics.getWidth()/4,Gdx.graphics.getHeight()/2.6f);
}else {
aux=LocalTime.now();
aux=System.currentTimeMillis();
}
return darSeleccionado();
}

View File

@ -1,7 +1,5 @@
package menus;
import java.time.LocalTime;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.graphics.Texture;
@ -14,10 +12,10 @@ public class Battle2 extends Menu{
Personaje p1;
Personaje2 p2;
Texture suelo;
LocalTime tiempo;
LocalTime aux;
long tiempo;
long aux;
public Battle2(String np1, String np2) {
this.tiempo=LocalTime.now();
this.tiempo=System.currentTimeMillis();
this.p2=new Personaje2(np2, true);
this.p1=new Personaje(np1, false);
this.p1.setEnemigo(p2.getCaja());
@ -55,13 +53,13 @@ public class Battle2 extends Menu{
this.p1.draw(batch, delta);
this.p2.draw(batch, delta);
if(p1.muerto()) {
String puntos = ""+(aux.getSecond()+this.tiempo.getSecond());
font.draw(batch, "Ha ganado el jugador 2 en "+puntos+"s", Gdx.graphics.getWidth()/4,Gdx.graphics.getHeight()/2.6f);
String puntos = ""+(aux-this.tiempo)/1000;
font.draw(batch, "Ha ganado el jugador 2 en "+puntos+"s", Gdx.graphics.getWidth()/7,Gdx.graphics.getHeight()/2.6f);
}else if(p2.muerto()){
String puntos = ""+(aux.getSecond()+this.tiempo.getSecond());
font.draw(batch, "Ha ganado el jugador 1 en "+puntos+"s", Gdx.graphics.getWidth()/4,Gdx.graphics.getHeight()/2.6f);
String puntos = ""+(aux-this.tiempo)/1000;
font.draw(batch, "Ha ganado el jugador 1 en "+puntos+"s", Gdx.graphics.getWidth()/7,Gdx.graphics.getHeight()/2.6f);
}else {
aux=LocalTime.now();
aux=System.currentTimeMillis();
}
return darSeleccionado();

View File

@ -13,7 +13,7 @@ public class Fin extends Menu{
// TODO Auto-generated catch block
e.printStackTrace();
}
if(contador>10) {
if(contador>7) {
Menu.menus.remove(Menu.BATTLE);
this.contador=0;
return Menu.INICIAL;

View File

@ -17,12 +17,14 @@ public class MenuSeleccion extends Menu{
public MenuSeleccion() {
super();
this.shapeDrawer=new ShapeRenderer();
this.n_opciones=3;
this.n_opciones=5;
this.local=Menu.SELEC;
this.caratulas=new ArrayList<Caratula>();
this.caratulas.add(new Caratula("p1.png", "ryu", 984, 88, 128, 110));
this.caratulas.add(new Caratula("p2.png", "ken", 228, 565, 128, 110));
this.caratulas.add(new Caratula("p3.png", "cam", 243,0,128, 110));
this.caratulas.add(new Caratula("p4.png", "sagat", 227,312,128, 110));
this.caratulas.add(new Caratula("p5.png", "blanka", 99,2963,100, 110));
}
@Override
@ -43,7 +45,7 @@ public class MenuSeleccion extends Menu{
batch.end();
shapeDrawer.begin(ShapeType.Filled);
shapeDrawer.setColor(Color.GRAY);
shapeDrawer.rect(10+(i-3)*280, 280, 190, 180);
shapeDrawer.rect(10+(i-3)*280, 210, 190, 180);
shapeDrawer.end();
batch.begin();
}
@ -66,6 +68,16 @@ public class MenuSeleccion extends Menu{
this.position--;
this.pres=true;
}
}else if (Gdx.input.isKeyPressed(Input.Keys.DOWN)) {
if(!this.pres) {
this.position=3;
this.pres=true;
}
}else if (Gdx.input.isKeyPressed(Input.Keys.UP)) {
if(!this.pres) {
this.position=0;
this.pres=true;
}
}else if (Gdx.input.isKeyPressed(Input.Keys.ENTER)){
if(!this.pres) {
this.pres=true;

View File

@ -20,7 +20,11 @@ public class MenuSeleccion2p extends MenuSeleccion{
batch.end();
shapeDrawer.begin(ShapeType.Filled);
shapeDrawer.setColor(Color.GRAY);
if(p1<3) {
shapeDrawer.rect(10+p1*280, 430, 190, 180);
}else {
shapeDrawer.rect(10+(p1-3)*280, 210, 190, 180);
}
shapeDrawer.end();
batch.begin();
}
@ -40,7 +44,19 @@ public class MenuSeleccion2p extends MenuSeleccion{
}
this.caratulas.get(i).draw(batch, 10+i*200, 300);
}else {
this.caratulas.get(i).draw(batch, 10+(i-2)*200, 150);
if(i==this.position) {
batch.end();
shapeDrawer.begin(ShapeType.Filled);
if(p1!=-1) {
shapeDrawer.setColor(Color.BLACK);
}else {
shapeDrawer.setColor(Color.GRAY);
}
shapeDrawer.rect(10+(i-3)*280, 210, 190, 180);
shapeDrawer.end();
batch.begin();
}
this.caratulas.get(i).draw(batch, 10+(i-3)*200, 150);
}
}
@ -59,6 +75,16 @@ public class MenuSeleccion2p extends MenuSeleccion{
this.position--;
this.pres=true;
}
}else if (Gdx.input.isKeyPressed(Input.Keys.DOWN)) {
if(!this.pres) {
this.position=3;
this.pres=true;
}
}else if (Gdx.input.isKeyPressed(Input.Keys.UP)) {
if(!this.pres) {
this.position=0;
this.pres=true;
}
}else if (Gdx.input.isKeyPressed(Input.Keys.ENTER)){
if(!this.pres) {
this.pres=true;

View File

@ -75,6 +75,19 @@ public class Personaje {
this.cam(position);
this.coeficienteDanio=1.2f;
this.coeficienteDef=0.8f;
break;
case "sagat":
this.caracter=4;
this.sagat(position);
this.coeficienteDanio=0.9f;
this.coeficienteDef=1.1f;
break;
case "blanka":
this.caracter=5;
this.blanka(position);
this.coeficienteDanio=1.5f;
this.coeficienteDef=1.2f;
break;
default:
break;
}
@ -147,6 +160,20 @@ public class Personaje {
contadorCombo=0;
}
break;
case 4:
if(estado==Personaje.ALTO) {
if(contadorCombo<2) {
contadorCombo++;
}
}else if(estado==Personaje.BAJO) {
if(contadorCombo>=2) {
contadorCombo=0;
this.tempCombo=5;
}
}else {
contadorCombo=0;
}
break;
default:
break;
}
@ -231,9 +258,9 @@ public class Personaje {
shapeDrawer.begin(ShapeType.Filled);
shapeDrawer.setColor(1f,0f,0f,0.3f);
if(this.position) {
shapeDrawer.circle((y*1.1f)+200, x+80, 80);
shapeDrawer.circle((y*1.35f)+190, x+80, 80);
}else {
shapeDrawer.circle((y*1.1f)+70, x+80, 80);
shapeDrawer.circle(70+(1.35f*y), x+80, 80);
}
shapeDrawer.end();
Gdx.gl.glDisable(GL20.GL_BLEND);
@ -245,9 +272,9 @@ public class Personaje {
shapeDrawer.begin(ShapeType.Filled);
shapeDrawer.setColor(0f,0f,1f,0.3f);
if(this.position) {
shapeDrawer.circle((y*1.1f)+200, x+80, 80);
shapeDrawer.circle((y*1.35f)+190, x+80, 80);
}else {
shapeDrawer.circle((y*1.1f)+70, x+80, 80);
shapeDrawer.circle(70+(1.35f*y), x+80, 80);
}
shapeDrawer.end();
Gdx.gl.glDisable(GL20.GL_BLEND);
@ -282,6 +309,20 @@ public class Personaje {
this.bajo=new Gifs("cam/sentado", 3, position);
}
private void sagat(boolean position) {
this.standby=new Gifs("sagat/stand", 6, position);
this.medio=new Gifs("sagat/frente",3, position);
this.alto=new Gifs("sagat/alto", 2, position);
this.bajo=new Gifs("sagat/bajo", 2, position);
}
private void blanka(boolean position){
this.standby=new Gifs("blanka/stand", 3, position);
this.medio=new Gifs("blanka/frente",3, position);
this.alto=new Gifs("blanka/alto", 3, position);
this.bajo=new Gifs("blanka/bajo", 3, position);
}
public Rectangle getCaja() {
return this.caja;
}

1
desktop/bin/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/main/

View File

@ -1,14 +0,0 @@
/iconos.png
/p1.png
/p2.png
/sueloChina.png
/p3.png
/ryu/
/cam/
/ken/
/sueloBuda.png
/suelos/
/125760.png
/CentieSans.fnt
/CentieSans.ttf_0.png
/badlogic.jpg