Browse Source

Loader load_image() now have pygame directly load the file instead of opening it's own file object. Other minor bug fixes.

master
Bryan Miller 6 years ago
parent
commit
caba06d9e7
2 changed files with 8 additions and 9 deletions
  1. +1
    -1
      game/gbe/resource.py
  2. +7
    -8
      game/gbe/resourceLoaders.py

+ 1
- 1
game/gbe/resource.py View File

try: try:
d["instance"] = loader(filename, params) d["instance"] = loader(filename, params)
except Exception as e: except Exception as e:
_l.error(e.message)
_l.error("{}".format(e))
return None return None
return weakref.ref(d["instance"]) return weakref.ref(d["instance"])



+ 7
- 8
game/gbe/resourceLoaders.py View File

def load_image(filename, params={}): def load_image(filename, params={}):
if not os.path.isfile(filename): if not os.path.isfile(filename):
raise LoadError("Failed to load '{}'. Path missing or invalid.".format(filename)) raise LoadError("Failed to load '{}'. Path missing or invalid.".format(filename))
with open(filename) as f:
try:
i = pygame.image.load(f, filename)
return i.convert_alpha()
except pygame.error as e:
raise LoadError("Pygame/SDL Exception: {}".format(e.message))
try:
i = pygame.image.load(filename)
return i.convert_alpha()
except pygame.error as e:
raise LoadError("Pygame/SDL Exception: {}".format(e))




def load_audio(filename, params={}): def load_audio(filename, params={}):
if pygame.mixer.get_init() is not None: if pygame.mixer.get_init() is not None:
return pygame.mixer.Sound(filename) return pygame.mixer.Sound(filename)
except pygame.error as e: except pygame.error as e:
raise LoadError("Pygame Exception: {}".format(e.message))
raise LoadError("Pygame Exception: {}".format(e))
raise LoadError("Audio subsystem not initialized before attempting to obtain resource.") raise LoadError("Audio subsystem not initialized before attempting to obtain resource.")


def load_font(filename, params={}): def load_font(filename, params={}):
size = params["size"] size = params["size"]
return pygame.font.Font(filename, size) return pygame.font.Font(filename, size)
except pygame.error as e: except pygame.error as e:
raise LoadError("Pygame Exception: {}".format(e.message))
raise LoadError("Pygame Exception: {}".format(e))
raise LoadError("Font subsystem not initialized before attempting to obtain resource.") raise LoadError("Font subsystem not initialized before attempting to obtain resource.")





Loading…
Cancel
Save