117 lines
2.7 KiB
Java
117 lines
2.7 KiB
Java
package fr.enssat.BoulderDash.views;
|
|
|
|
import fr.enssat.BoulderDash.models.LevelModel;
|
|
|
|
import javax.swing.*;
|
|
|
|
import java.awt.*;
|
|
import java.util.Observable;
|
|
import java.util.Observer;
|
|
|
|
/**
|
|
* FieldView
|
|
*
|
|
* FieldView, created by controller; we notice that we don't need to make
|
|
* levelModel observable; Because of the sprites we have to refresh the game
|
|
* windows very often so don't need of observers/observable mechanism
|
|
*
|
|
* @author Colin Leverger <me@colinleverger.fr>
|
|
* @since 2015-06-19
|
|
*
|
|
* This view is basically drawing into the Frame the levelModel.
|
|
*
|
|
*/
|
|
public abstract class GroundView extends JPanel implements Observer {
|
|
protected LevelModel levelModel;
|
|
|
|
/**
|
|
* Class constructor
|
|
*
|
|
* @param levelModel Level model
|
|
*/
|
|
public GroundView(LevelModel levelModel) {
|
|
this.levelModel = levelModel;
|
|
this.levelModel.addObserver(this);
|
|
}
|
|
|
|
/**
|
|
* Draws the map
|
|
*
|
|
* @param width Map width
|
|
* @param height Map height
|
|
* @param g Map graphical object
|
|
*/
|
|
public void drawTerrain(int width, int height, Graphics g) {
|
|
// Draw items
|
|
if (this.levelModel.getMode() == "game") {
|
|
drawGameTerrain(width, height, g);
|
|
|
|
if(!this.levelModel.isGameRunning()) {
|
|
if(!this.levelModel.getRockford().getHasExplosed()) {
|
|
this.displayWin();
|
|
} else {
|
|
this.displayLose();
|
|
}
|
|
}
|
|
} else {
|
|
drawGameTerrain(width, height, g);
|
|
if (this.levelModel.getShowCursor()) {
|
|
g.drawImage(
|
|
this.levelModel.getCursorImage(),
|
|
((this.levelModel.getCursorXPosition() + 1) * 16),
|
|
((this.levelModel.getCursorYPosition() + 1) * 16),
|
|
this
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Draws the game terrain
|
|
*
|
|
* @param width Map width
|
|
* @param height Map height
|
|
* @param g Map graphical object
|
|
*/
|
|
private void drawGameTerrain(int width, int height, Graphics g) {
|
|
for (int x = 0; x < width; x++) {
|
|
for (int y = 0; y < height; y++) {
|
|
g.drawImage(this.levelModel.getImage(x, y), (x * 16), (y * 16), this);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set the view to inform the user that he won
|
|
*/
|
|
private void displayWin() {
|
|
new WinLoseView("win");
|
|
}
|
|
|
|
/**
|
|
* Set the view to inform the user that he is not good at this game
|
|
*/
|
|
private void displayLose() {
|
|
new WinLoseView("lose");
|
|
}
|
|
|
|
/**
|
|
* Paints the map
|
|
*
|
|
* @param g Map graphical object
|
|
*/
|
|
public void paint(Graphics g) {
|
|
this.drawTerrain(this.levelModel.getSizeWidth(), this.levelModel.getSizeHeight(), g);
|
|
}
|
|
|
|
/**
|
|
* Updates the view
|
|
*
|
|
* @param obs Observable item
|
|
* @param obj Object item
|
|
*/
|
|
@Override
|
|
public void update(Observable obs, Object obj) {
|
|
repaint();
|
|
}
|
|
} |