A not-perfect cache for the VoxelShape to improve performance.

This commit is contained in:
Sebastian Hartte
2020-06-22 16:47:07 +02:00
parent 26bb08ddb5
commit f32289d881
7 changed files with 115 additions and 122 deletions
@@ -1,34 +0,0 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2013 AlgorithmX2
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package appeng.api.parts;
public interface IBoxProvider {
/**
* add your collision information to the the list.
*
* @param boxes collision boxes
*/
void getBoxes(IPartCollisionHelper boxes);
}
@@ -45,10 +45,10 @@ public interface IFacadePart {
/**
* used to collide, and pick the part
*
* @param ch collision helper
* @param e colliding entity
* @param ch collision helper
* @param livingEntity collision with a living entity?
*/
void getBoxes(IPartCollisionHelper ch, Entity e);
void getBoxes(IPartCollisionHelper ch, boolean livingEntity);
/**
* @return side the facade is in
+8 -1
View File
@@ -56,7 +56,7 @@ import appeng.api.util.AECableType;
import appeng.api.util.AEColor;
import appeng.api.util.AEPartLocation;
public interface IPart extends IBoxProvider, ICustomCableConnection {
public interface IPart extends ICustomCableConnection {
/**
* get an ItemStack that represents the bus, should contain the settings for
@@ -364,4 +364,11 @@ public interface IPart extends IBoxProvider, ICustomCableConnection {
return EmptyModelData.INSTANCE;
}
/**
* add your collision information to the the list.
*
* @param bch collision boxes
*/
void getBoxes(final IPartCollisionHelper bch);
}