teeworlds_network/lib/chunk.rb

183 lines
4.3 KiB
Ruby
Raw Normal View History

2022-11-05 16:48:47 +00:00
# frozen_string_literal: true
require_relative 'array'
require_relative 'network'
require_relative 'bytes'
2023-09-17 10:15:31 +00:00
##
# The NetChunk class represents one individual
# chunk of a teeworlds packet.
#
# A teeworlds packet holds multiple game and system messages
# as its payload, those are called chunks or messages.
#
# https://chillerdragon.github.io/teeworlds-protocol/07/packet_layout.html
class NetChunk
attr_reader :next, :data, :msg, :sys, :flags, :seq, :header_raw, :full_raw
2022-11-05 16:19:05 +00:00
@@sent_vital_chunks = 0
def initialize(data)
@next = nil
@flags = {}
@seq = 0
@size = 0
parse_header(data[0..2])
2022-11-12 10:35:12 +00:00
header_size = if flags_vital
VITAL_CHUNK_HEADER_SIZE
else
NON_VITAL_CHUNK_HEADER_SIZE
end
@header_raw = data[...header_size]
chunk_end = header_size + @size
# puts "data[0]: " + str_hex(data[0])
2022-11-12 10:35:12 +00:00
@data = data[header_size...chunk_end]
2022-11-05 16:19:05 +00:00
@msg = @data[0].unpack1('C*')
@sys = @msg & 1 == 1
@msg >>= 1
@next = data[chunk_end..] if data.size > chunk_end
@full_raw = data[..chunk_end]
end
2022-11-04 11:55:01 +00:00
def self.reset
@@sent_vital_chunks = 0
end
2022-11-04 09:12:23 +00:00
def to_s
2022-11-05 16:48:47 +00:00
"NetChunk\n" \
" msg=#{msg} sys=#{sys}\n" \
" #{@flags}\n" \
2022-11-12 10:35:12 +00:00
" header: #{str_hex(header_raw)}\n" \
2022-11-05 16:19:05 +00:00
" data: #{str_hex(data)}"
2022-11-04 09:12:23 +00:00
end
2022-11-12 09:13:29 +00:00
def self._create_non_vital_header(data = { size: 0 })
flag_bits = '00'
unused_bits = '00'
size_bits = data[:size].to_s(2).rjust(12, '0')
header_bits =
flag_bits +
size_bits[0..5] +
unused_bits +
size_bits[6..]
header_bits.chars.groups_of(8).map do |eigth_bits|
eigth_bits.join.to_i(2)
end
end
2022-11-01 09:37:24 +00:00
##
# Create int array ready to be send over the network
#
# Given the flags hash (vital/resend)
# the size
# the sequence number
#
# It will create a 3 byte chunk header
# represented as an Array of 3 integers
2022-11-12 10:18:12 +00:00
def self.create_header(opts = { resend: false, vital: false, size: nil, seq: nil, client: nil })
2022-11-12 09:13:29 +00:00
raise 'Chunk.create_header :size option can not be nil' if opts[:size].nil?
return _create_non_vital_header(opts) unless opts[:vital]
2022-11-12 10:18:12 +00:00
# client only counts this class var
2022-11-01 09:37:24 +00:00
@@sent_vital_chunks += 1
seq = opts[:seq].nil? ? @@sent_vital_chunks : opts[:seq]
2022-11-01 09:37:24 +00:00
2022-11-12 10:18:12 +00:00
# server counts per client
unless opts[:client].nil?
opts[:client].vital_sent += 1
seq = opts[:client].vital_sent
end
flag_bits = '00'.dup
2022-11-12 09:13:29 +00:00
flag_bits[0] = opts[:resend] ? '1' : '0'
flag_bits[1] = opts[:vital] ? '1' : '0'
2022-11-01 09:37:24 +00:00
2022-11-12 09:13:29 +00:00
size_bits = opts[:size].to_s(2).rjust(12, '0')
2022-11-01 09:37:24 +00:00
# size_bits[0..5]
# size_bits[6..]
seq_bits = seq.to_s(2).rjust(10, '0')
# seq_bits[0..1]
# seq_bits[2..]
# The vital chunk header is 3 bytes
# containing flags, size and sequence
# in the following format
#
# f=flag
# s=size
# q=sequence
#
# ffss ssss qqss ssss qqqq qqqq
2022-11-05 16:19:05 +00:00
header_bits =
2022-11-01 09:37:24 +00:00
flag_bits +
size_bits[0..5] +
seq_bits[0..1] +
size_bits[6..] +
seq_bits[2..]
header_bits.chars.groups_of(8).map do |eigth_bits|
2022-11-05 16:57:12 +00:00
eigth_bits.join.to_i(2)
2022-11-01 09:37:24 +00:00
end
end
def parse_header(data)
# flags
2022-11-05 16:19:05 +00:00
flags = data[0].unpack1('B*')
flags = flags[0..1]
2022-11-05 16:19:05 +00:00
@flags[:resend] = flags[0] == '1'
@flags[:vital] = flags[1] == '1'
# size
2022-11-05 16:19:05 +00:00
size = data[0..1].unpack1('B*')
size_bytes = size.chars.groups_of(8)
# trim first 2 bits of both bytes
# Size: 2 bytes (..00 0000 ..00 0010)
2022-11-05 16:57:12 +00:00
size_bytes.map! { |b| b[2..].join }
@size = size_bytes.join.to_i(2)
if @flags[:vital]
data = data[0..2].bytes
@seq = (data[1] & (0xC0 << 2)) | data[2]
else
@seq = 0
end
end
2022-10-30 18:00:13 +00:00
2023-09-17 10:15:31 +00:00
# @return [Boolean]
2022-10-30 18:00:13 +00:00
def flags_vital
@flags[:vital]
end
2023-09-17 10:15:31 +00:00
# @return [Boolean]
2022-10-30 18:00:13 +00:00
def flags_resend
@flags[:resend]
end
end
MAX_NUM_CHUNKS = 1024
class BigChungusTheChunkGetter
2023-09-17 10:15:31 +00:00
##
# given a raw payload of a teeworlds packet
# it splits it into the indivudal chunks
# also known as messages
#
# @return [Array<NetChunk>]
def self.get_chunks(data)
chunks = []
chunk = NetChunk.new(data)
chunks.push(chunk)
while chunk.next
chunk = NetChunk.new(chunk.next)
chunks.push(chunk)
2022-11-05 16:19:05 +00:00
next unless chunks.size > MAX_NUM_CHUNKS
# inf loop guard case
puts 'Warning: abort due to max num chunks bein reached'
break
end
chunks
end
end