Class: NBTFile::CompoundReaderState
- Inherits:
-
Object
- Object
- NBTFile::CompoundReaderState
- Includes:
- ReadMethods, Tokens
- Defined in:
- lib/nbtfile.rb
Instance Method Summary collapse
- #get_token(io) ⇒ Object
-
#initialize(cont) ⇒ CompoundReaderState
constructor
A new instance of CompoundReaderState.
Methods included from ReadMethods
#read_byte, #read_byte_array, #read_double, #read_float, #read_int, #read_integer, #read_list_header, #read_long, #read_raw, #read_short, #read_string, #read_type, #read_value
Methods included from CommonMethods
Constructor Details
#initialize(cont) ⇒ CompoundReaderState
Returns a new instance of CompoundReaderState.
225 226 227 |
# File 'lib/nbtfile.rb', line 225 def initialize(cont) @cont = cont end |
Instance Method Details
#get_token(io) ⇒ Object
229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/nbtfile.rb', line 229 def get_token(io) type = read_type(io) if type != TAG_End name = read_string(io) else name = "" end read_value(io, type, name, self, @cont) end |