azaraka/src/cl/cromer/azaraka/Constantes.java

243 lines
6.1 KiB
Java

/*
* Copyright 2019 Chris Cromer
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package cl.cromer.azaraka;
import cl.cromer.azaraka.logging.HtmlFormatter;
import java.awt.*;
import java.io.File;
import java.io.IOException;
import java.util.Random;
import java.util.logging.FileHandler;
import java.util.logging.Formatter;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Constants used in the game
*/
public interface Constantes {
/**
* The name of the game
*/
String TITLE = "La Aventura de Azaraka";
/**
* Get a logger object to use for debugging
*
* @param logClass The class that is in need of a logger
* @param logLevel What log level to use
* @return Returns the logger
*/
default Logger getLogger(Class logClass, LogLevel logLevel) {
String className = logClass.getName();
Logger logger;
if (GLOBAL_LOG) {
logger = Logger.getGlobal();
}
else {
logger = Logger.getLogger(className);
}
if (logger.getHandlers().length == 0) {
initializeLogger(logClass);
}
if (GLOBAL_LOG) {
logger.setLevel(LogLevel.GLOBAL.getLevel());
}
else {
logger.setLevel(logLevel.getLevel());
}
return logger;
}
/**
* Use a global log if true or individual logs if false
*/
boolean GLOBAL_LOG = true;
/**
* Append to the logs if true or make a new log if false
*/
boolean APPEND_LOGS = false;
/**
* The size in pixels of the cells
*/
int CELL_PIXELS = 64;
/**
* The number of cells to draw horizontally
*/
int HORIZONTAL_CELLS = 18;
/**
* The number of cells to draw vertically
*/
int VERTICAL_CELLS = 10;
/**
* The amount of margin before drawing the cells
*/
int TOP_MARGIN = 40;
/**
* The amount of margin to the left and right of cells
*/
int LEFT_MARGIN = 40;
/**
* The amount of chests to draw
*/
int CHESTS = 2;
/**
* The amount of enemies to draw
*/
int ENEMIES = 3;
/**
* The font size to use
*/
int FONT_SIZE = 12;
/**
* The minimum speed of the enemies
*/
int MINIMUM_SPEED = 100;
/**
* The maximum speed of the enemies
*/
int MAXIMUM_SPEED = 500;
/**
* The default speed of the enemies
*/
int DEFAULT_SPEED = 100;
/**
* The minimum volume
*/
int MINIMUM_VOLUME = 0;
/**
* The maximum volume
*/
int MAXIMUM_VOLUME = 100;
/**
* The default volume
*/
int DEFAULT_VOLUME = 0;
/**
* Generates the scene manually instead of from the JSON file if true
*/
boolean GENERATE_SCENE = false;
/**
* Exports the scene to a JSON file if true
*/
boolean EXPORT_SCENE = false;
/**
* Use pretty JSON if true
*/
boolean PRETTY_JSON = true;
/**
* The normal font to use
*/
Font FONT = new Font("monospaced", Font.PLAIN, FONT_SIZE);
/**
* Generate a random number between given min and max
*
* @param min Minimum number in range
* @param max Maximum number in range
* @return Returns a random number
*/
default int random(int min, int max) {
Random random = new Random();
return random.nextInt((max - min) + 1) + min;
}
/**
* Initialize the logger and assign a html handler
*
* @param logClass The class to be initialized
*/
default void initializeLogger(Class logClass) {
String className = logClass.getName();
Logger logger;
if (GLOBAL_LOG) {
logger = Logger.getGlobal();
}
else {
logger = Logger.getLogger(className);
}
FileHandler fileHandler = null;
File directory = new File("log");
if (!directory.exists()) {
if (!directory.mkdir()) {
System.out.println("Could not make directory \"log\"");
}
}
try {
if (GLOBAL_LOG) {
fileHandler = new FileHandler("log/log.html", APPEND_LOGS);
}
else {
fileHandler = new FileHandler("log/" + className + ".html", APPEND_LOGS);
}
}
catch (IOException e) {
e.printStackTrace();
}
if (fileHandler != null) {
logger.addHandler(fileHandler);
}
Formatter formatter = new HtmlFormatter();
if (fileHandler != null) {
fileHandler.setFormatter(formatter);
}
}
/**
* This enum contains all the levels used for logging
*/
enum LogLevel {
GLOBAL(Level.WARNING),
MAIN(Level.WARNING),
VENTANA_PRINCIPAL(Level.WARNING),
LIENZO(Level.WARNING),
ESCENARIO(Level.WARNING),
PLAYER(Level.WARNING),
ENEMY(Level.WARNING),
CHEST(Level.WARNING),
CONFIG(Level.WARNING),
SOUND(Level.WARNING),
ANIMATION(Level.WARNING),
SHEET(Level.WARNING),
KEY(Level.WARNING),
JSON(Level.WARNING),
PORTAL(Level.WARNING);
/**
* The level of log for the enum
*/
private Level level;
/**
* Initialize the log level enum
*
* @param level The level for each element
*/
LogLevel(Level level) {
this.level = level;
}
/**
* Get the level for the specific part
*
* @return Returns the level
*/
public Level getLevel() {
return this.level;
}
}
}