mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
- Add some explanations for adding a custom bot in the app - Remove debug code in ConsoleIO (see previous commit)
256 lines
10 KiB
C#
256 lines
10 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Net.Sockets;
|
|
using System.Threading;
|
|
using System.IO;
|
|
using System.Net;
|
|
|
|
namespace MinecraftClient
|
|
{
|
|
/// <summary>
|
|
/// The main client class, used to connect to a Minecraft server.
|
|
/// It allows message sending and text receiving.
|
|
/// </summary>
|
|
|
|
class McTcpClient
|
|
{
|
|
public static int AttemptsLeft = 0;
|
|
|
|
string host;
|
|
int port;
|
|
string username;
|
|
string text;
|
|
Thread t_updater;
|
|
Thread t_sender;
|
|
TcpClient client;
|
|
MinecraftCom handler;
|
|
|
|
/// <summary>
|
|
/// Starts the main chat client, wich will login to the server using the MinecraftCom class.
|
|
/// </summary>
|
|
/// <param name="username">The chosen username of a premium Minecraft Account</param>
|
|
/// <param name="sessionID">A valid sessionID obtained with MinecraftCom.GetLogin()</param>
|
|
/// <param name="server_port">The server IP (serveradress or serveradress:port)</param>
|
|
|
|
public McTcpClient(string username, string uuid, string sessionID, string server_port, MinecraftCom handler)
|
|
{
|
|
StartClient(username, uuid, sessionID, server_port, false, handler, "");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Starts the main chat client in single command sending mode, wich will login to the server using the MinecraftCom class, send the command and close.
|
|
/// </summary>
|
|
/// <param name="username">The chosen username of a premium Minecraft Account</param>
|
|
/// <param name="sessionID">A valid sessionID obtained with MinecraftCom.GetLogin()</param>
|
|
/// <param name="server_port">The server IP (serveradress or serveradress:port)</param>
|
|
/// <param name="command">The text or command to send.</param>
|
|
|
|
public McTcpClient(string username, string uuid, string sessionID, string server_port, MinecraftCom handler, string command)
|
|
{
|
|
StartClient(username, uuid, sessionID, server_port, true, handler, command);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Starts the main chat client, wich will login to the server using the MinecraftCom class.
|
|
/// </summary>
|
|
/// <param name="user">The chosen username of a premium Minecraft Account</param>
|
|
/// <param name="sessionID">A valid sessionID obtained with MinecraftCom.GetLogin()</param>
|
|
/// <param name="server_port">The server IP (serveradress or serveradress:port)/param>
|
|
/// <param name="singlecommand">If set to true, the client will send a single command and then disconnect from the server</param>
|
|
/// <param name="command">The text or command to send. Will only be sent if singlecommand is set to true.</param>
|
|
|
|
private void StartClient(string user, string uuid, string sessionID, string server_port, bool singlecommand, MinecraftCom handler, string command)
|
|
{
|
|
this.handler = handler;
|
|
username = user;
|
|
string[] sip = server_port.Split(':');
|
|
host = sip[0];
|
|
if (sip.Length == 1)
|
|
{
|
|
port = 25565;
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
port = Convert.ToInt32(sip[1]);
|
|
}
|
|
catch (FormatException) { port = 25565; }
|
|
}
|
|
|
|
try
|
|
{
|
|
Console.WriteLine("Logging in...");
|
|
client = new TcpClient(host, port);
|
|
client.ReceiveBufferSize = 1024 * 1024;
|
|
handler.setClient(client);
|
|
if (handler.Login(user, uuid, sessionID, host, port))
|
|
{
|
|
//Single command sending
|
|
if (singlecommand)
|
|
{
|
|
handler.SendChatMessage(command);
|
|
Console.Write("Command ");
|
|
Console.ForegroundColor = ConsoleColor.DarkGray;
|
|
Console.Write(command);
|
|
Console.ForegroundColor = ConsoleColor.Gray;
|
|
Console.WriteLine(" sent.");
|
|
Thread.Sleep(5000);
|
|
handler.Disconnect("disconnect.quitting");
|
|
Thread.Sleep(1000);
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Server was successfully joined.\nType '/quit' to leave the server.");
|
|
|
|
//Command sending thread, allowing user input
|
|
t_sender = new Thread(new ThreadStart(StartTalk));
|
|
t_sender.Name = "CommandSender";
|
|
t_sender.Start();
|
|
|
|
//Data receiving thread, allowing text receiving
|
|
t_updater = new Thread(new ThreadStart(Updater));
|
|
t_updater.Name = "PacketHandler";
|
|
t_updater.Start();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Login failed.");
|
|
if (!singlecommand && !handler.OnConnectionLost(ChatBot.DisconnectReason.LoginRejected, "Login failed.")) { Program.ReadLineReconnect(); }
|
|
}
|
|
}
|
|
catch (SocketException)
|
|
{
|
|
Console.WriteLine("Failed to connect to this IP.");
|
|
if (AttemptsLeft > 0)
|
|
{
|
|
ChatBot.LogToConsole("Waiting 5 seconds (" + AttemptsLeft + " attempts left)...");
|
|
Thread.Sleep(5000); AttemptsLeft--; Program.Restart();
|
|
}
|
|
else if (!singlecommand) { Console.ReadLine(); }
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Allows the user to send chat messages, commands, and to leave the server.
|
|
/// Will be automatically called on a separate Thread by StartClient()
|
|
/// </summary>
|
|
|
|
private void StartTalk()
|
|
{
|
|
try
|
|
{
|
|
//Needed if the player is dead
|
|
handler.SendRespawnPacket();
|
|
|
|
while (client.Client.Connected)
|
|
{
|
|
text = ConsoleIO.ReadLine();
|
|
if (ConsoleIO.basicIO && text.Length > 0 && text[0] == (char)0x00)
|
|
{
|
|
//Process a request from the GUI
|
|
string[] command = text.Substring(1).Split((char)0x00);
|
|
switch (command[0].ToLower())
|
|
{
|
|
case "autocomplete":
|
|
if (command.Length > 1) { ConsoleIO.WriteLine((char)0x00 + "autocomplete" + (char)0x00 + handler.AutoComplete(command[1])); }
|
|
else Console.WriteLine((char)0x00 + "autocomplete" + (char)0x00);
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
text = text.Trim();
|
|
if (text.ToLower() == "/quit" || text.ToLower() == "/reco")
|
|
{
|
|
break;
|
|
}
|
|
else if (text.ToLower() == "/respawn")
|
|
{
|
|
handler.SendRespawnPacket();
|
|
ConsoleIO.WriteLine("You have respawned.");
|
|
}
|
|
else if (text.ToLower().StartsWith("/script "))
|
|
{
|
|
handler.BotLoad(new Bots.Script(text.Substring(8)));
|
|
}
|
|
else if (text != "")
|
|
{
|
|
//Message is too long
|
|
if (text.Length > 100)
|
|
{
|
|
if (text[0] == '/')
|
|
{
|
|
//Send the first 100 chars of the command
|
|
text = text.Substring(0, 100);
|
|
handler.SendChatMessage(text);
|
|
}
|
|
else
|
|
{
|
|
//Send the message splitted in several messages
|
|
while (text.Length > 100)
|
|
{
|
|
handler.SendChatMessage(text.Substring(0, 100));
|
|
text = text.Substring(100, text.Length - 100);
|
|
}
|
|
handler.SendChatMessage(text);
|
|
}
|
|
}
|
|
else handler.SendChatMessage(text);
|
|
}
|
|
}
|
|
}
|
|
|
|
switch (text.ToLower())
|
|
{
|
|
case "/quit": Program.Exit(); break;
|
|
case "/reco": Program.Restart(); break;
|
|
}
|
|
}
|
|
catch (IOException) { }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Receive the data (including chat messages) from the server, and keep the connection alive.
|
|
/// Will be automatically called on a separate Thread by StartClient()
|
|
/// </summary>
|
|
|
|
private void Updater()
|
|
{
|
|
try
|
|
{
|
|
//handler.DebugDump();
|
|
do
|
|
{
|
|
Thread.Sleep(100);
|
|
} while (handler.Update());
|
|
}
|
|
catch (IOException) { }
|
|
catch (SocketException) { }
|
|
catch (ObjectDisposedException) { }
|
|
|
|
if (!handler.HasBeenKicked)
|
|
{
|
|
ConsoleIO.WriteLine("Connection has been lost.");
|
|
if (!handler.OnConnectionLost(ChatBot.DisconnectReason.ConnectionLost, "Connection has been lost.") && !Program.ReadLineReconnect()) { t_sender.Abort(); }
|
|
}
|
|
else if (Program.ReadLineReconnect()) { t_sender.Abort(); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Disconnect the client from the server
|
|
/// </summary>
|
|
|
|
public void Disconnect()
|
|
{
|
|
handler.Disconnect("disconnect.quitting");
|
|
Thread.Sleep(1000);
|
|
if (t_updater != null) { t_updater.Abort(); }
|
|
if (t_sender != null) { t_sender.Abort(); }
|
|
if (client != null) { client.Close(); }
|
|
}
|
|
}
|
|
}
|