loaders/blend_format

    Dark Mode
Search:
Group by:
  Source   Edit

Types

BlendBasicType = enum
  B_char, B_uchar, B_short, B_ushort, B_int32, B_long, B_ulong, B_float,
  B_double, B_int64, B_uint64, B_void, B_int8
  Source   Edit
BlendFileVal = object
  mem: pointer
  file_path*: string
  dna: TypeAttrsRef
  blocks: FNodesByAddress
  named_blocks*: NamedBlocks
  struct_to_type: StructToTypeMap
  type_lengths: TypeLengths
  type_names: seq[cstring]
  old_mem_ptr: pointer
  endp: pointer
  byte_seq: seq[byte]
  Source   Edit
FNode = object
  blend_file {.cursor.}: BlendFile
  blend_file_ref: BlendFile
  p: pointer
  count: uint32
  tid: uint16
  Source   Edit

Procs

proc `$`(n: FNode; depth = 0; max_depth = 3; just_name = false;
         dump_pointers = false): string {....raises: [KeyError], tags: [].}
  Source   Edit
proc `[]`(n: FNode; index: Natural): FNode {....raises: [KeyError], tags: [].}
  Source   Edit
proc `[]`(n: FNode; name: string): FNode {....raises: [KeyError], tags: [].}
  Source   Edit
proc `[]`(ns: FNodeSlice; name: string): FNodeSlice
  Source   Edit
proc `[]`[T](a: ptr array[16, T]; r: HSlice): seq[T]
  Source   Edit
proc `[]`[U, V: Ordinal](node: FNode; s: HSlice[U, V]): FNodeSlice[V]
  Source   Edit
proc basic_type(n: FNode): BlendBasicType {....raises: [], tags: [].}
  Source   Edit
proc contains(n: FNode; name: string): bool {....raises: [], tags: [].}
  Source   Edit
proc cstr(n: FNode): cstring {....raises: [], tags: [].}
  Source   Edit
proc debug_dump(f: BlendFile) {....raises: [KeyError], tags: [].}
  Source   Edit
proc f32(n: FNode): ptr array[16, float32] {.inline, ...raises: [], tags: [].}
  Source   Edit
proc f64(n: FNode): ptr array[16, float64] {....raises: [], tags: [].}
  Source   Edit
proc find_pointer_usage(n: FNode) {....raises: [], tags: [].}
  Source   Edit
proc get[T](x: ptr array[16, T]; y = 0): T
  Source   Edit
proc hash(n: FNode): Hash {....raises: [], tags: [].}
  Source   Edit
proc i8(n: FNode): ptr array[16, int8] {....raises: [], tags: [].}
  Source   Edit
proc i16(n: FNode): ptr array[16, int16] {....raises: [], tags: [].}
  Source   Edit
proc i32(n: FNode): ptr array[16, int32] {....raises: [], tags: [].}
  Source   Edit
proc i64(n: FNode): ptr array[16, int64] {....raises: [], tags: [].}
  Source   Edit
proc len(node: FNode): uint32 {....raises: [], tags: [].}
  Source   Edit
proc openBlendFile(path: string; data: pointer; len: int): BlendFile {.
    ...raises: [ValueError, KeyError], tags: [].}
  Source   Edit
proc set_type(n: var FNode; s: string) {....raises: [ValueError], tags: [].}
  Source   Edit
proc strip2(s: string): string {.inline, ...raises: [], tags: [].}
  Source   Edit
proc u8(n: FNode): ptr array[16, uint8] {....raises: [], tags: [].}
  Source   Edit
proc u16(n: FNode): ptr array[16, uint16] {....raises: [], tags: [].}
  Source   Edit
proc u64(n: FNode): ptr array[16, uint64] {....raises: [], tags: [].}
  Source   Edit

Iterators

iterator items(n: FNode; stride = 0): FNode {....raises: [KeyError], tags: [].}
  Source   Edit
iterator items[T](ns: FNodeSlice[T]): FNode
  Source   Edit
iterator pairs[T](ns: FNodeSlice[T]): (int, FNode)
  Source   Edit

Templates

template `$`(p: pointer): string
  Source   Edit
template `.`[T: FNode or FNodeSlice](n: T; field: untyped): T
  Source   Edit
template `==`(n, n2: FNode): bool
  Source   Edit
template `?.`(n: FNode; y: untyped): untyped
  Source   Edit
template `[]`(blocks: NamedBlocks; s: string): untyped
  Source   Edit
template arr_len(node: FNode; arr, len: untyped): FNodeSlice[int32]
  Source   Edit
template get_array(n: FNode; size: Natural; T: typedesc): ptr UncheckedArray[
    T:type]
  Source   Edit
template isNil(n: FNode): bool
  Source   Edit
template str(n: FNode): string
  Source   Edit
template type_name(n: FNode): cstring
  Source   Edit
template valid(n: FNode): bool
  Source   Edit