2012-04-05 04:56:21 +02:00
|
|
|
import getpass
|
|
|
|
import sys
|
2012-10-26 02:02:42 +02:00
|
|
|
from optparse import OptionParser
|
2014-10-08 19:12:37 +02:00
|
|
|
|
2015-04-01 23:38:10 +02:00
|
|
|
from pprint import pprint
|
|
|
|
|
2015-04-01 17:43:16 +02:00
|
|
|
from minecraft import authentication
|
2015-04-01 23:38:10 +02:00
|
|
|
from minecraft.exceptions import YggdrasilError
|
2015-04-01 17:19:12 +02:00
|
|
|
from minecraft.networking.connection import Connection
|
|
|
|
from minecraft.networking.packets import ChatMessagePacket, ChatPacket
|
2012-04-30 19:05:06 +02:00
|
|
|
|
2014-10-08 19:12:37 +02:00
|
|
|
|
2015-04-01 23:38:10 +02:00
|
|
|
def get_options():
|
2012-10-26 02:02:42 +02:00
|
|
|
parser = OptionParser()
|
2012-12-25 21:38:02 +01:00
|
|
|
|
2014-06-07 01:47:34 +02:00
|
|
|
parser.add_option("-u", "--username", dest="username", default=None,
|
2014-10-08 19:12:37 +02:00
|
|
|
help="username to log in with")
|
2012-12-25 21:38:02 +01:00
|
|
|
|
2014-06-07 01:47:34 +02:00
|
|
|
parser.add_option("-p", "--password", dest="password", default=None,
|
2014-10-08 19:12:37 +02:00
|
|
|
help="password to log in with")
|
2012-12-25 21:38:02 +01:00
|
|
|
|
2014-06-07 01:47:34 +02:00
|
|
|
parser.add_option("-s", "--server", dest="server", default=None,
|
2014-10-08 19:12:37 +02:00
|
|
|
help="server to connect to")
|
2012-12-25 21:38:02 +01:00
|
|
|
|
2014-06-07 01:47:34 +02:00
|
|
|
(options, args) = parser.parse_args()
|
2012-12-25 21:38:02 +01:00
|
|
|
|
2014-06-07 01:47:34 +02:00
|
|
|
if not options.username:
|
|
|
|
options.username = raw_input("Enter your username: ")
|
2012-12-31 03:20:06 +01:00
|
|
|
|
2014-06-07 01:47:34 +02:00
|
|
|
if not options.password:
|
|
|
|
options.password = getpass.getpass("Enter your password: ")
|
2012-12-25 21:38:02 +01:00
|
|
|
|
2014-06-07 01:47:34 +02:00
|
|
|
if not options.server:
|
|
|
|
options.server = raw_input("Please enter server address (including port): ")
|
|
|
|
# Try to split out port and address
|
|
|
|
if ':' in options.server:
|
|
|
|
server = options.server.split(":")
|
2015-04-01 23:38:10 +02:00
|
|
|
options.address = server[0]
|
|
|
|
options.port = int(server[1])
|
2012-10-26 15:09:16 +02:00
|
|
|
else:
|
2015-04-01 23:38:10 +02:00
|
|
|
options.address = options.server
|
|
|
|
options.port = 25565
|
|
|
|
|
|
|
|
return options
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
options = get_options()
|
|
|
|
|
|
|
|
auth_token = authentication.AuthenticationToken()
|
|
|
|
try:
|
|
|
|
auth_token.authenticate(options.username, options.password)
|
|
|
|
except YggdrasilError as e:
|
|
|
|
print(e.error)
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
print("Logged in as " + auth_token.username)
|
2014-06-07 01:47:34 +02:00
|
|
|
|
2015-04-01 23:38:10 +02:00
|
|
|
connection = Connection(options.address, options.port, auth_token)
|
2015-03-17 18:15:27 +01:00
|
|
|
connection.connect()
|
2014-06-07 01:47:34 +02:00
|
|
|
|
2015-03-22 15:05:55 +01:00
|
|
|
def print_chat(chat_packet):
|
2015-04-01 23:38:10 +02:00
|
|
|
print("Position: " + str(chat_packet.position))
|
|
|
|
print("Data: " + chat_packet.json_data)
|
2015-03-22 15:05:55 +01:00
|
|
|
|
|
|
|
connection.register_packet_listener(print_chat, ChatMessagePacket)
|
2012-10-26 15:09:16 +02:00
|
|
|
while True:
|
|
|
|
try:
|
2014-06-07 01:47:34 +02:00
|
|
|
text = raw_input()
|
2015-03-22 15:05:55 +01:00
|
|
|
packet = ChatPacket()
|
|
|
|
packet.message = text
|
|
|
|
connection.write_packet(packet)
|
2014-06-07 01:47:34 +02:00
|
|
|
except KeyboardInterrupt:
|
2015-04-01 23:38:10 +02:00
|
|
|
print("Bye!")
|
2014-06-07 01:47:34 +02:00
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|