本文整理汇总了Java中org.newdawn.slick.util.pathfinding.navmesh.Space类的典型用法代码示例。如果您正苦于以下问题:Java Space类的具体用法?Java Space怎么用?Java Space使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Space类属于org.newdawn.slick.util.pathfinding.navmesh包,在下文中一共展示了Space类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: render
import org.newdawn.slick.util.pathfinding.navmesh.Space; //导入依赖的package包/类
/**
* Render the game - in this case render the map and diagnostic data
*
* @param container The container we're running the game in
* @param g The graphics context on which to render
*/
public void render(GameContainer container, Graphics g)
throws SlickException {
g.translate(50,50);
for (int x=0;x<50;x++) {
for (int y=0;y<50;y++) {
if (dataMap.blocked(this, x, y)) {
g.setColor(Color.gray);
g.fillRect((x*10)+1,(y*10)+1,8,8);
}
}
}
if (showSpaces) {
for (int i=0;i<navMesh.getSpaceCount();i++) {
Space space = navMesh.getSpace(i);
if (builder.clear(dataMap, space)) {
g.setColor(new Color(1,1,0,0.5f));
g.fillRect(space.getX()*10, space.getY()*10, space.getWidth()*10, space.getHeight()*10);
}
g.setColor(Color.yellow);
g.drawRect(space.getX()*10, space.getY()*10, space.getWidth()*10, space.getHeight()*10);
if (showLinks) {
int links = space.getLinkCount();
for (int j=0;j<links;j++) {
Link link = space.getLink(j);
g.setColor(Color.red);
g.fillRect((link.getX()*10)-2, (link.getY()*10)-2,5,5);
}
}
}
}
if (path != null) {
g.setColor(Color.white);
for (int i=0;i<path.length()-1;i++) {
g.drawLine(path.getX(i)*10, path.getY(i)*10, path.getX(i+1)*10, path.getY(i+1)*10);
}
}
}
开发者ID:j-dong,项目名称:trashjam2017,代码行数:47,代码来源:NavMeshTest.java
注:本文中的org.newdawn.slick.util.pathfinding.navmesh.Space类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论