StreamWriter

from panda3d.core import StreamWriter
class StreamWriter

Bases:

A StreamWriter object is used to write sequential binary data directly to an ostream. Its interface is very similar to Datagram by design; it’s primarily intended as a convenience to eliminate the overhead of writing bytes to a Datagram and then writing the Datagram to a stream.

Inheritance diagram

Inheritance diagram of StreamWriter

__init__(copy: StreamWriter)

The copy constructor does not copy ownership of the stream.

__init__(out: ostream, owns_stream: bool)
addBeFloat32(value: float)

Adds a 32-bit single-precision big-endian floating-point number to the stream. Since this kind of float is not necessarily portable across different architectures, special care is required.

addBeFloat64(value: float)

Adds a 64-bit big-endian floating-point number to the streamWriter.

addBeInt16(value: int)

Adds a signed 16-bit big-endian integer to the streamWriter.

addBeInt32(value: int)

Adds a signed 32-bit big-endian integer to the streamWriter.

addBeInt64(value: int)

Adds a signed 64-bit big-endian integer to the streamWriter.

addBeUint16(value: int)

Adds an unsigned 16-bit big-endian integer to the streamWriter.

addBeUint32(value: int)

Adds an unsigned 32-bit big-endian integer to the streamWriter.

addBeUint64(value: int)

Adds an unsigned 64-bit big-endian integer to the streamWriter.

addBool(value: bool)

Adds a boolean value to the stream.

addFixedString(str: str, size: int)

Adds a fixed-length string to the stream. If the string given is less than the requested size, this will pad the string out with zeroes; if it is greater than the requested size, this will silently truncate the string.

addFloat32(value: float)

Adds a 32-bit single-precision floating-point number to the stream. Since this kind of float is not necessarily portable across different architectures, special care is required.

addFloat64(value: float)

Adds a 64-bit floating-point number to the stream.

addInt16(value: int)

Adds a signed 16-bit integer to the stream.

addInt32(value: int)

Adds a signed 32-bit integer to the stream.

addInt64(value: int)

Adds a signed 64-bit integer to the stream.

addInt8(value: int8_t)

Adds a signed 8-bit integer to the stream.

addString(str: str)

Adds a variable-length string to the stream. This actually adds a count followed by n bytes.

addString32(str: str)

Adds a variable-length string to the stream, using a 32-bit length field.

addUint16(value: int)

Adds an unsigned 16-bit integer to the stream.

addUint32(value: int)

Adds an unsigned 32-bit integer to the stream.

addUint64(value: int)

Adds an unsigned 64-bit integer to the stream.

addUint8(value: uint8_t)

Adds an unsigned 8-bit integer to the stream.

addZString(str: str)

Adds a variable-length string to the stream, as a NULL-terminated string.

appendData(data: object)
assign(copy: StreamWriter) StreamWriter
flush()

Calls flush() on the underlying stream.

getOstream() ostream

Returns the stream in use.

property ostream ostream

Returns the stream in use.

padBytes(size: int)

Adds the indicated number of zero bytes to the stream.

property softspace int

Python 2 needs this for printing to work correctly.

getter/setter for int StreamWriter::softspace;

write(str: str)

A synonym of appendData(). This is useful when assigning the StreamWriter to sys.stderr and/or sys.stdout in Python.