Search in sources :

Example 1 with Type

use of com.bladecoder.engine.actions.Param.Type in project bladecoder-adventure-engine by bladecoder.

the class ActionUtils method getParams.

public static Param[] getParams(Action action) {
    List<Param> params = new ArrayList<>();
    Class<?> clazz = action.getClass();
    while (clazz != null && clazz != Object.class) {
        for (Field field : clazz.getDeclaredFields()) {
            final ActionProperty property = field.getAnnotation(ActionProperty.class);
            if (property == null) {
                continue;
            }
            final ActionPropertyDescription propertyDescription = field.getAnnotation(ActionPropertyDescription.class);
            // saved in the model.
            if (propertyDescription == null)
                continue;
            final String name = field.getName();
            Param.Type type = property.type();
            Enum<?>[] options = null;
            if (field.getType().isEnum()) {
                final boolean accessible = field.isAccessible();
                field.setAccessible(true);
                options = (Enum[]) field.getType().getEnumConstants();
                field.setAccessible(accessible);
                type = Param.Type.OPTION;
            } else if (property.type() == Param.Type.NOT_SET) {
                type = getType(field);
            }
            params.add(new Param(name, propertyDescription != null ? propertyDescription.value() : "", type, property.required(), property.defaultValue(), options));
        }
        clazz = clazz.getSuperclass();
    }
    return params.toArray(new Param[params.size()]);
}
Also used : ActionProperty(com.bladecoder.engine.actions.ActionProperty) ArrayList(java.util.ArrayList) Type(com.bladecoder.engine.actions.Param.Type) Field(java.lang.reflect.Field) ActionPropertyDescription(com.bladecoder.engine.actions.ActionPropertyDescription) Param(com.bladecoder.engine.actions.Param)

Aggregations

ActionProperty (com.bladecoder.engine.actions.ActionProperty)1 ActionPropertyDescription (com.bladecoder.engine.actions.ActionPropertyDescription)1 Param (com.bladecoder.engine.actions.Param)1 Type (com.bladecoder.engine.actions.Param.Type)1 Field (java.lang.reflect.Field)1 ArrayList (java.util.ArrayList)1