-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomizeMenuController.java
77 lines (73 loc) · 3.16 KB
/
CustomizeMenuController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.CrossingGuardJoe.controller.menu;
import com.CrossingGuardJoe.Game;
import com.CrossingGuardJoe.controller.Controller;
import com.CrossingGuardJoe.controller.Sounds;
import com.CrossingGuardJoe.controller.SoundsController;
import com.CrossingGuardJoe.gui.GUI;
import com.CrossingGuardJoe.model.menu.CustomizeMenu;
import java.io.IOException;
public class CustomizeMenuController extends Controller<CustomizeMenu> {
private char oldColor;
public CustomizeMenuController(CustomizeMenu model) {
super(model);
SoundsController.getInstance().play(Sounds.SFX.CUSTOMIZEBGM);
}
@Override
public void nextAction(Game game, GUI.ACTION action, long time) throws IOException {
if (!getModel().isColorPaletteSelected()) {
switch (action) {
case LEFT:
SoundsController.getInstance().play(Sounds.SFX.SELECT);
getModel().navigateLeft();
break;
case RIGHT:
SoundsController.getInstance().play(Sounds.SFX.SELECT);
getModel().navigateRight();
break;
case UP:
SoundsController.getInstance().play(Sounds.SFX.SELECT);
getModel().navigateUp();
break;
case DOWN:
SoundsController.getInstance().play(Sounds.SFX.SELECT);
getModel().navigateDown();
break;
case ESC:
SoundsController.getInstance().stop(Sounds.SFX.CUSTOMIZEBGM);
game.popState();
SoundsController.getInstance().play(Sounds.SFX.MENUBGM);
break;
case SELECT:
SoundsController.getInstance().play(Sounds.SFX.ENTER);
oldColor = getModel().getSelectedColorChar();
getModel().setColorPaletteSelected(true);
break;
default:
break;
}
}
else {
switch (action) {
case LEFT:
SoundsController.getInstance().play(Sounds.SFX.SELECT);
getModel().getColorPaletteMenu().navigateLeft();
break;
case RIGHT:
SoundsController.getInstance().play(Sounds.SFX.SELECT);
getModel().getColorPaletteMenu().navigateRight();
break;
case ESC:
getModel().setColorPaletteSelected(false);
break;
case SELECT:
SoundsController.getInstance().play(Sounds.SFX.ENTER);
char newColor = getModel().getColorPaletteMenu().getColorPalette().get(getModel().getColorPaletteMenu().getSelectedColorIndex()).getCharacter();
getModel().setColorChange(oldColor, newColor);
getModel().setColorPaletteSelected(false);
break;
default:
break;
}
}
}
}