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


Java Constants类代码示例

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


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

示例1: prepare

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BeforeClass
public static void prepare () {
	worldSmall = prepareWorld(Constants.ENTITIES_SMALL_TEST);
	worldMedium = prepareWorld(Constants.ENTITIES_MEDIUM_TEST);
	worldBig = prepareWorld(Constants.ENTITIES_BIG_TEST);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:7,代码来源:ArtemisBenchmark.java

示例2: worldSmallTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void worldSmallTest () {
	runWorldTest(worldSmall);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:ArtemisBenchmark.java

示例3: worldMediumTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void worldMediumTest () {
	runWorldTest(worldMedium);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:ArtemisBenchmark.java

示例4: worldBigTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void worldBigTest () {
	runWorldTest(worldBig);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:ArtemisBenchmark.java

示例5: runWorldTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
private void runWorldTest (World world) {
	for (int i = 0; i < Constants.FRAMES; ++i) {
		world.setDelta(Constants.DELTA_TIME);
		world.process();
	}
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:7,代码来源:ArtemisBenchmark.java

示例6: prepareWorld

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
private static World prepareWorld (int numEntities) {
	World world = new World();

	world.setSystem(new MovementSystem());
	world.setSystem(new StateSystem());
	world.setSystem(new CollisionSystem());
	world.setSystem(new RemovalSystem());

	world.initialize();

	for (int i = 0; i < numEntities; ++i) {
		Entity entity = world.createEntity();

		if (Constants.shouldHaveComponent(ComponentType.POSITION, i)) {
			PositionComponent pos = new PositionComponent();
			pos.pos.x = MathUtils.random(Constants.MIN_POS, Constants.MAX_POS);
			pos.pos.y = MathUtils.random(Constants.MIN_POS, Constants.MAX_POS);
			entity.addComponent(pos);
		}

		if (Constants.shouldHaveComponent(ComponentType.MOVEMENT, i)) {
			MovementComponent mov = new MovementComponent();
			mov.velocity.x = MathUtils.random(Constants.MIN_VEL, Constants.MAX_VEL);
			mov.velocity.y = MathUtils.random(Constants.MIN_VEL, Constants.MAX_VEL);
			mov.accel.x = MathUtils.random(Constants.MIN_ACC, Constants.MAX_ACC);
			mov.accel.y = MathUtils.random(Constants.MIN_ACC, Constants.MAX_ACC);

			entity.addComponent(mov);
		}

		if (Constants.shouldHaveComponent(ComponentType.RADIUS, i)) {
			RadiusComponent rad = new RadiusComponent();
			rad.radius = MathUtils.random(Constants.MIN_RADIUS, Constants.MAX_RADIUS);
			entity.addComponent(rad);
		}

		if (Constants.shouldHaveComponent(ComponentType.STATE, i)) {
			entity.addComponent(new StateComponent());
		}

		world.addEntity(entity);
	}

	return world;
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:46,代码来源:ArtemisBenchmark.java

示例7: prepare

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BeforeClass
public static void prepare () {
	engineSmall = prepareEngine(Constants.ENTITIES_SMALL_TEST);
	engineMedium = prepareEngine(Constants.ENTITIES_MEDIUM_TEST);
	engineBig = prepareEngine(Constants.ENTITIES_BIG_TEST);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:7,代码来源:AshleyBenchmark.java

示例8: ashleySmallTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void ashleySmallTest () {
	runEngineTest(engineSmall);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:AshleyBenchmark.java

示例9: ashleyMediumTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void ashleyMediumTest () {
	runEngineTest(engineMedium);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:AshleyBenchmark.java

示例10: ashleyBigTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void ashleyBigTest () {
	runEngineTest(engineBig);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:AshleyBenchmark.java

示例11: runEngineTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
private void runEngineTest (Engine engine) {
	for (int i = 0; i < Constants.FRAMES; ++i) {
		engine.update(Constants.DELTA_TIME);
	}
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:AshleyBenchmark.java

示例12: prepareEngine

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
private static Engine prepareEngine (int numEntities) {
	Engine engine = new Engine();

	engine.addSystem(new MovementSystem());
	engine.addSystem(new StateSystem());
	engine.addSystem(new CollisionSystem());
	engine.addSystem(new RemovalSystem());

	for (int i = 0; i < numEntities; ++i) {
		Entity entity = new Entity();

		if (Constants.shouldHaveComponent(ComponentType.POSITION, i)) {
			PositionComponent pos = new PositionComponent();
			pos.pos.x = MathUtils.random(Constants.MIN_POS, Constants.MAX_POS);
			pos.pos.y = MathUtils.random(Constants.MIN_POS, Constants.MAX_POS);
			entity.add(pos);
		}

		if (Constants.shouldHaveComponent(ComponentType.MOVEMENT, i)) {
			MovementComponent mov = new MovementComponent();
			mov.velocity.x = MathUtils.random(Constants.MIN_VEL, Constants.MAX_VEL);
			mov.velocity.y = MathUtils.random(Constants.MIN_VEL, Constants.MAX_VEL);
			mov.accel.x = MathUtils.random(Constants.MIN_ACC, Constants.MAX_ACC);
			mov.accel.y = MathUtils.random(Constants.MIN_ACC, Constants.MAX_ACC);

			entity.add(mov);
		}

		if (Constants.shouldHaveComponent(ComponentType.RADIUS, i)) {
			RadiusComponent rad = new RadiusComponent();
			rad.radius = MathUtils.random(Constants.MIN_RADIUS, Constants.MAX_RADIUS);
			entity.add(rad);
		}

		if (Constants.shouldHaveComponent(ComponentType.STATE, i)) {
			entity.add(new StateComponent());
		}

		engine.addEntity(entity);
	}

	return engine;
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:44,代码来源:AshleyBenchmark.java

示例13: prepare

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BeforeClass
public static void prepare() {
    worldSmall = prepareWorld(Constants.ENTITIES_SMALL_TEST);
    worldMedium = prepareWorld(Constants.ENTITIES_MEDIUM_TEST);
    worldBig = prepareWorld(Constants.ENTITIES_BIG_TEST);
}
 
开发者ID:grum,项目名称:Ashley,代码行数:7,代码来源:ArtemisBenchmark.java

示例14: worldSmallTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void worldSmallTest() {
    runWorldTest(worldSmall);
}
 
开发者ID:grum,项目名称:Ashley,代码行数:6,代码来源:ArtemisBenchmark.java

示例15: worldMediumTest

import com.badlogic.ashley.benchmark.Constants; //导入依赖的package包/类
@BenchmarkOptions(benchmarkRounds = Constants.BENCHMARK_ROUNDS, warmupRounds = Constants.WARMUP_ROUNDS)
@Test
public void worldMediumTest() {
    runWorldTest(worldMedium);
}
 
开发者ID:grum,项目名称:Ashley,代码行数:6,代码来源:ArtemisBenchmark.java


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