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


Java ReflectionPool类代码示例

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


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

示例1: InputVisualizer

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public InputVisualizer() {
	eventBuffer = new RingBuffer<MouseEvent>(MAX_EVENTS);
	eventPool = new ReflectionPool<MouseEvent>(MouseEvent.class);

	shader = new ShaderProgram(
			Gdx.files.internal("assets/shaders/visualizer.vert"),
			Gdx.files.internal("assets/shaders/visualizer.frag"));
	if (!shader.isCompiled()) {
		Gdx.app.log("InputVisualizer", shader.getLog());
	}
	evBufferLoc = shader.getUniformLocation("u_mouseEvs[0]");
	projMatrixLoc = shader.getUniformLocation("u_projTrans");
	if (evBufferLoc == -1) {
		Gdx.app.log("InputVisualizer",
				"No uniform with name u_mouseEvents found in shader");
	}
	mesh = new Mesh(false, 4, 4, VertexAttribute.Position());

	addListener(new MouseListener());
}
 
开发者ID:suluke,项目名称:gdx.automation,代码行数:21,代码来源:InputVisualizer.java

示例2: free

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public void free (Object object) {
	if (object == null) {
		throw new IllegalArgumentException("object cannot be null.");
	}

	ReflectionPool pool = pools.get(object.getClass());

	if (pool == null) {
		return; // Ignore freeing an object that was never retained.
	}

	pool.free(object);
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:14,代码来源:PooledEngine.java

示例3: free

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public void free(Object object) {
    if (object == null) {
        throw new IllegalArgumentException("object cannot be null.");
    }

    ReflectionPool pool = pools.get(object.getClass());

    if (pool == null) {
        return; // Ignore freeing an object that was never retained.
    }

    pool.free(object);
}
 
开发者ID:grum,项目名称:Ashley,代码行数:14,代码来源:PooledEngine.java

示例4: InputStateTracker

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public InputStateTracker(InputRecorder inputRecorder) {
	this.recorder = inputRecorder;

	int toSet = 0;
	if (recorder.getConfiguration().recordButtons) {
		toSet |= InputProperty.SyncProperty.Type.BUTTONS.key;
	}
	if (recorder.getConfiguration().recordOrientation) {
		toSet |= InputProperty.SyncProperty.Type.ORIENTATION.key;
	}
	if (recorder.getConfiguration().recordKeysPressed) {
		toSet |= InputProperty.SyncProperty.Type.KEYS_PRESSED.key;
	}
	if (recorder.getConfiguration().recordPointers) {
		toSet |= InputProperty.SyncProperty.Type.POINTERS.key;
	}
	beforePrcessEventsTrackFlags = toSet;

	toSet = 0;
	if (recorder.getConfiguration().recordKeyEvents) {
		toSet |= InputProperty.SyncProperty.Type.KEY_EVENTS.key;
	}
	if (recorder.getConfiguration().recordPointerEvents) {
		toSet |= InputProperty.SyncProperty.Type.POINTER_EVENTS.key;
	}
	onProcessEventsTrackFlags = toSet;

	storedStates = new ArrayList<InputState>();
	processedStates = new ArrayList<InputState>();

	statePool = new ReflectionPool<InputState>(InputState.class, 50);
	processor = new Processor();

	tracker = new Tracker();

	grabber = new InputEventGrabber();
	grabberArmer = new GrabberArmer();
	grabberKeeper = new GrabberKeeper();
}
 
开发者ID:suluke,项目名称:gdx.automation,代码行数:40,代码来源:InputStateTracker.java

示例5: free

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public void free(D object) {
    if (object == null) {
        throw new IllegalArgumentException("object cannot be null.");
    }
    ReflectionPool pool = pools.get((Class<D>) object.getClass());
    if (pool == null) {
        return; // Ignore freeing an object that was never retained.
    }
    pool.free(object);

}
 
开发者ID:Rubentxu,项目名称:GDX-Logic-Bricks,代码行数:12,代码来源:LogicBricksEngine.java

示例6: ComponentPools

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public ComponentPools (int initialSize, int maxSize) {
	this.pools = new ObjectMap<Class<?>, ReflectionPool>();
	this.initialSize = initialSize;
	this.maxSize = maxSize;
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:6,代码来源:PooledEngine.java

示例7: ComponentPools

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public ComponentPools(int initialSize, int maxSize) {
    this.pools = new ObjectMap<Class<?>, ReflectionPool>();
    this.initialSize = 0;
    this.maxSize = 0;
}
 
开发者ID:grum,项目名称:Ashley,代码行数:6,代码来源:PooledEngine.java

示例8: DataPools

import com.badlogic.gdx.utils.ReflectionPool; //导入依赖的package包/类
public DataPools(int initialSize, int maxSize) {
    this.pools = new ObjectMap<Class<D>, ReflectionPool>();
    this.initialSize = 0;
    this.maxSize = 0;

}
 
开发者ID:Rubentxu,项目名称:GDX-Logic-Bricks,代码行数:7,代码来源:LogicBricksEngine.java


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