- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
switch (this.gameState) {
case 2: // '\002'
case 3: // '\003'
this.setGameState(4);
return;
case 6: // '\006'
this.setGameState(4);
return;
case 4: // '\004'
switch (keyevent.getKeyCode()) {
case 80: // 'P'
this.setGameState(6);
return;
case 37: // '%'
this.changePukSpeed(-1, 0);
return;
case 39: // '\''
this.changePukSpeed(1, 0);
return;
case 38: // '&'
this.changePukSpeed(0, -1);
return;
case 40: // '('
this.changePukSpeed(0, 1);
return;
}
// fall through
case 5: // '\005'
default:
return;
}
никто не пробовал?..
Говнистость во вложенном свиче, или что?