Cleaner update routine by extracting logic into new methods
This commit is contained in:
parent
ab94395eac
commit
37944fccd9
@ -360,6 +360,60 @@ public class PlayState extends LevelState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void updateScatterTimer(float dt) {
|
||||||
|
if (scatter || scatterCount < 4) {
|
||||||
|
// only update scatter timer if we're currently in scatter or if we've yet to enter scatter 4 times
|
||||||
|
scatterChaseTimer -= dt;
|
||||||
|
if (scatterChaseTimer <= 0) {
|
||||||
|
scatter = !scatter;
|
||||||
|
scatterChaseTimer = scatter ? 7f : 20f;
|
||||||
|
if (scatter) {
|
||||||
|
scatterCount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateFrightTimer(float dt) {
|
||||||
|
frightTimer -= dt;
|
||||||
|
if (frightTimer <= 0) {
|
||||||
|
for (Ghost ghost : ghosts) {
|
||||||
|
if (ghost.currentBehaviour instanceof ReturnToBase) continue;
|
||||||
|
ghost.caught = false;
|
||||||
|
ghost.currentBehaviour = ghost.chaseBehaviour;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateSecondsSinceLastDot(float dt) {
|
||||||
|
secondsSinceLastDot += dt;
|
||||||
|
if (secondsSinceLastDot >= 4) {
|
||||||
|
// It's been 4 seconds since pacman last ate a dot, he's tryin' to avoid ghosts coming out!
|
||||||
|
// We'll get him...
|
||||||
|
for (int i = 1; i < 4; i++) {
|
||||||
|
Ghost ghost = ghosts[i];
|
||||||
|
if (ghost.inHouse) {
|
||||||
|
ghost.leaveHouse();
|
||||||
|
secondsSinceLastDot = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns whether pacman has been caught
|
||||||
|
private boolean handleGhostCollision(Ghost ghost) {
|
||||||
|
if (ghost.onSameTile(pacman)) {
|
||||||
|
if (frightTimer > 0 && !ghost.caught) {
|
||||||
|
ghostCaught(ghost);
|
||||||
|
} else if (!(ghost.currentBehaviour instanceof ReturnToBase)) {
|
||||||
|
pacmanCaught();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void update(float dt) {
|
public void update(float dt) {
|
||||||
if (paused) {
|
if (paused) {
|
||||||
@ -374,54 +428,18 @@ public class PlayState extends LevelState {
|
|||||||
switch (state) {
|
switch (state) {
|
||||||
case PLAYING:
|
case PLAYING:
|
||||||
if (frightTimer <= 0) {
|
if (frightTimer <= 0) {
|
||||||
if (scatter || scatterCount < 4) {
|
updateScatterTimer(dt);
|
||||||
scatterChaseTimer -= dt;
|
|
||||||
if (scatterChaseTimer <= 0) {
|
|
||||||
scatter = !scatter;
|
|
||||||
scatterChaseTimer = scatter ? 7f : 20f;
|
|
||||||
if (scatter) {
|
|
||||||
scatterCount++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
frightTimer -= dt;
|
updateFrightTimer(dt);
|
||||||
if (frightTimer <= 0) {
|
|
||||||
for (Ghost ghost : ghosts) {
|
|
||||||
if (ghost.currentBehaviour instanceof ReturnToBase) continue;
|
|
||||||
ghost.caught = false;
|
|
||||||
ghost.currentBehaviour = ghost.chaseBehaviour;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
secondsSinceLastDot += dt;
|
updateSecondsSinceLastDot(dt);
|
||||||
if (secondsSinceLastDot >= 4) {
|
|
||||||
// It's been 4 seconds since pacman last ate a dot, he's tryin' to avoid ghosts coming out!
|
|
||||||
// We'll get him...
|
|
||||||
for (int i = 1; i < 4; i++) {
|
|
||||||
Ghost ghost = ghosts[i];
|
|
||||||
if (ghost.inHouse) {
|
|
||||||
ghost.leaveHouse();
|
|
||||||
secondsSinceLastDot = 0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pacman.update(dt);
|
pacman.update(dt);
|
||||||
for (Ghost ghost : ghosts) {
|
for (Ghost ghost : ghosts) {
|
||||||
ghost.update(dt);
|
ghost.update(dt);
|
||||||
|
if (handleGhostCollision(ghost)) {
|
||||||
if (ghost.onSameTile(pacman)) {
|
return;
|
||||||
if (frightTimer > 0 && !ghost.caught) {
|
|
||||||
ghostCaught(ghost);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!(ghost.currentBehaviour instanceof ReturnToBase)) {
|
|
||||||
pacmanCaught();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user