* Fix Material.hashCode/equals and RenderState.hashCode()

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9359 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
ShA..Rd 13 years ago
parent a625e8ae2a
commit 2339b7d2e5
  1. 22
      engine/src/core/com/jme3/material/Material.java
  2. 6
      engine/src/core/com/jme3/material/RenderState.java

@ -222,7 +222,7 @@ public class Material implements CloneableSmartAsset, Cloneable, Savable {
* @param otherObj the material to compare to this material * @param otherObj the material to compare to this material
* @return true if the materials are equal. * @return true if the materials are equal.
*/ */
public boolean contentEquals(Object otherObj) { public boolean equals(Object otherObj) {
if (!(otherObj instanceof Material)) { if (!(otherObj instanceof Material)) {
return false; return false;
} }
@ -286,15 +286,17 @@ public class Material implements CloneableSmartAsset, Cloneable, Savable {
return true; return true;
} }
// @Override /**
// public int hashCode() { * Works like {@link Object#hashCode() } except it may change together with the material as the material is mutable by definition.
// int hash = 7; */
// hash = 29 * hash + (this.def != null ? this.def.hashCode() : 0); public int dynamicHashCode() {
// hash = 29 * hash + (this.paramValues != null ? this.paramValues.hashCode() : 0); int hash = 7;
// hash = 29 * hash + (this.technique != null ? this.technique.getDef().getName().hashCode() : 0); hash = 29 * hash + (this.def != null ? this.def.hashCode() : 0);
// hash = 29 * hash + (this.additionalState != null ? this.additionalState.hashCode() : 0); hash = 29 * hash + (this.paramValues != null ? this.paramValues.hashCode() : 0);
// return hash; hash = 29 * hash + (this.technique != null ? this.technique.getDef().getName().hashCode() : 0);
// } hash = 29 * hash + (this.additionalState != null ? this.additionalState.dynamicHashCode() : 0);
return hash;
}
/** /**
* Returns the currently active technique. * Returns the currently active technique.

@ -1044,8 +1044,10 @@ public class RenderState implements Cloneable, Savable {
return applyWireFrame; return applyWireFrame;
} }
@Override /**
public int hashCode() { *
*/
public int dynamicHashCode() {
if (cachedHashCode == -1){ if (cachedHashCode == -1){
int hash = 7; int hash = 7;
hash = 79 * hash + (this.pointSprite ? 1 : 0); hash = 79 * hash + (this.pointSprite ? 1 : 0);

Loading…
Cancel
Save