activate debug mode with d key
This commit is contained in:
parent
7c448591ea
commit
242d30b51c
@ -29,6 +29,9 @@ public class KeyboardInput extends GLFWKeyCallback {
|
|||||||
match.showP1Hitbox = !match.showP1Hitbox;
|
match.showP1Hitbox = !match.showP1Hitbox;
|
||||||
match.showP2Hitbox = !match.showP2Hitbox;
|
match.showP2Hitbox = !match.showP2Hitbox;
|
||||||
}
|
}
|
||||||
|
else if(key == GLFW_KEY_D && action == GLFW_PRESS){
|
||||||
|
match.debugToggle();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isKeyDown(int keyCode) {
|
public static boolean isKeyDown(int keyCode) {
|
||||||
|
@ -85,7 +85,7 @@ public class match {
|
|||||||
private static int rightBoundary;
|
private static int rightBoundary;
|
||||||
|
|
||||||
// Debug
|
// Debug
|
||||||
public static boolean debugMode = true;
|
public static boolean debugMode = false;
|
||||||
public static boolean showP1Hitbox;
|
public static boolean showP1Hitbox;
|
||||||
public static boolean showP2Hitbox;
|
public static boolean showP2Hitbox;
|
||||||
private static List<Hitbox> listHitboxObj = new ArrayList<>();
|
private static List<Hitbox> listHitboxObj = new ArrayList<>();
|
||||||
@ -312,18 +312,9 @@ public class match {
|
|||||||
// Timer
|
// Timer
|
||||||
timerUI = new UIElementText(timer + "", 10f, 0.453f, 0.995f, 85f, engine);
|
timerUI = new UIElementText(timer + "", 10f, 0.453f, 0.995f, 85f, engine);
|
||||||
engine.add_uiElement(timerUI);
|
engine.add_uiElement(timerUI);
|
||||||
if(debugMode){
|
|
||||||
coordP1 = new UIElementText("objP1: " + objP1.getXPos() + ":" + objP1.getYPos() + " P1: " + p1.getPosX() +":" + p1.getPosY(), 5f, 0f, 0.15f, 70f, engine);
|
debugToggle();
|
||||||
coordP1.setBackground(new Vector3f(0f,0f,0f));
|
|
||||||
engine.add_uiElement(coordP1);
|
|
||||||
coordP2 = new UIElementText("objP2: " + objP2.getXPos() + ":" + objP2.getYPos() + " P1: " + p2.getPosX() +":" + p2.getPosY(), 5f, 0f, 0.1f, 70f, engine);
|
|
||||||
coordP2.setBackground(new Vector3f(0f,0f,0f));
|
|
||||||
engine.add_uiElement(coordP2);
|
|
||||||
// FPS counter
|
|
||||||
fpsCounter = new UIElementText("Boulevard Combattant", 5f, 0f, 0.04f, 100f, engine);
|
|
||||||
fpsCounter.setBackground(new Vector3f(0f,0f,0f));
|
|
||||||
engine.add_uiElement(fpsCounter);
|
|
||||||
}
|
|
||||||
timeStampFpsCounter = System.currentTimeMillis();
|
timeStampFpsCounter = System.currentTimeMillis();
|
||||||
//SetTracking
|
//SetTracking
|
||||||
engine.setCameraTrackingSF3ThirdStrike(objP1, objP2);
|
engine.setCameraTrackingSF3ThirdStrike(objP1, objP2);
|
||||||
@ -513,11 +504,11 @@ public class match {
|
|||||||
|
|
||||||
frameCounter++;
|
frameCounter++;
|
||||||
if (System.currentTimeMillis() - timeStampFpsCounter >= 1000){
|
if (System.currentTimeMillis() - timeStampFpsCounter >= 1000){
|
||||||
frameCounter = 0;
|
|
||||||
timeStampFpsCounter = System.currentTimeMillis();
|
|
||||||
if(debugMode){
|
if(debugMode){
|
||||||
fpsCounter.setText("FPS: " + frameCounter);
|
fpsCounter.setText("FPS: " + frameCounter);
|
||||||
}
|
}
|
||||||
|
frameCounter = 0;
|
||||||
|
timeStampFpsCounter = System.currentTimeMillis();
|
||||||
}
|
}
|
||||||
|
|
||||||
frameCount++;
|
frameCount++;
|
||||||
@ -932,4 +923,31 @@ public class match {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void debugToggle(){
|
||||||
|
if (debugMode){
|
||||||
|
if(coordP1 != null){
|
||||||
|
engine.remove_uiElement(coordP1);
|
||||||
|
}
|
||||||
|
if(coordP2 != null){
|
||||||
|
engine.remove_uiElement(coordP2);
|
||||||
|
}
|
||||||
|
if(fpsCounter != null){
|
||||||
|
engine.remove_uiElement(fpsCounter);
|
||||||
|
}
|
||||||
|
debugMode = false;
|
||||||
|
} else {
|
||||||
|
coordP1 = new UIElementText("objP1: " + objP1.getXPos() + ":" + objP1.getYPos() + " P1: " + p1.getPosX() +":" + p1.getPosY(), 5f, 0f, 0.15f, 70f, engine);
|
||||||
|
coordP1.setBackground(new Vector3f(0f,0f,0f));
|
||||||
|
engine.add_uiElement(coordP1);
|
||||||
|
coordP2 = new UIElementText("objP2: " + objP2.getXPos() + ":" + objP2.getYPos() + " P1: " + p2.getPosX() +":" + p2.getPosY(), 5f, 0f, 0.1f, 70f, engine);
|
||||||
|
coordP2.setBackground(new Vector3f(0f,0f,0f));
|
||||||
|
engine.add_uiElement(coordP2);
|
||||||
|
// FPS counter
|
||||||
|
fpsCounter = new UIElementText("Boulevard Combattant", 5f, 0f, 0.04f, 100f, engine);
|
||||||
|
fpsCounter.setBackground(new Vector3f(0f,0f,0f));
|
||||||
|
engine.add_uiElement(fpsCounter);
|
||||||
|
debugMode = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user