Mercurial > touhou
view pytouhou/utils/bitstream.pyx @ 612:73f134f84c7f
Request a RGB888 context, since SDL2’s default of RGB332 sucks.
On X11/GLX, it will select the first config available, that is the best
one, while on EGL it will iterate over them to select the one closest
to what the application requested.
Of course, anything lower than RGB888 looks bad and we really don’t
want that.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 26 Mar 2015 20:20:37 +0100 |
parents | 3c2f96f1d715 |
children |
line wrap: on
line source
# -*- encoding: utf-8 -*- ## ## Copyright (C) 2011 Thibaut Girka <thib@sitedethib.com> ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published ## by the Free Software Foundation; version 3 only. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## cdef class BitStream: def __init__(self, io): self.io = io self.bits = 0 self.byte = 0 def __enter__(self): return self def __exit__(self, type, value, traceback): return self.io.__exit__(type, value, traceback) def seek(self, offset, whence=0): self.io.seek(offset, whence) self.byte = 0 self.bits = 0 cdef bint read_bit(self) except -1: cdef bytes byte if not self.bits: byte = self.io.read(1) self.byte = (<unsigned char*>byte)[0] self.bits = 8 self.bits -= 1 return (self.byte >> self.bits) & 0x01 cpdef unsigned int read(self, unsigned int nb_bits) except? 4242: cdef unsigned int value = 0, read = 0 cdef unsigned int nb_bits2 = nb_bits cdef bytes byte while nb_bits2: if not self.bits: byte = self.io.read(1) self.byte = (<unsigned char*>byte)[0] self.bits = 8 read = self.bits if nb_bits2 > self.bits else nb_bits2 nb_bits2 -= read self.bits -= read value |= (self.byte >> self.bits) << nb_bits2 return value & ((1 << nb_bits) - 1) cpdef write_bit(self, bint bit): if self.bits == 8: self.io.write(chr(self.byte)) self.bits = 0 self.byte = 0 self.byte &= ~(1 << (7 - self.bits)) self.byte |= bit << (7 - self.bits) self.bits += 1 cpdef write(self, unsigned int bits, unsigned int nb_bits): for i in range(nb_bits): self.write_bit(bits >> (nb_bits - 1 - i) & 0x01) cpdef flush(self): self.io.write(chr(self.byte)) self.bits = 0 self.byte = 0 self.io.flush()