Types
AnimationStrip = object
- Source Edit
Armature = ref object of GameObject bone_list*: seq[Bone] bones*: Table[string, Bone]
- Source Edit
Attribute = object name*: string count*: int16 dtype*: DataType offset*: int16 location*: int16
- Source Edit
AttributeList = seq[Attribute]
- Source Edit
BlendLoader = ref object of Loader blend_file_path*: string ## private blend_file*: BlendFile ## private use_indices*: bool ## private cached_materials*: Table[(FNode, string, bool), (string, seq[Varying], OrderedTable[string, string], OrderedTable[string, TexturePixels])] ## private resource*: LoadableResource
- Source Edit
BlockSize = enum Bs4x4 = 68, ## 8.00 BPP Bs5x4 = 84, ## 6.40 BPP Bs5x5 = 85, ## 5.12 BPP Bs6x5 = 101, ## 4.27 BPP Bs6x6 = 102, ## 3.56 BPP Bs8x5 = 133, ## 3.20 BPP Bs8x6 = 134, ## 2.67 BPP Bs8x8 = 136, ## 2.00 BPP (below 10x6) Bs10x5 = 165, ## 2.56 BPP Bs10x6 = 166, ## 2.13 BPP Bs10x8 = 168, ## 1.60 BPP Bs10x10 = 170, ## 1.28 BPP Bs12x10 = 202, ## 1.07 BPP Bs12x12 = 204 ## 0.89 BPP
- Source Edit
CacheSettings = object compress_textures*: bool ## Whether to compress textures on load ## when not loaded from cache cache use_cache*: bool ## Whether to try to load from cache save_cache*: bool ## Whether to save compressed textures cache_dir*: string ## Cache directory quality_speed*: EncodingSpeed ## Whether you need them fast or good bc_format_for_RGB*: RgbBcFmt ## Which BCn to use for RGB images. ## BC7 is the best but BC1 is half the ## size and encodes very fast astc_block_size*: BlockSize ## Defines quality and size of ASTC. ## 4x4 is the best but biggest, ## 6x6 is a good balance, ## 8x8 is bad but very small. astc_block_1ch*: BlockSize ## Block size for 1 channel textures, ## since less data has to be encoded astc_block_2ch*: BlockSize ## Block size for 2 channel textures compress_all_formats*: bool ## Encode textures for all platforms cache_dir_bc*: string ## Cache directory for writing bc cache_dir_astc*: string ## Cache directory for writing astc
- Source Edit
Camera = ref object of GameObject near_plane*: float32 far_plane*: float32 field_of_view*: float32 ortho_scale*: float32 aspect_ratio*: float32 target_aspect_ratio*: float32 cam_type*: CameraType sensor_fit*: SensorFit shift*: Vec2 fov_4*: Option[tuple[top, right, bottom, left: float32]] projection_matrix*: Mat4 projection_matrix_inverse*: Mat4 world_to_screen_matrix*: Mat4 cull_planes*: array[6, Vec4]
- Source Edit
CameraRenderUniform = object view_matrix*: Mat4 view_matrix_inverse*: Mat4 projection_matrix*: Mat4 projection_matrix_inverse*: Mat4 cull_plane*: Vec4 viewport_size*, viewport_size_inv*: Vec2
- Source Edit
CameraType = enum Perspective, Orthographic
- Source Edit
CommonMeshAttribute = enum vertex, color, normal, uv
- Source Edit
CubemapProbe = ref object of GameObject cubemap*: Framebuffer ubo_index*: int32 resolution*: int32 influence_type*: ProbeInfluenceType parallax_type*: ProbeParallaxType influence_distance*: float32 parallax_distance*: float32 falloff*: float32 intensity*: float32 clipping_start*: float32 clipping_end*: float32 update_strategy*: ProbeUpdateStrategy used*: bool
- Source Edit
CubemapProbeUniform = object world2cube*: Mat4 resolution*: float32 falloff_inv*: float32 influence_type*: float32 parallax_type*: float32 par_dist_rel_inv*: float32 intensity*: float32 roughness_lod*: float32 pad0: float32
- Source Edit
DataType = enum Unknown, Byte = 5120, UByte = 5121, Short = 5122, UShort = 5123, Int = 5124, UInt = 5125, Float = 5126, HalfFloat = 5131
- Source Edit
EffectShaderInput = object size*: Vec3 px_lod*: float32 px_size*: Vec3 lod*: float32
- Source Edit
EncodingSpeed = enum UltraFast, VeryFast, Fast, Basic, Slow, VerySlow, Slowest
- Source Edit
EsPrecision = enum EsPrecisionNone, EsPrecisionLow, EsPrecisionMedium, EsPrecisionHigh
- Source Edit
Framebuffer = ref object of RootObj engine* {.cursor.}: MyouEngine width*, height*, layer_count*: int format*: TextureFormat depth_type*: FramebufferDepthType texture*, depth_texture*: Texture is_complete*: bool has_mipmap*: bool current_width*, current_height*: int current_mipmap_level*: int use_sRGB*: bool framebuffer*, render_buffer*: GLuint
- Source Edit
FramebufferDepthType = enum DepthNone, DepthRenderBuffer, DepthTexture
- Source Edit
GameObject = ref object of RootObj otype*: ObjectType ## private engine* {.cursor.}: MyouEngine ## private debug*: bool ## private position*: Vec3 rotation*: Quat radius*: float rotation_order*: RotationOrder scale*: Vec3 dimensions*: Vec3 bound_box*: (Vec3, Vec3) object_color*: Vec4 matrix_parent_inverse*: Mat4 scene* {.cursor.}: Scene source_scene_name*: string visible*: bool parent* {.cursor.}: GameObject children*: seq[GameObject] auto_update_matrix*: bool world_matrix*: Mat4 bone_matrix_inverse*: Mat4 properties*: Table[string, JsonNode] name*: string original_name*: string lod_objects*: seq[GameObject] parent_bone_index*: int body*: Body avg_poly_area*: float avg_poly_length*: float zindex*: float center*: Vec3 world_center*: Vec4 sqdist*: float ## private flip*: bool ## private sqscale*: float ## private ## Globally squared scale, to avoid rendering zero scale object_render_ubo*: UBO ## private object_ubo*: UBO ## private
- Source Edit
Light = ref object of GameObject light_type*: LightType shadows*: seq[ShadowManager] use_shadow*: bool color*: Vec3 energy*: float32 diffuse_factor*: float32 specular_factor*: float32 spot_size*: float32 spot_blend*: float32 light_radius*: float32 area_size*: Vec3 cutoff_distance*: float32
- Source Edit
Loader = ref object of RootObj engine* {.cursor.}: MyouEngine shader_library*: string shader_textures*: Table[string, Texture] path_handler*: proc (path: string): string override_textures_sampler_type*: Table[string, string]
- Source Edit
Material = ref object engine* {.cursor.}: MyouEngine name*: string textures*: OrderedTable[string, Texture] ubos*: seq[UBO] varyings*: seq[Varying] vertex*: string fragment*: string double_sided*: bool fixed_z*: Option[float] point_size*: Option[float] animation_strips*: seq[AnimationStrip] glsl_version*: string es_precision*: EsPrecision defines*: Table[string, string] ## # scene* {.cursor.}: Scene shaders*: Table[AttributeList, Shader] ## private users*: seq[GameObject] ## private render_scene* {.cursor.}: Scene ## private has_texture_list_checked*: bool ## private shader_library*: string ## private use_debug_shaders*: bool ## private last_shader* {.cursor.}: Shader ## private feedback_varyings*: seq[string]
- Source Edit
Mesh = ref object of GameObject data*: MeshData materials*: seq[Material] material_defines*: Table[string, string] passes*: seq[int32] armature*: Armature culled_in_last_frame*: bool ## private last_lod*: Table[string, Mesh] ## private draw_method*: MeshDrawMethod hash*: string layout*: AttributeList vertex_modifiers*: seq[VertexModifier] mesh_id*: int8 bone_index_maps*: seq[Table[int32, int32]] sort_sign*: SortSign shape_names*: seq[string] mesh_name*: string skip_upload*: bool generate_tangents*: bool last_polyline_point*, last_polyline_left*: Vec3
- Source Edit
MeshData = ref object engine* {.cursor.}: MyouEngine users*: seq[GameObject] ## private hash*: string varrays*: seq[ArrRef[float32]] iarrays*: seq[ArrRef[uint16]] loaded*: bool vertex_buffers*: seq[GPUBuffer] ## private vertex_starts*: seq[int32] ## private index_buffers*: seq[GPUBuffer] ## private num_indices*: seq[int32] ## private vaos*: seq[GPUVao] ## private vao_specs*: seq[VaoSpec] ## private index_types*: seq[DataType] ## private layout*: AttributeList ## private stride*: int ## private draw_method*: MeshDrawMethod use_tf*: bool ## private tf_vbos*: seq[seq[GPUBuffer]] ## private tf_vaos*: seq[GPUVao] ## private tf_vao_specs*: seq[VaoSpec] ## private tf_layout*: AttributeList ## private when defined(myouUseRenderdoc): name*: string
- Source Edit
MeshDrawMethod = enum Points = 0, Lines = 1, LineLoop = 2, LineStrip = 3, Triangles = 4, TriangleStrip = 5, TriangleFan = 6
- Source Edit
MyouEngine = ref object scenes*: Table[string, Scene] objects*: Table[string, GameObject] mesh_datas*: Table[string, MeshData] screen*: Screen screens*: seq[Screen] renderer*: RenderManager tone_mapping_library*: string tone_mapping_function*: string use_glsl_tone_mapping*: bool loaders_by_ext*: Table[string, seq[proc (e: MyouEngine): Loader]] glsl_version*: string cache_settings*: CacheSettings all_framebuffers*: seq[Framebuffer] ## private new_scenes*: Table[string, Scene] ## private
- Source Edit
ObjectRenderUniform = object model_view_matrix*: Mat4 model_view_matrix_inverse*: Mat4 normal_matrix*: array[3, Vec4]
- Source Edit
ObjectType = enum TGameObject, TMesh, TCamera, TLight, TArmature
- private Source Edit
ObjectUniform = object model_matrix*: Mat4 model_matrix_inverse*: Mat4 mesh_center*: Vec3 pad0: float32 mesh_inv_dimensions*: Vec3 average_world_scale*: float32 color*: Vec4
- Source Edit
PlanarProbe = ref object of GameObject influence_distance*: float32 falloff*: float32
- Source Edit
PlatformEvent = enum PlatformPause, PlatformResume, PlatformMemoryWarning, PlatformFocus, PlatformKeyboardShown, PlatformKeyboardHidden
- Source Edit
PointLightUniform = object position*: Vec3 radius_squared*: float32 color*: Vec3 padding0: float32 diffuse_power*: float32 specular_power*: float32 padding1: float32 inv_squared_cutoff*: float32
- Source Edit
ProbeInfluenceType = enum SphereInfluence, BoxInfluence
- Source Edit
ProbeParallaxType = enum NoParallax = -1, SphereParallax, BoxParallax
- Source Edit
ProbeUpdateStrategy = enum UpdateNever, UpdateOnFirstUse, UpdateAlways
- Source Edit
RenderCameraData = object cam2world*: Mat4 world2cam*: Mat4 projection_matrix*: Mat4 projection_matrix_inverse*: Mat4 cull_planes*: array[6, Vec4] clipping_plane*: Vec4 viewport_size*, viewport_size_inv*: Vec2
- Source Edit
RenderManager = ref object engine* {.cursor.}: MyouEngine initialized*: bool render_tick*: int use_frustum_culling*: bool show_debug_frustum_culling*: bool use_sort_faces*: bool use_sort_faces_opaque*: bool force_pot_buffers*: bool use_debug_draw*: bool max_buffer_size_upload*: int use_draw_background_first*: bool max_texture_size*: int32 max_textures*: int32 max_uniform_block_size*: int32 max_uniform_buffer_bindings*: int32 bg_mesh*: Mesh no_material*: Material blank_texture*: Texture front_face_is_cw*: bool ## private cull_face_enabled*: bool ## private bound_ubos*: seq[UBO] ## private next_ubo*: int32 ## private check_framebuffers*: bool was_right_eye*: bool num_views*: int8 indices_drawn*: int meshes_drawn*: int effect_ratio*: float used_texture_memory*: int camera_render_ubo*: UBO queue*: seq[proc ()]
- Source Edit
RgbBcFmt = enum BC1 = 1, ## 4 BPP (0.5 bytes per pixel), very small but low quality. BC7 = 7 ## 8 BPP (1 byte per pixel), larger but very good quality.
- Source Edit
Scene = ref object engine* {.cursor.}: MyouEngine name*: string enabled*: bool children*: seq[GameObject] auto_updated_children*: seq[GameObject] mesh_passes*: seq[seq[Mesh]] bg_pass*: seq[Mesh] fg_pass*: seq[Mesh] lights*: seq[Light] armatures*: seq[Armature] objects*: Table[string, GameObject] parents*: Table[string, GameObject] materials*: Table[string, Material] textures*: Table[string, Texture] lighting_UBOs*: seq[UBO] point_light_UBO*: UBO sun_light_UBO*: UBO shadow_maps_UBO*: UBO cubemap_UBO*: UBO sh9_UBO*: UBO active_camera*: Camera physics_enabled*: bool world*: World background_color*: Vec4 shadow_map_resolution*: int32 cubemap_resolution*: int32 max_point_lights*: int32 max_sun_lights*: int32 max_spot_lights*: int32 max_area_lights*: int32 max_shadow_maps*: int32 max_cubemaps*: int32 max_spherical_harmonics*: int32 shadow_maps*: Framebuffer world_material*: Material background_cubemap*: Framebuffer cubemaps*: seq[Framebuffer] cubemap_probes*: seq[CubemapProbe] planar_probes*: seq[PlanarProbe] children_are_ordered*: bool ## private last_shadow_render_tick*: int ## private last_update_matrices_tick*: int ## private pre_draw_callbacks*: seq[proc (scene: Scene; s: float)] post_physics_callbacks*: seq[proc (scene: Scene; s: float)] post_draw_callbacks*: seq[proc (scene: Scene; s: float)] frame_start*: int frame_end*: int anim_fps*: float markers*: OrderedTable[string, float] data_dir*: string texture_dir*: string original_scene_name*: string foreground_planes*: seq[tuple[material: Material, is_alpha: bool]] debug_draw*: DebugDraw ## private shader_library*: string on_swap_eye*: proc (is_right_eye: bool) background_probe_rendered*: bool ## private add_viewport_automatically*: bool ## private
- Source Edit
Screen = ref object of RootObj engine* {.cursor.}: MyouEngine width*, height*: int32 orientation*: int8 viewports*: seq[Viewport] enabled*: bool framebuffer*: Framebuffer window*: pointer ## private pre_draw*, post_draw*: proc (self: Screen) last_x*, last_y*: float ## private last_buttons*, last_mods*: int8 ## private key_callbacks*: seq[proc (event: KeyEvent)] ## private char_callbacks*: seq[proc (codepoint: uint32)] ## private mouse_move_callbacks*: seq[proc (event: MouseMoveEvent)] ## private mouse_button_callbacks*: seq[proc (event: MouseButtonEvent)] ## private mouse_wheel_callbacks*: seq[proc (event: MouseWheelEvent)] ## private frame_interval*: int is_touch*: bool touches*: seq[(int32, Vec2)] prev_touches*: seq[(int32, Vec2)] resize_callbacks*: seq[proc (screen: Screen)] ## private platform_event_callbacks*: seq[proc (screen: Screen; e: PlatformEvent)] ## private break_current_callbacks*: bool ## private
- Source Edit
SH9Uniform = object coefficients*: array[1, array[9, Vec4]] transform*: Mat4
- Source Edit
Shader = ref object engine* {.cursor.}: MyouEngine id*: int program*: GPUProgram material* {.cursor.}: Material ubos*: seq[UBO] ubo_indices*: seq[GLuint] camera_render_ubo_index*: GLuint object_render_ubo_index*: GLuint object_ubo_index*: GLuint texture_locations*: seq[GLint] shadowmap_location*: GLint cubemap_locations*: seq[GLint] when not false: vs_code*, fs_code*: string
- Source Edit
ShadowManager = ref object of RootObj engine* {.cursor.}: MyouEngine light* {.cursor.}: Light required_texture_count*: int32 uses_color_channels*: int8 uses_depth*: bool shadow_index*: int32 sampler_type*: string material*: Material auto_render*: bool min_light_angle_delta*: float32 last_light_dir*: Vec3
- Source Edit
ShadowMapUniform = object depth_matrix*: Mat4 tex_size*: float32 bias*: float32 pad0, pad1: float32
- Source Edit
SimpleShadowManager = ref object of ShadowManager depth_range*: (float32, float32) caster_bounding_points*: seq[Vec3] use_camera*: bool
- Source Edit
SunLightUniform = object direction*: Vec3 padding0: float32 color*: Vec3 shadow_index*: float32 diffuse_power*: float32 specular_power*: float32 padding1: float32 padding2: float32
- Source Edit
Texture = ref object of RootObj engine* {.cursor.}: MyouEngine name*: string storage*: TextureStorage ## private loaded*: bool last_used_shader* {.cursor.}: Shader ## private sampler_object*: GLuint ## private width*, height*, depth*: int tex_type*: TextureType format*: TextureFormat filter*: TextureFilter is_framebuffer_active*: bool ## private is_sRGB*: bool is_compressed*: bool mipmap_range*: (int, int)
- Source Edit
TextureExtrapolation = enum Clamp, Border, Repeat, MirroredRepeat
- Source Edit
TextureFilter = enum Nearest, ## Without mipmaps Linear, ## Without mipmaps Pixellated, ## Mip mapped version of Nearest Trilinear, Anisotropic
- Source Edit
TextureFormat = enum SRGB_u8, SRGB_Alpha_u8, R_u8, RG_u8, RGB_u8, RGBA_u8, R_u16, RG_u16, RGB_u16, RGBA_u16, R_f16, RG_f16, RGB_f16, RGBA_f16, R_f32, RG_f32, RGB_f32, RGBA_f32, Depth_u16, Depth_u24, Depth_f32
- Source Edit
TexturePixels = object pixels*: ArrRef[float32] width*, height*: int format*: TextureFormat tex_type*: TextureType
- Source Edit
TextureStorage = ref object unit*: GLint target*: GLenum tex*: GPUTexture iformat*: GLenum format*, gltype*: GLenum layer*: float32 tile_size*: Vec2
- private Source Edit
TextureType = enum Tex2D, Tex2DArray, Tex3D, TexCube, TexExternal
- Source Edit
UBO = ref object renderer* {.cursor.}: RenderManager name*: string size32*: int byte_storage*: ArrRef[byte] buffer*: GPUBuffer binding_point*: int32
- Source Edit
VaoSpec = object vbs*: seq[VertexBufferAttribs] ib*: GLuint
- Source Edit
Varying = object vtype*: VaryingType varname*, attname*, gltype*: string multiplier*: float32
- Source Edit
VaryingType = enum Unused, ViewPosition, WorldPosition, ProjPosition, ViewNormal, WorldNormal, ObjectNormal, Uv, VertexColor, Tangent, Orco
- Source Edit
VertexBufferAttribs = object vb*: GLuint attribs*: AttributeList
- Source Edit
VertexModifier = object of RootObj get_code*: proc (v: seq[Varying]): (seq[string], seq[string], seq[string], seq[string]) prepare_mesh*: proc (m: Mesh)
- Source Edit
Templates
template enqueue(renderer: RenderManager; fun: untyped)
-
Run a proc after the renderer has been initialized.
If it was already initialized, it runs it immediately.
Source Edit