use of org.terasology.math.geom.Vector3f in project Terasology by MovingBlocks.
the class ColladaLoader method createMD5Joint.
private MD5Joint createMD5Joint(Element jointNodeElement) throws ColladaParseException {
MD5Joint md5Joint = new MD5Joint();
ElementSet matrixSet = jointNodeElement.find("matrix");
if (1 == matrixSet.size()) {
Element matrix = matrixSet.first();
String floatStringArray = matrix.text();
String[] floatStrings = getItemsInString(floatStringArray);
if (floatStrings.length != 16) {
throw new ColladaParseException("Found float list of " + floatStrings.length + " instead of 16 for joint matrix sets for element " + jointNodeElement.id());
}
float[] matrixDataArray = new float[16];
for (int i = 0; i < floatStrings.length; i++) {
String floatString = floatStrings[i];
matrixDataArray[i] = Float.parseFloat(floatString);
}
Quat4f[] jointMatrix = quad4fArrayFromFloat16ArrayData(matrixDataArray);
Vector3f[] positionVectorArray = positionFromFloat16ArrayData(matrixDataArray);
md5Joint.position = positionVectorArray[0];
md5Joint.orientation = jointMatrix[0];
} else if (1 < matrixSet.size()) {
throw new ColladaParseException("Found " + matrixSet.size() + " joint matrix sets for element " + jointNodeElement.id());
// } else {
// TODO: Might be translation, rotation pairs instead of a matrix
// Or might be an unused joint node
// throw new ColladaParseException("Found " + matrixSet.size() + " joint matrix sets for element " + jointNodeElement.id());
}
// boolean isJointNode;
// String jointType = jointNodeElement.attr("type");
// if ("JOINT".equals(jointType)) {
// isJointNode = true;
// } else if ("NODE".equals(jointType)) {
// isJointNode = false;
// } else {
// throw new ColladaParseException("Found unknown node type of " + jointType + " for joint matrix sets" + errorLocation);
// }
md5Joint.element = jointNodeElement;
md5Joint.name = jointNodeElement.id();
md5Joint.childList = new ArrayList<>();
return md5Joint;
}
use of org.terasology.math.geom.Vector3f in project Terasology by MovingBlocks.
the class ColladaLoader method positionFromFloat16ArrayData.
private Vector3f[] positionFromFloat16ArrayData(float[] inverseBindMatrixArray) {
Vector3f[] translationVectorArray = new Vector3f[inverseBindMatrixArray.length / 16];
for (int i = 0; i < inverseBindMatrixArray.length / 16; ++i) {
int offset = i * 16;
Matrix4f matrix4f = new Matrix4f(Arrays.copyOfRange(inverseBindMatrixArray, offset, offset + 16));
Vector3f translationVector = matrix4f.getTranslation();
translationVectorArray[i] = translationVector;
}
return translationVectorArray;
}
use of org.terasology.math.geom.Vector3f in project Terasology by MovingBlocks.
the class ColladaLoader method parseSkeletalMeshData.
protected void parseSkeletalMeshData(Element rootElement) throws ColladaParseException {
List<MD5Joint> md5JointList = new ArrayList<>();
List<MD5Mesh> md5MeshList = new ArrayList<>();
skeletonBuilder = new SkeletalMeshDataBuilder();
// TODO: we need a better way to construct the parent/child nodes, especially for the non-joint nodes
// MAYBE we can construct all of the nodes up-front, and then fill in the missing data for the ones of type JOINT later
// And only keep the MD5 nodes in the final list if they are used?
Map<String, MD5Joint> md5JointBySidMap = new HashMap<>();
MD5Joint parentMD5Joint = null;
ElementSet nodeParentSet = rootElement.find("library_visual_scenes", "visual_scene", "node");
for (Element element : nodeParentSet) {
createMd5JointForElementAndParent(md5JointBySidMap, element, parentMD5Joint);
}
ElementSet controllerSet = rootElement.find("library_controllers", "controller");
for (Element controller : controllerSet) {
ElementSet skinSet = controller.find("skin");
if (1 != skinSet.size()) {
throw new ColladaParseException("Found " + skinSet.size() + " skin sets for controller id=" + controller.id() + " name=" + controller.name());
}
Element skin = skinSet.first();
ElementSet jointsSet = skin.find("joints");
if (1 != jointsSet.size()) {
throw new ColladaParseException("Found " + jointsSet.size() + " joints sets for controller id=" + controller.id() + " name=" + controller.name());
}
Element joints = jointsSet.first();
ElementSet vertexWeightsSet = skin.find("vertex_weights");
if (1 != vertexWeightsSet.size()) {
throw new ColladaParseException("Found " + vertexWeightsSet.size() + " vertex weights sets for controller id=" + controller.id() + " name=" + controller.name());
}
Element vertexWeights = vertexWeightsSet.first();
String vertexWeightsCountString = vertexWeights.attr("count");
int vertexWeightsCount = Integer.parseInt(vertexWeightsCountString);
String[] jointNameArray = null;
float[] inverseBindMatrixArray;
Quat4f[] rotationArray;
ElementSet jointsInputSet = joints.find("input");
List<Input> inputList = parseInputs(jointsInputSet);
for (Input jointsInput : inputList) {
if ("JOINT".equals(jointsInput.semantic)) {
Element jointNameSourceElement = skin.select(jointsInput.sourceName);
Source jointNameSource = parseSource(jointNameSourceElement);
jointNameArray = jointNameSource.nameValues;
}
if ("INV_BIND_MATRIX".equals(jointsInput.semantic)) {
Element jointMatrixSourceElement = skin.select(jointsInput.sourceName);
Source jointMatrixSource = parseSource(jointMatrixSourceElement);
inverseBindMatrixArray = jointMatrixSource.floatValues;
rotationArray = quad4fArrayFromFloat16ArrayData(inverseBindMatrixArray);
}
}
List<MD5Weight> md5WeightList = Lists.newArrayList();
float[] weightsArray = null;
ElementSet vertexWeightsInputSet = vertexWeights.find("input");
List<Input> vertexWeightsInputList = parseInputs(vertexWeightsInputSet);
// TODO: for now, assume the offsets will always perfectly match the sorted-by-offset list indexes
Collections.sort(vertexWeightsInputList, (i1, i2) -> i1.offset - i2.offset);
for (int i = 0; i < vertexWeightsInputList.size(); i++) {
Input input = vertexWeightsInputList.get(i);
if (input.offset != i) {
throw new ColladaParseException("vertex weights input list offset does not match list index for vertex weights input " + input + " for controller id=" + controller.id() + " name=" + controller.name());
}
}
for (Input vertexWeightsInput : vertexWeightsInputList) {
// }
if ("WEIGHT".equals(vertexWeightsInput.semantic)) {
Element jointMatrixSourceElement = skin.select(vertexWeightsInput.sourceName);
Source weightsArraySource = parseSource(jointMatrixSourceElement);
weightsArray = weightsArraySource.floatValues;
}
}
ElementSet vertexWeightsVCountDataSet = vertexWeights.find("vcount");
if (1 != vertexWeightsVCountDataSet.size()) {
throw new ColladaParseException("Found " + vertexWeightsVCountDataSet.size() + " vertex weights vcount sets for controller id=" + controller.id() + " name=" + controller.name());
}
Element vertexWeightsVCountData = vertexWeightsVCountDataSet.first();
String vertexWeightsVCountString = vertexWeightsVCountData.text();
String[] vertexWeightsVCountStrings = getItemsInString(vertexWeightsVCountString);
if (vertexWeightsVCountStrings.length != vertexWeightsCount) {
throw new ColladaParseException("Expected " + vertexWeightsCount + " but was " + vertexWeightsVCountStrings.length + " for controller id=" + controller.id() + " name=" + controller.name());
}
ElementSet vertexWeightsVDataSet = vertexWeights.find("v");
if (1 != vertexWeightsVDataSet.size()) {
throw new ColladaParseException("Found " + vertexWeightsVDataSet.size() + " vertex weights v sets for controller id=" + controller.id() + " name=" + controller.name());
}
Element vertexWeightsVData = vertexWeightsVDataSet.first();
String vertexWeightsVDataString = vertexWeightsVData.text();
String[] vertexWeightsVStrings = getItemsInString(vertexWeightsVDataString);
// if (vertexWeightsVStrings.length != (vertexWeightsCount * vertexWeightsInputList.size())) {
// throw new ColladaParseException("Expected " + vertexWeightsCount + " * input count of "
// + vertexWeightsInputList.size() + " but was "
// + vertexWeightsVStrings.length + " for controller id=" + controller.id() + " name=" + controller.name());
// }
// TODO: these aren't actually needed once we are populating MD5Weight records
String[] vertexWeightsJointNameArray = new String[vertexWeightsCount];
float[] vertexWeightsArray = new float[vertexWeightsCount];
int vertexWeightsVDataIndex = -1;
for (int vertexWeightsIndex = 0; vertexWeightsIndex < vertexWeightsCount; vertexWeightsIndex++) {
MD5Weight md5Weight = new MD5Weight();
Vector3f vertexPosition = new Vector3f();
vertexPosition.x = vertices.get(3 * vertexWeightsIndex + 0);
vertexPosition.y = vertices.get(3 * vertexWeightsIndex + 1);
vertexPosition.z = vertices.get(3 * vertexWeightsIndex + 2);
md5Weight.position = vertexPosition;
md5WeightList.add(md5Weight);
String vCountString = vertexWeightsVCountStrings[vertexWeightsIndex];
int vCount = Integer.parseInt(vCountString);
for (int vCountIndex = 0; vCountIndex < vCount; vCountIndex++) {
for (Input vertexWeightsInput : vertexWeightsInputList) {
// vCount varies each time
++vertexWeightsVDataIndex;
String indexString = vertexWeightsVStrings[vertexWeightsVDataIndex];
int index = Integer.parseInt(indexString);
if (-1 == index) {
throw new ColladaParseException("We do not support indexing into the bind shape yet");
}
if ("JOINT".equals(vertexWeightsInput.semantic)) {
md5Weight.jointIndex = index;
vertexWeightsJointNameArray[vertexWeightsIndex] = jointNameArray[index];
// logger.debug(String.valueOf(vertexWeightsVDataIndex) + ": " + "jointName=" + vertexWeightsJointNameArray[vertexWeightsIndex]);
} else if ("WEIGHT".equals(vertexWeightsInput.semantic)) {
md5Weight.bias = weightsArray[index];
vertexWeightsArray[vertexWeightsIndex] = weightsArray[index];
// logger.debug(String.valueOf(vertexWeightsVDataIndex) + ": " + "weight=" + vertexWeightsArray[vertexWeightsIndex]);
} else {
throw new ColladaParseException("Found unexpected vertex weights Input semantic " + vertexWeightsInput.semantic + " for controller id=" + controller.id() + " name=" + controller.name());
}
}
}
}
MD5Mesh md5Mesh = new MD5Mesh();
md5Mesh.weightList = md5WeightList;
// Find a node with sid="joint-name"
for (String jointName : jointNameArray) {
MD5Joint md5Joint = md5JointBySidMap.get(jointName);
if (null == md5Joint) {
throw new ColladaParseException("Cannot find joint node for node sid value for joint " + jointName + " in nodes for library_visual_scenes");
}
md5JointList.add(md5Joint);
}
}
Deque<MD5Joint> jointsToProcess = new LinkedList<>(md5JointList);
while (!jointsToProcess.isEmpty()) {
MD5Joint joint = jointsToProcess.pop();
MD5Joint parentJoint = joint.parent;
if (null != parentJoint) {
if (!md5JointList.contains(parentJoint)) {
md5JointList.add(parentJoint);
jointsToProcess.push(parentJoint);
}
}
}
for (MD5Joint joint : md5JointList) {
if (null == joint.position) {
throw new ColladaParseException("no joint position for joint with element id " + joint.element.id());
}
if (null == joint.orientation) {
throw new ColladaParseException("no joint orientation for joint with element id " + joint.element.id());
}
// index argument is not used for anything currently, so we'll just set it to -1
joint.bone = new Bone(-1, joint.name, joint.position, joint.orientation);
}
for (MD5Joint joint : md5JointList) {
// We can probably skip unused end nodes
joint.childList.stream().filter(childJoint -> childJoint.bone != null).forEach(childJoint -> joint.bone.addChild(childJoint.bone));
}
for (MD5Joint joint : md5JointList) {
skeletonBuilder.addBone(joint.bone);
}
if (md5MeshList.size() > 0) {
// TODO: Support multiple mesh somehow?
MD5Mesh mesh = md5MeshList.get(0);
for (MD5Weight weight : mesh.weightList) {
skeletonBuilder.addWeight(new BoneWeight(weight.position, weight.bias, weight.jointIndex));
}
List<Vector2f> uvs = Lists.newArrayList();
TIntList vertexStartWeight = new TIntArrayList(vertices.size() / 3);
TIntList vertexWeightCount = new TIntArrayList(vertices.size() / 3);
for (int i = 0; i < vertices.size() / 3; i++) {
vertexStartWeight.add(i);
vertexWeightCount.add(1);
}
skeletonBuilder.setVertexWeights(vertexStartWeight, vertexWeightCount);
for (int i = 0; i < normals.size() / 2; i++) {
uvs.add(new Vector2f(normals.get(i * 2 + 0), normals.get(i * 2 + 1)));
}
skeletonBuilder.setUvs(uvs);
skeletonBuilder.setIndices(indices);
}
// Now if you have come this far, you should be able to read the geometry data,
// as well as the skeleton and skinning data from COLLADA documents. And you should be able to draw
// the model in raw triangles, as well as draw the skeleton. Although I haven't discussed how you
// can accumulate the world matrices for each joint and then draw in world coordinates for debugging
// purposes but I think I gave a hint that we have to multiply parent joint's world matrix with current
// joint's Joint matrix and save the result in current joint's world matrix. We have to start this
// process from the root bone. So that we don't have dirty world matrices from parents, and the root
// Joint's world matrix becomes the Joint matrix, since root don't have any parent. If you are also
// reading the COLLADA specification version 1.5 you can find the skinning equation so you should also
// be able to put the model in bind shape. How can we animate this model is still not covered and will
// be covered in the following sections.
// THIS IS THE TARGET GOAL:
/*
Bones
- String name
- int index
- V3 object position
- Quat4f obj rotation
- parent / children bones
SkeletalMesh
// This part may not be required if we can implement SkeletalMeshData methods without it
//////////////
public SkeletalMeshData(List<Bone> bones, List<BoneWeight> weights,
List<Vector2f> uvs,
TIntList vertexStartWeights, TIntList vertexWeightCounts,
TIntList indices) {
BoneWeight
Vector3f position = new Vector3f();
float bias;
int boneIndex;
Vector3f normal = new Vector3f();
//////////////
public Collection<Bone> getBones();
public Bone getRootBone();
public Bone getBone(String name);
public int getVertexCount();
public List<Vector3f> getBindPoseVertexPositions();
public List<Vector3f> getVertexPositions(List<Vector3f> bonePositions, List<Quat4f> boneRotations);
public List<Vector3f> getBindPoseVertexNormals();
public List<Vector3f> getVertexNormals(List<Vector3f> bonePositions, List<Quat4f> boneRotations);
public TIntList getIndices();
public List<Vector2f> getUVs();
*/
}
use of org.terasology.math.geom.Vector3f in project Terasology by MovingBlocks.
the class AlphaRejectBlocksNode method process.
/**
* Renders the world's semi-transparent blocks, i.e. tree foliage and terrain plants.
* Does not render fully opaque blocks, i.e. the typical landscape blocks.
*
* Takes advantage of the two methods
*
* - WorldRenderer.increaseTrianglesCount(int)
* - WorldRenderer.increaseNotReadyChunkCount(int)
*
* to publish some statistics over its own activity.
*/
@Override
public void process() {
PerformanceMonitor.startActivity("rendering/" + getUri());
chunkMaterial.activateFeature(ShaderProgramFeature.FEATURE_ALPHA_REJECT);
// Common Shader Parameters
chunkMaterial.setFloat("time", worldProvider.getTime().getDays(), true);
// Specific Shader Parameters
// TODO: This is necessary right now because activateFeature removes all material parameters.
// TODO: Remove this explicit binding once we get rid of activateFeature, or find a way to retain parameters through it.
chunkMaterial.setInt("textureAtlas", 0, true);
chunkMaterial.setInt("textureEffects", 1, true);
chunkMaterial.setInt("textureLava", 2, true);
if (normalMappingIsEnabled) {
chunkMaterial.setInt("textureAtlasNormal", 3, true);
if (parallaxMappingIsEnabled) {
chunkMaterial.setInt("textureAtlasHeight", 4, true);
chunkMaterial.setFloat4("parallaxProperties", parallaxBias, parallaxScale, 0.0f, 0.0f, true);
}
}
chunkMaterial.setFloat("clip", 0.0f, true);
// Actual Node Processing
final Vector3f cameraPosition = activeCamera.getPosition();
int numberOfRenderedTriangles = 0;
int numberOfChunksThatAreNotReadyYet = 0;
while (renderQueues.chunksAlphaReject.size() > 0) {
RenderableChunk chunk = renderQueues.chunksAlphaReject.poll();
if (chunk.hasMesh()) {
final ChunkMesh chunkMesh = chunk.getMesh();
final Vector3f chunkPosition = chunk.getPosition().toVector3f();
chunkMesh.updateMaterial(chunkMaterial, chunkPosition, chunk.isAnimated());
numberOfRenderedTriangles += chunkMesh.render(ALPHA_REJECT, chunkPosition, cameraPosition);
} else {
// TODO: verify - should we count them only in ChunksOpaqueNode?
numberOfChunksThatAreNotReadyYet++;
}
}
worldRenderer.increaseTrianglesCount(numberOfRenderedTriangles);
worldRenderer.increaseNotReadyChunkCount(numberOfChunksThatAreNotReadyYet);
chunkMaterial.deactivateFeature(ShaderProgramFeature.FEATURE_ALPHA_REJECT);
PerformanceMonitor.endActivity();
}
use of org.terasology.math.geom.Vector3f in project Terasology by MovingBlocks.
the class AmbientOcclusionNode method generateNoiseTexture.
private Texture generateNoiseTexture() {
Optional<Texture> texture = Assets.getTexture("engine:ssaoNoise");
if (!texture.isPresent()) {
ByteBuffer noiseValues = BufferUtils.createByteBuffer(SSAO_NOISE_SIZE * SSAO_NOISE_SIZE * 4);
for (int i = 0; i < SSAO_NOISE_SIZE * SSAO_NOISE_SIZE; ++i) {
Vector3f noiseVector = new Vector3f(randomGenerator.nextFloat(-1.0f, 1.0f), randomGenerator.nextFloat(-1.0f, 1.0f), 0.0f);
noiseVector.normalize();
noiseValues.put((byte) ((noiseVector.x * 0.5 + 0.5) * 255.0f));
noiseValues.put((byte) ((noiseVector.y * 0.5 + 0.5) * 255.0f));
noiseValues.put((byte) ((noiseVector.z * 0.5 + 0.5) * 255.0f));
noiseValues.put((byte) 0x0);
}
noiseValues.flip();
return Assets.generateAsset(new ResourceUrn("engine:ssaoNoise"), new TextureData(SSAO_NOISE_SIZE, SSAO_NOISE_SIZE, new ByteBuffer[] { noiseValues }, Texture.WrapMode.REPEAT, Texture.FilterMode.NEAREST), Texture.class);
}
return texture.get();
}
Aggregations