예제 #1
0
  // <TYPE> <NAME> [ "(" <FFBINDING> ")" ] [-LINEAR] [ ":" <DEFAULTVAL> ]
  private void readParam(String statement) throws IOException {
    String name;
    String defaultVal = null;
    ColorSpace colorSpace = null;

    String[] split = statement.split(":");

    // Parse default val
    if (split.length == 1) {
      // Doesn't contain default value
    } else {
      if (split.length != 2) {
        throw new IOException("Parameter statement syntax incorrect");
      }
      statement = split[0].trim();
      defaultVal = split[1].trim();
    }

    if (statement.endsWith("-LINEAR")) {
      colorSpace = ColorSpace.Linear;
      statement = statement.substring(0, statement.length() - "-LINEAR".length());
    }

    // Parse ffbinding
    int startParen = statement.indexOf("(");
    if (startParen != -1) {
      // get content inside parentheses
      int endParen = statement.indexOf(")", startParen);
      String bindingStr = statement.substring(startParen + 1, endParen).trim();
      // don't care about bindingStr
      statement = statement.substring(0, startParen);
    }

    // Parse type + name
    split = statement.split(whitespacePattern);
    if (split.length != 2) {
      throw new IOException("Parameter statement syntax incorrect");
    }

    VarType type;
    if (split[0].equals("Color")) {
      type = VarType.Vector4;
    } else {
      type = VarType.valueOf(split[0]);
    }

    name = split[1];

    Object defaultValObj = null;
    if (defaultVal != null) {
      defaultValObj = readValue(type, defaultVal);
    }
    if (type.isTextureType()) {
      materialDef.addMaterialParamTexture(type, name, colorSpace);
    } else {
      materialDef.addMaterialParam(type, name, defaultValObj);
    }
  }
예제 #2
0
파일: Material.java 프로젝트: pilsnils/LEGO
 /**
  * Check if setting the parameter given the type and name is allowed.
  *
  * @param type The type that the "set" function is designed to set
  * @param name The name of the parameter
  */
 private void checkSetParam(VarType type, String name) {
   MatParam paramDef = def.getMaterialParam(name);
   if (paramDef == null) {
     throw new IllegalArgumentException("Material parameter is not defined: " + name);
   }
   if (type != null && paramDef.getVarType() != type) {
     logger.log(
         Level.WARNING,
         "Material parameter being set: {0} with "
             + "type {1} doesn''t match definition types {2}",
         new Object[] {name, type.name(), paramDef.getVarType()});
   }
 }
예제 #3
0
 private Object readValue(final VarType type, final String value) throws IOException {
   if (type.isTextureType()) {
     return parseTextureType(type, value);
   } else {
     String[] split = value.trim().split(whitespacePattern);
     switch (type) {
       case Float:
         if (split.length != 1) {
           throw new IOException("Float value parameter must have 1 entry: " + value);
         }
         return Float.parseFloat(split[0]);
       case Vector2:
         if (split.length != 2) {
           throw new IOException("Vector2 value parameter must have 2 entries: " + value);
         }
         return new Vector2f(Float.parseFloat(split[0]), Float.parseFloat(split[1]));
       case Vector3:
         if (split.length != 3) {
           throw new IOException("Vector3 value parameter must have 3 entries: " + value);
         }
         return new Vector3f(
             Float.parseFloat(split[0]), Float.parseFloat(split[1]), Float.parseFloat(split[2]));
       case Vector4:
         if (split.length != 4) {
           throw new IOException("Vector4 value parameter must have 4 entries: " + value);
         }
         return new ColorRGBA(
             Float.parseFloat(split[0]),
             Float.parseFloat(split[1]),
             Float.parseFloat(split[2]),
             Float.parseFloat(split[3]));
       case Int:
         if (split.length != 1) {
           throw new IOException("Int value parameter must have 1 entry: " + value);
         }
         return Integer.parseInt(split[0]);
       case Boolean:
         if (split.length != 1) {
           throw new IOException("Boolean value parameter must have 1 entry: " + value);
         }
         return Boolean.parseBoolean(split[0]);
       default:
         throw new UnsupportedOperationException("Unknown type: " + type);
     }
   }
 }
예제 #4
0
파일: Material.java 프로젝트: pilsnils/LEGO
  /**
   * Pass a parameter to the material shader.
   *
   * @param name the name of the parameter defined in the material definition (j3md)
   * @param type the type of the parameter {@link VarType}
   * @param value the value of the parameter
   */
  public void setParam(String name, VarType type, Object value) {
    checkSetParam(type, name);

    if (type.isTextureType()) {
      setTextureParam(name, type, (Texture) value);
    } else {
      MatParam val = getParam(name);
      if (val == null) {
        MatParam paramDef = def.getMaterialParam(name);
        paramValues.put(name, new MatParam(type, name, value, paramDef.getFixedFuncBinding()));
      } else {
        val.setValue(value);
      }

      if (technique != null) {
        technique.notifyParamChanged(name, type, value);
      }
    }
  }