本文整理汇总了Java中pacman.game.Constants.MOVE.valueOf方法的典型用法代码示例。如果您正苦于以下问题:Java MOVE.valueOf方法的具体用法?Java MOVE.valueOf怎么用?Java MOVE.valueOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pacman.game.Constants.MOVE
的用法示例。
在下文中一共展示了MOVE.valueOf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setGameState
import pacman.game.Constants.MOVE; //导入方法依赖的package包/类
/**
* Sets the game state from a string: the inverse of getGameState(). It reconstructs
* all the game's variables from the string.
*
* @param gameState The game state represented as a string
*/
public void setGameState(String gameState)
{
String[] values=gameState.split(",");
int index=0;
mazeIndex=Integer.parseInt(values[index++]);
totalTime=Integer.parseInt(values[index++]);
score=Integer.parseInt(values[index++]);
currentLevelTime=Integer.parseInt(values[index++]);
levelCount=Integer.parseInt(values[index++]);
pacman=new PacMan(Integer.parseInt(values[index++]),MOVE.valueOf(values[index++]),
Integer.parseInt(values[index++]),Boolean.parseBoolean(values[index++]));
ghosts=new EnumMap<GHOST, Ghost>(GHOST.class);
for(GHOST ghostType : GHOST.values())
ghosts.put(ghostType,new Ghost(ghostType,Integer.parseInt(values[index++]),Integer.parseInt(values[index++]),
Integer.parseInt(values[index++]),MOVE.valueOf(values[index++])));
_setPills(currentMaze=mazes[mazeIndex]);
for(int i=0;i<values[index].length();i++)
if(values[index].charAt(i)=='1')
pills.set(i);
else
pills.clear(i);
index++;
for(int i=0;i<values[index].length();i++)
if(values[index].charAt(i)=='1')
powerPills.set(i);
else
powerPills.clear(i);
timeOfLastGlobalReversal=Integer.parseInt(values[++index]);
pacmanWasEaten=Boolean.parseBoolean(values[++index]);
ghostsEaten=new EnumMap<GHOST,Boolean>(GHOST.class);
for(GHOST ghost : GHOST.values())
ghostsEaten.put(ghost,Boolean.parseBoolean(values[++index]));
pillWasEaten=Boolean.parseBoolean(values[++index]);
powerPillWasEaten=Boolean.parseBoolean(values[++index]);
}