remote_control_python_script/Client/serversend - mirror - mouse.py

72 lines
1.7 KiB
Python
Raw Normal View History

2020-12-09 11:52:04 +00:00
import socket
import os
import pynput
from pynput.mouse import Button, Controller
import time
mouse=Controller()
# device's IP address
2020-12-10 18:00:59 +00:00
SERVER_HOST = "0.0.0.0" #(socket.gethostbyname(socket.gethostname()))
2020-12-09 11:52:04 +00:00
SERVER_PORT = 10002
# receive 4096 bytes each time
BUFFER_SIZE = 128
SEPARATOR = "<SEPARATOR>"
# create the server socket
# TCP socket
s = socket.socket()
# bind the socket to our local address
s.bind((SERVER_HOST, SERVER_PORT))
# enabling our server to accept connections
# 5 here is the number of unaccepted connections that
# the system will allow before refusing new connections
s.listen(5)
print(f"[*] Listening as {SERVER_HOST}:{SERVER_PORT}")
# accept connection if there is any
client_socket, address = s.accept()
# if below code is executed, that means the sender is connected
print(f"[+] {address} is connected.")
while True:
2020-12-10 08:45:54 +00:00
# read 1024 bytes from the socket (receive)
bytes_read = client_socket.recv(BUFFER_SIZE)
2020-12-10 18:00:59 +00:00
if not bytes_read:
2020-12-10 08:45:54 +00:00
# nothing is received
# file transmitting is done take another time
break
2020-12-09 11:52:04 +00:00
2020-12-10 18:00:59 +00:00
# read bytes we just received
2020-12-09 11:52:04 +00:00
2020-12-10 18:00:59 +00:00
ge = bytes_read.decode()
2020-12-10 08:45:54 +00:00
print (ge)
TrR = ge[0:1]
ge = ge[1:]
try:
y = int(ge[((int(ge.find(',')+1))):])
x = int(ge[:(int(ge.find(',')))])
2020-12-09 11:52:04 +00:00
2020-12-10 08:45:54 +00:00
print(x)
print(y)
mouse.position = (x,y)
if (TrR == 'R'):
mouse.click(Button.right, 1)
print (TrR)
2020-12-09 13:09:03 +00:00
2020-12-10 08:45:54 +00:00
else:
mouse.click(Button.left, 1)
print (TrR)
2020-12-09 11:52:04 +00:00
2020-12-10 08:45:54 +00:00
except:
print ("error")
2020-12-09 11:52:04 +00:00
# close the client socket
#client_socket.close()
# close the server socket
#s.close()