mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-29 23:48:00 +01:00
45 lines
1 KiB
Java
45 lines
1 KiB
Java
package com.minelittlepony.model;
|
|
|
|
import com.minelittlepony.model.armour.PonyArmor;
|
|
import com.minelittlepony.model.capabilities.IModelWrapper;
|
|
import com.minelittlepony.pony.data.IPonyData;
|
|
|
|
/**
|
|
* Container class for the various models and their associated piece of armour.
|
|
*/
|
|
public class ModelWrapper implements IModelWrapper {
|
|
|
|
private final AbstractPonyModel body;
|
|
private final PonyArmor armor;
|
|
|
|
/**
|
|
* Created a new model wrapper to contain the given pony.
|
|
*/
|
|
public ModelWrapper(AbstractPonyModel model) {
|
|
body = model;
|
|
armor = model.createArmour();
|
|
armor.apply(model.metadata);
|
|
}
|
|
|
|
public AbstractPonyModel getBody() {
|
|
return body;
|
|
}
|
|
|
|
/**
|
|
* Returns the contained armour model.
|
|
* @return
|
|
*/
|
|
public PonyArmor getArmor() {
|
|
return armor;
|
|
}
|
|
|
|
public void apply(IPonyData meta) {
|
|
body.metadata = meta;
|
|
armor.apply(meta);
|
|
}
|
|
|
|
public void init() {
|
|
body.init(0, 0);
|
|
armor.init();
|
|
}
|
|
}
|