本文整理汇总了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());
}
示例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);
}
示例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);
}
示例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();
}
示例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);
}
示例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;
}
示例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;
}
示例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;
}