def get_glyphs(self):
return self.GLYPHS
+ def get_msb_glyph(self):
+ return self.MSB_GLYPH
+
def get_text(self, location=None):
substitutions = self.data.copy()
glyph, transforms=(EIGHT_BIT, blender(PALETTE.GREY)))
self.surface.blit(img, (glyphs_x_offset, glyphs_y_offset - 4))
glyphs_x_offset += img.get_width()
- if action.MSB_GLYPH is not None:
+ if action.get_msb_glyph() is not None:
img = resources.get_image(
- action.MSB_GLYPH,
+ action.get_msb_glyph(),
transforms=(EIGHT_BIT, blender(PALETTE.LIGHT_VIOLET)))
self.surface.blit(img, (glyphs_x_offset, glyphs_y_offset - 4))
img = resources.get_image(glyph, transforms=(EIGHT_BIT,))
self.surface.blit(img, (x_offset, y_offset + 4))
x_offset += img.get_width()
- if action.MSB_GLYPH is not None:
+ if action.get_msb_glyph() is not None:
img = resources.get_image(
- action.MSB_GLYPH,
+ action.get_msb_glyph(),
transforms=(EIGHT_BIT, blender(PALETTE.LIGHT_VIOLET)))
self.surface.blit(img, (x_offset, y_offset + 4))
x_offset += img.get_width()