Class: LibSL::ImageDataPacket

Inherits:
Packet
  • Object
show all
Defined in:
lib/_packets.rb

Instance Attribute Summary

Attributes inherited from Packet

#acks, #acks_flag, #reliable_flag, #resent_count, #resent_flag, #sequence_number, #zero_coded_flag

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Packet

decode, #decode_msg, #encode, #encode_msg, #initialize, #method_missing, zero_decode

Constructor Details

This class inherits a constructor from LibSL::Packet

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class LibSL::Packet

Class Method Details

.packet_idObject



3409
3410
3411
# File 'lib/_packets.rb', line 3409

def self.packet_id()
	9
end

Instance Method Details

#build_structureObject



3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
# File 'lib/_packets.rb', line 3413

def build_structure()
	@blocks = [
		[:ImageID, Block.new([
			[:ID, :LLUUID],
			[:Codec, :LLU8],
			[:Size, :LLU32],
			[:Packets, :LLU16]
		])],
		[:ImageData, Block.new([
			[:Data, :LLVariable2]
		])]
	]
end