Пример #1
0
        public void TestGetSizeAndSemantic()
        {
            var layout = new VertexLayout {
                texcoord0 = new TexcoordInfo {
                    size = 2, semantic = Semantic.XyIsUv
                },
                texcoord1 = new TexcoordInfo {
                    size = 3, semantic = Semantic.Position
                },
                texcoord2 = new TexcoordInfo {
                    size = 4, semantic = Semantic.Vector
                }
            };

            Assert.AreEqual(layout.texcoord0, layout.GetTexcoordInfo(0));
            Assert.AreEqual(layout.texcoord1, layout.GetTexcoordInfo(1));
            Assert.AreEqual(layout.texcoord2, layout.GetTexcoordInfo(2));
        }
Пример #2
0
        public void TestLayoutEquality()
        {
            var vl = new VertexLayout {
                texcoord0 = new TexcoordInfo {
                    size = 2, semantic = Semantic.Position
                },
                texcoord1 = new TexcoordInfo {
                    size = 3, semantic = Semantic.Position
                },
                texcoord2 = new TexcoordInfo {
                    size = 4, semantic = Semantic.Position
                }
            };
            VertexLayout vl2;

            vl2 = vl; Assert.AreEqual(vl, vl2);
            vl2 = vl; vl2.texcoord0.size += 1; Assert.AreNotEqual(vl, vl2);
            vl2 = vl; vl2.texcoord1.size += 1; Assert.AreNotEqual(vl, vl2);
            vl2 = vl; vl2.texcoord2.size += 1; Assert.AreNotEqual(vl, vl2);
            vl2 = vl; vl2.texcoord0.semantic = Semantic.Unspecified; Assert.AreNotEqual(vl, vl2);
            vl2 = vl; vl2.texcoord1.semantic = Semantic.Unspecified; Assert.AreNotEqual(vl, vl2);
            vl2 = vl; vl2.texcoord2.semantic = Semantic.Unspecified; Assert.AreNotEqual(vl, vl2);
        }
Пример #3
0
    public GlTF_Attributes(
        GlTF_Globals G, ObjectName meshName, GlTF_VertexLayout layout)
    {
        // This prefix should be used with possibly-nonconforming gltf data:
        // - texcoords that are not 2-element or that don't contain texture coordinates
        // - made-up / mythical semantics like VERTEXID
        string nonconformingPrefix = (G.GltfCompatibilityMode) ? "_TB_UNITY_" : "";

        m_layout = layout;

        {
            AttributeInfo positionInfo = layout.PositionInfo;
            positionAccessor = G.CreateAccessor(
                GlTF_Accessor.GetNameFromObject(meshName, "position"),
                positionInfo.accessorType, positionInfo.accessorComponentType);
            m_accessors.Add("POSITION", positionAccessor);
        }

        { if (layout.NormalInfo is AttributeInfo normalInfo)
          {
              normalAccessor = G.CreateAccessor(
                  GlTF_Accessor.GetNameFromObject(meshName, "normal"),
                  normalInfo.accessorType, normalInfo.accessorComponentType);
              // Genius particles put things that don't look like normals into the normal attribute.
              bool   isNonconforming = (layout.m_tbLayout.normalSemantic == Semantic.Position);
              string prefix          = isNonconforming ? nonconformingPrefix : "";
              m_accessors.Add(prefix + "NORMAL", normalAccessor);
          }
        }

        { if (layout.ColorInfo is AttributeInfo cInfo)
          {
              colorAccessor = G.CreateAccessor(
                  GlTF_Accessor.GetNameFromObject(meshName, "color"),
                  cInfo.accessorType, cInfo.accessorComponentType,
                  normalized: true);
              m_accessors.Add(G.Gltf2 ? "COLOR_0" : "COLOR", colorAccessor);
          }
        }

        { if (layout.TangentInfo is AttributeInfo tangentInfo)
          {
              tangentAccessor = G.CreateAccessor(
                  GlTF_Accessor.GetNameFromObject(meshName, "tangent"),
                  tangentInfo.accessorType, tangentInfo.accessorComponentType);
              m_accessors.Add("TANGENT", tangentAccessor);
          }
        }

        if (layout.PackVertexIdIntoTexcoord1W)
        {
            // The vertexid hack modifies the gl layout to extend texcoord1 so the vertexid
            // can be stuffed into it
            Debug.Assert(layout.m_tbLayout.GetTexcoordInfo(1).size == 3);
            Debug.Assert(layout.GetTexcoordSize(1) == 4);
        }

        GlTF_Accessor MakeAccessorFor(int texcoord)
        {
            var txcInfo = layout.GetTexcoordInfo(texcoord);

            if (txcInfo == null)
            {
                return(null);
            }
            Semantic tbSemantic = layout.m_tbLayout.GetTexcoordInfo(texcoord).semantic;
            string   attrName   = $"{nonconformingPrefix}TEXCOORD_{texcoord}";

            // Timestamps are tunneled into us via a texcoord because there's not really a better way
            // due to GeometryPool limitations. But that's an internal implementation detail. I'd like
            // them to have a better attribute name in the gltf.
            if (tbSemantic == Semantic.Timestamp)
            {
                // For b/141876882; Poly doesn't like _TB_TIMESTAMP
                if (!G.Gltf2)
                {
                    return(null);
                }
                attrName = "_TB_TIMESTAMP";
            }
            var ret = G.CreateAccessor(
                GlTF_Accessor.GetNameFromObject(meshName, $"uv{texcoord}"),
                txcInfo.Value.accessorType, txcInfo.Value.accessorComponentType);

            m_accessors.Add(attrName, ret);
            return(ret);
        }

        texCoord0Accessor = MakeAccessorFor(0);
        texCoord1Accessor = MakeAccessorFor(1);
        texCoord2Accessor = MakeAccessorFor(2);
        texCoord3Accessor = MakeAccessorFor(3);

        if (G.GltfCompatibilityMode)
        {
            TiltBrush.GeometryPool.VertexLayout tbLayout = layout.m_tbLayout;
            switch (tbLayout.texcoord0.semantic)
            {
            case Semantic.Unspecified when tbLayout.texcoord0.size == 2:
            case Semantic.XyIsUv:
            case Semantic.XyIsUvZIsDistance: {
                GlTF_Accessor accessor = GlTF_Accessor.CloneWithDifferentType(
                    G, texCoord0Accessor, GlTF_Accessor.Type.VEC2);
                m_accessors.Add("TEXCOORD_0", accessor);
                break;
            }
            }
            // No need to check the other texcoords because TB only ever puts texture coordinates
            // in texcoord0
        }
    }