partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
valid
Window.swap_buffers
Swaps buffers, incement the framecounter and pull events.
demosys/context/glfw/window.py
def swap_buffers(self): """ Swaps buffers, incement the framecounter and pull events. """ self.frames += 1 glfw.swap_buffers(self.window) self.poll_events()
def swap_buffers(self): """ Swaps buffers, incement the framecounter and pull events. """ self.frames += 1 glfw.swap_buffers(self.window) self.poll_events()
[ "Swaps", "buffers", "incement", "the", "framecounter", "and", "pull", "events", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/glfw/window.py#L99-L105
[ "def", "swap_buffers", "(", "self", ")", ":", "self", ".", "frames", "+=", "1", "glfw", ".", "swap_buffers", "(", "self", ".", "window", ")", "self", ".", "poll_events", "(", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.resize
Sets the new size and buffer size internally
demosys/context/glfw/window.py
def resize(self, width, height): """ Sets the new size and buffer size internally """ self.width = width self.height = height self.buffer_width, self.buffer_height = glfw.get_framebuffer_size(self.window) self.set_default_viewport()
def resize(self, width, height): """ Sets the new size and buffer size internally """ self.width = width self.height = height self.buffer_width, self.buffer_height = glfw.get_framebuffer_size(self.window) self.set_default_viewport()
[ "Sets", "the", "new", "size", "and", "buffer", "size", "internally" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/glfw/window.py#L107-L114
[ "def", "resize", "(", "self", ",", "width", ",", "height", ")", ":", "self", ".", "width", "=", "width", "self", ".", "height", "=", "height", "self", ".", "buffer_width", ",", "self", ".", "buffer_height", "=", "glfw", ".", "get_framebuffer_size", "(", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.check_glfw_version
Ensure glfw library version is compatible
demosys/context/glfw/window.py
def check_glfw_version(self): """ Ensure glfw library version is compatible """ print("glfw version: {} (python wrapper version {})".format(glfw.get_version(), glfw.__version__)) if glfw.get_version() < self.min_glfw_version: raise ValueError("Please update glfw bina...
def check_glfw_version(self): """ Ensure glfw library version is compatible """ print("glfw version: {} (python wrapper version {})".format(glfw.get_version(), glfw.__version__)) if glfw.get_version() < self.min_glfw_version: raise ValueError("Please update glfw bina...
[ "Ensure", "glfw", "library", "version", "is", "compatible" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/glfw/window.py#L126-L132
[ "def", "check_glfw_version", "(", "self", ")", ":", "print", "(", "\"glfw version: {} (python wrapper version {})\"", ".", "format", "(", "glfw", ".", "get_version", "(", ")", ",", "glfw", ".", "__version__", ")", ")", "if", "glfw", ".", "get_version", "(", ")...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.key_event_callback
Key event callback for glfw. Translates and forwards keyboard event to :py:func:`keyboard_event` :param window: Window event origin :param key: The key that was pressed or released. :param scancode: The system-specific scancode of the key. :param action: GLFW_PRESS, GLFW_RELEASE...
demosys/context/glfw/window.py
def key_event_callback(self, window, key, scancode, action, mods): """ Key event callback for glfw. Translates and forwards keyboard event to :py:func:`keyboard_event` :param window: Window event origin :param key: The key that was pressed or released. :param scancode: T...
def key_event_callback(self, window, key, scancode, action, mods): """ Key event callback for glfw. Translates and forwards keyboard event to :py:func:`keyboard_event` :param window: Window event origin :param key: The key that was pressed or released. :param scancode: T...
[ "Key", "event", "callback", "for", "glfw", ".", "Translates", "and", "forwards", "keyboard", "event", "to", ":", "py", ":", "func", ":", "keyboard_event" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/glfw/window.py#L134-L145
[ "def", "key_event_callback", "(", "self", ",", "window", ",", "key", ",", "scancode", ",", "action", ",", "mods", ")", ":", "self", ".", "keyboard_event", "(", "key", ",", "action", ",", "mods", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
ctx
ModernGL context
demosys/context/__init__.py
def ctx() -> moderngl.Context: """ModernGL context""" win = window() if not win.ctx: raise RuntimeError("Attempting to get context before creation") return win.ctx
def ctx() -> moderngl.Context: """ModernGL context""" win = window() if not win.ctx: raise RuntimeError("Attempting to get context before creation") return win.ctx
[ "ModernGL", "context" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/__init__.py#L23-L29
[ "def", "ctx", "(", ")", "->", "moderngl", ".", "Context", ":", "win", "=", "window", "(", ")", "if", "not", "win", ".", "ctx", ":", "raise", "RuntimeError", "(", "\"Attempting to get context before creation\"", ")", "return", "win", ".", "ctx" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
quad_2d
Creates a 2D quad VAO using 2 triangles with normals and texture coordinates. Args: width (float): Width of the quad height (float): Height of the quad Keyword Args: xpos (float): Center position x ypos (float): Center position y Returns: A :py:class:`demosys.openg...
demosys/geometry/quad.py
def quad_2d(width, height, xpos=0.0, ypos=0.0) -> VAO: """ Creates a 2D quad VAO using 2 triangles with normals and texture coordinates. Args: width (float): Width of the quad height (float): Height of the quad Keyword Args: xpos (float): Center position x ypos (float):...
def quad_2d(width, height, xpos=0.0, ypos=0.0) -> VAO: """ Creates a 2D quad VAO using 2 triangles with normals and texture coordinates. Args: width (float): Width of the quad height (float): Height of the quad Keyword Args: xpos (float): Center position x ypos (float):...
[ "Creates", "a", "2D", "quad", "VAO", "using", "2", "triangles", "with", "normals", "and", "texture", "coordinates", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/geometry/quad.py#L17-L64
[ "def", "quad_2d", "(", "width", ",", "height", ",", "xpos", "=", "0.0", ",", "ypos", "=", "0.0", ")", "->", "VAO", ":", "pos", "=", "numpy", ".", "array", "(", "[", "xpos", "-", "width", "/", "2.0", ",", "ypos", "+", "height", "/", "2.0", ",", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
translate_buffer_format
Translate the buffer format
demosys/loaders/scene/wavefront.py
def translate_buffer_format(vertex_format): """Translate the buffer format""" buffer_format = [] attributes = [] mesh_attributes = [] if "T2F" in vertex_format: buffer_format.append("2f") attributes.append("in_uv") mesh_attributes.append(("TEXCOORD_0", "in_uv", 2)) if "...
def translate_buffer_format(vertex_format): """Translate the buffer format""" buffer_format = [] attributes = [] mesh_attributes = [] if "T2F" in vertex_format: buffer_format.append("2f") attributes.append("in_uv") mesh_attributes.append(("TEXCOORD_0", "in_uv", 2)) if "...
[ "Translate", "the", "buffer", "format" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/loaders/scene/wavefront.py#L14-L39
[ "def", "translate_buffer_format", "(", "vertex_format", ")", ":", "buffer_format", "=", "[", "]", "attributes", "=", "[", "]", "mesh_attributes", "=", "[", "]", "if", "\"T2F\"", "in", "vertex_format", ":", "buffer_format", ".", "append", "(", "\"2f\"", ")", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
ObjLoader.load
Deferred loading
demosys/loaders/scene/wavefront.py
def load(self): """Deferred loading""" path = self.find_scene(self.meta.path) if not path: raise ValueError("Scene '{}' not found".format(self.meta.path)) if path.suffix == '.bin': path = path.parent / path.stem data = pywavefront.Wavefront(str(path), c...
def load(self): """Deferred loading""" path = self.find_scene(self.meta.path) if not path: raise ValueError("Scene '{}' not found".format(self.meta.path)) if path.suffix == '.bin': path = path.parent / path.stem data = pywavefront.Wavefront(str(path), c...
[ "Deferred", "loading" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/loaders/scene/wavefront.py#L72-L141
[ "def", "load", "(", "self", ")", ":", "path", "=", "self", ".", "find_scene", "(", "self", ".", "meta", ".", "path", ")", "if", "not", "path", ":", "raise", "ValueError", "(", "\"Scene '{}' not found\"", ".", "format", "(", "self", ".", "meta", ".", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.start
Start the timer by recoding the current ``time.time()`` preparing to report the number of seconds since this timestamp.
demosys/timers/clock.py
def start(self): """ Start the timer by recoding the current ``time.time()`` preparing to report the number of seconds since this timestamp. """ if self.start_time is None: self.start_time = time.time() # Play after pause else: # Add the du...
def start(self): """ Start the timer by recoding the current ``time.time()`` preparing to report the number of seconds since this timestamp. """ if self.start_time is None: self.start_time = time.time() # Play after pause else: # Add the du...
[ "Start", "the", "timer", "by", "recoding", "the", "current", "time", ".", "time", "()", "preparing", "to", "report", "the", "number", "of", "seconds", "since", "this", "timestamp", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/clock.py#L18-L32
[ "def", "start", "(", "self", ")", ":", "if", "self", ".", "start_time", "is", "None", ":", "self", ".", "start_time", "=", "time", ".", "time", "(", ")", "# Play after pause", "else", ":", "# Add the duration of the paused interval to the total offset", "pause_dur...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.stop
Stop the timer Returns: The time the timer was stopped
demosys/timers/clock.py
def stop(self) -> float: """ Stop the timer Returns: The time the timer was stopped """ self.stop_time = time.time() return self.stop_time - self.start_time - self.offset
def stop(self) -> float: """ Stop the timer Returns: The time the timer was stopped """ self.stop_time = time.time() return self.stop_time - self.start_time - self.offset
[ "Stop", "the", "timer" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/clock.py#L47-L55
[ "def", "stop", "(", "self", ")", "->", "float", ":", "self", ".", "stop_time", "=", "time", ".", "time", "(", ")", "return", "self", ".", "stop_time", "-", "self", ".", "start_time", "-", "self", ".", "offset" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.get_time
Get the current time in seconds Returns: The current time in seconds
demosys/timers/clock.py
def get_time(self) -> float: """ Get the current time in seconds Returns: The current time in seconds """ if self.pause_time is not None: curr_time = self.pause_time - self.offset - self.start_time return curr_time curr_time = time.ti...
def get_time(self) -> float: """ Get the current time in seconds Returns: The current time in seconds """ if self.pause_time is not None: curr_time = self.pause_time - self.offset - self.start_time return curr_time curr_time = time.ti...
[ "Get", "the", "current", "time", "in", "seconds" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/clock.py#L57-L69
[ "def", "get_time", "(", "self", ")", "->", "float", ":", "if", "self", ".", "pause_time", "is", "not", "None", ":", "curr_time", "=", "self", ".", "pause_time", "-", "self", ".", "offset", "-", "self", ".", "start_time", "return", "curr_time", "curr_time...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.set_time
Set the current time. This can be used to jump in the timeline. Args: value (float): The new time
demosys/timers/clock.py
def set_time(self, value: float): """ Set the current time. This can be used to jump in the timeline. Args: value (float): The new time """ if value < 0: value = 0 self.offset += self.get_time() - value
def set_time(self, value: float): """ Set the current time. This can be used to jump in the timeline. Args: value (float): The new time """ if value < 0: value = 0 self.offset += self.get_time() - value
[ "Set", "the", "current", "time", ".", "This", "can", "be", "used", "to", "jump", "in", "the", "timeline", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/clock.py#L71-L81
[ "def", "set_time", "(", "self", ",", "value", ":", "float", ")", ":", "if", "value", "<", "0", ":", "value", "=", "0", "self", ".", "offset", "+=", "self", ".", "get_time", "(", ")", "-", "value" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Scenes.resolve_loader
Resolve scene loader based on file extension
demosys/resources/scenes.py
def resolve_loader(self, meta: SceneDescription): """ Resolve scene loader based on file extension """ for loader_cls in self._loaders: if loader_cls.supports_file(meta): meta.loader_cls = loader_cls break else: raise Improp...
def resolve_loader(self, meta: SceneDescription): """ Resolve scene loader based on file extension """ for loader_cls in self._loaders: if loader_cls.supports_file(meta): meta.loader_cls = loader_cls break else: raise Improp...
[ "Resolve", "scene", "loader", "based", "on", "file", "extension" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/scenes.py#L20-L30
[ "def", "resolve_loader", "(", "self", ",", "meta", ":", "SceneDescription", ")", ":", "for", "loader_cls", "in", "self", ".", "_loaders", ":", "if", "loader_cls", ".", "supports_file", "(", "meta", ")", ":", "meta", ".", "loader_cls", "=", "loader_cls", "b...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.on_key_press
Pyglet specific key press callback. Forwards and translates the events to :py:func:`keyboard_event`
demosys/context/pyglet/window.py
def on_key_press(self, symbol, modifiers): """ Pyglet specific key press callback. Forwards and translates the events to :py:func:`keyboard_event` """ self.keyboard_event(symbol, self.keys.ACTION_PRESS, modifiers)
def on_key_press(self, symbol, modifiers): """ Pyglet specific key press callback. Forwards and translates the events to :py:func:`keyboard_event` """ self.keyboard_event(symbol, self.keys.ACTION_PRESS, modifiers)
[ "Pyglet", "specific", "key", "press", "callback", ".", "Forwards", "and", "translates", "the", "events", "to", ":", "py", ":", "func", ":", "keyboard_event" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyglet/window.py#L68-L73
[ "def", "on_key_press", "(", "self", ",", "symbol", ",", "modifiers", ")", ":", "self", ".", "keyboard_event", "(", "symbol", ",", "self", ".", "keys", ".", "ACTION_PRESS", ",", "modifiers", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.on_key_release
Pyglet specific key release callback. Forwards and translates the events to :py:func:`keyboard_event`
demosys/context/pyglet/window.py
def on_key_release(self, symbol, modifiers): """ Pyglet specific key release callback. Forwards and translates the events to :py:func:`keyboard_event` """ self.keyboard_event(symbol, self.keys.ACTION_RELEASE, modifiers)
def on_key_release(self, symbol, modifiers): """ Pyglet specific key release callback. Forwards and translates the events to :py:func:`keyboard_event` """ self.keyboard_event(symbol, self.keys.ACTION_RELEASE, modifiers)
[ "Pyglet", "specific", "key", "release", "callback", ".", "Forwards", "and", "translates", "the", "events", "to", ":", "py", ":", "func", ":", "keyboard_event" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyglet/window.py#L75-L80
[ "def", "on_key_release", "(", "self", ",", "symbol", ",", "modifiers", ")", ":", "self", ".", "keyboard_event", "(", "symbol", ",", "self", ".", "keys", ".", "ACTION_RELEASE", ",", "modifiers", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.on_mouse_motion
Pyglet specific mouse motion callback. Forwards and traslates the event to :py:func:`cursor_event`
demosys/context/pyglet/window.py
def on_mouse_motion(self, x, y, dx, dy): """ Pyglet specific mouse motion callback. Forwards and traslates the event to :py:func:`cursor_event` """ # screen coordinates relative to the lower-left corner self.cursor_event(x, self.buffer_height - y, dx, dy)
def on_mouse_motion(self, x, y, dx, dy): """ Pyglet specific mouse motion callback. Forwards and traslates the event to :py:func:`cursor_event` """ # screen coordinates relative to the lower-left corner self.cursor_event(x, self.buffer_height - y, dx, dy)
[ "Pyglet", "specific", "mouse", "motion", "callback", ".", "Forwards", "and", "traslates", "the", "event", "to", ":", "py", ":", "func", ":", "cursor_event" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyglet/window.py#L82-L88
[ "def", "on_mouse_motion", "(", "self", ",", "x", ",", "y", ",", "dx", ",", "dy", ")", ":", "# screen coordinates relative to the lower-left corner\r", "self", ".", "cursor_event", "(", "x", ",", "self", ".", "buffer_height", "-", "y", ",", "dx", ",", "dy", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.on_resize
Pyglet specific callback for window resize events.
demosys/context/pyglet/window.py
def on_resize(self, width, height): """ Pyglet specific callback for window resize events. """ self.width, self.height = width, height self.buffer_width, self.buffer_height = width, height self.resize(width, height)
def on_resize(self, width, height): """ Pyglet specific callback for window resize events. """ self.width, self.height = width, height self.buffer_width, self.buffer_height = width, height self.resize(width, height)
[ "Pyglet", "specific", "callback", "for", "window", "resize", "events", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyglet/window.py#L90-L96
[ "def", "on_resize", "(", "self", ",", "width", ",", "height", ")", ":", "self", ".", "width", ",", "self", ".", "height", "=", "width", ",", "height", "self", ".", "buffer_width", ",", "self", ".", "buffer_height", "=", "width", ",", "height", "self", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.swap_buffers
Swap buffers, increment frame counter and pull events
demosys/context/pyglet/window.py
def swap_buffers(self): """ Swap buffers, increment frame counter and pull events """ if not self.window.context: return self.frames += 1 self.window.flip() self.window.dispatch_events()
def swap_buffers(self): """ Swap buffers, increment frame counter and pull events """ if not self.window.context: return self.frames += 1 self.window.flip() self.window.dispatch_events()
[ "Swap", "buffers", "increment", "frame", "counter", "and", "pull", "events" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyglet/window.py#L102-L111
[ "def", "swap_buffers", "(", "self", ")", ":", "if", "not", "self", ".", "window", ".", "context", ":", "return", "self", ".", "frames", "+=", "1", "self", ".", "window", ".", "flip", "(", ")", "self", ".", "window", ".", "dispatch_events", "(", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
sphere
Creates a sphere. Keyword Args: radius (float): Radius or the sphere rings (int): number or horizontal rings sectors (int): number of vertical segments Returns: A :py:class:`demosys.opengl.vao.VAO` instance
demosys/geometry/sphere.py
def sphere(radius=0.5, sectors=32, rings=16) -> VAO: """ Creates a sphere. Keyword Args: radius (float): Radius or the sphere rings (int): number or horizontal rings sectors (int): number of vertical segments Returns: A :py:class:`demosys.opengl.vao.VAO` instance ""...
def sphere(radius=0.5, sectors=32, rings=16) -> VAO: """ Creates a sphere. Keyword Args: radius (float): Radius or the sphere rings (int): number or horizontal rings sectors (int): number of vertical segments Returns: A :py:class:`demosys.opengl.vao.VAO` instance ""...
[ "Creates", "a", "sphere", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/geometry/sphere.py#L9-L75
[ "def", "sphere", "(", "radius", "=", "0.5", ",", "sectors", "=", "32", ",", "rings", "=", "16", ")", "->", "VAO", ":", "R", "=", "1.0", "/", "(", "rings", "-", "1", ")", "S", "=", "1.0", "/", "(", "sectors", "-", "1", ")", "vertices", "=", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.draw
Calls the superclass ``draw()`` methods and checks ``HEADLESS_FRAMES``/``HEADLESS_DURATION``
demosys/context/headless.py
def draw(self, current_time, frame_time): """ Calls the superclass ``draw()`` methods and checks ``HEADLESS_FRAMES``/``HEADLESS_DURATION`` """ super().draw(current_time, frame_time) if self.headless_duration and current_time >= self.headless_duration: self.close()
def draw(self, current_time, frame_time): """ Calls the superclass ``draw()`` methods and checks ``HEADLESS_FRAMES``/``HEADLESS_DURATION`` """ super().draw(current_time, frame_time) if self.headless_duration and current_time >= self.headless_duration: self.close()
[ "Calls", "the", "superclass", "draw", "()", "methods", "and", "checks", "HEADLESS_FRAMES", "/", "HEADLESS_DURATION" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/headless.py#L43-L50
[ "def", "draw", "(", "self", ",", "current_time", ",", "frame_time", ")", ":", "super", "(", ")", ".", "draw", "(", "current_time", ",", "frame_time", ")", "if", "self", ".", "headless_duration", "and", "current_time", ">=", "self", ".", "headless_duration", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.swap_buffers
Headless window currently don't support double buffering. We only increment the frame counter here.
demosys/context/headless.py
def swap_buffers(self): """ Headless window currently don't support double buffering. We only increment the frame counter here. """ self.frames += 1 if self.headless_frames and self.frames >= self.headless_frames: self.close()
def swap_buffers(self): """ Headless window currently don't support double buffering. We only increment the frame counter here. """ self.frames += 1 if self.headless_frames and self.frames >= self.headless_frames: self.close()
[ "Headless", "window", "currently", "don", "t", "support", "double", "buffering", ".", "We", "only", "increment", "the", "frame", "counter", "here", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/headless.py#L73-L81
[ "def", "swap_buffers", "(", "self", ")", ":", "self", ".", "frames", "+=", "1", "if", "self", ".", "headless_frames", "and", "self", ".", "frames", ">=", "self", ".", "headless_frames", ":", "self", ".", "close", "(", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseRegistry.load
Loads a resource or return existing one :param meta: The resource description
demosys/resources/base.py
def load(self, meta: ResourceDescription) -> Any: """ Loads a resource or return existing one :param meta: The resource description """ self._check_meta(meta) self.resolve_loader(meta) return meta.loader_cls(meta).load()
def load(self, meta: ResourceDescription) -> Any: """ Loads a resource or return existing one :param meta: The resource description """ self._check_meta(meta) self.resolve_loader(meta) return meta.loader_cls(meta).load()
[ "Loads", "a", "resource", "or", "return", "existing", "one" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/base.py#L100-L108
[ "def", "load", "(", "self", ",", "meta", ":", "ResourceDescription", ")", "->", "Any", ":", "self", ".", "_check_meta", "(", "meta", ")", "self", ".", "resolve_loader", "(", "meta", ")", "return", "meta", ".", "loader_cls", "(", "meta", ")", ".", "load...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseRegistry.add
Add a resource to this pool. The resource is loaded and returned when ``load_pool()`` is called. :param meta: The resource description
demosys/resources/base.py
def add(self, meta): """ Add a resource to this pool. The resource is loaded and returned when ``load_pool()`` is called. :param meta: The resource description """ self._check_meta(meta) self.resolve_loader(meta) self._resources.append(meta)
def add(self, meta): """ Add a resource to this pool. The resource is loaded and returned when ``load_pool()`` is called. :param meta: The resource description """ self._check_meta(meta) self.resolve_loader(meta) self._resources.append(meta)
[ "Add", "a", "resource", "to", "this", "pool", ".", "The", "resource", "is", "loaded", "and", "returned", "when", "load_pool", "()", "is", "called", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/base.py#L110-L119
[ "def", "add", "(", "self", ",", "meta", ")", ":", "self", ".", "_check_meta", "(", "meta", ")", "self", ".", "resolve_loader", "(", "meta", ")", "self", ".", "_resources", ".", "append", "(", "meta", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseRegistry.load_pool
Loads all the data files using the configured finders.
demosys/resources/base.py
def load_pool(self): """ Loads all the data files using the configured finders. """ for meta in self._resources: resource = self.load(meta) yield meta, resource self._resources = []
def load_pool(self): """ Loads all the data files using the configured finders. """ for meta in self._resources: resource = self.load(meta) yield meta, resource self._resources = []
[ "Loads", "all", "the", "data", "files", "using", "the", "configured", "finders", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/base.py#L121-L129
[ "def", "load_pool", "(", "self", ")", ":", "for", "meta", "in", "self", ".", "_resources", ":", "resource", "=", "self", ".", "load", "(", "meta", ")", "yield", "meta", ",", "resource", "self", ".", "_resources", "=", "[", "]" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseRegistry.resolve_loader
Attempts to assign a loader class to a resource description :param meta: The resource description instance
demosys/resources/base.py
def resolve_loader(self, meta: ResourceDescription): """ Attempts to assign a loader class to a resource description :param meta: The resource description instance """ meta.loader_cls = self.get_loader(meta, raise_on_error=True)
def resolve_loader(self, meta: ResourceDescription): """ Attempts to assign a loader class to a resource description :param meta: The resource description instance """ meta.loader_cls = self.get_loader(meta, raise_on_error=True)
[ "Attempts", "to", "assign", "a", "loader", "class", "to", "a", "resource", "description" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/base.py#L131-L137
[ "def", "resolve_loader", "(", "self", ",", "meta", ":", "ResourceDescription", ")", ":", "meta", ".", "loader_cls", "=", "self", ".", "get_loader", "(", "meta", ",", "raise_on_error", "=", "True", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseRegistry.get_loader
Attempts to get a loader :param meta: The resource description instance :param raise_on_error: Raise ImproperlyConfigured if the loader cannot be resolved :returns: The requested loader class
demosys/resources/base.py
def get_loader(self, meta: ResourceDescription, raise_on_error=False) -> BaseLoader: """ Attempts to get a loader :param meta: The resource description instance :param raise_on_error: Raise ImproperlyConfigured if the loader cannot be resolved :returns: The requested loader clas...
def get_loader(self, meta: ResourceDescription, raise_on_error=False) -> BaseLoader: """ Attempts to get a loader :param meta: The resource description instance :param raise_on_error: Raise ImproperlyConfigured if the loader cannot be resolved :returns: The requested loader clas...
[ "Attempts", "to", "get", "a", "loader" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/base.py#L139-L154
[ "def", "get_loader", "(", "self", ",", "meta", ":", "ResourceDescription", ",", "raise_on_error", "=", "False", ")", "->", "BaseLoader", ":", "for", "loader", "in", "self", ".", "_loaders", ":", "if", "loader", ".", "name", "==", "meta", ".", "loader", "...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.keyPressEvent
Pyqt specific key press callback function. Translates and forwards events to :py:func:`keyboard_event`.
demosys/context/pyqt/window.py
def keyPressEvent(self, event): """ Pyqt specific key press callback function. Translates and forwards events to :py:func:`keyboard_event`. """ self.keyboard_event(event.key(), self.keys.ACTION_PRESS, 0)
def keyPressEvent(self, event): """ Pyqt specific key press callback function. Translates and forwards events to :py:func:`keyboard_event`. """ self.keyboard_event(event.key(), self.keys.ACTION_PRESS, 0)
[ "Pyqt", "specific", "key", "press", "callback", "function", ".", "Translates", "and", "forwards", "events", "to", ":", "py", ":", "func", ":", "keyboard_event", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyqt/window.py#L94-L99
[ "def", "keyPressEvent", "(", "self", ",", "event", ")", ":", "self", ".", "keyboard_event", "(", "event", ".", "key", "(", ")", ",", "self", ".", "keys", ".", "ACTION_PRESS", ",", "0", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.keyReleaseEvent
Pyqt specific key release callback function. Translates and forwards events to :py:func:`keyboard_event`.
demosys/context/pyqt/window.py
def keyReleaseEvent(self, event): """ Pyqt specific key release callback function. Translates and forwards events to :py:func:`keyboard_event`. """ self.keyboard_event(event.key(), self.keys.ACTION_RELEASE, 0)
def keyReleaseEvent(self, event): """ Pyqt specific key release callback function. Translates and forwards events to :py:func:`keyboard_event`. """ self.keyboard_event(event.key(), self.keys.ACTION_RELEASE, 0)
[ "Pyqt", "specific", "key", "release", "callback", "function", ".", "Translates", "and", "forwards", "events", "to", ":", "py", ":", "func", ":", "keyboard_event", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyqt/window.py#L101-L106
[ "def", "keyReleaseEvent", "(", "self", ",", "event", ")", ":", "self", ".", "keyboard_event", "(", "event", ".", "key", "(", ")", ",", "self", ".", "keys", ".", "ACTION_RELEASE", ",", "0", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Window.resize
Pyqt specific resize callback.
demosys/context/pyqt/window.py
def resize(self, width, height): """ Pyqt specific resize callback. """ if not self.fbo: return # pyqt reports sizes in actual buffer size self.width = width // self.widget.devicePixelRatio() self.height = height // self.widget.devicePixelRatio() ...
def resize(self, width, height): """ Pyqt specific resize callback. """ if not self.fbo: return # pyqt reports sizes in actual buffer size self.width = width // self.widget.devicePixelRatio() self.height = height // self.widget.devicePixelRatio() ...
[ "Pyqt", "specific", "resize", "callback", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/pyqt/window.py#L115-L128
[ "def", "resize", "(", "self", ",", "width", ",", "height", ")", ":", "if", "not", "self", ".", "fbo", ":", "return", "# pyqt reports sizes in actual buffer size", "self", ".", "width", "=", "width", "//", "self", ".", "widget", ".", "devicePixelRatio", "(", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
TextureHelper.draw
Draw texture using a fullscreen quad. By default this will conver the entire screen. :param pos: (tuple) offset x, y :param scale: (tuple) scale x, y
demosys/opengl/texture.py
def draw(self, texture, pos=(0.0, 0.0), scale=(1.0, 1.0)): """ Draw texture using a fullscreen quad. By default this will conver the entire screen. :param pos: (tuple) offset x, y :param scale: (tuple) scale x, y """ if not self.initialized: ...
def draw(self, texture, pos=(0.0, 0.0), scale=(1.0, 1.0)): """ Draw texture using a fullscreen quad. By default this will conver the entire screen. :param pos: (tuple) offset x, y :param scale: (tuple) scale x, y """ if not self.initialized: ...
[ "Draw", "texture", "using", "a", "fullscreen", "quad", ".", "By", "default", "this", "will", "conver", "the", "entire", "screen", ".", ":", "param", "pos", ":", "(", "tuple", ")", "offset", "x", "y", ":", "param", "scale", ":", "(", "tuple", ")", "sc...
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/texture.py#L30-L47
[ "def", "draw", "(", "self", ",", "texture", ",", "pos", "=", "(", "0.0", ",", "0.0", ")", ",", "scale", "=", "(", "1.0", ",", "1.0", ")", ")", ":", "if", "not", "self", ".", "initialized", ":", "self", ".", "init", "(", ")", "self", ".", "_te...
6466128a3029c4d09631420ccce73024025bd5b6
valid
TextureHelper.draw_depth
Draw depth buffer linearized. By default this will draw the texture as a full screen quad. A sampler will be used to ensure the right conditions to draw the depth buffer. :param near: Near plane in projection :param far: Far plane in projection :param pos: (tuple) offset x...
demosys/opengl/texture.py
def draw_depth(self, texture, near, far, pos=(0.0, 0.0), scale=(1.0, 1.0)): """ Draw depth buffer linearized. By default this will draw the texture as a full screen quad. A sampler will be used to ensure the right conditions to draw the depth buffer. :param near: Near plan...
def draw_depth(self, texture, near, far, pos=(0.0, 0.0), scale=(1.0, 1.0)): """ Draw depth buffer linearized. By default this will draw the texture as a full screen quad. A sampler will be used to ensure the right conditions to draw the depth buffer. :param near: Near plan...
[ "Draw", "depth", "buffer", "linearized", ".", "By", "default", "this", "will", "draw", "the", "texture", "as", "a", "full", "screen", "quad", ".", "A", "sampler", "will", "be", "used", "to", "ensure", "the", "right", "conditions", "to", "draw", "the", "d...
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/texture.py#L49-L71
[ "def", "draw_depth", "(", "self", ",", "texture", ",", "near", ",", "far", ",", "pos", "=", "(", "0.0", ",", "0.0", ")", ",", "scale", "=", "(", "1.0", ",", "1.0", ")", ")", ":", "if", "not", "self", ".", "initialized", ":", "self", ".", "init"...
6466128a3029c4d09631420ccce73024025bd5b6
valid
TextureHelper._init_texture2d_draw
Initialize geometry and shader for drawing FBO layers
demosys/opengl/texture.py
def _init_texture2d_draw(self): """Initialize geometry and shader for drawing FBO layers""" if not TextureHelper._quad: TextureHelper._quad = geometry.quad_fs() # Shader for drawing color layers TextureHelper._texture2d_shader = context.ctx().program( vert...
def _init_texture2d_draw(self): """Initialize geometry and shader for drawing FBO layers""" if not TextureHelper._quad: TextureHelper._quad = geometry.quad_fs() # Shader for drawing color layers TextureHelper._texture2d_shader = context.ctx().program( vert...
[ "Initialize", "geometry", "and", "shader", "for", "drawing", "FBO", "layers" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/texture.py#L73-L109
[ "def", "_init_texture2d_draw", "(", "self", ")", ":", "if", "not", "TextureHelper", ".", "_quad", ":", "TextureHelper", ".", "_quad", "=", "geometry", ".", "quad_fs", "(", ")", "# Shader for drawing color layers\r", "TextureHelper", ".", "_texture2d_shader", "=", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
TextureHelper._init_depth_texture_draw
Initialize geometry and shader for drawing FBO layers
demosys/opengl/texture.py
def _init_depth_texture_draw(self): """Initialize geometry and shader for drawing FBO layers""" from demosys import geometry if not TextureHelper._quad: TextureHelper._quad = geometry.quad_fs() # Shader for drawing depth layers TextureHelper._depth_shader = ...
def _init_depth_texture_draw(self): """Initialize geometry and shader for drawing FBO layers""" from demosys import geometry if not TextureHelper._quad: TextureHelper._quad = geometry.quad_fs() # Shader for drawing depth layers TextureHelper._depth_shader = ...
[ "Initialize", "geometry", "and", "shader", "for", "drawing", "FBO", "layers" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/texture.py#L111-L154
[ "def", "_init_depth_texture_draw", "(", "self", ")", ":", "from", "demosys", "import", "geometry", "if", "not", "TextureHelper", ".", "_quad", ":", "TextureHelper", ".", "_quad", "=", "geometry", ".", "quad_fs", "(", ")", "# Shader for drawing depth layers\r", "Te...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseWindow.draw
Draws a frame. Internally it calls the configured timeline's draw method. Args: current_time (float): The current time (preferrably always from the configured timer class) frame_time (float): The duration of the previous frame in seconds
demosys/context/base.py
def draw(self, current_time, frame_time): """ Draws a frame. Internally it calls the configured timeline's draw method. Args: current_time (float): The current time (preferrably always from the configured timer class) frame_time (float): The duration of the previ...
def draw(self, current_time, frame_time): """ Draws a frame. Internally it calls the configured timeline's draw method. Args: current_time (float): The current time (preferrably always from the configured timer class) frame_time (float): The duration of the previ...
[ "Draws", "a", "frame", ".", "Internally", "it", "calls", "the", "configured", "timeline", "s", "draw", "method", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/base.py#L97-L107
[ "def", "draw", "(", "self", ",", "current_time", ",", "frame_time", ")", ":", "self", ".", "set_default_viewport", "(", ")", "self", ".", "timeline", ".", "draw", "(", "current_time", ",", "frame_time", ",", "self", ".", "fbo", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseWindow.clear
Clear the window buffer
demosys/context/base.py
def clear(self): """ Clear the window buffer """ self.ctx.fbo.clear( red=self.clear_color[0], green=self.clear_color[1], blue=self.clear_color[2], alpha=self.clear_color[3], depth=self.clear_depth, )
def clear(self): """ Clear the window buffer """ self.ctx.fbo.clear( red=self.clear_color[0], green=self.clear_color[1], blue=self.clear_color[2], alpha=self.clear_color[3], depth=self.clear_depth, )
[ "Clear", "the", "window", "buffer" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/base.py#L109-L119
[ "def", "clear", "(", "self", ")", ":", "self", ".", "ctx", ".", "fbo", ".", "clear", "(", "red", "=", "self", ".", "clear_color", "[", "0", "]", ",", "green", "=", "self", ".", "clear_color", "[", "1", "]", ",", "blue", "=", "self", ".", "clear...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseWindow.clear_values
Sets the clear values for the window buffer. Args: red (float): red compoent green (float): green compoent blue (float): blue compoent alpha (float): alpha compoent depth (float): depth value
demosys/context/base.py
def clear_values(self, red=0.0, green=0.0, blue=0.0, alpha=0.0, depth=1.0): """ Sets the clear values for the window buffer. Args: red (float): red compoent green (float): green compoent blue (float): blue compoent alpha (float): alpha compoent ...
def clear_values(self, red=0.0, green=0.0, blue=0.0, alpha=0.0, depth=1.0): """ Sets the clear values for the window buffer. Args: red (float): red compoent green (float): green compoent blue (float): blue compoent alpha (float): alpha compoent ...
[ "Sets", "the", "clear", "values", "for", "the", "window", "buffer", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/base.py#L121-L133
[ "def", "clear_values", "(", "self", ",", "red", "=", "0.0", ",", "green", "=", "0.0", ",", "blue", "=", "0.0", ",", "alpha", "=", "0.0", ",", "depth", "=", "1.0", ")", ":", "self", ".", "clear_color", "=", "(", "red", ",", "green", ",", "blue", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseWindow.keyboard_event
Handles the standard keyboard events such as camera movements, taking a screenshot, closing the window etc. Can be overriden add new keyboard events. Ensure this method is also called if you want to keep the standard features. Arguments: key: The key that was pressed or rel...
demosys/context/base.py
def keyboard_event(self, key, action, modifier): """ Handles the standard keyboard events such as camera movements, taking a screenshot, closing the window etc. Can be overriden add new keyboard events. Ensure this method is also called if you want to keep the standard features....
def keyboard_event(self, key, action, modifier): """ Handles the standard keyboard events such as camera movements, taking a screenshot, closing the window etc. Can be overriden add new keyboard events. Ensure this method is also called if you want to keep the standard features....
[ "Handles", "the", "standard", "keyboard", "events", "such", "as", "camera", "movements", "taking", "a", "screenshot", "closing", "the", "window", "etc", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/base.py#L194-L270
[ "def", "keyboard_event", "(", "self", ",", "key", ",", "action", ",", "modifier", ")", ":", "# The well-known standard key for quick exit", "if", "key", "==", "self", ".", "keys", ".", "ESCAPE", ":", "self", ".", "close", "(", ")", "return", "# Toggle pause ti...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseWindow.cursor_event
The standard mouse movement event method. Can be overriden to add new functionality. By default this feeds the system camera with new values. Args: x: The current mouse x position y: The current mouse y position dx: Delta x postion (x position difference from...
demosys/context/base.py
def cursor_event(self, x, y, dx, dy): """ The standard mouse movement event method. Can be overriden to add new functionality. By default this feeds the system camera with new values. Args: x: The current mouse x position y: The current mouse y position ...
def cursor_event(self, x, y, dx, dy): """ The standard mouse movement event method. Can be overriden to add new functionality. By default this feeds the system camera with new values. Args: x: The current mouse x position y: The current mouse y position ...
[ "The", "standard", "mouse", "movement", "event", "method", ".", "Can", "be", "overriden", "to", "add", "new", "functionality", ".", "By", "default", "this", "feeds", "the", "system", "camera", "with", "new", "values", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/base.py#L272-L284
[ "def", "cursor_event", "(", "self", ",", "x", ",", "y", ",", "dx", ",", "dy", ")", ":", "self", ".", "sys_camera", ".", "rot_state", "(", "x", ",", "y", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseWindow.set_default_viewport
Calculates the viewport based on the configured aspect ratio in settings. Will add black borders if the window do not match the viewport.
demosys/context/base.py
def set_default_viewport(self): """ Calculates the viewport based on the configured aspect ratio in settings. Will add black borders if the window do not match the viewport. """ # The expected height with the current viewport width expected_height = int(self.buffer_width ...
def set_default_viewport(self): """ Calculates the viewport based on the configured aspect ratio in settings. Will add black borders if the window do not match the viewport. """ # The expected height with the current viewport width expected_height = int(self.buffer_width ...
[ "Calculates", "the", "viewport", "based", "on", "the", "configured", "aspect", "ratio", "in", "settings", ".", "Will", "add", "black", "borders", "if", "the", "window", "do", "not", "match", "the", "viewport", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/context/base.py#L299-L309
[ "def", "set_default_viewport", "(", "self", ")", ":", "# The expected height with the current viewport width", "expected_height", "=", "int", "(", "self", ".", "buffer_width", "/", "self", ".", "aspect_ratio", ")", "# How much positive or negative y padding", "blank_space", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.start
Start the timer
demosys/timers/rocketmusic.py
def start(self): """Start the timer""" self.music.start() if not self.start_paused: self.rocket.start()
def start(self): """Start the timer""" self.music.start() if not self.start_paused: self.rocket.start()
[ "Start", "the", "timer" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/rocketmusic.py#L13-L17
[ "def", "start", "(", "self", ")", ":", "self", ".", "music", ".", "start", "(", ")", "if", "not", "self", ".", "start_paused", ":", "self", ".", "rocket", ".", "start", "(", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.toggle_pause
Toggle pause mode
demosys/timers/rocketmusic.py
def toggle_pause(self): """Toggle pause mode""" self.controller.playing = not self.controller.playing self.music.toggle_pause()
def toggle_pause(self): """Toggle pause mode""" self.controller.playing = not self.controller.playing self.music.toggle_pause()
[ "Toggle", "pause", "mode" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/rocketmusic.py#L43-L46
[ "def", "toggle_pause", "(", "self", ")", ":", "self", ".", "controller", ".", "playing", "=", "not", "self", ".", "controller", ".", "playing", "self", ".", "music", ".", "toggle_pause", "(", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
SceneLoader.supports_file
Check if the loader has a supported file extension
demosys/loaders/scene/base.py
def supports_file(cls, meta): """Check if the loader has a supported file extension""" path = Path(meta.path) for ext in cls.file_extensions: if path.suffixes[:len(ext)] == ext: return True return False
def supports_file(cls, meta): """Check if the loader has a supported file extension""" path = Path(meta.path) for ext in cls.file_extensions: if path.suffixes[:len(ext)] == ext: return True return False
[ "Check", "if", "the", "loader", "has", "a", "supported", "file", "extension" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/loaders/scene/base.py#L20-L28
[ "def", "supports_file", "(", "cls", ",", "meta", ")", ":", "path", "=", "Path", "(", "meta", ".", "path", ")", "for", "ext", "in", "cls", ".", "file_extensions", ":", "if", "path", ".", "suffixes", "[", ":", "len", "(", "ext", ")", "]", "==", "ex...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Tracks.get
Get or create a Track object. :param name: Name of the track :return: Track object
demosys/resources/tracks.py
def get(self, name) -> Track: """ Get or create a Track object. :param name: Name of the track :return: Track object """ name = name.lower() track = self.track_map.get(name) if not track: track = Track(name) self.tacks.append(track...
def get(self, name) -> Track: """ Get or create a Track object. :param name: Name of the track :return: Track object """ name = name.lower() track = self.track_map.get(name) if not track: track = Track(name) self.tacks.append(track...
[ "Get", "or", "create", "a", "Track", "object", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/tracks.py#L13-L26
[ "def", "get", "(", "self", ",", "name", ")", "->", "Track", ":", "name", "=", "name", ".", "lower", "(", ")", "track", "=", "self", ".", "track_map", ".", "get", "(", "name", ")", "if", "not", "track", ":", "track", "=", "Track", "(", "name", "...
6466128a3029c4d09631420ccce73024025bd5b6
valid
find_commands
Get all command names in the a folder :return: List of commands names
demosys/management/__init__.py
def find_commands(command_dir: str) -> List[str]: """ Get all command names in the a folder :return: List of commands names """ if not command_dir: return [] return [name for _, name, is_pkg in pkgutil.iter_modules([command_dir]) if not is_pkg and not name.startswith('_')]
def find_commands(command_dir: str) -> List[str]: """ Get all command names in the a folder :return: List of commands names """ if not command_dir: return [] return [name for _, name, is_pkg in pkgutil.iter_modules([command_dir]) if not is_pkg and not name.startswith('_')]
[ "Get", "all", "command", "names", "in", "the", "a", "folder" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/__init__.py#L9-L19
[ "def", "find_commands", "(", "command_dir", ":", "str", ")", "->", "List", "[", "str", "]", ":", "if", "not", "command_dir", ":", "return", "[", "]", "return", "[", "name", "for", "_", ",", "name", ",", "is_pkg", "in", "pkgutil", ".", "iter_modules", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
execute_from_command_line
Currently the only entrypoint (manage.py, demosys-admin)
demosys/management/__init__.py
def execute_from_command_line(argv=None): """ Currently the only entrypoint (manage.py, demosys-admin) """ if not argv: argv = sys.argv # prog_name = argv[0] system_commands = find_commands(system_command_dir()) project_commands = find_commands(project_command_dir()) project_pa...
def execute_from_command_line(argv=None): """ Currently the only entrypoint (manage.py, demosys-admin) """ if not argv: argv = sys.argv # prog_name = argv[0] system_commands = find_commands(system_command_dir()) project_commands = find_commands(project_command_dir()) project_pa...
[ "Currently", "the", "only", "entrypoint", "(", "manage", ".", "py", "demosys", "-", "admin", ")" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/__init__.py#L56-L83
[ "def", "execute_from_command_line", "(", "argv", "=", "None", ")", ":", "if", "not", "argv", ":", "argv", "=", "sys", ".", "argv", "# prog_name = argv[0]", "system_commands", "=", "find_commands", "(", "system_command_dir", "(", ")", ")", "project_commands", "="...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Settings.update
Override settings values
demosys/conf/__init__.py
def update(self, **kwargs): """Override settings values""" for name, value in kwargs.items(): setattr(self, name, value)
def update(self, **kwargs): """Override settings values""" for name, value in kwargs.items(): setattr(self, name, value)
[ "Override", "settings", "values" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/conf/__init__.py#L49-L52
[ "def", "update", "(", "self", ",", "*", "*", "kwargs", ")", ":", "for", "name", ",", "value", "in", "kwargs", ".", "items", "(", ")", ":", "setattr", "(", "self", ",", "name", ",", "value", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Settings.add_program_dir
Hack in program directory
demosys/conf/__init__.py
def add_program_dir(self, directory): """Hack in program directory""" dirs = list(self.PROGRAM_DIRS) dirs.append(directory) self.PROGRAM_DIRS = dirs
def add_program_dir(self, directory): """Hack in program directory""" dirs = list(self.PROGRAM_DIRS) dirs.append(directory) self.PROGRAM_DIRS = dirs
[ "Hack", "in", "program", "directory" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/conf/__init__.py#L63-L67
[ "def", "add_program_dir", "(", "self", ",", "directory", ")", ":", "dirs", "=", "list", "(", "self", ".", "PROGRAM_DIRS", ")", "dirs", ".", "append", "(", "directory", ")", "self", ".", "PROGRAM_DIRS", "=", "dirs" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Settings.add_texture_dir
Hack in texture directory
demosys/conf/__init__.py
def add_texture_dir(self, directory): """Hack in texture directory""" dirs = list(self.TEXTURE_DIRS) dirs.append(directory) self.TEXTURE_DIRS = dirs
def add_texture_dir(self, directory): """Hack in texture directory""" dirs = list(self.TEXTURE_DIRS) dirs.append(directory) self.TEXTURE_DIRS = dirs
[ "Hack", "in", "texture", "directory" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/conf/__init__.py#L69-L73
[ "def", "add_texture_dir", "(", "self", ",", "directory", ")", ":", "dirs", "=", "list", "(", "self", ".", "TEXTURE_DIRS", ")", "dirs", ".", "append", "(", "directory", ")", "self", ".", "TEXTURE_DIRS", "=", "dirs" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Settings.add_data_dir
Hack in a data directory
demosys/conf/__init__.py
def add_data_dir(self, directory): """Hack in a data directory""" dirs = list(self.DATA_DIRS) dirs.append(directory) self.DATA_DIRS = dirs
def add_data_dir(self, directory): """Hack in a data directory""" dirs = list(self.DATA_DIRS) dirs.append(directory) self.DATA_DIRS = dirs
[ "Hack", "in", "a", "data", "directory" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/conf/__init__.py#L75-L79
[ "def", "add_data_dir", "(", "self", ",", "directory", ")", ":", "dirs", "=", "list", "(", "self", ".", "DATA_DIRS", ")", "dirs", ".", "append", "(", "directory", ")", "self", ".", "DATA_DIRS", "=", "dirs" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BufferInfo.content
Build content tuple for the buffer
demosys/opengl/vao.py
def content(self, attributes: List[str]): """Build content tuple for the buffer""" formats = [] attrs = [] for attrib_format, attrib in zip(self.attrib_formats, self.attributes): if attrib not in attributes: formats.append(attrib_format.pad_str()) ...
def content(self, attributes: List[str]): """Build content tuple for the buffer""" formats = [] attrs = [] for attrib_format, attrib in zip(self.attrib_formats, self.attributes): if attrib not in attributes: formats.append(attrib_format.pad_str()) ...
[ "Build", "content", "tuple", "for", "the", "buffer" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L48-L70
[ "def", "content", "(", "self", ",", "attributes", ":", "List", "[", "str", "]", ")", ":", "formats", "=", "[", "]", "attrs", "=", "[", "]", "for", "attrib_format", ",", "attrib", "in", "zip", "(", "self", ".", "attrib_formats", ",", "self", ".", "a...
6466128a3029c4d09631420ccce73024025bd5b6
valid
VAO.render
Render the VAO. Args: program: The ``moderngl.Program`` Keyword Args: mode: Override the draw mode (``TRIANGLES`` etc) vertices (int): The number of vertices to transform first (int): The index of the first vertex to start with instances (int...
demosys/opengl/vao.py
def render(self, program: moderngl.Program, mode=None, vertices=-1, first=0, instances=1): """ Render the VAO. Args: program: The ``moderngl.Program`` Keyword Args: mode: Override the draw mode (``TRIANGLES`` etc) vertices (int): The number of vertic...
def render(self, program: moderngl.Program, mode=None, vertices=-1, first=0, instances=1): """ Render the VAO. Args: program: The ``moderngl.Program`` Keyword Args: mode: Override the draw mode (``TRIANGLES`` etc) vertices (int): The number of vertic...
[ "Render", "the", "VAO", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L119-L137
[ "def", "render", "(", "self", ",", "program", ":", "moderngl", ".", "Program", ",", "mode", "=", "None", ",", "vertices", "=", "-", "1", ",", "first", "=", "0", ",", "instances", "=", "1", ")", ":", "vao", "=", "self", ".", "instance", "(", "prog...
6466128a3029c4d09631420ccce73024025bd5b6
valid
VAO.render_indirect
The render primitive (mode) must be the same as the input primitive of the GeometryShader. The draw commands are 5 integers: (count, instanceCount, firstIndex, baseVertex, baseInstance). Args: program: The ``moderngl.Program`` buffer: The ``moderngl.Buffer`` containing indirect ...
demosys/opengl/vao.py
def render_indirect(self, program: moderngl.Program, buffer, mode=None, count=-1, *, first=0): """ The render primitive (mode) must be the same as the input primitive of the GeometryShader. The draw commands are 5 integers: (count, instanceCount, firstIndex, baseVertex, baseInstance). A...
def render_indirect(self, program: moderngl.Program, buffer, mode=None, count=-1, *, first=0): """ The render primitive (mode) must be the same as the input primitive of the GeometryShader. The draw commands are 5 integers: (count, instanceCount, firstIndex, baseVertex, baseInstance). A...
[ "The", "render", "primitive", "(", "mode", ")", "must", "be", "the", "same", "as", "the", "input", "primitive", "of", "the", "GeometryShader", ".", "The", "draw", "commands", "are", "5", "integers", ":", "(", "count", "instanceCount", "firstIndex", "baseVert...
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L139-L158
[ "def", "render_indirect", "(", "self", ",", "program", ":", "moderngl", ".", "Program", ",", "buffer", ",", "mode", "=", "None", ",", "count", "=", "-", "1", ",", "*", ",", "first", "=", "0", ")", ":", "vao", "=", "self", ".", "instance", "(", "p...
6466128a3029c4d09631420ccce73024025bd5b6
valid
VAO.transform
Transform vertices. Stores the output in a single buffer. Args: program: The ``moderngl.Program`` buffer: The ``moderngl.buffer`` to store the output Keyword Args: mode: Draw mode (for example ``moderngl.POINTS``) vertices (int): The number of vertices t...
demosys/opengl/vao.py
def transform(self, program: moderngl.Program, buffer: moderngl.Buffer, mode=None, vertices=-1, first=0, instances=1): """ Transform vertices. Stores the output in a single buffer. Args: program: The ``moderngl.Program`` buffer: The ``moderngl.buffer`` ...
def transform(self, program: moderngl.Program, buffer: moderngl.Buffer, mode=None, vertices=-1, first=0, instances=1): """ Transform vertices. Stores the output in a single buffer. Args: program: The ``moderngl.Program`` buffer: The ``moderngl.buffer`` ...
[ "Transform", "vertices", ".", "Stores", "the", "output", "in", "a", "single", "buffer", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L160-L180
[ "def", "transform", "(", "self", ",", "program", ":", "moderngl", ".", "Program", ",", "buffer", ":", "moderngl", ".", "Buffer", ",", "mode", "=", "None", ",", "vertices", "=", "-", "1", ",", "first", "=", "0", ",", "instances", "=", "1", ")", ":",...
6466128a3029c4d09631420ccce73024025bd5b6
valid
VAO.buffer
Register a buffer/vbo for the VAO. This can be called multiple times. adding multiple buffers (interleaved or not) Args: buffer: The buffer data. Can be ``numpy.array``, ``moderngl.Buffer`` or ``bytes``. buffer_format (str): The format of the buffer. (eg. ``3f 3f`` for interleav...
demosys/opengl/vao.py
def buffer(self, buffer, buffer_format: str, attribute_names, per_instance=False): """ Register a buffer/vbo for the VAO. This can be called multiple times. adding multiple buffers (interleaved or not) Args: buffer: The buffer data. Can be ``numpy.array``, ``moderngl.Buffer`...
def buffer(self, buffer, buffer_format: str, attribute_names, per_instance=False): """ Register a buffer/vbo for the VAO. This can be called multiple times. adding multiple buffers (interleaved or not) Args: buffer: The buffer data. Can be ``numpy.array``, ``moderngl.Buffer`...
[ "Register", "a", "buffer", "/", "vbo", "for", "the", "VAO", ".", "This", "can", "be", "called", "multiple", "times", ".", "adding", "multiple", "buffers", "(", "interleaved", "or", "not", ")" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L182-L222
[ "def", "buffer", "(", "self", ",", "buffer", ",", "buffer_format", ":", "str", ",", "attribute_names", ",", "per_instance", "=", "False", ")", ":", "if", "not", "isinstance", "(", "attribute_names", ",", "list", ")", ":", "attribute_names", "=", "[", "attr...
6466128a3029c4d09631420ccce73024025bd5b6
valid
VAO.index_buffer
Set the index buffer for this VAO Args: buffer: ``moderngl.Buffer``, ``numpy.array`` or ``bytes`` Keyword Args: index_element_size (int): Byte size of each element. 1, 2 or 4
demosys/opengl/vao.py
def index_buffer(self, buffer, index_element_size=4): """ Set the index buffer for this VAO Args: buffer: ``moderngl.Buffer``, ``numpy.array`` or ``bytes`` Keyword Args: index_element_size (int): Byte size of each element. 1, 2 or 4 """ if not ty...
def index_buffer(self, buffer, index_element_size=4): """ Set the index buffer for this VAO Args: buffer: ``moderngl.Buffer``, ``numpy.array`` or ``bytes`` Keyword Args: index_element_size (int): Byte size of each element. 1, 2 or 4 """ if not ty...
[ "Set", "the", "index", "buffer", "for", "this", "VAO" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L224-L244
[ "def", "index_buffer", "(", "self", ",", "buffer", ",", "index_element_size", "=", "4", ")", ":", "if", "not", "type", "(", "buffer", ")", "in", "[", "moderngl", ".", "Buffer", ",", "numpy", ".", "ndarray", ",", "bytes", "]", ":", "raise", "VAOError", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
VAO.instance
Obtain the ``moderngl.VertexArray`` instance for the program. The instance is only created once and cached internally. Returns: ``moderngl.VertexArray`` instance
demosys/opengl/vao.py
def instance(self, program: moderngl.Program) -> moderngl.VertexArray: """ Obtain the ``moderngl.VertexArray`` instance for the program. The instance is only created once and cached internally. Returns: ``moderngl.VertexArray`` instance """ vao = self.vaos.get(program.gl...
def instance(self, program: moderngl.Program) -> moderngl.VertexArray: """ Obtain the ``moderngl.VertexArray`` instance for the program. The instance is only created once and cached internally. Returns: ``moderngl.VertexArray`` instance """ vao = self.vaos.get(program.gl...
[ "Obtain", "the", "moderngl", ".", "VertexArray", "instance", "for", "the", "program", ".", "The", "instance", "is", "only", "created", "once", "and", "cached", "internally", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L246-L294
[ "def", "instance", "(", "self", ",", "program", ":", "moderngl", ".", "Program", ")", "->", "moderngl", ".", "VertexArray", ":", "vao", "=", "self", ".", "vaos", ".", "get", "(", "program", ".", "glo", ")", "if", "vao", ":", "return", "vao", "program...
6466128a3029c4d09631420ccce73024025bd5b6
valid
VAO.release
Destroy the vao object Keyword Args: buffers (bool): also release buffers
demosys/opengl/vao.py
def release(self, buffer=True): """ Destroy the vao object Keyword Args: buffers (bool): also release buffers """ for key, vao in self.vaos: vao.release() if buffer: for buff in self.buffers: buff.buffer.release() ...
def release(self, buffer=True): """ Destroy the vao object Keyword Args: buffers (bool): also release buffers """ for key, vao in self.vaos: vao.release() if buffer: for buff in self.buffers: buff.buffer.release() ...
[ "Destroy", "the", "vao", "object" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/vao.py#L296-L311
[ "def", "release", "(", "self", ",", "buffer", "=", "True", ")", ":", "for", "key", ",", "vao", "in", "self", ".", "vaos", ":", "vao", ".", "release", "(", ")", "if", "buffer", ":", "for", "buff", "in", "self", ".", "buffers", ":", "buff", ".", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
cube
Creates a cube VAO with normals and texture coordinates Args: width (float): Width of the cube height (float): Height of the cube depth (float): Depth of the cube Keyword Args: center: center of the cube as a 3-component tuple normals: (bool) Include normals uvs...
demosys/geometry/cube.py
def cube(width, height, depth, center=(0.0, 0.0, 0.0), normals=True, uvs=True) -> VAO: """ Creates a cube VAO with normals and texture coordinates Args: width (float): Width of the cube height (float): Height of the cube depth (float): Depth of the cube Keyword Args: ce...
def cube(width, height, depth, center=(0.0, 0.0, 0.0), normals=True, uvs=True) -> VAO: """ Creates a cube VAO with normals and texture coordinates Args: width (float): Width of the cube height (float): Height of the cube depth (float): Depth of the cube Keyword Args: ce...
[ "Creates", "a", "cube", "VAO", "with", "normals", "and", "texture", "coordinates" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/geometry/cube.py#L6-L153
[ "def", "cube", "(", "width", ",", "height", ",", "depth", ",", "center", "=", "(", "0.0", ",", "0.0", ",", "0.0", ")", ",", "normals", "=", "True", ",", "uvs", "=", "True", ")", "->", "VAO", ":", "width", ",", "height", ",", "depth", "=", "widt...
6466128a3029c4d09631420ccce73024025bd5b6
valid
MeshProgram.draw
Draw code for the mesh. Should be overriden. :param projection_matrix: projection_matrix (bytes) :param view_matrix: view_matrix (bytes) :param camera_matrix: camera_matrix (bytes) :param time: The current time
demosys/scene/programs.py
def draw(self, mesh, projection_matrix=None, view_matrix=None, camera_matrix=None, time=0): """ Draw code for the mesh. Should be overriden. :param projection_matrix: projection_matrix (bytes) :param view_matrix: view_matrix (bytes) :param camera_matrix: camera_matrix (bytes) ...
def draw(self, mesh, projection_matrix=None, view_matrix=None, camera_matrix=None, time=0): """ Draw code for the mesh. Should be overriden. :param projection_matrix: projection_matrix (bytes) :param view_matrix: view_matrix (bytes) :param camera_matrix: camera_matrix (bytes) ...
[ "Draw", "code", "for", "the", "mesh", ".", "Should", "be", "overriden", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/scene/programs.py#L17-L28
[ "def", "draw", "(", "self", ",", "mesh", ",", "projection_matrix", "=", "None", ",", "view_matrix", "=", "None", ",", "camera_matrix", "=", "None", ",", "time", "=", "0", ")", ":", "self", ".", "program", "[", "\"m_proj\"", "]", ".", "write", "(", "p...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.pause
Pause the music
demosys/timers/vlc.py
def pause(self): """Pause the music""" self.pause_time = self.get_time() self.paused = True self.player.pause()
def pause(self): """Pause the music""" self.pause_time = self.get_time() self.paused = True self.player.pause()
[ "Pause", "the", "music" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/vlc.py#L30-L34
[ "def", "pause", "(", "self", ")", ":", "self", ".", "pause_time", "=", "self", ".", "get_time", "(", ")", "self", ".", "paused", "=", "True", "self", ".", "player", ".", "pause", "(", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timer.get_time
Get the current time in seconds Returns: The current time in seconds
demosys/timers/vlc.py
def get_time(self) -> float: """ Get the current time in seconds Returns: The current time in seconds """ if self.paused: return self.pause_time return self.player.get_time() / 1000.0
def get_time(self) -> float: """ Get the current time in seconds Returns: The current time in seconds """ if self.paused: return self.pause_time return self.player.get_time() / 1000.0
[ "Get", "the", "current", "time", "in", "seconds" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timers/vlc.py#L53-L63
[ "def", "get_time", "(", "self", ")", "->", "float", ":", "if", "self", ".", "paused", ":", "return", "self", ".", "pause_time", "return", "self", ".", "player", ".", "get_time", "(", ")", "/", "1000.0" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
parse_package_string
Parse the effect package string. Can contain the package python path or path to effect class in an effect package. Examples:: # Path to effect pacakge examples.cubes # Path to effect class examples.cubes.Cubes Args: path: python path to effect package. May also in...
demosys/effects/registry.py
def parse_package_string(path): """ Parse the effect package string. Can contain the package python path or path to effect class in an effect package. Examples:: # Path to effect pacakge examples.cubes # Path to effect class examples.cubes.Cubes Args: path...
def parse_package_string(path): """ Parse the effect package string. Can contain the package python path or path to effect class in an effect package. Examples:: # Path to effect pacakge examples.cubes # Path to effect class examples.cubes.Cubes Args: path...
[ "Parse", "the", "effect", "package", "string", ".", "Can", "contain", "the", "package", "python", "path", "or", "path", "to", "effect", "class", "in", "an", "effect", "package", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L9-L34
[ "def", "parse_package_string", "(", "path", ")", ":", "parts", "=", "path", ".", "split", "(", "'.'", ")", "# Is the last entry in the path capitalized?", "if", "parts", "[", "-", "1", "]", "[", "0", "]", ".", "isupper", "(", ")", ":", "return", "\".\"", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectRegistry.get_dirs
Get all effect directories for registered effects.
demosys/effects/registry.py
def get_dirs(self) -> List[str]: """ Get all effect directories for registered effects. """ for package in self.packages: yield os.path.join(package.path, 'resources')
def get_dirs(self) -> List[str]: """ Get all effect directories for registered effects. """ for package in self.packages: yield os.path.join(package.path, 'resources')
[ "Get", "all", "effect", "directories", "for", "registered", "effects", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L49-L54
[ "def", "get_dirs", "(", "self", ")", "->", "List", "[", "str", "]", ":", "for", "package", "in", "self", ".", "packages", ":", "yield", "os", ".", "path", ".", "join", "(", "package", ".", "path", ",", "'resources'", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectRegistry.get_effect_resources
Get all resources registed in effect packages. These are typically located in ``resources.py``
demosys/effects/registry.py
def get_effect_resources(self) -> List[Any]: """ Get all resources registed in effect packages. These are typically located in ``resources.py`` """ resources = [] for package in self.packages: resources.extend(package.resources) return resources
def get_effect_resources(self) -> List[Any]: """ Get all resources registed in effect packages. These are typically located in ``resources.py`` """ resources = [] for package in self.packages: resources.extend(package.resources) return resources
[ "Get", "all", "resources", "registed", "in", "effect", "packages", ".", "These", "are", "typically", "located", "in", "resources", ".", "py" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L56-L65
[ "def", "get_effect_resources", "(", "self", ")", "->", "List", "[", "Any", "]", ":", "resources", "=", "[", "]", "for", "package", "in", "self", ".", "packages", ":", "resources", ".", "extend", "(", "package", ".", "resources", ")", "return", "resources...
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectRegistry.add_package
Registers a single package :param name: (str) The effect package to add
demosys/effects/registry.py
def add_package(self, name): """ Registers a single package :param name: (str) The effect package to add """ name, cls_name = parse_package_string(name) if name in self.package_map: return package = EffectPackage(name) package.load() ...
def add_package(self, name): """ Registers a single package :param name: (str) The effect package to add """ name, cls_name = parse_package_string(name) if name in self.package_map: return package = EffectPackage(name) package.load() ...
[ "Registers", "a", "single", "package" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L76-L94
[ "def", "add_package", "(", "self", ",", "name", ")", ":", "name", ",", "cls_name", "=", "parse_package_string", "(", "name", ")", "if", "name", "in", "self", ".", "package_map", ":", "return", "package", "=", "EffectPackage", "(", "name", ")", "package", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectRegistry.get_package
Get a package by python path. Can also contain path to an effect. Args: name (str): Path to effect package or effect Returns: The requested EffectPackage Raises: EffectError when no package is found
demosys/effects/registry.py
def get_package(self, name) -> 'EffectPackage': """ Get a package by python path. Can also contain path to an effect. Args: name (str): Path to effect package or effect Returns: The requested EffectPackage Raises: EffectError when no package...
def get_package(self, name) -> 'EffectPackage': """ Get a package by python path. Can also contain path to an effect. Args: name (str): Path to effect package or effect Returns: The requested EffectPackage Raises: EffectError when no package...
[ "Get", "a", "package", "by", "python", "path", ".", "Can", "also", "contain", "path", "to", "an", "effect", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L96-L114
[ "def", "get_package", "(", "self", ",", "name", ")", "->", "'EffectPackage'", ":", "name", ",", "cls_name", "=", "parse_package_string", "(", "name", ")", "try", ":", "return", "self", ".", "package_map", "[", "name", "]", "except", "KeyError", ":", "raise...
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectRegistry.find_effect_class
Find an effect class by class name or full python path to class Args: path (str): effect class name or full python path to effect class Returns: Effect class Raises: EffectError if no class is found
demosys/effects/registry.py
def find_effect_class(self, path) -> Type[Effect]: """ Find an effect class by class name or full python path to class Args: path (str): effect class name or full python path to effect class Returns: Effect class Raises: EffectError if no cl...
def find_effect_class(self, path) -> Type[Effect]: """ Find an effect class by class name or full python path to class Args: path (str): effect class name or full python path to effect class Returns: Effect class Raises: EffectError if no cl...
[ "Find", "an", "effect", "class", "by", "class", "name", "or", "full", "python", "path", "to", "class" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L116-L140
[ "def", "find_effect_class", "(", "self", ",", "path", ")", "->", "Type", "[", "Effect", "]", ":", "package_name", ",", "class_name", "=", "parse_package_string", "(", "path", ")", "if", "package_name", ":", "package", "=", "self", ".", "get_package", "(", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectPackage.runnable_effects
Returns the runnable effect in the package
demosys/effects/registry.py
def runnable_effects(self) -> List[Type[Effect]]: """Returns the runnable effect in the package""" return [cls for cls in self.effect_classes if cls.runnable]
def runnable_effects(self) -> List[Type[Effect]]: """Returns the runnable effect in the package""" return [cls for cls in self.effect_classes if cls.runnable]
[ "Returns", "the", "runnable", "effect", "in", "the", "package" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L158-L160
[ "def", "runnable_effects", "(", "self", ")", "->", "List", "[", "Type", "[", "Effect", "]", "]", ":", "return", "[", "cls", "for", "cls", "in", "self", ".", "effect_classes", "if", "cls", ".", "runnable", "]" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectPackage.load_package
FInd the effect package
demosys/effects/registry.py
def load_package(self): """FInd the effect package""" try: self.package = importlib.import_module(self.name) except ModuleNotFoundError: raise ModuleNotFoundError("Effect package '{}' not found.".format(self.name))
def load_package(self): """FInd the effect package""" try: self.package = importlib.import_module(self.name) except ModuleNotFoundError: raise ModuleNotFoundError("Effect package '{}' not found.".format(self.name))
[ "FInd", "the", "effect", "package" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L185-L190
[ "def", "load_package", "(", "self", ")", ":", "try", ":", "self", ".", "package", "=", "importlib", ".", "import_module", "(", "self", ".", "name", ")", "except", "ModuleNotFoundError", ":", "raise", "ModuleNotFoundError", "(", "\"Effect package '{}' not found.\""...
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectPackage.load_effects_classes
Iterate the module attributes picking out effects
demosys/effects/registry.py
def load_effects_classes(self): """Iterate the module attributes picking out effects""" self.effect_classes = [] for _, cls in inspect.getmembers(self.effect_module): if inspect.isclass(cls): if cls == Effect: continue if issubcla...
def load_effects_classes(self): """Iterate the module attributes picking out effects""" self.effect_classes = [] for _, cls in inspect.getmembers(self.effect_module): if inspect.isclass(cls): if cls == Effect: continue if issubcla...
[ "Iterate", "the", "module", "attributes", "picking", "out", "effects" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L205-L217
[ "def", "load_effects_classes", "(", "self", ")", ":", "self", ".", "effect_classes", "=", "[", "]", "for", "_", ",", "cls", "in", "inspect", ".", "getmembers", "(", "self", ".", "effect_module", ")", ":", "if", "inspect", ".", "isclass", "(", "cls", ")...
6466128a3029c4d09631420ccce73024025bd5b6
valid
EffectPackage.load_resource_module
Fetch the resource list
demosys/effects/registry.py
def load_resource_module(self): """Fetch the resource list""" # Attempt to load the dependencies module try: name = '{}.{}'.format(self.name, 'dependencies') self.dependencies_module = importlib.import_module(name) except ModuleNotFoundError as err: ra...
def load_resource_module(self): """Fetch the resource list""" # Attempt to load the dependencies module try: name = '{}.{}'.format(self.name, 'dependencies') self.dependencies_module = importlib.import_module(name) except ModuleNotFoundError as err: ra...
[ "Fetch", "the", "resource", "list" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/effects/registry.py#L219-L252
[ "def", "load_resource_module", "(", "self", ")", ":", "# Attempt to load the dependencies module", "try", ":", "name", "=", "'{}.{}'", ".", "format", "(", "self", ".", "name", ",", "'dependencies'", ")", "self", ".", "dependencies_module", "=", "importlib", ".", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
create
Create a screenshot :param file_format: formats supported by PIL (png, jpeg etc)
demosys/view/screenshot.py
def create(file_format='png', name=None): """ Create a screenshot :param file_format: formats supported by PIL (png, jpeg etc) """ dest = "" if settings.SCREENSHOT_PATH: if not os.path.exists(settings.SCREENSHOT_PATH): print("SCREENSHOT_PATH does not exist. creating: {}".form...
def create(file_format='png', name=None): """ Create a screenshot :param file_format: formats supported by PIL (png, jpeg etc) """ dest = "" if settings.SCREENSHOT_PATH: if not os.path.exists(settings.SCREENSHOT_PATH): print("SCREENSHOT_PATH does not exist. creating: {}".form...
[ "Create", "a", "screenshot", ":", "param", "file_format", ":", "formats", "supported", "by", "PIL", "(", "png", "jpeg", "etc", ")" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/view/screenshot.py#L16-L45
[ "def", "create", "(", "file_format", "=", "'png'", ",", "name", "=", "None", ")", ":", "dest", "=", "\"\"", "if", "settings", ".", "SCREENSHOT_PATH", ":", "if", "not", "os", ".", "path", ".", "exists", "(", "settings", ".", "SCREENSHOT_PATH", ")", ":",...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Timeline.draw
Fetch track value for every runnable effect. If the value is > 0.5 we draw it.
demosys/timeline/rocket.py
def draw(self, time, frametime, target): """ Fetch track value for every runnable effect. If the value is > 0.5 we draw it. """ for effect in self.effects: value = effect.rocket_timeline_track.time_value(time) if value > 0.5: effect...
def draw(self, time, frametime, target): """ Fetch track value for every runnable effect. If the value is > 0.5 we draw it. """ for effect in self.effects: value = effect.rocket_timeline_track.time_value(time) if value > 0.5: effect...
[ "Fetch", "track", "value", "for", "every", "runnable", "effect", ".", "If", "the", "value", "is", ">", "0", ".", "5", "we", "draw", "it", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/timeline/rocket.py#L28-L36
[ "def", "draw", "(", "self", ",", "time", ",", "frametime", ",", "target", ")", ":", "for", "effect", "in", "self", ".", "effects", ":", "value", "=", "effect", ".", "rocket_timeline_track", ".", "time_value", "(", "time", ")", "if", "value", ">", "0.5"...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Loader.load
Load a 2d texture
demosys/loaders/texture/t2d.py
def load(self): """Load a 2d texture""" self._open_image() components, data = image_data(self.image) texture = self.ctx.texture( self.image.size, components, data, ) texture.extra = {'meta': self.meta} if self.me...
def load(self): """Load a 2d texture""" self._open_image() components, data = image_data(self.image) texture = self.ctx.texture( self.image.size, components, data, ) texture.extra = {'meta': self.meta} if self.me...
[ "Load", "a", "2d", "texture" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/loaders/texture/t2d.py#L7-L25
[ "def", "load", "(", "self", ")", ":", "self", ".", "_open_image", "(", ")", "components", ",", "data", "=", "image_data", "(", "self", ".", "image", ")", "texture", "=", "self", ".", "ctx", ".", "texture", "(", "self", ".", "image", ".", "size", ",...
6466128a3029c4d09631420ccce73024025bd5b6
valid
ProgramShaders.from_single
Initialize a single glsl string containing all shaders
demosys/opengl/program.py
def from_single(cls, meta: ProgramDescription, source: str): """Initialize a single glsl string containing all shaders""" instance = cls(meta) instance.vertex_source = ShaderSource( VERTEX_SHADER, meta.path or meta.vertex_shader, source ) ...
def from_single(cls, meta: ProgramDescription, source: str): """Initialize a single glsl string containing all shaders""" instance = cls(meta) instance.vertex_source = ShaderSource( VERTEX_SHADER, meta.path or meta.vertex_shader, source ) ...
[ "Initialize", "a", "single", "glsl", "string", "containing", "all", "shaders" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/program.py#L32-L69
[ "def", "from_single", "(", "cls", ",", "meta", ":", "ProgramDescription", ",", "source", ":", "str", ")", ":", "instance", "=", "cls", "(", "meta", ")", "instance", ".", "vertex_source", "=", "ShaderSource", "(", "VERTEX_SHADER", ",", "meta", ".", "path", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
ProgramShaders.from_separate
Initialize multiple shader strings
demosys/opengl/program.py
def from_separate(cls, meta: ProgramDescription, vertex_source, geometry_source=None, fragment_source=None, tess_control_source=None, tess_evaluation_source=None): """Initialize multiple shader strings""" instance = cls(meta) instance.vertex_source = ShaderSource( ...
def from_separate(cls, meta: ProgramDescription, vertex_source, geometry_source=None, fragment_source=None, tess_control_source=None, tess_evaluation_source=None): """Initialize multiple shader strings""" instance = cls(meta) instance.vertex_source = ShaderSource( ...
[ "Initialize", "multiple", "shader", "strings" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/program.py#L72-L110
[ "def", "from_separate", "(", "cls", ",", "meta", ":", "ProgramDescription", ",", "vertex_source", ",", "geometry_source", "=", "None", ",", "fragment_source", "=", "None", ",", "tess_control_source", "=", "None", ",", "tess_evaluation_source", "=", "None", ")", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
ProgramShaders.create
Creates a shader program. Returns: ModernGL Program instance
demosys/opengl/program.py
def create(self): """ Creates a shader program. Returns: ModernGL Program instance """ # Get out varyings out_attribs = [] # If no fragment shader is present we are doing transform feedback if not self.fragment_source: ...
def create(self): """ Creates a shader program. Returns: ModernGL Program instance """ # Get out varyings out_attribs = [] # If no fragment shader is present we are doing transform feedback if not self.fragment_source: ...
[ "Creates", "a", "shader", "program", ".", "Returns", ":", "ModernGL", "Program", "instance" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/program.py#L112-L140
[ "def", "create", "(", "self", ")", ":", "# Get out varyings\r", "out_attribs", "=", "[", "]", "# If no fragment shader is present we are doing transform feedback\r", "if", "not", "self", ".", "fragment_source", ":", "# Out attributes is present in geometry shader if present\r", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
ShaderSource.find_out_attribs
Get all out attributes in the shader source. :return: List of attribute names
demosys/opengl/program.py
def find_out_attribs(self): """ Get all out attributes in the shader source. :return: List of attribute names """ names = [] for line in self.lines: if line.strip().startswith("out "): names.append(line.split()[2].replace(';', '')) ...
def find_out_attribs(self): """ Get all out attributes in the shader source. :return: List of attribute names """ names = [] for line in self.lines: if line.strip().startswith("out "): names.append(line.split()[2].replace(';', '')) ...
[ "Get", "all", "out", "attributes", "in", "the", "shader", "source", ".", ":", "return", ":", "List", "of", "attribute", "names" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/program.py#L165-L175
[ "def", "find_out_attribs", "(", "self", ")", ":", "names", "=", "[", "]", "for", "line", "in", "self", ".", "lines", ":", "if", "line", ".", "strip", "(", ")", ".", "startswith", "(", "\"out \"", ")", ":", "names", ".", "append", "(", "line", ".", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
ShaderSource.print
Print the shader lines
demosys/opengl/program.py
def print(self): """Print the shader lines""" print("---[ START {} ]---".format(self.name)) for i, line in enumerate(self.lines): print("{}: {}".format(str(i).zfill(3), line)) print("---[ END {} ]---".format(self.name))
def print(self): """Print the shader lines""" print("---[ START {} ]---".format(self.name)) for i, line in enumerate(self.lines): print("{}: {}".format(str(i).zfill(3), line)) print("---[ END {} ]---".format(self.name))
[ "Print", "the", "shader", "lines" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/opengl/program.py#L177-L184
[ "def", "print", "(", "self", ")", ":", "print", "(", "\"---[ START {} ]---\"", ".", "format", "(", "self", ".", "name", ")", ")", "for", "i", ",", "line", "in", "enumerate", "(", "self", ".", "lines", ")", ":", "print", "(", "\"{}: {}\"", ".", "forma...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.create_effect
Create an effect instance adding it to the internal effects dictionary using the label as key. Args: label (str): The unique label for the effect instance name (str): Name or full python path to the effect class we want to instantiate args: Positional arguments to the e...
demosys/project/base.py
def create_effect(self, label: str, name: str, *args, **kwargs) -> Effect: """ Create an effect instance adding it to the internal effects dictionary using the label as key. Args: label (str): The unique label for the effect instance name (str): Name or full python...
def create_effect(self, label: str, name: str, *args, **kwargs) -> Effect: """ Create an effect instance adding it to the internal effects dictionary using the label as key. Args: label (str): The unique label for the effect instance name (str): Name or full python...
[ "Create", "an", "effect", "instance", "adding", "it", "to", "the", "internal", "effects", "dictionary", "using", "the", "label", "as", "key", ".", "Args", ":", "label", "(", "str", ")", ":", "The", "unique", "label", "for", "the", "effect", "instance", "...
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L107-L129
[ "def", "create_effect", "(", "self", ",", "label", ":", "str", ",", "name", ":", "str", ",", "*", "args", ",", "*", "*", "kwargs", ")", "->", "Effect", ":", "effect_cls", "=", "effects", ".", "find_effect_class", "(", "name", ")", "effect", "=", "eff...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.load
Loads this project instance
demosys/project/base.py
def load(self): """ Loads this project instance """ self.create_effect_classes() self._add_resource_descriptions_to_pools(self.create_external_resources()) self._add_resource_descriptions_to_pools(self.create_resources()) for meta, resource in resources...
def load(self): """ Loads this project instance """ self.create_effect_classes() self._add_resource_descriptions_to_pools(self.create_external_resources()) self._add_resource_descriptions_to_pools(self.create_resources()) for meta, resource in resources...
[ "Loads", "this", "project", "instance" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L139-L161
[ "def", "load", "(", "self", ")", ":", "self", ".", "create_effect_classes", "(", ")", "self", ".", "_add_resource_descriptions_to_pools", "(", "self", ".", "create_external_resources", "(", ")", ")", "self", ".", "_add_resource_descriptions_to_pools", "(", "self", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject._add_resource_descriptions_to_pools
Takes a list of resource descriptions adding them to the resource pool they belong to scheduling them for loading.
demosys/project/base.py
def _add_resource_descriptions_to_pools(self, meta_list): """ Takes a list of resource descriptions adding them to the resource pool they belong to scheduling them for loading. """ if not meta_list: return for meta in meta_list: getattr(r...
def _add_resource_descriptions_to_pools(self, meta_list): """ Takes a list of resource descriptions adding them to the resource pool they belong to scheduling them for loading. """ if not meta_list: return for meta in meta_list: getattr(r...
[ "Takes", "a", "list", "of", "resource", "descriptions", "adding", "them", "to", "the", "resource", "pool", "they", "belong", "to", "scheduling", "them", "for", "loading", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L163-L172
[ "def", "_add_resource_descriptions_to_pools", "(", "self", ",", "meta_list", ")", ":", "if", "not", "meta_list", ":", "return", "for", "meta", "in", "meta_list", ":", "getattr", "(", "resources", ",", "meta", ".", "resource_type", ")", ".", "add", "(", "meta...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.reload_programs
Reload all shader programs with the reloadable flag set
demosys/project/base.py
def reload_programs(self): """ Reload all shader programs with the reloadable flag set """ print("Reloading programs:") for name, program in self._programs.items(): if getattr(program, 'program', None): print(" - {}".format(program.meta.label)) ...
def reload_programs(self): """ Reload all shader programs with the reloadable flag set """ print("Reloading programs:") for name, program in self._programs.items(): if getattr(program, 'program', None): print(" - {}".format(program.meta.label)) ...
[ "Reload", "all", "shader", "programs", "with", "the", "reloadable", "flag", "set" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L174-L182
[ "def", "reload_programs", "(", "self", ")", ":", "print", "(", "\"Reloading programs:\"", ")", "for", "name", ",", "program", "in", "self", ".", "_programs", ".", "items", "(", ")", ":", "if", "getattr", "(", "program", ",", "'program'", ",", "None", ")"...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.get_effect
Get an effect instance by label Args: label (str): The label for the effect instance Returns: Effect class instance
demosys/project/base.py
def get_effect(self, label: str) -> Effect: """ Get an effect instance by label Args: label (str): The label for the effect instance Returns: Effect class instance """ return self._get_resource(label, self._effects, "effect")
def get_effect(self, label: str) -> Effect: """ Get an effect instance by label Args: label (str): The label for the effect instance Returns: Effect class instance """ return self._get_resource(label, self._effects, "effect")
[ "Get", "an", "effect", "instance", "by", "label", "Args", ":", "label", "(", "str", ")", ":", "The", "label", "for", "the", "effect", "instance", "Returns", ":", "Effect", "class", "instance" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L184-L194
[ "def", "get_effect", "(", "self", ",", "label", ":", "str", ")", "->", "Effect", ":", "return", "self", ".", "_get_resource", "(", "label", ",", "self", ".", "_effects", ",", "\"effect\"", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.get_effect_class
Get an effect class from the effect registry. Args: class_name (str): The exact class name of the effect Keyword Args: package_name (str): The python path to the effect package the effect name is located. This is optional and can be used t...
demosys/project/base.py
def get_effect_class(self, class_name, package_name=None) -> Type[Effect]: """ Get an effect class from the effect registry. Args: class_name (str): The exact class name of the effect Keyword Args: package_name (str): The python path to the effect packag...
def get_effect_class(self, class_name, package_name=None) -> Type[Effect]: """ Get an effect class from the effect registry. Args: class_name (str): The exact class name of the effect Keyword Args: package_name (str): The python path to the effect packag...
[ "Get", "an", "effect", "class", "from", "the", "effect", "registry", ".", "Args", ":", "class_name", "(", "str", ")", ":", "The", "exact", "class", "name", "of", "the", "effect", "Keyword", "Args", ":", "package_name", "(", "str", ")", ":", "The", "pyt...
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L196-L213
[ "def", "get_effect_class", "(", "self", ",", "class_name", ",", "package_name", "=", "None", ")", "->", "Type", "[", "Effect", "]", ":", "if", "package_name", ":", "return", "effects", ".", "find_effect_class", "(", "\"{}.{}\"", ".", "format", "(", "package_...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.get_scene
Gets a scene by label Args: label (str): The label for the scene to fetch Returns: Scene instance
demosys/project/base.py
def get_scene(self, label: str) -> Scene: """ Gets a scene by label Args: label (str): The label for the scene to fetch Returns: Scene instance """ return self._get_resource(label, self._scenes, "scene")
def get_scene(self, label: str) -> Scene: """ Gets a scene by label Args: label (str): The label for the scene to fetch Returns: Scene instance """ return self._get_resource(label, self._scenes, "scene")
[ "Gets", "a", "scene", "by", "label", "Args", ":", "label", "(", "str", ")", ":", "The", "label", "for", "the", "scene", "to", "fetch", "Returns", ":", "Scene", "instance" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L215-L225
[ "def", "get_scene", "(", "self", ",", "label", ":", "str", ")", "->", "Scene", ":", "return", "self", ".", "_get_resource", "(", "label", ",", "self", ".", "_scenes", ",", "\"scene\"", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.get_texture
Get a texture by label Args: label (str): The label for the texture to fetch Returns: Texture instance
demosys/project/base.py
def get_texture(self, label: str) -> Union[moderngl.Texture, moderngl.TextureArray, moderngl.Texture3D, moderngl.TextureCube]: """ Get a texture by label Args: label (str): The label for the texture to fetch Returns: ...
def get_texture(self, label: str) -> Union[moderngl.Texture, moderngl.TextureArray, moderngl.Texture3D, moderngl.TextureCube]: """ Get a texture by label Args: label (str): The label for the texture to fetch Returns: ...
[ "Get", "a", "texture", "by", "label", "Args", ":", "label", "(", "str", ")", ":", "The", "label", "for", "the", "texture", "to", "fetch", "Returns", ":", "Texture", "instance" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L230-L241
[ "def", "get_texture", "(", "self", ",", "label", ":", "str", ")", "->", "Union", "[", "moderngl", ".", "Texture", ",", "moderngl", ".", "TextureArray", ",", "moderngl", ".", "Texture3D", ",", "moderngl", ".", "TextureCube", "]", ":", "return", "self", "....
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.get_data
Get a data resource by label Args: label (str): The labvel for the data resource to fetch Returns: The requeted data object
demosys/project/base.py
def get_data(self, label: str) -> Any: """ Get a data resource by label Args: label (str): The labvel for the data resource to fetch Returns: The requeted data object """ return self._get_resource(label, self._data, "data")
def get_data(self, label: str) -> Any: """ Get a data resource by label Args: label (str): The labvel for the data resource to fetch Returns: The requeted data object """ return self._get_resource(label, self._data, "data")
[ "Get", "a", "data", "resource", "by", "label", "Args", ":", "label", "(", "str", ")", ":", "The", "labvel", "for", "the", "data", "resource", "to", "fetch", "Returns", ":", "The", "requeted", "data", "object" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L243-L253
[ "def", "get_data", "(", "self", ",", "label", ":", "str", ")", "->", "Any", ":", "return", "self", ".", "_get_resource", "(", "label", ",", "self", ".", "_data", ",", "\"data\"", ")" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject._get_resource
Generic resoure fetcher handling errors. Args: label (str): The label to fetch source (dict): The dictionary to look up the label resource_type str: The display name of the resource type (used in errors)
demosys/project/base.py
def _get_resource(self, label: str, source: dict, resource_type: str): """ Generic resoure fetcher handling errors. Args: label (str): The label to fetch source (dict): The dictionary to look up the label resource_type str: The display name of the reso...
def _get_resource(self, label: str, source: dict, resource_type: str): """ Generic resoure fetcher handling errors. Args: label (str): The label to fetch source (dict): The dictionary to look up the label resource_type str: The display name of the reso...
[ "Generic", "resoure", "fetcher", "handling", "errors", ".", "Args", ":", "label", "(", "str", ")", ":", "The", "label", "to", "fetch", "source", "(", "dict", ")", ":", "The", "dictionary", "to", "look", "up", "the", "label", "resource_type", "str", ":", ...
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L255-L268
[ "def", "_get_resource", "(", "self", ",", "label", ":", "str", ",", "source", ":", "dict", ",", "resource_type", ":", "str", ")", ":", "try", ":", "return", "source", "[", "label", "]", "except", "KeyError", ":", "raise", "ValueError", "(", "\"Cannot fin...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseProject.get_runnable_effects
Returns all runnable effects in the project. :return: List of all runnable effects
demosys/project/base.py
def get_runnable_effects(self) -> List[Effect]: """ Returns all runnable effects in the project. :return: List of all runnable effects """ return [effect for name, effect in self._effects.items() if effect.runnable]
def get_runnable_effects(self) -> List[Effect]: """ Returns all runnable effects in the project. :return: List of all runnable effects """ return [effect for name, effect in self._effects.items() if effect.runnable]
[ "Returns", "all", "runnable", "effects", "in", "the", "project", ".", ":", "return", ":", "List", "of", "all", "runnable", "effects" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/project/base.py#L270-L276
[ "def", "get_runnable_effects", "(", "self", ")", "->", "List", "[", "Effect", "]", ":", "return", "[", "effect", "for", "name", ",", "effect", "in", "self", ".", "_effects", ".", "items", "(", ")", "if", "effect", ".", "runnable", "]" ]
6466128a3029c4d09631420ccce73024025bd5b6
valid
image_data
Get components and bytes for an image
demosys/loaders/texture/pillow.py
def image_data(image): """Get components and bytes for an image""" # NOTE: We might want to check the actual image.mode # and convert to an acceptable format. # At the moment we load the data as is. data = image.tobytes() components = len(data) // (image.size[0] * image.size[1]...
def image_data(image): """Get components and bytes for an image""" # NOTE: We might want to check the actual image.mode # and convert to an acceptable format. # At the moment we load the data as is. data = image.tobytes() components = len(data) // (image.size[0] * image.size[1]...
[ "Get", "components", "and", "bytes", "for", "an", "image" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/loaders/texture/pillow.py#L38-L45
[ "def", "image_data", "(", "image", ")", ":", "# NOTE: We might want to check the actual image.mode\r", "# and convert to an acceptable format.\r", "# At the moment we load the data as is.\r", "data", "=", "image", ".", "tobytes", "(", ")", "components", "=", "len", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseCommand.run_from_argv
Called by the system when executing the command from the command line. This should not be overridden. :param argv: Arguments from command line
demosys/management/base.py
def run_from_argv(self, argv): """ Called by the system when executing the command from the command line. This should not be overridden. :param argv: Arguments from command line """ parser = self.create_parser(argv[0], argv[1]) options = parser.parse_args...
def run_from_argv(self, argv): """ Called by the system when executing the command from the command line. This should not be overridden. :param argv: Arguments from command line """ parser = self.create_parser(argv[0], argv[1]) options = parser.parse_args...
[ "Called", "by", "the", "system", "when", "executing", "the", "command", "from", "the", "command", "line", ".", "This", "should", "not", "be", "overridden", ".", ":", "param", "argv", ":", "Arguments", "from", "command", "line" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/base.py#L39-L50
[ "def", "run_from_argv", "(", "self", ",", "argv", ")", ":", "parser", "=", "self", ".", "create_parser", "(", "argv", "[", "0", "]", ",", "argv", "[", "1", "]", ")", "options", "=", "parser", ".", "parse_args", "(", "argv", "[", "2", ":", "]", ")...
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseCommand.create_parser
Create argument parser and deal with ``add_arguments``. This method should not be overriden. :param prog_name: Name of the command (argv[0]) :return: ArgumentParser
demosys/management/base.py
def create_parser(self, prog_name, subcommand): """ Create argument parser and deal with ``add_arguments``. This method should not be overriden. :param prog_name: Name of the command (argv[0]) :return: ArgumentParser """ parser = argparse.ArgumentParser(p...
def create_parser(self, prog_name, subcommand): """ Create argument parser and deal with ``add_arguments``. This method should not be overriden. :param prog_name: Name of the command (argv[0]) :return: ArgumentParser """ parser = argparse.ArgumentParser(p...
[ "Create", "argument", "parser", "and", "deal", "with", "add_arguments", ".", "This", "method", "should", "not", "be", "overriden", ".", ":", "param", "prog_name", ":", "Name", "of", "the", "command", "(", "argv", "[", "0", "]", ")", ":", "return", ":", ...
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/base.py#L63-L74
[ "def", "create_parser", "(", "self", ",", "prog_name", ",", "subcommand", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "prog_name", ",", "subcommand", ")", "# Add generic arguments here\r", "self", ".", "add_arguments", "(", "parser", ")", "r...
6466128a3029c4d09631420ccce73024025bd5b6
valid
CreateCommand.validate_name
Can the name be used as a python module or package? Raises ``ValueError`` if the name is invalid. :param name: the name to check
demosys/management/base.py
def validate_name(self, name): """ Can the name be used as a python module or package? Raises ``ValueError`` if the name is invalid. :param name: the name to check """ if not name: raise ValueError("Name cannot be empty") # Can the name be ...
def validate_name(self, name): """ Can the name be used as a python module or package? Raises ``ValueError`` if the name is invalid. :param name: the name to check """ if not name: raise ValueError("Name cannot be empty") # Can the name be ...
[ "Can", "the", "name", "be", "used", "as", "a", "python", "module", "or", "package?", "Raises", "ValueError", "if", "the", "name", "is", "invalid", ".", ":", "param", "name", ":", "the", "name", "to", "check" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/base.py#L80-L92
[ "def", "validate_name", "(", "self", ",", "name", ")", ":", "if", "not", "name", ":", "raise", "ValueError", "(", "\"Name cannot be empty\"", ")", "# Can the name be used as an identifier in python (module or package name)\r", "if", "not", "name", ".", "isidentifier", "...
6466128a3029c4d09631420ccce73024025bd5b6
valid
bbox
Generates a bounding box with (0.0, 0.0, 0.0) as the center. This is simply a box with ``LINE_STRIP`` as draw mode. Keyword Args: width (float): Width of the box height (float): Height of the box depth (float): Depth of the box Returns: A :py:class:`demosys.opengl.vao.VAO` ...
demosys/geometry/bbox.py
def bbox(width=1.0, height=1.0, depth=1.0): """ Generates a bounding box with (0.0, 0.0, 0.0) as the center. This is simply a box with ``LINE_STRIP`` as draw mode. Keyword Args: width (float): Width of the box height (float): Height of the box depth (float): Depth of the box ...
def bbox(width=1.0, height=1.0, depth=1.0): """ Generates a bounding box with (0.0, 0.0, 0.0) as the center. This is simply a box with ``LINE_STRIP`` as draw mode. Keyword Args: width (float): Width of the box height (float): Height of the box depth (float): Depth of the box ...
[ "Generates", "a", "bounding", "box", "with", "(", "0", ".", "0", "0", ".", "0", "0", ".", "0", ")", "as", "the", "center", ".", "This", "is", "simply", "a", "box", "with", "LINE_STRIP", "as", "draw", "mode", "." ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/geometry/bbox.py#L7-L63
[ "def", "bbox", "(", "width", "=", "1.0", ",", "height", "=", "1.0", ",", "depth", "=", "1.0", ")", ":", "width", ",", "height", ",", "depth", "=", "width", "/", "2.0", ",", "height", "/", "2.0", ",", "depth", "/", "2.0", "pos", "=", "numpy", "....
6466128a3029c4d09631420ccce73024025bd5b6
valid
BaseLoader._find_last_of
Find the last occurance of the file in finders
demosys/loaders/base.py
def _find_last_of(self, path, finders): """Find the last occurance of the file in finders""" found_path = None for finder in finders: result = finder.find(path) if result: found_path = result return found_path
def _find_last_of(self, path, finders): """Find the last occurance of the file in finders""" found_path = None for finder in finders: result = finder.find(path) if result: found_path = result return found_path
[ "Find", "the", "last", "occurance", "of", "the", "file", "in", "finders" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/loaders/base.py#L51-L59
[ "def", "_find_last_of", "(", "self", ",", "path", ",", "finders", ")", ":", "found_path", "=", "None", "for", "finder", "in", "finders", ":", "result", "=", "finder", ".", "find", "(", "path", ")", "if", "result", ":", "found_path", "=", "result", "ret...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Command.initial_sanity_check
Checks if we can create the project
demosys/management/commands/createproject.py
def initial_sanity_check(self): """Checks if we can create the project""" # Check for python module collision self.try_import(self.project_name) # Is the name a valid identifier? self.validate_name(self.project_name) # Make sure we don't mess with existing direc...
def initial_sanity_check(self): """Checks if we can create the project""" # Check for python module collision self.try_import(self.project_name) # Is the name a valid identifier? self.validate_name(self.project_name) # Make sure we don't mess with existing direc...
[ "Checks", "if", "we", "can", "create", "the", "project" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/commands/createproject.py#L22-L39
[ "def", "initial_sanity_check", "(", "self", ")", ":", "# Check for python module collision\r", "self", ".", "try_import", "(", "self", ".", "project_name", ")", "# Is the name a valid identifier?\r", "self", ".", "validate_name", "(", "self", ".", "project_name", ")", ...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Command.create_entrypoint
Write manage.py in the current directory
demosys/management/commands/createproject.py
def create_entrypoint(self): """Write manage.py in the current directory""" with open(os.path.join(self.template_dir, 'manage.py'), 'r') as fd: data = fd.read().format(project_name=self.project_name) with open('manage.py', 'w') as fd: fd.write(data) os.c...
def create_entrypoint(self): """Write manage.py in the current directory""" with open(os.path.join(self.template_dir, 'manage.py'), 'r') as fd: data = fd.read().format(project_name=self.project_name) with open('manage.py', 'w') as fd: fd.write(data) os.c...
[ "Write", "manage", ".", "py", "in", "the", "current", "directory" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/commands/createproject.py#L49-L57
[ "def", "create_entrypoint", "(", "self", ")", ":", "with", "open", "(", "os", ".", "path", ".", "join", "(", "self", ".", "template_dir", ",", "'manage.py'", ")", ",", "'r'", ")", "as", "fd", ":", "data", "=", "fd", ".", "read", "(", ")", ".", "f...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Command.get_template_dir
Returns the absolute path to template directory
demosys/management/commands/createproject.py
def get_template_dir(self): """Returns the absolute path to template directory""" directory = os.path.dirname(os.path.abspath(__file__)) directory = os.path.dirname(os.path.dirname(directory)) directory = os.path.join(directory, 'project_template') return directory
def get_template_dir(self): """Returns the absolute path to template directory""" directory = os.path.dirname(os.path.abspath(__file__)) directory = os.path.dirname(os.path.dirname(directory)) directory = os.path.join(directory, 'project_template') return directory
[ "Returns", "the", "absolute", "path", "to", "template", "directory" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/management/commands/createproject.py#L66-L71
[ "def", "get_template_dir", "(", "self", ")", ":", "directory", "=", "os", ".", "path", ".", "dirname", "(", "os", ".", "path", ".", "abspath", "(", "__file__", ")", ")", "directory", "=", "os", ".", "path", ".", "dirname", "(", "os", ".", "path", "...
6466128a3029c4d09631420ccce73024025bd5b6
valid
Programs.resolve_loader
Resolve program loader
demosys/resources/programs.py
def resolve_loader(self, meta: ProgramDescription): """ Resolve program loader """ if not meta.loader: meta.loader = 'single' if meta.path else 'separate' for loader_cls in self._loaders: if loader_cls.name == meta.loader: meta.loader_cls ...
def resolve_loader(self, meta: ProgramDescription): """ Resolve program loader """ if not meta.loader: meta.loader = 'single' if meta.path else 'separate' for loader_cls in self._loaders: if loader_cls.name == meta.loader: meta.loader_cls ...
[ "Resolve", "program", "loader" ]
Contraz/demosys-py
python
https://github.com/Contraz/demosys-py/blob/6466128a3029c4d09631420ccce73024025bd5b6/demosys/resources/programs.py#L20-L37
[ "def", "resolve_loader", "(", "self", ",", "meta", ":", "ProgramDescription", ")", ":", "if", "not", "meta", ".", "loader", ":", "meta", ".", "loader", "=", "'single'", "if", "meta", ".", "path", "else", "'separate'", "for", "loader_cls", "in", "self", "...
6466128a3029c4d09631420ccce73024025bd5b6