view src/zamikongine/thing.nim @ 485:b4a972bd37d5

did: change shader compilation to run during program compilation, maybe add dynamic version later
author Sam <sam@basx.dev>
date Wed, 11 Jan 2023 11:15:02 +0700
parents 14e5151f68d1
children b1b05d4efb52
line wrap: on
line source

{.experimental: "codeReordering".}

type
  Part* = object of RootObj
    thing: ref Thing

  Thing* = object of RootObj
    parent*: ref Thing
    children*: seq[ref Thing]
    parts*: seq[ref Part]

iterator partsOfType*[T: ref Part](root: ref Thing): T =
  var queue = @[root]
  while queue.len > 0:
    let thing = queue.pop
    for part in thing.parts:
      if part of T:
        yield T(part)
    for child in thing.children:
      queue.insert(child, 0)