2018-09-17 10:07:32 +03:00
|
|
|
package ru.gravit.launchserver.texture;
|
|
|
|
|
2018-12-20 18:45:01 +03:00
|
|
|
import ru.gravit.launcher.profiles.Texture;
|
|
|
|
import ru.gravit.launcher.serialize.config.ConfigObject;
|
|
|
|
import ru.gravit.launcher.serialize.config.entry.BlockConfigEntry;
|
|
|
|
import ru.gravit.utils.helper.VerifyHelper;
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Objects;
|
|
|
|
import java.util.UUID;
|
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
|
|
|
|
public abstract class TextureProvider extends ConfigObject implements AutoCloseable {
|
|
|
|
private static final Map<String, Adapter<TextureProvider>> TEXTURE_PROVIDERS = new ConcurrentHashMap<>(2);
|
|
|
|
private static boolean registredProv = false;
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public static TextureProvider newProvider(String name, BlockConfigEntry block) {
|
|
|
|
VerifyHelper.verifyIDName(name);
|
|
|
|
Adapter<TextureProvider> authHandlerAdapter = VerifyHelper.getMapValue(TEXTURE_PROVIDERS, name,
|
|
|
|
String.format("Unknown texture provider: '%s'", name));
|
|
|
|
return authHandlerAdapter.convert(block);
|
|
|
|
}
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public static void registerProvider(String name, Adapter<TextureProvider> adapter) {
|
|
|
|
VerifyHelper.putIfAbsent(TEXTURE_PROVIDERS, name, Objects.requireNonNull(adapter, "adapter"),
|
|
|
|
String.format("Texture provider has been already registered: '%s'", name));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void registerProviders() {
|
|
|
|
if (!registredProv) {
|
|
|
|
registerProvider("null", NullTextureProvider::new);
|
|
|
|
registerProvider("void", VoidTextureProvider::new);
|
|
|
|
|
|
|
|
// Auth providers that doesn't do nothing :D
|
|
|
|
registerProvider("request", RequestTextureProvider::new);
|
|
|
|
registredProv = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
protected TextureProvider(BlockConfigEntry block) {
|
|
|
|
super(block);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public abstract void close() throws IOException;
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public abstract Texture getCloakTexture(UUID uuid, String username, String client) throws IOException;
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public abstract Texture getSkinTexture(UUID uuid, String username, String client) throws IOException;
|
|
|
|
}
|