teeworlds_network/lib/net_base.rb

111 lines
2.8 KiB
Ruby
Raw Permalink Normal View History

2022-11-05 16:47:47 +00:00
# frozen_string_literal: true
require_relative 'models/token'
2022-11-12 11:51:09 +00:00
##
# Turns int into network byte
#
# Takes a NETMSGTYPE_CL_* integer
# and returns a byte that can be send over
# the network
def pack_msg_id(msg_id, options = { system: false })
(msg_id << 1) | (options[:system] ? 1 : 0)
end
2022-11-05 16:47:47 +00:00
##
# NetBase
#
# Lowest network layer logic. Sends packets via udp.
# Also adding the teeworlds protocol packet header.
2022-11-01 13:25:56 +00:00
class NetBase
2022-11-12 11:51:09 +00:00
attr_accessor :ack
attr_reader :peer_token
2022-11-01 13:25:56 +00:00
2022-11-11 12:42:11 +00:00
def initialize(opts = {})
@verbose = opts[:verbose] || false
2022-11-01 13:25:56 +00:00
@ip = nil
@port = nil
@s = nil
@ack = 0
2022-11-11 13:37:41 +00:00
@peer_token = [0xFF, 0xFF, 0xFF, 0xFF].map { |b| b.to_s(16).rjust(2, '0') }.join
2022-11-08 15:20:46 +00:00
end
def bind(socket)
@s = socket
2022-11-01 13:25:56 +00:00
end
def connect(socket, ip, port)
@s = socket
@ip = ip
@port = port
@ack = 0
end
2022-11-12 11:51:09 +00:00
def set_peer_token(token)
SecurityToken.validate(token)
@peer_token = token
end
2022-11-01 13:25:56 +00:00
##
# Sends a packing setting the proper header for you
#
# @param payload [Array] The Integer list representing the data after the header
# @param opts [Hash] :chunks, :client and packet header flags for more details check the class +PacketFlags+
def send_packet(payload, opts = { chunks: 1, client: nil, addr: nil })
2022-11-01 13:25:56 +00:00
# unsigned char flags_ack; // 6bit flags, 2bit ack
# unsigned char ack; // 8bit ack
# unsigned char numchunks; // 8bit chunks
# unsigned char token[4]; // 32bit token
# // ffffffaa
# // aaaaaaaa
# // NNNNNNNN
# // TTTTTTTT
# // TTTTTTTT
# // TTTTTTTT
# // TTTTTTTT
2023-09-17 16:22:38 +00:00
if @s.nil?
2023-10-22 12:27:14 +00:00
puts 'Error: no active socket'
2023-09-17 16:22:38 +00:00
return
end
2022-11-08 15:20:46 +00:00
flags_bits = PacketFlags.new(opts).bits
ack = @ack
ip = @ip
port = @port
token = @peer_token
unless opts[:client].nil?
ack = opts[:client].ack
ip = opts[:client].addr.ip
port = opts[:client].addr.port
token = opts[:client].token
end
unless opts[:addr].nil?
ip = opts[:addr].ip
port = opts[:addr].port
end
2022-11-05 16:47:47 +00:00
# unused flags ack num chunks
# ff ffff aa aaaa aaaa NNNN NNNN
header_bits = "00#{flags_bits}#{ack.to_s(2).rjust(10, '0')}#{opts[:chunks].to_s(2).rjust(8, '0')}"
2022-11-01 13:25:56 +00:00
header = header_bits.chars.groups_of(8).map do |eight_bits|
2022-11-05 16:57:12 +00:00
eight_bits.join.to_i(2)
2022-11-01 13:25:56 +00:00
end
header += str_bytes(token)
2022-11-01 13:25:56 +00:00
data = (header + payload).pack('C*')
client = opts[:client]
if @verbose
if client
puts "send to #{ip}:#{port} " \
"client(id=#{client.id} " \
"token=#{client.token} " \
"name=#{client.player.name} port=#{client.addr.port})"
else
puts "send to #{ip}:#{port}"
end
end
2022-11-08 15:20:46 +00:00
@s.send(data, 0, ip, port)
2022-11-01 13:25:56 +00:00
2024-01-20 14:33:25 +00:00
puts Packet.new(data, '>') if @verbose || opts[:test]
2022-11-01 13:25:56 +00:00
end
end