summaryrefslogtreecommitdiff
path: root/indra/newview/gltf/accessor.cpp
blob: 2ef9237f2dcbe50f1323c49c10aac2ebc83823dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/**
 * @file accessor.cpp
 * @brief LL GLTF Implementation
 *
 * $LicenseInfo:firstyear=2024&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2024, Linden Research, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#include "../llviewerprecompiledheaders.h"

#include "asset.h"
#include "buffer_util.h"
#include "llfilesystem.h"

using namespace LL::GLTF;
using namespace boost::json;

namespace LL
{
    namespace GLTF
    {
        Accessor::Type gltf_type_to_enum(const std::string& type)
        {
            if (type == "SCALAR")
            {
                return Accessor::Type::SCALAR;
            }
            else if (type == "VEC2")
            {
                return Accessor::Type::VEC2;
            }
            else if (type == "VEC3")
            {
                return Accessor::Type::VEC3;
            }
            else if (type == "VEC4")
            {
                return Accessor::Type::VEC4;
            }
            else if (type == "MAT2")
            {
                return Accessor::Type::MAT2;
            }
            else if (type == "MAT3")
            {
                return Accessor::Type::MAT3;
            }
            else if (type == "MAT4")
            {
                return Accessor::Type::MAT4;
            }

            LL_WARNS("GLTF") << "Unknown accessor type: " << type << LL_ENDL;
            llassert(false);

            return Accessor::Type::SCALAR;
        }

        std::string enum_to_gltf_type(Accessor::Type type)
        {
            switch (type)
            {
            case Accessor::Type::SCALAR:
                return "SCALAR";
            case Accessor::Type::VEC2:
                return "VEC2";
            case Accessor::Type::VEC3:
                return "VEC3";
            case Accessor::Type::VEC4:
                return "VEC4";
            case Accessor::Type::MAT2:
                return "MAT2";
            case Accessor::Type::MAT3:
                return "MAT3";
            case Accessor::Type::MAT4:
                return "MAT4";
            }

            LL_WARNS("GLTF") << "Unknown accessor type: " << (S32)type << LL_ENDL;
            llassert(false);

            return "SCALAR";
        }
    }
}

void Buffer::erase(Asset& asset, S32 offset, S32 length)
{
    S32 idx = this - &asset.mBuffers[0];

    mData.erase(mData.begin() + offset, mData.begin() + offset + length);

    llassert(mData.size() <= size_t(INT_MAX));
    mByteLength = S32(mData.size());

    for (BufferView& view : asset.mBufferViews)
    {
        if (view.mBuffer == idx)
        {
            if (view.mByteOffset >= offset)
            {
                view.mByteOffset -= length;
            }
        }
    }
}

bool Buffer::prep(Asset& asset)
{
    if (mByteLength == 0)
    {
        return false;
    }

    LLUUID id;
    if (mUri.size() == UUID_STR_SIZE && LLUUID::parseUUID(mUri, &id) && id.notNull())
    { // loaded from an asset, fetch the buffer data from the asset store
        LLFileSystem file(id, LLAssetType::AT_GLTF_BIN, LLFileSystem::READ);

        if (mByteLength > file.getSize())
        {
            LL_WARNS("GLTF") << "Unexpected glbin size: " << id << " is " << file.getSize() << " bytes, expected " << mByteLength << LL_ENDL;
            return false;
        }

        mData.resize(mByteLength);
        if (!file.read((U8*)mData.data(), mByteLength))
        {
            LL_WARNS("GLTF") << "Failed to load buffer data from asset: " << id << LL_ENDL;
            return false;
        }
    }
    else if (mUri.find("data:") == 0)
    { // loaded from a data URI, load the texture from the data
        LL_WARNS() << "Data URIs not yet supported" << LL_ENDL;
        return false;
    }
    else if (!asset.mFilename.empty() &&
        !mUri.empty()) // <-- uri could be empty if we're loading from .glb
    {
        std::string dir = gDirUtilp->getDirName(asset.mFilename);
        std::string bin_file = dir + gDirUtilp->getDirDelimiter() + mUri;

        std::ifstream file(bin_file, std::ios::binary);
        if (!file.is_open())
        {
            LL_WARNS("GLTF") << "Failed to open file: " << bin_file << LL_ENDL;
            return false;
        }

        file.seekg(0, std::ios::end);
        if (mByteLength > file.tellg())
        {
            LL_WARNS("GLTF") << "Unexpected file size: " << bin_file << " is " << file.tellg() << " bytes, expected " << mByteLength << LL_ENDL;
            return false;
        }
        file.seekg(0, std::ios::beg);

        mData.resize(mByteLength);
        file.read((char*)mData.data(), mData.size());
    }

    // POSTCONDITION: on success, mData.size == mByteLength
    llassert(mData.size() == mByteLength);
    return true;
}

bool Buffer::save(Asset& asset, const std::string& folder)
{
    if (mUri.substr(0, 5) == "data:")
    {
        LL_WARNS("GLTF") << "Data URIs not yet supported" << LL_ENDL;
        return false;
    }

    std::string bin_file = folder + gDirUtilp->getDirDelimiter();

    if (mUri.empty())
    {
        if (mName.empty())
        {
            S32 idx = this - &asset.mBuffers[0];
            mUri = llformat("buffer_%d.bin", idx);
        }
        else
        {
            mUri = mName + ".bin";
        }
    }

    bin_file += mUri;

    std::ofstream file(bin_file, std::ios::binary);
    if (!file.is_open())
    {
        LL_WARNS("GLTF") << "Failed to open file: " << bin_file << LL_ENDL;
        return false;
    }

    file.write((char*)mData.data(), mData.size());

    return true;
}

void Buffer::serialize(object& dst) const
{
    write(mName, "name", dst);
    write(mUri, "uri", dst);
    write_always(mByteLength, "byteLength", dst);
};

const Buffer& Buffer::operator=(const Value& src)
{
    if (src.is_object())
    {
        copy(src, "name", mName);
        copy(src, "uri", mUri);
        copy(src, "byteLength", mByteLength);

        // NOTE: DO NOT attempt to handle the uri here.
        // The uri is a reference to a file that is not loaded until
        // after the json document is parsed
    }
    return *this;
}

void BufferView::serialize(object& dst) const
{
    write_always(mBuffer, "buffer", dst);
    write_always(mByteLength, "byteLength", dst);
    write(mByteOffset, "byteOffset", dst, 0);
    write(mByteStride, "byteStride", dst, 0);
    write(mTarget, "target", dst, -1);
    write(mName, "name", dst);
}

const BufferView& BufferView::operator=(const Value& src)
{
    if (src.is_object())
    {
        copy(src, "buffer", mBuffer);
        copy(src, "byteLength", mByteLength);
        copy(src, "byteOffset", mByteOffset);
        copy(src, "byteStride", mByteStride);
        copy(src, "target", mTarget);
        copy(src, "name", mName);
    }
    return *this;
}

void Accessor::serialize(object& dst) const
{
    write(mName, "name", dst);
    write(mBufferView, "bufferView", dst, INVALID_INDEX);
    write(mByteOffset, "byteOffset", dst, 0);
    write_always(mComponentType, "componentType", dst);
    write_always(mCount, "count", dst);
    write_always(enum_to_gltf_type(mType), "type", dst);
    write(mNormalized, "normalized", dst, false);
    write(mMax, "max", dst);
    write(mMin, "min", dst);
}

const Accessor& Accessor::operator=(const Value& src)
{
    if (src.is_object())
    {
        copy(src, "name", mName);
        copy(src, "bufferView", mBufferView);
        copy(src, "byteOffset", mByteOffset);
        copy(src, "componentType", mComponentType);
        copy(src, "count", mCount);
        copy(src, "type", mType);
        copy(src, "normalized", mNormalized);
        copy(src, "max", mMax);
        copy(src, "min", mMin);
    }
    return *this;
}