mirror of https://github.com/LOOHP/Limbo.git
101 lines
2.3 KiB
Java
101 lines
2.3 KiB
Java
/*
|
|
* This file is part of Limbo.
|
|
*
|
|
* Copyright (C) 2026. LoohpJames <jamesloohp@gmail.com>
|
|
* Copyright (C) 2026. Contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.loohp.limbo.events.status;
|
|
|
|
import com.loohp.limbo.events.Event;
|
|
import com.loohp.limbo.network.ClientConnection;
|
|
import net.kyori.adventure.text.Component;
|
|
|
|
import java.awt.image.BufferedImage;
|
|
|
|
public class StatusPingEvent extends Event {
|
|
|
|
private ClientConnection connection;
|
|
private String version;
|
|
private int protocol;
|
|
private Component motd;
|
|
private int maxPlayers;
|
|
private int playersOnline;
|
|
private BufferedImage favicon;
|
|
|
|
public StatusPingEvent(ClientConnection connection, String version, int protocol, Component motd, int maxPlayers, int playersOnline, BufferedImage favicon) {
|
|
this.connection = connection;
|
|
this.version = version;
|
|
this.protocol = protocol;
|
|
this.motd = motd;
|
|
this.maxPlayers = maxPlayers;
|
|
this.playersOnline = playersOnline;
|
|
this.favicon = favicon;
|
|
}
|
|
|
|
public ClientConnection getConnection() {
|
|
return connection;
|
|
}
|
|
|
|
public String getVersion() {
|
|
return version;
|
|
}
|
|
|
|
public void setVersion(String version) {
|
|
this.version = version;
|
|
}
|
|
|
|
public int getProtocol() {
|
|
return protocol;
|
|
}
|
|
|
|
public void setProtocol(int protocol) {
|
|
this.protocol = protocol;
|
|
}
|
|
|
|
public Component getMotd() {
|
|
return motd;
|
|
}
|
|
|
|
public void setMotd(Component motd) {
|
|
this.motd = motd;
|
|
}
|
|
|
|
public int getMaxPlayers() {
|
|
return maxPlayers;
|
|
}
|
|
|
|
public void setMaxPlayers(int maxPlayers) {
|
|
this.maxPlayers = maxPlayers;
|
|
}
|
|
|
|
public int getPlayersOnline() {
|
|
return playersOnline;
|
|
}
|
|
|
|
public void setPlayersOnline(int playersOnline) {
|
|
this.playersOnline = playersOnline;
|
|
}
|
|
|
|
public BufferedImage getFavicon() {
|
|
return favicon;
|
|
}
|
|
|
|
public void setFavicon(BufferedImage favicon) {
|
|
this.favicon = favicon;
|
|
}
|
|
|
|
}
|