Fixed error highlighted by Checkstyle
This commit is contained in:
parent
5f6312555d
commit
7ee889d843
1
boulder-dash/.idea/checkstyle-idea.xml
generated
1
boulder-dash/.idea/checkstyle-idea.xml
generated
@ -9,6 +9,7 @@
|
|||||||
<list>
|
<list>
|
||||||
<ConfigurationLocation id="bundled-sun-checks" type="BUNDLED" scope="All" description="Sun Checks">(bundled)</ConfigurationLocation>
|
<ConfigurationLocation id="bundled-sun-checks" type="BUNDLED" scope="All" description="Sun Checks">(bundled)</ConfigurationLocation>
|
||||||
<ConfigurationLocation id="bundled-google-checks" type="BUNDLED" scope="All" description="Google Checks">(bundled)</ConfigurationLocation>
|
<ConfigurationLocation id="bundled-google-checks" type="BUNDLED" scope="All" description="Google Checks">(bundled)</ConfigurationLocation>
|
||||||
|
<ConfigurationLocation id="eabae839-0a9c-4483-92ce-fd4170fff7e6" type="LOCAL_FILE" scope="All" description="Homework-1-Checker">$PROJECT_DIR$/ueb01_checkstyle_config-Homework.xml</ConfigurationLocation>
|
||||||
<ConfigurationLocation id="5232a701-ef57-4b8f-b1df-ed9fcf2cc548" type="LOCAL_FILE" scope="All" description="Ueb 01 Checkstyle">$PROJECT_DIR$/ueb01_checkstyle_config.xml</ConfigurationLocation>
|
<ConfigurationLocation id="5232a701-ef57-4b8f-b1df-ed9fcf2cc548" type="LOCAL_FILE" scope="All" description="Ueb 01 Checkstyle">$PROJECT_DIR$/ueb01_checkstyle_config.xml</ConfigurationLocation>
|
||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -15,6 +15,8 @@ import fr.enssat.BoulderDash.models.DisplayableElementModel;
|
|||||||
* @since 2015-06-19
|
* @since 2015-06-19
|
||||||
*/
|
*/
|
||||||
public class DiamondModel extends DisplayableElementModel {
|
public class DiamondModel extends DisplayableElementModel {
|
||||||
|
private static final int SIZ_X_OF_SPRITE = 16;
|
||||||
|
private static final int SIZ_Y_OF_SPRITE = 16;
|
||||||
private static String spriteName;
|
private static String spriteName;
|
||||||
private static boolean isDestructible;
|
private static boolean isDestructible;
|
||||||
private static boolean canMove;
|
private static boolean canMove;
|
||||||
@ -25,8 +27,6 @@ public class DiamondModel extends DisplayableElementModel {
|
|||||||
private long previousTime;
|
private long previousTime;
|
||||||
private int currentFrame;
|
private int currentFrame;
|
||||||
|
|
||||||
private final int SIZ_X_OF_SPRITE = 16;
|
|
||||||
private final int SIZ_Y_OF_SPRITE = 16;
|
|
||||||
private long speed;
|
private long speed;
|
||||||
|
|
||||||
private ArrayList<BufferedImage> framesDiamond;
|
private ArrayList<BufferedImage> framesDiamond;
|
||||||
|
@ -210,15 +210,15 @@ public abstract class DisplayableElementModel {
|
|||||||
* @return Sprite object
|
* @return Sprite object
|
||||||
*/
|
*/
|
||||||
public BufferedImage loadSprite(String spriteName) {
|
public BufferedImage loadSprite(String spriteName) {
|
||||||
BufferedImage sprite = null;
|
BufferedImage loadedSprite = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
sprite = ImageIO.read(new File("res/drawable/field/" + spriteName + ".gif"));
|
loadedSprite = ImageIO.read(new File("res/drawable/field/" + spriteName + ".gif"));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.sprite = sprite;
|
sprite = loadedSprite;
|
||||||
|
|
||||||
return sprite;
|
return sprite;
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,11 @@ import java.util.Observable;
|
|||||||
* @since 2015-06-19
|
* @since 2015-06-19
|
||||||
*/
|
*/
|
||||||
public class LevelModel extends Observable implements Runnable {
|
public class LevelModel extends Observable implements Runnable {
|
||||||
|
/**
|
||||||
|
* Animation speed
|
||||||
|
*/
|
||||||
|
private static final int DELAY = 25;
|
||||||
|
|
||||||
private DisplayableElementModel[][] groundGrid;
|
private DisplayableElementModel[][] groundGrid;
|
||||||
private String levelName;
|
private String levelName;
|
||||||
private AudioLoadHelper audioLoadHelper;
|
private AudioLoadHelper audioLoadHelper;
|
||||||
@ -54,11 +59,6 @@ public class LevelModel extends Observable implements Runnable {
|
|||||||
*/
|
*/
|
||||||
private Thread spriteAnimator;
|
private Thread spriteAnimator;
|
||||||
|
|
||||||
/**
|
|
||||||
* Animation speed
|
|
||||||
*/
|
|
||||||
private final int DELAY = 25;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
*
|
*
|
||||||
@ -196,9 +196,9 @@ public class LevelModel extends Observable implements Runnable {
|
|||||||
private void playCollisionSound(int posX, int posY) {
|
private void playCollisionSound(int posX, int posY) {
|
||||||
String collisionSound = null;
|
String collisionSound = null;
|
||||||
|
|
||||||
if (this.getRockford().isCollisionDone() == false) {
|
if (!this.getRockford().isCollisionDone()) {
|
||||||
// Out of bounds?
|
// Out of bounds?
|
||||||
if (this.isOutOfBounds(posX, posY) == true) {
|
if (this.isOutOfBounds(posX, posY)) {
|
||||||
collisionSound = "touch";
|
collisionSound = "touch";
|
||||||
} else {
|
} else {
|
||||||
DisplayableElementModel nextElement = this.groundGrid[posX][posY];
|
DisplayableElementModel nextElement = this.groundGrid[posX][posY];
|
||||||
@ -246,7 +246,7 @@ public class LevelModel extends Observable implements Runnable {
|
|||||||
this.playCollisionSound(posX, posY);
|
this.playCollisionSound(posX, posY);
|
||||||
|
|
||||||
// Check that we are not out of bound...
|
// Check that we are not out of bound...
|
||||||
if (this.isOutOfBounds(posX, posY) == false) {
|
if (!this.isOutOfBounds(posX, posY)) {
|
||||||
// Create a new empty model in the old pos of Rockford
|
// Create a new empty model in the old pos of Rockford
|
||||||
this.groundGrid[oldX][oldY] = new EmptyModel();
|
this.groundGrid[oldX][oldY] = new EmptyModel();
|
||||||
|
|
||||||
@ -273,13 +273,8 @@ public class LevelModel extends Observable implements Runnable {
|
|||||||
* @param blockValue New value
|
* @param blockValue New value
|
||||||
*/
|
*/
|
||||||
public void triggerBlockChange(String blockValue) {
|
public void triggerBlockChange(String blockValue) {
|
||||||
// No block value?
|
// No block value? or Cancel if Rockford is already in model
|
||||||
if(blockValue == null || blockValue.isEmpty()) {
|
if((blockValue == null || blockValue.isEmpty()) || ((blockValue.equals("Rockford") || blockValue.equals("rockford")) && this.isRockfordInModel())) {
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Cancel if Rockford is already in model
|
|
||||||
if((blockValue.equals("Rockford") || blockValue.equals("rockford")) && this.isRockfordInModel()) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,6 +15,11 @@ import fr.enssat.BoulderDash.models.DisplayableElementModel;
|
|||||||
* @since 2015-06-19
|
* @since 2015-06-19
|
||||||
*/
|
*/
|
||||||
public class RockfordModel extends DisplayableElementModel {
|
public class RockfordModel extends DisplayableElementModel {
|
||||||
|
/**
|
||||||
|
* Defines the size of the sprite
|
||||||
|
* */
|
||||||
|
private static final int SIZ_X_OF_SPRITE = 16;
|
||||||
|
private static final int SIZ_Y_OF_SPRITE = 16;
|
||||||
private static String spriteName;
|
private static String spriteName;
|
||||||
private static boolean isDestructible;
|
private static boolean isDestructible;
|
||||||
private static boolean canMove;
|
private static boolean canMove;
|
||||||
@ -32,12 +37,6 @@ public class RockfordModel extends DisplayableElementModel {
|
|||||||
private static ArrayList<BufferedImage> framesRunningRight;
|
private static ArrayList<BufferedImage> framesRunningRight;
|
||||||
private static ArrayList<BufferedImage> framesRunningUpOrDown;
|
private static ArrayList<BufferedImage> framesRunningUpOrDown;
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the size of the sprite
|
|
||||||
*/
|
|
||||||
private final int SIZ_X_OF_SPRITE = 16;
|
|
||||||
private final int SIZ_Y_OF_SPRITE = 16;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the current speed of the object
|
* Defines the current speed of the object
|
||||||
*/
|
*/
|
||||||
|
@ -18,15 +18,15 @@ import fr.enssat.BoulderDash.views.LevelEditorView;
|
|||||||
* @since 2015-06-22
|
* @since 2015-06-22
|
||||||
*/
|
*/
|
||||||
public class AssetsLevelEditorComponent extends JPanel implements ActionListener {
|
public class AssetsLevelEditorComponent extends JPanel implements ActionListener {
|
||||||
private LevelEditorView levelEditorView;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Available choices
|
* Available choices
|
||||||
*/
|
*/
|
||||||
static List<String> choiceList = Arrays.asList(
|
private static List<String> choiceList = Arrays.asList(
|
||||||
"Boulder", "Diamond", "Dirt", "Brick Wall", "Expanding Wall", "Magic Wall", "Steel Wall", "Rockford"
|
"Boulder", "Diamond", "Dirt", "Brick Wall", "Expanding Wall", "Magic Wall", "Steel Wall", "Rockford"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
private LevelEditorView levelEditorView;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
*
|
*
|
||||||
|
@ -31,7 +31,7 @@ public class GameGroundView extends GroundView {
|
|||||||
|
|
||||||
this.gameController = gameController;
|
this.gameController = gameController;
|
||||||
|
|
||||||
this.addKeyListener(new GameKeyController(this.levelModel, this.gameController.getAudioLoadHelper()));
|
this.addKeyListener(new GameKeyController(super.getLevelModel(), this.gameController.getAudioLoadHelper()));
|
||||||
|
|
||||||
this.setBorder(BorderFactory.createLineBorder(Color.black));
|
this.setBorder(BorderFactory.createLineBorder(Color.black));
|
||||||
this.setFocusable(true);
|
this.setFocusable(true);
|
||||||
|
@ -22,7 +22,7 @@ import java.util.Observer;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public abstract class GroundView extends JPanel implements Observer {
|
public abstract class GroundView extends JPanel implements Observer {
|
||||||
protected LevelModel levelModel;
|
private LevelModel levelModel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
@ -34,6 +34,10 @@ public abstract class GroundView extends JPanel implements Observer {
|
|||||||
this.levelModel.addObserver(this);
|
this.levelModel.addObserver(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected LevelModel getLevelModel() {
|
||||||
|
return levelModel;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draws the map
|
* Draws the map
|
||||||
*
|
*
|
||||||
|
@ -39,10 +39,11 @@ public class WinLoseView extends JFrame{
|
|||||||
private void createLayout() {
|
private void createLayout() {
|
||||||
JTextArea help = new JTextArea();
|
JTextArea help = new JTextArea();
|
||||||
help.setEditable(false);
|
help.setEditable(false);
|
||||||
if(winOrLose.equals("win"))
|
if(winOrLose.equals("win")) {
|
||||||
help.setText("YOU WIN THE GAME :-)");
|
help.setText("YOU WIN THE GAME :-)");
|
||||||
else
|
} else {
|
||||||
help.setText("YOU LOSE THE GAME :-( TRY AGAIN!");
|
help.setText("YOU LOSE THE GAME :-( TRY AGAIN!");
|
||||||
|
}
|
||||||
|
|
||||||
this.add(help);
|
this.add(help);
|
||||||
}
|
}
|
||||||
|
33
boulder-dash/ueb01_checkstyle_config-Homework.xml
Normal file
33
boulder-dash/ueb01_checkstyle_config-Homework.xml
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
||||||
|
|
||||||
|
<module name="Checker">
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
<module name="TreeWalker">
|
||||||
|
<module name="NeedBraces">
|
||||||
|
<property name="tokens" value="LITERAL_DO,LITERAL_ELSE,LITERAL_FOR,LITERAL_IF,LITERAL_WHILE"/>
|
||||||
|
</module>
|
||||||
|
<module name="AvoidInlineConditionals"/>
|
||||||
|
<module name="DeclarationOrder"/>
|
||||||
|
<module name="ReturnCount"/>
|
||||||
|
<module name="NestedTryDepth"/>
|
||||||
|
<module name="SimplifyBooleanExpression"/>
|
||||||
|
<module name="HiddenField">
|
||||||
|
<property name="tokens" value="VARIABLE_DEF"/>
|
||||||
|
</module>
|
||||||
|
<module name="AbbreviationAsWordInName">
|
||||||
|
<property name="ignoreStaticFinal" value="true"/>
|
||||||
|
<property name="ignoreFinal" value="false"/>
|
||||||
|
<property name="allowedAbbreviationLength" value="3"/>
|
||||||
|
<property name="tokens"
|
||||||
|
value="VARIABLE_DEF"/>
|
||||||
|
</module>
|
||||||
|
<module name="VisibilityModifier"/>
|
||||||
|
<module name="StringLiteralEquality">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
<module name="EqualsAvoidNull">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
</module>
|
||||||
|
</module>
|
Loading…
x
Reference in New Issue
Block a user