load

package
v0.20.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 27, 2024 License: BSD-2-Clause Imports: 14 Imported by: 0

Documentation

Overview

Package load fetches disk based 3D asset data. It's main purpose is to find the asset file and load its data into intermediate data structs.

  • ".spv" spir-v shader module byte code
  • ".png" image data
  • ".shd" shader configuration description
  • ".glb" vertex data, image data, animation data, material data
  • ".wav" audio data
  • ".fnt" font mapping data
  • ".yaml" data file

This package is primary used internally for getting data from disk that is then upload to the render and audio systems.

Package load is provided as part of the vu (virtual universe) 3D engine.

Index

Constants

View Source
const (
	Vertexes    = iota // 0 required:V3 float32
	Texcoords          // 1 optional:V2 float32
	Normals            // 2 optional:V3 float32
	Tangents           // 3 optional:V4 float32
	Colors             // 4 optional:V3 uint8
	Joints             // 5 FUTURE:V4 uint8    animations
	Weights            // 6 FUTURE:V4 uint8    animations
	Indexes            // 7 required:uint16             - must be second last.
	VertexTypes        // 8 number of vertex data types - must be last.
)

Vertex MeshData attribute types.

View Source
const (
	InstanceLocus  = iota // position 0 V3 float32
	InstanceColors        // 1 V3 uint8
	InstanceScales        // 2 float32
	InstanceTypes         // number of instance data types - must be last.
)

Instance Data attribute types describe per-instance model data. These are defined here because they are similar to vertex data types.

Variables

View Source
var ShaderAttributeData = map[string]ShaderDataType{
	"float": DataType_FLOAT,
	"vec2":  DataType_VEC2,
	"vec3":  DataType_VEC3,
	"vec4":  DataType_VEC4,
}

ShaderAttributeData are the currently supported data types for vertex and model-instance data. Expected use is for passing data from the engine to the render system.

View Source
var ShaderAttributeScope = map[string]AttributeScope{
	"vertex":   VertexAttribute,
	"instance": InstanceAttribute,
}

ShaderAttributeScope categorizes vertex attributes into per-vertex data or per-model-instance data. Expected use is for passing data from the engine to the render system.

View Source
var ShaderAttributes = map[string]int{

	"position": Vertexes,
	"texcoord": Texcoords,
	"normal":   Normals,
	"tangent":  Tangents,
	"v_color":  Colors,
	"joint":    Joints,
	"weight":   Weights,

	"i_locus": InstanceLocus,
	"i_color": InstanceColors,
	"i_scale": InstanceScales,
}

ShaderAttributes map glsl vertex attributes from shader programs to model data provided by code. Expected use is for passing data from the engine to the render system.

View Source
var ShaderPacketUniforms = map[string]PacketUniform{
	"model":    MODEL,
	"scale":    SCALE,
	"color":    COLOR,
	"material": MATERIAL,
}

ShaderPacketUniforms are shader uniforms that apply to one model. Render data for a model is put into a render.Packet. Expected use is for passing data from the engine to the render system.

View Source
var ShaderPassUniforms = map[string]PassUniform{
	"proj":    PROJ,
	"view":    VIEW,
	"cam":     CAM,
	"lights":  LIGHTS,
	"nlights": NLIGHTS,
}

ShaderPassUniforms are shader uniforms that apply to the a single scene (render pass). Expected use is for passing data from the engine to the render system.

View Source
var ShaderUniformData = map[string]ShaderDataType{
	"int":     DataType_INT,
	"light3":  DataType_LIGHT3,
	"mat3":    DataType_MAT3,
	"mat4":    DataType_MAT4,
	"sampler": DataType_SAMPLER,
	"vec2":    DataType_VEC2,
	"vec3":    DataType_VEC3,
	"vec4":    DataType_VEC4,
}

ShaderUniformData are the supported uniform data types. Expected use is for passing data from the engine to the render system.

View Source
var ShaderUniformScope = map[string]UniformScope{
	"scene":    SceneScope,
	"material": MaterialScope,
	"model":    ModelScope,
}

ShaderUniformScope is used to bind data in shaders. Expected use is for passing data from the engine to the render system.

Functions

func SetAssetDir added in v0.20.0

func SetAssetDir(ext, dir string)

SetAssetDir can be used to add or change the default directory conventions for finding assets.

Types

type AssetData added in v0.20.0

type AssetData struct {
	Filename string      // request filename with extension
	Err      error       // nil if load was successful
	Data     interface{} // struct of loaded data.
}

AssetData is used to return loaded data. The caller is expected to switch on the Data type.

func Glb added in v0.20.0

func Glb(name string, r io.Reader) (data []AssetData)

Glb accepts a subset of a binary gltf.Document that describes a single mesh model. The single models limitiations is enforced as follows:

  • one Scene
  • one Node
  • one Mesh
  • one Mesh.Primitive

These conform to a single model exported from Blender.

func LoadAssetFile added in v0.20.0

func LoadAssetFile(fname string) []AssetData

LoadAssetFile returns one or more AssetData structs from the given asset filename.

func Model added in v0.20.0

func Model(name string) (data []AssetData)

Model loads 3D data including mesh, texture, material, animation, and transform data. Errors are returned inside AssetData which will always contain at least one element.

type AttributeScope added in v0.20.0

type AttributeScope uint8

AttributeScope identifies the two types of attributes.

const (
	VertexAttribute AttributeScope = iota
	InstanceAttribute
)

type AudioAttributes added in v0.20.0

type AudioAttributes struct {
	Channels   uint16 // Number of audio channels.
	Frequency  uint32 // 8000, 44100, etc.
	DataSize   uint32 // Size of audio data.
	SampleBits uint16 // 8 bits = 8, 16 bits = 16, etc.
}

AudioAttributes describe how sound data is interpreted and played.

type AudioData added in v0.20.0

type AudioData struct {
	Data  []byte           // the sound data bytes.
	Attrs *AudioAttributes // Attributes describing the sound data.
}

AudioData consists of the actual audio data bytes along with sounds attributes that describe how the sound data is interpreted and played.

AudioData is an intermediate data format that needs further processing to associate the sound with a 3D location and bind it to an audio device.

func Audio added in v0.20.0

func Audio(name string) (aud *AudioData, err error)

Audio loads audio data.

func Wav added in v0.6.3

func Wav(r io.Reader) (aud *AudioData, err error)

Wav attempts to load WAV based audio data into SndData. The wave PCM soundfile format is from:

The Reader r is expected to be opened and closed by the caller. A successful import overwrites the data in SndData.

type Buffer added in v0.20.0

type Buffer struct {
	Data   []byte // bytes in little-endian order.
	Count  uint32 // total number of elements, ie: how many vertex vec3's.
	Stride uint32 // bytes for one element, eg: 12 for float32:vec3
}

Buffer holds byte data that can be uploaded to the GPU

func F32Buffer added in v0.20.0

func F32Buffer(verts []float32, dimension uint32) Buffer

F32Buffer converts a slice of float32s to a Buffer of bytes. Used to pass data to glsl vec float types

func U16Buffer added in v0.20.0

func U16Buffer(indexes []uint16) Buffer

U16Buffer converts a slice of uint16 to a Buffer of bytes. Used to pass data to glsl vertex indexes.

func U32Buffer added in v0.20.0

func U32Buffer(data []uint32, dimension uint32) Buffer

U32Buffer converts a slice of uint32 to a Buffer of bytes. Used to pass data to glsl uvec int types

func (Buffer) PrintF32 added in v0.20.0

func (buff Buffer) PrintF32(name string)

PrintF32 dumps bytes as float32 vertices. Used to debug mesh data. eg: md[load.Vertexes].PrintF32()

func (Buffer) PrintU16 added in v0.20.0

func (buff Buffer) PrintU16(name string)

PrintU16 dumps bytes as uint16 triangle indexes. Used to debug mesh data.

type ByteData added in v0.20.0

type ByteData []byte

ByteData loads the bytes for the given file.

func DataBytes added in v0.20.0

func DataBytes(name string) (data ByteData, err error)

DataBytes loads bytes from generic data files.

type ChrData

type ChrData struct {
	Char       rune // Character.
	X, Y, W, H int  // Character bit size.
	Xo, Yo, Xa int  // Character offset.
}

ChrData holds UV texture mapping information for one character. Expected to be used as part of FntData.

type FontData added in v0.20.0

type FontData struct {
	W, H  int       // Width and height
	Chars []ChrData // Character data.
}

FontData holds UV texture mapping information for a font. It is intended for populating rendered models of strings. This is an intermediate data format that needs further processing by something like a vu.Ent.MakeModel to bind the data to a GPU and associate it with a texture atlas containing the bitmapped font images.

func Fnt added in v0.6.3

func Fnt(r io.Reader) (d *FontData, err error)

Fnt reads in a text file describing the UV texture mapping for a character set of a particular font.

The Reader r is expected to be opened and closed by the caller. A successful import overwrites the data in FntData.

func Font added in v0.20.0

func Font(name string) (fnt *FontData, err error)

Font loads font character mapping data. Existing FontData is overwritten with information found by the Locator.

type ImageData added in v0.20.0

type ImageData struct {
	Width  uint32
	Height uint32
	Pixels []byte
	Opaque bool
}

ImageData contains image data for uploading to the GPU.

func Image added in v0.20.0

func Image(name string) (idata *ImageData, err error)

Image loads .png images as the underlying data format for textures.

type MeshData added in v0.20.0

type MeshData []Buffer

MeshData contains per-vertex data. Data will be index the GLTF buffer.

type PBRMaterialData added in v0.20.0

type PBRMaterialData struct {
	ColorR    float64 // material base color for solid PBR.
	ColorG    float64 //  ""
	ColorB    float64 //  ""
	ColorA    float64 //  ""
	Metallic  float64 // metallic value if no m-r texture
	Roughness float64 // roughness value if no m-r texture
}

PBRMaterialData describes a PBR solid material.

type PacketUniform added in v0.20.0

type PacketUniform uint8

PacketUniform is model level data.

const (
	MODEL          PacketUniform = iota // model
	SCALE                               // model
	COLOR                               // model
	MATERIAL                            // model
	PacketUniforms                      // must be last
)

type PassUniform added in v0.20.0

type PassUniform uint8

PassUniform is scene level data.

const (
	PROJ         PassUniform = iota // scene
	VIEW                            // scene
	CAM                             // scene
	LIGHTS                          // scene
	NLIGHTS                         // scene
	PassUniforms                    // must be last
)

type Shader added in v0.20.0

type Shader struct {
	// Name identifies the shader modules. eg: Name.frag, Name.vert
	Name   string      // unique name for this shader.
	Pass   string      // renderpass name for this shader.
	Stages ShaderStage // bit flags for the shader stages.

	// Attrs must match the shader attributes in name and position, ie:
	//   Attr[0].Name == position   ... which matches
	//	 "layout(location=0) in vec3 position;"
	Attrs []ShaderAttribute

	// Uniforms must match the shader attributes in name and position
	// where scope also identifies a DescriptorSet.
	Uniforms []ShaderUniform
}

Shader describes shader data and is used to generate render shaders on startup.

FUTURE: replace the yaml files with data gathered from shader code reflection. Not really a simple way to do Spirv reflection at the moment as the current tools generate lots of data which would be a pain to parse. See: spirv-cross, spirv-reflect command line tools.

func ShaderConfig added in v0.20.0

func ShaderConfig(name string) (cfg *Shader, err error)

ShaderConfig loads compiled shader (spir-v) byte data.

func Shd added in v0.20.0

func Shd(name string, data []byte) (shader *Shader, err error)

Shd loads a yaml shader configuration and returns it as a shader configuration struct. This is needed to provide a link between the render models and the shader programs.

func (*Shader) GetMaterialUniforms added in v0.20.0

func (s *Shader) GetMaterialUniforms() (uniforms []*ShaderUniform)

func (*Shader) GetSamplerUniforms added in v0.20.0

func (s *Shader) GetSamplerUniforms() (uniforms []*ShaderUniform)

func (*Shader) GetSceneUniforms added in v0.20.0

func (s *Shader) GetSceneUniforms() (uniforms []*ShaderUniform)

type ShaderAttribute added in v0.20.0

type ShaderAttribute struct {
	Name      string         // unique name matching shader source code.
	AttrType  int            // matching mesh vertex attribute type
	AttrScope AttributeScope // vertex or instanced
	DataType  ShaderDataType // describes the attribute data.
}

ShaderAttribute identifies the data layouts for attributes.

type ShaderData added in v0.20.0

type ShaderData []byte

ShaderData differentiates shader data from other byte data.

func ShaderBytes added in v0.20.0

func ShaderBytes(name string) (data ShaderData, err error)

ShaderBytes loads compiled shader (spir-v) byte data.

type ShaderDataType added in v0.20.0

type ShaderDataType uint8

ShaderDataType helps describe shader attributes and uniforms

const (
	DataType_INT ShaderDataType = iota
	DataType_FLOAT
	DataType_LIGHT3 // array of 3 lights
	DataType_MAT3
	DataType_MAT4
	DataType_SAMPLER
	DataType_VEC2
	DataType_VEC3
	DataType_VEC4
)

type ShaderPass added in v0.20.0

type ShaderPass uint8

ShaderPass identifies the render pass that the shader uses.

const (
	Renderpass_3D ShaderPass = iota // 3D is rendered before 2D
	Renderpass_2D                   //
)

type ShaderStage added in v0.20.0

type ShaderStage uint8

ShaderStage identifies the currently supported programmable shader stages that a shader can have.

const (
	Stage_VERTEX   ShaderStage = 1 << iota // vertex processing.
	Stage_GEOMETRY                         // eg: turn points into quads.
	Stage_FRAGMENT                         // pixel processing.
)

type ShaderUniform added in v0.20.0

type ShaderUniform struct {
	Name      string         // unique name matching shader source code.
	Scope     UniformScope   //
	DataType  ShaderDataType //
	PassUID   PassUniform    // index to pass data
	PacketUID PacketUniform  // index to packet data
}

ShaderUniform identifies the data layouts for uniforms.

type UniformScope added in v0.20.0

type UniformScope uint8

UniformScope identifies the three supported types of uniforms. The scope is directly related to the layout(set=x) value in the shader code.

const (
	SceneScope    UniformScope = iota // set per render pass: set=0
	MaterialScope                     // set per material     : set=1
	ModelScope                        // set per model      : push constants
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL