mirror of
https://github.com/ViaVersion/ViaAprilFools.git
synced 2025-03-12 13:29:52 +01:00
62 lines
2.2 KiB
Java
62 lines
2.2 KiB
Java
/*
|
|
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
|
|
* Copyright (C) 2021-2024 RK_01/RaphiMC and contributors
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package net.raphimc.viaaprilfools;
|
|
|
|
import com.viaversion.viaversion.api.Via;
|
|
import com.viaversion.viaversion.api.ViaManager;
|
|
import com.viaversion.viaversion.api.protocol.version.VersionProvider;
|
|
import net.fabricmc.loader.api.FabricLoader;
|
|
import net.raphimc.viaaprilfools.api.VAFServerVersionProvider;
|
|
import net.raphimc.viaaprilfools.fabric.util.LoggerWrapper;
|
|
import net.raphimc.viaaprilfools.platform.ViaAprilFoolsPlatform;
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import java.io.File;
|
|
import java.nio.file.Path;
|
|
import java.util.logging.Logger;
|
|
|
|
public class ViaFabricAddon implements ViaAprilFoolsPlatform, Runnable {
|
|
|
|
private final Logger logger = new LoggerWrapper(LogManager.getLogger("ViaAprilFools"));
|
|
private File configDir;
|
|
|
|
@Override
|
|
public void run() {
|
|
final Path configDirPath = FabricLoader.getInstance().getConfigDir().resolve("ViaAprilFools");
|
|
this.configDir = configDirPath.toFile();
|
|
this.init(new File(getDataFolder(), "config.yml"));
|
|
|
|
final ViaManager manager = Via.getManager();
|
|
manager.addPostEnableListener(() -> {
|
|
final VersionProvider delegate = manager.getProviders().get(VersionProvider.class);
|
|
manager.getProviders().use(VersionProvider.class, new VAFServerVersionProvider(delegate));
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public File getDataFolder() {
|
|
return this.configDir;
|
|
}
|
|
|
|
@Override
|
|
public Logger getLogger() {
|
|
return this.logger;
|
|
}
|
|
|
|
}
|