Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Copyright (c) 2024 Stephen Gold
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 com.github.stephengold.joltjni;
import com.github.stephengold.joltjni.enumerate.EGroundState;
import com.github.stephengold.joltjni.readonly.ConstCharacterBase;
import com.github.stephengold.joltjni.readonly.ConstPhysicsMaterial;
import com.github.stephengold.joltjni.readonly.ConstShape;
import com.github.stephengold.joltjni.readonly.Vec3Arg;
import com.github.stephengold.joltjni.template.RefTarget;
/**
* Base class to represent a player navigating a {@code PhysicsSystem}.
*
* @author Stephen Gold [email protected]
*/
abstract public class CharacterBase
extends NonCopyable
implements ConstCharacterBase, RefTarget {
// *************************************************************************
// constructors
/**
* Instantiate a character with no native object assigned.
*/
CharacterBase() {
}
/**
* Instantiate a character with the specified native object assigned but not
* owned.
*
* @param settingsVa the virtual address of the native object to assign (not
* zero)
*/
CharacterBase(long settingsVa) {
super(settingsVa);
}
// *************************************************************************
// new methods exposed
/**
* Restore the character's state from the specified recorder.
*
* @param recorder the recorder to restore from (not null)
*/
public void restoreState(StateRecorder recorder) {
long characterVa = va();
long recorderVa = recorder.va();
restoreState(characterVa, recorderVa);
}
/**
* Alter the maximum slope that character can walk on.
*
* @param angle the desired slope angle (in radians, default=5*Pi/18)
*/
public void setMaxSlopeAngle(float angle) {
long characterVa = va();
setMaxSlopeAngle(characterVa, angle);
}
/**
* Alter the character's "up" direction.
*
* @param up the desired direction (not null, unaffected, default=(0,1,0))
*/
public void setUp(Vec3Arg up) {
long characterVa = va();
float x = up.getX();
float y = up.getY();
float z = up.getZ();
setUp(characterVa, x, y, z);
}
// *************************************************************************
// ConstCharacterBase methods
/**
* Return the maximum slope the character can walk on. The character is
* unaffected.
*
* @return the cosine of the slope angle
*/
@Override
public float getCosMaxSlopeAngle() {
long characterVa = va();
float result = getCosMaxSlopeAngle(characterVa);
return result;
}
/**
* Return the body ID of the supporting surface. The character is
* unaffected.
*
* @return a new ID
*/
@Override
public BodyId getGroundBodyId() {
long characterVa = va();
long idVa = getGroundBodyId(characterVa);
BodyId result = new BodyId(idVa, true);
return result;
}
/**
* Access the material of the supporting surface. The character is
* unaffected.
*
* @return a new JVM object with the pre-existing native object assigned, or
* else {@code null}
*/
@Override
public ConstPhysicsMaterial getGroundMaterial() {
long characterVa = va();
long materialVa = getGroundMaterial(characterVa);
ConstPhysicsMaterial result;
if (materialVa == 0L) {
result = null;
} else {
result = new PhysicsMaterial(materialVa);
}
return result;
}
/**
* Return the normal direction at the point of contact with the supporting
* surface. The character is unaffected.
*
* @return a new direction vector (in system coordinates)
*/
@Override
public Vec3 getGroundNormal() {
long characterVa = va();
float nx = getGroundNormalX(characterVa);
float ny = getGroundNormalY(characterVa);
float nz = getGroundNormalZ(characterVa);
Vec3 result = new Vec3(nx, ny, nz);
return result;
}
/**
* Return the location of the point of contact with the supporting surface.
* The character is unaffected.
*
* @return a new location vector (in system coordinates)
*/
@Override
public RVec3 getGroundPosition() {
long characterVa = va();
double xx = getGroundPositionX(characterVa);
double yy = getGroundPositionY(characterVa);
double zz = getGroundPositionZ(characterVa);
RVec3 result = new RVec3(xx, yy, zz);
return result;
}
/**
* Return the relationship between the character and its supporting surface.
* The character is unaffected.
*
* @return an enum value (not null)
*/
@Override
public EGroundState getGroundState() {
long characterVa = va();
int ordinal = getGroundState(characterVa);
EGroundState result = EGroundState.values()[ordinal];
return result;
}
/**
* Identify the face on the supporting surface where contact is occurring.
* The character is unaffected.
*
* @return a new ID
*/
@Override
public SubShapeId getGroundSubShapeId() {
long characterVa = va();
long idVa = getGroundSubShapeId(characterVa);
SubShapeId result = new SubShapeId(idVa, true);
return result;
}
/**
* Return the user data of the supporting surface. The character is
* unaffected.
*
* @return the 64-bit value
*/
@Override
public long getGroundUserData() {
long characterVa = va();
long result = getGroundUserData(characterVa);
return result;
}
/**
* Return the world-space velocity of the supporting surface. The character
* is unaffected.
*
* @return a new velocity vector (meters per second in system coordinates)
*/
@Override
public Vec3 getGroundVelocity() {
long characterVa = va();
float vx = getGroundVelocityX(characterVa);
float vy = getGroundVelocityY(characterVa);
float vz = getGroundVelocityZ(characterVa);
Vec3 result = new Vec3(vx, vy, vz);
return result;
}
/**
* Access the character's shape. The character is unaffected.
*
* @return a new immutable JVM object with the pre-existing native object
* assigned, or {@code null} if none
*/
@Override
public ConstShape getShape() {
long characterVa = va();
long shapeVa = getShape(characterVa);
ConstShape result = Shape.newShape(shapeVa);
return result;
}
/**
* Return the character's "up" direction. The character is unaffected.
*
* @return a new direction vector
*/
@Override
public Vec3 getUp() {
long characterVa = va();
float x = getUpX(characterVa);
float y = getUpY(characterVa);
float z = getUpZ(characterVa);
Vec3 result = new Vec3(x, y, z);
return result;
}
/**
* Test whether the specified normal direction is too steep. The character
* is unaffected.
*
* @param normal the surface normal to test (not null, unaffected)
* @return {@code true} if too steep, otherwise {@code false}
*/
@Override
public boolean isSlopeTooSteep(Vec3Arg normal) {
long characterVa = va();
float nx = normal.getX();
float ny = normal.getY();
float nz = normal.getZ();
boolean result = isSlopeTooSteep(characterVa, nx, ny, nz);
return result;
}
/**
* Test whether the character is supported. The character is unaffected.
*
* @return {@code true} if supported, otherwise {@code false}
*/
@Override
public boolean isSupported() {
long characterVa = va();
boolean result = isSupported(characterVa);
return result;
}
/**
* Save the character's state to the specified recorder.
*
* @param recorder the recorder to save to (not null)
*/
@Override
public void saveState(StateRecorder recorder) {
long characterVa = va();
long recorderVa = recorder.va();
saveState(characterVa, recorderVa);
}
// *************************************************************************
// RefTarget methods
/**
* Count the active references to the native {@code CharacterBase}. The
* character is unaffected.
*
* @return the count (≥0)
*/
@Override
public int getRefCount() {
long characterVa = va();
int result = getRefCount(characterVa);
return result;
}
/**
* Mark the native {@code CharacterBase} as embedded.
*/
@Override
public void setEmbedded() {
long characterVa = va();
setEmbedded(characterVa);
}
// *************************************************************************
// native methods
native static float getCosMaxSlopeAngle(long characterVa);
native static long getGroundBodyId(long characterVa);
native static long getGroundMaterial(long characterVa);
native static float getGroundNormalX(long characterVa);
native static float getGroundNormalY(long characterVa);
native static float getGroundNormalZ(long characterVa);
native static double getGroundPositionX(long characterVa);
native static double getGroundPositionY(long characterVa);
native static double getGroundPositionZ(long characterVa);
native static int getGroundState(long characterVa);
native static long getGroundSubShapeId(long characterVa);
native static long getGroundUserData(long characterVa);
native static float getGroundVelocityX(long characterVa);
native static float getGroundVelocityY(long characterVa);
native static float getGroundVelocityZ(long characterVa);
native private static int getRefCount(long characterVa);
native static long getShape(long characterVa);
native static float getUpX(long characterVa);
native static float getUpY(long characterVa);
native static float getUpZ(long characterVa);
native static boolean isSlopeTooSteep(
long characterVa, float nx, float ny, float nz);
native static boolean isSupported(long characterVa);
native static void restoreState(long characterVa, long recorderVa);
native static void saveState(long characterVa, long recorderVa);
native private static void setEmbedded(long characterVa);
native private static void setMaxSlopeAngle(long characterVa, float angle);
native static void setUp(long characterVa, float x, float y, float z);
}