mirror of
https://github.com/ViaVersion/ViaForge.git
synced 2024-11-22 12:05:23 +01:00
Updated Via* (23w16a)
This commit is contained in:
parent
98efda4ec5
commit
5c76a3745e
@ -5,16 +5,16 @@ org.gradle.daemon=false
|
|||||||
# forge
|
# forge
|
||||||
mod_id=viaforge
|
mod_id=viaforge
|
||||||
mod_name=ViaForge
|
mod_name=ViaForge
|
||||||
mod_version=3.1.0
|
mod_version=3.1.1
|
||||||
mod_base_package=de.enzaxd
|
mod_base_package=de.florianmichael
|
||||||
|
|
||||||
# mixin
|
# mixin
|
||||||
mixin_version=0.8.3
|
mixin_version=0.8.3
|
||||||
|
|
||||||
# via-version
|
# via-version
|
||||||
vialoadingbase_version=6dad0a2561
|
vialoadingbase_version=ff86e681d7
|
||||||
viaversion_version=4.6.2-SNAPSHOT
|
viaversion_version=4.7.0-23w16a-SNAPSHOT
|
||||||
viabackwards_version=4.6.2-SNAPSHOT
|
viabackwards_version=4.7.0-23w16a-SNAPSHOT
|
||||||
viarewind_version=2.0.4-SNAPSHOT
|
viarewind_version=2.0.4-SNAPSHOT
|
||||||
snake_yml_version=2.0
|
snake_yml_version=2.0
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ buildscript {
|
|||||||
maven { url = "https://maven.minecraftforge.net/" }
|
maven { url = "https://maven.minecraftforge.net/" }
|
||||||
maven { url = "https://repo.spongepowered.org/repository/maven-public/" }
|
maven { url = "https://repo.spongepowered.org/repository/maven-public/" }
|
||||||
maven { url = "https://jitpack.io/" }
|
maven { url = "https://jitpack.io/" }
|
||||||
maven { url 'https://files.minecraftforge.net/maven' }
|
maven { url = "https://files.minecraftforge.net/maven" }
|
||||||
maven { url 'https://plugins.gradle.org/m2' }
|
maven { url = "https://plugins.gradle.org/m2" }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@ -65,7 +65,7 @@ minecraft {
|
|||||||
}
|
}
|
||||||
|
|
||||||
sourceSets.main.resources {
|
sourceSets.main.resources {
|
||||||
srcDir 'src/generated/resources'
|
srcDir "src/generated/resources"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -85,7 +85,6 @@ configurations {
|
|||||||
implementation.extendsFrom(include)
|
implementation.extendsFrom(include)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ViaProtocolHack READ-ME
|
|
||||||
def viaLibs = [
|
def viaLibs = [
|
||||||
"com.viaversion:viaversion:${project.viaversion_version}",
|
"com.viaversion:viaversion:${project.viaversion_version}",
|
||||||
"com.viaversion:viabackwards:${project.viabackwards_version}",
|
"com.viaversion:viabackwards:${project.viabackwards_version}",
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge;
|
package de.florianmichael.viaforge;
|
||||||
|
|
||||||
import de.florianmichael.vialoadingbase.ViaLoadingBase;
|
import de.florianmichael.vialoadingbase.ViaLoadingBase;
|
||||||
|
@ -0,0 +1,47 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge;
|
||||||
|
|
||||||
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
|
import de.florianmichael.vialoadingbase.netty.VLBPipeline;
|
||||||
|
|
||||||
|
public class ViaForgeVLBPipeline extends VLBPipeline {
|
||||||
|
public ViaForgeVLBPipeline(UserConnection info) {
|
||||||
|
super(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getDecoderHandlerName() {
|
||||||
|
return "decoder";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getEncoderHandlerName() {
|
||||||
|
return "encoder";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getDecompressionHandlerName() {
|
||||||
|
return "decompress";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getCompressionHandlerName() {
|
||||||
|
return "compress";
|
||||||
|
}
|
||||||
|
}
|
@ -1,9 +1,25 @@
|
|||||||
package de.florianmichael.viaforge;
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge.gui;
|
||||||
|
|
||||||
import com.mojang.realmsclient.gui.ChatFormatting;
|
import com.mojang.realmsclient.gui.ChatFormatting;
|
||||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||||
import de.florianmichael.vialoadingbase.ViaLoadingBase;
|
import de.florianmichael.vialoadingbase.ViaLoadingBase;
|
||||||
import de.florianmichael.vialoadingbase.platform.InternalProtocolList;
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.client.gui.GuiButton;
|
import net.minecraft.client.gui.GuiButton;
|
||||||
import net.minecraft.client.gui.GuiScreen;
|
import net.minecraft.client.gui.GuiScreen;
|
||||||
@ -64,12 +80,12 @@ public class GuiProtocolSelector extends GuiScreen {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected int getSize() {
|
protected int getSize() {
|
||||||
return InternalProtocolList.getProtocols().size();
|
return ViaLoadingBase.getProtocols().size();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void elementClicked(int i, boolean b, int i1, int i2) {
|
protected void elementClicked(int i, boolean b, int i1, int i2) {
|
||||||
ViaLoadingBase.getClassWrapper().reload(InternalProtocolList.getProtocols().get(i));
|
ViaLoadingBase.getInstance().reload(ViaLoadingBase.getProtocols().get(i));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -84,9 +100,9 @@ public class GuiProtocolSelector extends GuiScreen {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void drawSlot(int i, int i1, int i2, int i3, int i4, int i5, float v) {
|
protected void drawSlot(int i, int i1, int i2, int i3, int i4, int i5, float v) {
|
||||||
final ProtocolVersion version = InternalProtocolList.getProtocols().get(i);
|
final ProtocolVersion version = ViaLoadingBase.getProtocols().get(i);
|
||||||
|
|
||||||
drawCenteredString(mc.fontRenderer,(ViaLoadingBase.getClassWrapper().getTargetVersion().getVersion() == version.getVersion() ? ChatFormatting.GREEN.toString() : ChatFormatting.DARK_RED.toString()) + version.getName(), width / 2, i2, -1);
|
drawCenteredString(mc.fontRenderer,(ViaLoadingBase.getInstance().getTargetVersion().getVersion() == version.getVersion() ? ChatFormatting.GREEN.toString() : ChatFormatting.DARK_RED.toString()) + version.getName(), width / 2, i2, -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,3 +1,20 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge.mixin;
|
package de.florianmichael.viaforge.mixin;
|
||||||
|
|
||||||
import net.minecraftforge.fml.relauncher.IFMLLoadingPlugin;
|
import net.minecraftforge.fml.relauncher.IFMLLoadingPlugin;
|
||||||
|
@ -1,6 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.GuiProtocolSelector;
|
import de.florianmichael.viaforge.gui.GuiProtocolSelector;
|
||||||
import net.minecraft.client.gui.*;
|
import net.minecraft.client.gui.*;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
@ -1,6 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.GuiProtocolSelector;
|
import de.florianmichael.viaforge.gui.GuiProtocolSelector;
|
||||||
import net.minecraft.client.gui.GuiButton;
|
import net.minecraft.client.gui.GuiButton;
|
||||||
import net.minecraft.client.gui.GuiMultiplayer;
|
import net.minecraft.client.gui.GuiMultiplayer;
|
||||||
import net.minecraft.client.gui.GuiScreen;
|
import net.minecraft.client.gui.GuiScreen;
|
||||||
|
@ -1,6 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl;
|
||||||
|
|
||||||
import de.florianmichael.viaforge.GuiProtocolSelector;
|
import de.florianmichael.viaforge.gui.GuiProtocolSelector;
|
||||||
import net.minecraft.client.gui.GuiButton;
|
import net.minecraft.client.gui.GuiButton;
|
||||||
import net.minecraft.client.gui.GuiScreen;
|
import net.minecraft.client.gui.GuiScreen;
|
||||||
import net.minecraft.client.gui.GuiScreenServerList;
|
import net.minecraft.client.gui.GuiScreenServerList;
|
||||||
|
@ -1,6 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl;
|
||||||
|
|
||||||
import de.florianmichael.vialoadingbase.event.PipelineReorderEvent;
|
import de.florianmichael.vialoadingbase.netty.event.CompressionReorderEvent;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import net.minecraft.network.NetworkManager;
|
import net.minecraft.network.NetworkManager;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
@ -16,6 +33,6 @@ public class MixinNetworkManager {
|
|||||||
|
|
||||||
@Inject(method = "setCompressionThreshold", at = @At("RETURN"))
|
@Inject(method = "setCompressionThreshold", at = @At("RETURN"))
|
||||||
public void reOrderPipeline(int p_setCompressionTreshold_1_, CallbackInfo ci) {
|
public void reOrderPipeline(int p_setCompressionTreshold_1_, CallbackInfo ci) {
|
||||||
channel.pipeline().fireUserEventTriggered(new PipelineReorderEvent());
|
channel.pipeline().fireUserEventTriggered(new CompressionReorderEvent());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of ViaForge - https://github.com/FlorianMichael/ViaForge
|
||||||
|
* Copyright (C) 2021-2023 FlorianMichael/EnZaXD 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 de.florianmichael.viaforge.mixin.impl;
|
package de.florianmichael.viaforge.mixin.impl;
|
||||||
|
|
||||||
import com.viaversion.viaversion.api.connection.UserConnection;
|
import com.viaversion.viaversion.api.connection.UserConnection;
|
||||||
import com.viaversion.viaversion.connection.UserConnectionImpl;
|
import com.viaversion.viaversion.connection.UserConnectionImpl;
|
||||||
import com.viaversion.viaversion.protocol.ProtocolPipelineImpl;
|
import com.viaversion.viaversion.protocol.ProtocolPipelineImpl;
|
||||||
|
import de.florianmichael.viaforge.ViaForgeVLBPipeline;
|
||||||
import de.florianmichael.vialoadingbase.ViaLoadingBase;
|
import de.florianmichael.vialoadingbase.ViaLoadingBase;
|
||||||
import de.florianmichael.vialoadingbase.netty.NettyConstants;
|
|
||||||
import de.florianmichael.vialoadingbase.netty.VLBViaDecodeHandler;
|
|
||||||
import de.florianmichael.vialoadingbase.netty.VLBViaEncodeHandler;
|
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.socket.SocketChannel;
|
import io.netty.channel.socket.SocketChannel;
|
||||||
import net.minecraft.realms.RealmsSharedConstants;
|
import net.minecraft.realms.RealmsSharedConstants;
|
||||||
@ -20,14 +35,11 @@ public class MixinNetworkManagerSub5 {
|
|||||||
|
|
||||||
@Inject(method = "initChannel", at = @At(value = "TAIL"), remap = false)
|
@Inject(method = "initChannel", at = @At(value = "TAIL"), remap = false)
|
||||||
private void onInitChannel(Channel channel, CallbackInfo ci) {
|
private void onInitChannel(Channel channel, CallbackInfo ci) {
|
||||||
if (channel instanceof SocketChannel && ViaLoadingBase.getClassWrapper().getTargetVersion().getVersion() != RealmsSharedConstants.NETWORK_PROTOCOL_VERSION) {
|
if (channel instanceof SocketChannel && ViaLoadingBase.getInstance().getTargetVersion().getVersion() != RealmsSharedConstants.NETWORK_PROTOCOL_VERSION) {
|
||||||
|
final UserConnection user = new UserConnectionImpl(channel, true);
|
||||||
UserConnection user = new UserConnectionImpl(channel, true);
|
|
||||||
new ProtocolPipelineImpl(user);
|
new ProtocolPipelineImpl(user);
|
||||||
|
|
||||||
channel.pipeline()
|
channel.pipeline().addLast(new ViaForgeVLBPipeline(user));
|
||||||
.addBefore("encoder", NettyConstants.HANDLER_ENCODER_NAME, new VLBViaEncodeHandler(user))
|
|
||||||
.addBefore("decoder", NettyConstants.HANDLER_DECODER_NAME, new VLBViaDecodeHandler(user));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user