当前位置: 首页>>代码示例>>Java>>正文


Java Clock类代码示例

本文整理汇总了Java中org.jsfml.system.Clock的典型用法代码示例。如果您正苦于以下问题:Java Clock类的具体用法?Java Clock怎么用?Java Clock使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Clock类属于org.jsfml.system包,在下文中一共展示了Clock类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import org.jsfml.system.Clock; //导入依赖的package包/类
public static void main(String[] args) {
	// Create a simulation.
	Sim simulation = new Sim(WIDTH, HEIGHT, TITLE);
	simulation.init();
	
	// FPS/ticks count.
	int ticks = 0;
	int frames = 0;
	Time fpsTime = Time.ZERO;
	
	//Main loop
	Clock clock = new Clock();
	Time elapsed = Time.ZERO;
	Time frameTime = Time.ZERO;
	int skippedFrames = 0;
	
	boolean hasFocus = true;
	
	while(simulation.getWindow().isOpen()) {
		frameTime = clock.restart();
	    elapsed = Time.add(frameTime, elapsed);
		
	    // Update 60 times per seconds
	    while(Time.ratio(elapsed, TIME_PER_TICK) >= 1.f && skippedFrames < MAX_SKIPPED_FRAMES) {
			elapsed = Time.sub(elapsed, TIME_PER_TICK);
			skippedFrames++;

	    	// Handle events
		    for(Event event : simulation.getWindow().pollEvents()) {
		        if(event.type == Event.Type.CLOSED) {
		        	simulation.getWindow().close();
		        }
		        else if(event.type == Event.Type.GAINED_FOCUS) {
		        	simulation.onGainFocus();
		        }
		        else if(event.type == Event.Type.LOST_FOCUS) {
		        	simulation.onLostFocus();
		        }
		        else if(event.type == Event.Type.KEY_PRESSED && event.asKeyEvent().key == Keyboard.Key.ESCAPE) {
		        	simulation.getWindow().close();
		        }
		        else if(hasFocus) {
		        	simulation.handleEvent(event);
		        }
		    }
		    
		    // Update
	    	simulation.update(TIME_PER_TICK);
	    	
	    	// Tick count.
			ticks++;
	    }
	    
	    simulation.render(elapsed);
	    frames++;
	    skippedFrames = 0;
	    
	    // Compute average FPS and display it in the window's title.
	    fpsTime = Time.add(frameTime, fpsTime);
	    if(fpsTime.asSeconds() > 1f) {
	    	fpsTime = Time.sub(fpsTime, Time.getSeconds(1.0f));
	    	simulation.getWindow().setTitle(TITLE  + " | Ticks : " + ticks + ", FPS : " + frames);
			
	    	// Reset counters.
	    	ticks = 0;
			frames = 0;
		}
	}
}
 
开发者ID:om3g4zell,项目名称:CityBuilderJSFML,代码行数:70,代码来源:Main.java


注:本文中的org.jsfml.system.Clock类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。